- );
- }
-
- // not every page in the system console will need the config, but the vast majority will
- const children = React.cloneElement(this.props.children, {
- config
- });
- return (
-
-
-
-
- {children}
-
-
- );
- }
-}
diff --git a/webapp/components/admin_console/admin_navbar_dropdown.jsx b/webapp/components/admin_console/admin_navbar_dropdown.jsx
deleted file mode 100644
index 6ef4906f56f..00000000000
--- a/webapp/components/admin_console/admin_navbar_dropdown.jsx
+++ /dev/null
@@ -1,223 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import $ from 'jquery';
-import ReactDOM from 'react-dom';
-
-import TeamStore from 'stores/team_store.jsx';
-import Constants from 'utils/constants.jsx';
-import AboutBuildModal from 'components/about_build_modal.jsx';
-import {sortTeamsByDisplayName} from 'utils/team_utils.jsx';
-import * as GlobalActions from 'actions/global_actions.jsx';
-
-import {FormattedMessage} from 'react-intl';
-
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-import * as Utils from 'utils/utils.jsx';
-
-export default class AdminNavbarDropdown extends React.Component {
- constructor(props) {
- super(props);
- this.blockToggle = false;
- this.onTeamChange = this.onTeamChange.bind(this);
- this.handleAboutModal = this.handleAboutModal.bind(this);
- this.aboutModalDismissed = this.aboutModalDismissed.bind(this);
-
- this.state = {
- teams: TeamStore.getAll(),
- teamMembers: TeamStore.getMyTeamMembers(),
- showAboutModal: false
- };
- }
-
- componentDidMount() {
- $(ReactDOM.findDOMNode(this.refs.dropdown)).on('hide.bs.dropdown', () => {
- this.blockToggle = true;
- setTimeout(() => {
- this.blockToggle = false;
- }, 100);
- });
-
- TeamStore.addChangeListener(this.onTeamChange);
- }
-
- componentWillUnmount() {
- $(ReactDOM.findDOMNode(this.refs.dropdown)).off('hide.bs.dropdown');
- TeamStore.removeChangeListener(this.onTeamChange);
- }
-
- handleAboutModal(e) {
- e.preventDefault();
-
- this.setState({showAboutModal: true});
- }
-
- aboutModalDismissed() {
- this.setState({showAboutModal: false});
- }
-
- onTeamChange() {
- this.setState({
- teams: TeamStore.getAll(),
- teamMembers: TeamStore.getMyTeamMembers()
- });
- }
-
- render() {
- var teamsArray = []; // Array of team objects
- var teams = []; // Array of team components
- let switchTeams;
-
- if (this.state.teamMembers && this.state.teamMembers.length > 0) {
- for (const index in this.state.teamMembers) {
- if (this.state.teamMembers.hasOwnProperty(index)) {
- const teamMember = this.state.teamMembers[index];
- const team = this.state.teams[teamMember.team_id];
- teamsArray.push(team);
- }
- }
-
- // Sort teams alphabetically with display_name
- teamsArray = teamsArray.sort(sortTeamsByDisplayName);
-
- for (const team of teamsArray) {
- teams.push(
-
;
- }
-
- var btnClass = 'btn';
- if (this.state.fileSelected) {
- btnClass = 'btn btn-primary';
- }
-
- let edition;
- let licenseType;
- let licenseKey;
-
- const issued = Utils.displayDate(parseInt(global.window.mm_license.IssuedAt, 10)) + ' ' + Utils.displayTime(parseInt(global.window.mm_license.IssuedAt, 10), true);
- const startsAt = Utils.displayDate(parseInt(global.window.mm_license.StartsAt, 10));
- const expiresAt = Utils.displayDate(parseInt(global.window.mm_license.ExpiresAt, 10));
-
- if (global.window.mm_license.IsLicensed === 'true') {
- // Note: DO NOT LOCALISE THESE STRINGS. Legally we can not since the license is in English.
- edition = 'Mattermost Enterprise Edition. Enterprise features on this server have been unlocked with a license key and a valid subscription.';
- licenseType = (
-
-
- {'This software is offered under a commercial license.\n\nSee ENTERPRISE-EDITION-LICENSE.txt in your root install directory for details. See NOTICE.txt for information about open source software used in this system.\n\nYour subscription details are as follows:'}
-
- {`Name: ${global.window.mm_license.Name}`}
- {`Company or organization name: ${global.window.mm_license.Company}`}
- {`Number of users: ${global.window.mm_license.Users}`}
- {`License issued: ${issued}`}
- {`Start date of license: ${startsAt}`}
- {`Expiry date of license: ${expiresAt}`}
-
- {'See also '}{'Enterprise Edition Terms of Service'}{' and '}{'Privacy Policy.'}
-
- );
-
- licenseKey = (
-
-
-
-
-
- {'If you migrate servers you may need to remove your license key to install it elsewhere. You can remove the key here, which will revert functionality to that of Team Edition.'}
-
-
- );
- } else {
- // Note: DO NOT LOCALISE THESE STRINGS. Legally we can not since the license is in English.
- edition = (
-
- {'Mattermost Enterprise Edition. Unlock enterprise features in this software through the purchase of a subscription from '}
-
- {'https://mattermost.com/'}
-
-
- );
-
- licenseType = 'This software is offered under a commercial license.\n\nSee ENTERPRISE-EDITION-LICENSE.txt in your root install directory for details. See NOTICE.txt for information about open source software used in this system.';
-
- let fileName;
- if (this.state.fileName) {
- fileName = this.state.fileName;
- } else {
- fileName = (
-
- );
- }
-
- licenseKey = (
-
-
- );
- }
-}
diff --git a/webapp/components/admin_console/request_button/request_button.jsx b/webapp/components/admin_console/request_button/request_button.jsx
deleted file mode 100644
index e78d0443ddb..00000000000
--- a/webapp/components/admin_console/request_button/request_button.jsx
+++ /dev/null
@@ -1,262 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-
-import {FormattedMessage} from 'react-intl';
-import PropTypes from 'prop-types';
-
-import * as Utils from 'utils/utils.jsx';
-
-/**
- * A button which, when clicked, performs an action and displays
- * its outcome as either success, or failure accompanied by the
- * `message` property of the `err` object.
- */
-export default class RequestButton extends React.Component {
- static propTypes = {
-
- /**
- * The action to be called to carry out the request.
- */
- requestAction: PropTypes.func.isRequired,
-
- /**
- * A component that displays help text for the request button.
- *
- * Typically, this will be a .
- */
- helpText: PropTypes.element.isRequired,
-
- /**
- * A component to be displayed on the button.
- *
- * Typically, this will be a
- */
- buttonText: PropTypes.element.isRequired,
-
- /**
- * The element to display as the field label.
- *
- * Typically, this will be a
- */
- label: PropTypes.element,
-
- /**
- * True if the button form control should be disabled, otherwise false.
- */
- disabled: PropTypes.bool,
-
- /**
- * True if the config needs to be saved before running the request, otherwise false.
- *
- * If set to true, the action provided in the `saveConfigAction` property will be
- * called before the action provided in the `requestAction` property, with the later
- * only being called if the former is successful.
- */
- saveNeeded: PropTypes.bool,
-
- /**
- * Action to be called to save the config, if saveNeeded is set to true.
- */
- saveConfigAction: PropTypes.func,
-
- /**
- * True if the success message should be show when the request completes successfully,
- * otherwise false.
- */
- showSuccessMessage: PropTypes.bool,
-
- /**
- * The message to show when the request completes successfully.
- */
- successMessage: PropTypes.shape({
-
- /**
- * The i18n string ID for the success message.
- */
- id: PropTypes.string.isRequired,
-
- /**
- * The i18n default value for the success message.
- */
- defaultMessage: PropTypes.string.isRequired
- }),
-
- /**
- * The message to show when the request returns an error.
- */
- errorMessage: PropTypes.shape({
-
- /**
- * The i18n string ID for the error message.
- */
- id: PropTypes.string.isRequired,
-
- /**
- * The i18n default value for the error message.
- *
- * The placeholder {error} may be used to include the error message returned
- * by the server in response to the failed request.
- */
- defaultMessage: PropTypes.string.isRequired
- }),
-
- /**
- * True if the {error} placeholder for the `errorMessage` property should include both
- * the `message` and `detailed_error` properties of the error returned from the server,
- * otherwise false to include only the `message` property.
- */
- includeDetailedError: PropTypes.bool,
-
- /**
- * An element to display adjacent to the request button.
- */
- alternativeActionElement: PropTypes.element
- }
-
- static defaultProps = {
- disabled: false,
- saveNeeded: false,
- showSuccessMessage: true,
- includeDetailedError: false,
- successMessage: {
- id: 'admin.requestButton.requestSuccess',
- defaultMessage: 'Test Successful'
- },
- errorMessage: {
- id: 'admin.requestButton.requestFailure',
- defaultMessage: 'Test Failure: {error}'
- }
- }
-
- constructor(props) {
- super(props);
-
- this.handleRequest = this.handleRequest.bind(this);
-
- this.state = {
- busy: false,
- fail: null,
- success: false
- };
- }
-
- handleRequest(e) {
- e.preventDefault();
-
- this.setState({
- busy: true,
- fail: null,
- success: false
- });
-
- const doRequest = () => { //eslint-disable-line func-style
- this.props.requestAction(
- () => {
- this.setState({
- busy: false,
- success: true
- });
- },
- (err) => {
- let errMsg = err.message;
- if (this.props.includeDetailedError) {
- errMsg += ' - ' + err.detailed_error;
- }
-
- this.setState({
- busy: false,
- fail: errMsg
- });
- }
- );
- };
-
- if (this.props.saveNeeded) {
- this.props.saveConfigAction(doRequest);
- } else {
- doRequest();
- }
- }
-
- render() {
- let message = null;
- if (this.state.fail) {
- message = (
-
- );
- }
-}
-
-NotLoggedIn.defaultProps = {
-};
-
-NotLoggedIn.propTypes = {
- children: PropTypes.object
-};
diff --git a/webapp/components/help/components/attaching.jsx b/webapp/components/help/components/attaching.jsx
deleted file mode 100644
index 3013d744d7d..00000000000
--- a/webapp/components/help/components/attaching.jsx
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {localizeMessage} from 'utils/utils.jsx';
-import {formatText} from 'utils/text_formatting.jsx';
-import {FormattedMessage} from 'react-intl';
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-export default function HelpAttaching() {
- const message = [];
- message.push(localizeMessage('help.attaching.title', '# Attaching Files\n_____'));
- message.push(localizeMessage('help.attaching.methods', '## Attachment Methods\nAttach a file by drag and drop or by clicking the attachment icon in the message input box.'));
- message.push(localizeMessage('help.attaching.dragdrop', '#### Drag and Drop\nUpload a file or selection of files by dragging the files from your computer into the RHS or center pane. Dragging and dropping attaches the files to the message input box, then you can optionally type a message and press **ENTER** to post.'));
- message.push(localizeMessage('help.attaching.icon', '#### Attachment Icon\nAlternatively, upload files by clicking the grey paperclip icon inside the message input box. This opens up your system file viewer where you can navigate to the desired files and then click **Open** to upload the files to the message input box. Optionally type a message and then press **ENTER** to post.'));
- message.push(localizeMessage('help.attaching.pasting', '#### Pasting Images\nOn Chrome and Edge browsers, it is also possible to upload files by pasting them from the clipboard. This is not yet supported on other browsers.'));
- message.push(localizeMessage('help.attaching.previewer', '## File Previewer\nMattermost has a built in file previewer that is used to view media, download files and share public links. Click the thumbnail of an attached file to open it in the file previewer.'));
- message.push('\n');
- message.push(localizeMessage('help.attaching.publicLinks', '#### Sharing Public Links\nPublic links allow you to share file attachments with people outside your Mattermost team. Open the file previewer by clicking on the thumbnail of an attachment, then click **Get Public Link**. This opens a dialog box with a link to copy. When the link is shared and opened by another user, the file will automatically download.'));
- message.push(localizeMessage('help.attaching.publicLinks2', 'If **Get Public Link** is not visible in the file previewer and you prefer the feature enabled, you can request that your System Admin enable the feature from the System Console under **Security** > **Public Links**.'));
- message.push('\n');
- message.push(localizeMessage('help.attaching.downloading', '#### Downloading Files\nDownload an attached file by clicking the download icon next to the file thumbnail or by opening the file previewer and clicking **Download**.'));
- message.push(localizeMessage('help.attaching.supported', '#### Supported Media Types\nIf you are trying to preview a media type that is not supported, the file previewer will open a standard media attachment icon. Supported media formats depend heavily on your browser and operating system, but the following formats are supported by Mattermost on most browsers:'));
- message.push(localizeMessage('help.attaching.supportedList', '- Images: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Documents: PDF'));
- message.push(localizeMessage('help.attaching.notSupported', 'Document preview (Word, Excel, PPT) is not yet supported.'));
- message.push(localizeMessage('help.attaching.limitations', '## File Size Limitations\nMattermost supports a maximum of five attached files per post, each with a maximum file size of 50Mb.'));
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/webapp/components/help/components/commands.jsx b/webapp/components/help/components/commands.jsx
deleted file mode 100644
index 41dc736b5be..00000000000
--- a/webapp/components/help/components/commands.jsx
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {localizeMessage} from 'utils/utils.jsx';
-import {formatText} from 'utils/text_formatting.jsx';
-import {FormattedMessage} from 'react-intl';
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-export default function HelpCommands() {
- const message = [];
- message.push(localizeMessage('help.commands.title', '# Executing Commands\n___'));
- message.push(localizeMessage('help.commands.intro', 'Slash commands perform operations in Mattermost by typing into the text input box. Enter a `/` followed by a command and some arguments to perform actions.\n\nBuilt-in slash commands come with all Mattermost installations and custom slash commands are configurable to interact with external applications. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).'));
- message.push(localizeMessage('help.commands.builtin', '## Built-in Commands\nThe following slash commands are available on all Mattermost installations:'));
- message.push('');
- message.push(localizeMessage('help.commands.builtin2', 'Begin by typing `/` and a list of slash command options appears above the text input box. The autocomplete suggestions help by providing a format example in black text and a short description of the slash command in grey text.'));
- message.push('');
- message.push(localizeMessage('help.commands.custom', '## Custom Commands\nCustom slash commands integrate with external applications. For example, a team might configure a custom slash command to check internal health records with `/patient joe smith` or check the weekly weather forecast in a city with `/weather toronto week`. Check with your System Admin or open the autocomplete list by typing `/` to determine if your team configured any custom slash commands.'));
- message.push(localizeMessage('help.commands.custom2', 'Custom slash commands are disabled by default and can be enabled by the System Admin in the **System Console** > **Integrations** > **Webhooks and Commands**. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).'));
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/webapp/components/help/components/composing.jsx b/webapp/components/help/components/composing.jsx
deleted file mode 100644
index 41b620d262d..00000000000
--- a/webapp/components/help/components/composing.jsx
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {localizeMessage} from 'utils/utils.jsx';
-import {formatText} from 'utils/text_formatting.jsx';
-import {FormattedMessage} from 'react-intl';
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-export default function HelpComposing() {
- const message = [];
- message.push(localizeMessage('help.composing.title', '# Sending Messages\n_____'));
- message.push(localizeMessage('help.composing.types', '## Message Types\nReply to posts to keep conversations organized in threads.'));
- message.push(localizeMessage('help.composing.posts', '#### Posts\nPosts can be considered parent messages. They are the messages that often start a thread of replies. Posts are composed and sent from the text input box at the bottom of the center pane.'));
- message.push(localizeMessage('help.composing.replies', '#### Replies\nReply to a message by clicking the reply icon next to any message text. This action opens the right-hand-side (RHS) where you can see the message thread, then compose and send your reply. Replies are indented slightly in the center pane to indicate that they are child messages of a parent post.\n\nWhen composing a reply in the right-hand side, click the expand/collapse icon with two arrows at the top of the sidebar to make things easier to read.'));
- message.push(localizeMessage('help.composing.posting', '## Posting a Message\nWrite a message by typing into the text input box, then press ENTER to send it. Use SHIFT+ENTER to create a new line without sending a message. To send messages by pressing CTRL+ENTER go to **Main Menu > Account Settings > Send messages on CTRL+ENTER**.'));
- message.push(localizeMessage('help.composing.editing', '## Editing a Message\nEdit a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Edit**. After making modifications to the message text, press **ENTER** to save the modifications. Message edits do not trigger new @mention notifications, desktop notifications or notification sounds.'));
- message.push(localizeMessage('help.composing.deleting', '## Deleting a message\nDelete a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Delete**. System and Team Admins can delete any message on their system or team.'));
- message.push(localizeMessage('help.composing.linking', '## Linking to a message\nThe **Permalink** feature creates a link to any message. Sharing this link with other users in the channel lets them view the linked message in the Message Archives. Users who are not a member of the channel where the message was posted cannot view the permalink. Get the permalink to any message by clicking the **[...]** icon next to the message text > **Permalink** > **Copy Link**.'));
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/webapp/components/help/components/formatting.jsx b/webapp/components/help/components/formatting.jsx
deleted file mode 100644
index 312df252a2b..00000000000
--- a/webapp/components/help/components/formatting.jsx
+++ /dev/null
@@ -1,133 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {localizeMessage} from 'utils/utils.jsx';
-import {formatText} from 'utils/text_formatting.jsx';
-import {FormattedMessage} from 'react-intl';
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-export default function HelpFormatting() {
- const message = [];
- message.push(localizeMessage('help.formatting.title', '# Formatting Text\n_____'));
- message.push(localizeMessage('help.formatting.intro', 'Markdown makes it easy to format messages. Type a message as you normally would, and use these rules to render it with special formatting.'));
- message.push(localizeMessage('help.formatting.style', '## Text Style\n\nYou can use either `_` or `*` around a word to make it italic. Use two to make it bold.\n\n* `_italics_` renders as _italics_\n* `**bold**` renders as **bold**\n* `**_bold-italic_**` renders as **_bold-italics_**\n* `~~strikethrough~~` renders as ~~strikethrough~~'));
- message.push(localizeMessage('help.formatting.code', '## Code Block\n\nCreate a code block by indenting each line by four spaces, or by placing ``` on the line above and below your code.'));
- message.push(localizeMessage('help.formatting.example', 'Example:') + '\n\n');
- message.push(' ```\n ' + localizeMessage('help.formatting.codeBlock', 'code block') + '\n ```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push('```\n' + localizeMessage('help.formatting.codeBlock', 'code block') + '\n```');
- message.push(localizeMessage('help.formatting.syntax', '### Syntax Highlighting\n\nTo add syntax highlighting, type the language to be highlighted after the ``` at the beginning of the code block. Mattermost also offers four different code themes (GitHub, Solarized Dark, Solarized Light, Monokai) that can be changed in **Account Settings** > **Display** > **Theme** > **Custom Theme** > **Center Channel Styles**'));
- message.push(localizeMessage('help.formatting.supportedSyntax', 'Supported languages are:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`'));
- message.push(localizeMessage('help.formatting.example', 'Example:') + '\n\n');
- message.push(' ```go\n' + localizeMessage('help.formatting.syntaxEx', ' package main\n import "fmt"\n func main() {\n fmt.Println("Hello, 世界")\n }') + '\n ```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.githubTheme', '**GitHub Theme**'));
- message.push('');
- message.push(localizeMessage('help.formatting.solirizedDarkTheme', '**Solarized Dark Theme**'));
- message.push('');
- message.push(localizeMessage('help.formatting.solirizedLightTheme', '**Solarized Light Theme**'));
- message.push('');
- message.push(localizeMessage('help.formatting.monokaiTheme', '**Monokai Theme**'));
- message.push('');
- message.push(localizeMessage('help.formatting.inline', '## In-line Code\n\nCreate in-line monospaced font by surrounding it with backticks.'));
- message.push('```\n`monospace`\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:') + ' `monospace`');
- message.push(localizeMessage('help.formatting.links', '## Links\n\nCreate labeled links by putting the desired text in square brackets and the associated link in normal brackets.'));
- message.push('`' + localizeMessage('help.formatting.linkEx', '[Check out Mattermost!](https://about.mattermost.com/)') + '`');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:') + ' ' + localizeMessage('help.formatting.linkEx', '[Check out Mattermost!](https://about.mattermost.com/)'));
- message.push(localizeMessage('help.formatting.images', '## In-line Images\n\nCreate in-line images using an `!` followed by the alt text in square brackets and the link in normal brackets. Add hover text by placing it in quotes after the link.'));
- message.push('```\n' + localizeMessage('help.formatting.imagesExample', '\n\nand\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.imagesExample', '\n\nand\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)'));
- message.push(localizeMessage('help.formatting.emojis', '## Emojis\n\nOpen the emoji autocomplete by typing `:`. A full list of emojis can be found [here](http://www.emoji-cheat-sheet.com/). It is also possible to create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html) if the emoji you want to use doesn\'t exist.'));
- message.push('```\n' + localizeMessage('help.formatting.emojiExample', ':smile: :+1: :sheep:') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.emojiExample', ':smile: :+1: :sheep:'));
- message.push(localizeMessage('help.formatting.lines', '## Lines\n\nCreate a line by using three `*`, `_`, or `-`.'));
- message.push('`***` ' + localizeMessage('help.formatting.renders', 'Renders as:') + '\n***');
- message.push(localizeMessage('help.formatting.quotes', '## Block quotes\n\nCreate block quotes using `>`.'));
- message.push(localizeMessage('help.formatting.quotesExample', '`> block quotes` renders as:'));
- message.push(localizeMessage('help.formatting.quotesRender', '> block quotes'));
- message.push(localizeMessage('help.formatting.lists', '## Lists\n\nCreate a list by using `*` or `-` as bullets. Indent a bullet point by adding two spaces in front of it.'));
- message.push('```\n' + localizeMessage('help.formatting.listExample', '* list item one\n* list item two\n * item two sub-point') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.listExample', '* list item one\n* list item two\n * item two sub-point'));
- message.push(localizeMessage('help.formatting.ordered', 'Make it an ordered list by using numbers instead:'));
- message.push('```\n' + localizeMessage('help.formatting.orderedExample', '1. Item one\n2. Item two') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.orderedExample', '1. Item one\n2. Item two'));
- message.push(localizeMessage('help.formatting.checklist', 'Make a task list by including square brackets:'));
- message.push('```\n' + localizeMessage('help.formatting.checklistExample', '- [ ] Item one\n- [ ] Item two\n- [x] Completed item') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.checklistExample', '- [ ] Item one\n- [ ] Item two\n- [x] Completed item'));
- message.push(localizeMessage('help.formatting.tables', '## Tables\n\nCreate a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.'));
- message.push('```\n' + localizeMessage('help.formatting.tableExample', '| Left-Aligned | Center Aligned | Right Aligned |\n| :------------ |:---------------:| -----:|\n| Left column 1 | this text | $100 |\n| Left column 2 | is | $10 |\n| Left column 3 | centered | $1 |') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.tableExample', '| Left-Aligned | Center Aligned | Right Aligned |\n| :------------ |:---------------:| -----:|\n| Left column 1 | this text | $100 |\n| Left column 2 | is | $10 |\n| Left column 3 | centered | $1 |'));
- message.push(localizeMessage('help.formatting.headings', '## Headings\n\nMake a heading by typing # and a space before your title. For smaller headings, use more #’s.'));
- message.push('```\n' + localizeMessage('help.formatting.headingsExample', '## Large Heading\n### Smaller Heading\n#### Even Smaller Heading') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.headingsExample', '## Large Heading\n### Smaller Heading\n#### Even Smaller Heading'));
- message.push(localizeMessage('help.formatting.headings2', 'Alternatively, you can underline the text using `===` or `---` to create headings.'));
- message.push('```\n' + localizeMessage('help.formatting.headings2Example', 'Large Heading\n-------------') + '\n```');
- message.push(localizeMessage('help.formatting.renders', 'Renders as:'));
- message.push(localizeMessage('help.formatting.headings2Example', 'Large Heading\n-------------'));
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/webapp/components/help/components/mentioning.jsx b/webapp/components/help/components/mentioning.jsx
deleted file mode 100644
index fa3bf2d7d31..00000000000
--- a/webapp/components/help/components/mentioning.jsx
+++ /dev/null
@@ -1,79 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {localizeMessage} from 'utils/utils.jsx';
-import {formatText} from 'utils/text_formatting.jsx';
-import {FormattedMessage} from 'react-intl';
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-export default function HelpMentioning() {
- const message = [];
- message.push(localizeMessage('help.mentioning.title', '# Mentioning Teammates\n_____'));
- message.push(localizeMessage('help.mentioning.mentions', '## @Mentions\nUse @mentions to get the attention of specific team members.'));
- message.push(localizeMessage('help.mentioning.username', '#### @Username\nYou can mention a teammate by using the `@` symbol plus their username to send them a mention notification.\n\nType `@` to bring up a list of team members who can be mentioned. To filter the list, type the first few letters of any username, first name, last name, or nickname. The **Up** and **Down** arrow keys can then be used to scroll through entries in the list, and pressing **ENTER** will select which user to mention. Once selected, the username will automatically replace the full name or nickname.\nThe following example sends a special mention notification to **alice** that alerts her of the channel and message where she has been mentioned. If **alice** is away from Mattermost and has [email notifications](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) turned on, then she will receive an email alert of her mention along with the message text.'));
- message.push('```\n' + localizeMessage('help.mentioning.usernameExample', '@alice how did your interview go with the new candidate?') + '\n```');
- message.push('\n\n ');
- message.push(localizeMessage('help.mentioning.usernameCont', 'If the user you mentioned does not belong to the channel, a System Message will be posted to let you know. This is a temporary message only seen by the person who triggered it. To add the mentioned user to the channel, go to the dropdown menu beside the channel name and select **Add Members**.'));
- message.push(localizeMessage('help.mentioning.channel', '#### @Channel\nYou can mention an entire channel by typing `@channel`. All members of the channel will receive a mention notification that behaves the same way as if the members had been mentioned personally.'));
- message.push('```\n' + localizeMessage('help.mentioning.channelExample', '@channel great work on interviews this week. I think we found some excellent potential candidates!') + '```\n');
- message.push(localizeMessage('help.mentioning.triggers', '## Words That Trigger Mentions\nIn addition to being notified by @username and @channel, you can customize words that trigger mention notifications in **Account Settings** > **Notifications** > **Words that trigger mentions**. By default, you will receive mention notifications on your first name, and you can add more words by typing them into the input box separated by commas. This is useful if you want to be notified of all posts on certain topics, for example, "interviewing" or "marketing".'));
- message.push(localizeMessage('help.mentioning.recent', '## Recent Mentions\nClick `@` next to the search box to query for your most recent @mentions and words that trigger mentions. Click **Jump** next to a search result in the RHS to jump the center pane to the channel and location of the message with the mention.'));
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/webapp/components/help/components/messaging.jsx b/webapp/components/help/components/messaging.jsx
deleted file mode 100644
index a36e8e7728f..00000000000
--- a/webapp/components/help/components/messaging.jsx
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {localizeMessage} from 'utils/utils.jsx';
-import {formatText} from 'utils/text_formatting.jsx';
-import {FormattedMessage} from 'react-intl';
-import {Link} from 'react-router/es6';
-
-import React from 'react';
-
-export default function HelpMessaging() {
- const message = [];
- message.push(localizeMessage('help.messaging.title', '# Messaging Basics\n_____'));
- message.push(localizeMessage('help.messaging.write', '**Write messages** using the text input box at the bottom of Mattermost. Press ENTER to send a message. Use SHIFT+ENTER to create a new line without sending a message.'));
- message.push(localizeMessage('help.messaging.reply', '**Reply to messages** by clicking the reply arrow next to the message text.'));
- message.push('');
- message.push(localizeMessage('help.messaging.notify', '**Notify teammates** when they are needed by typing `@username`.'));
- message.push(localizeMessage('help.messaging.format', '**Format your messages** using Markdown that supports text styling, headings, links, emoticons, code blocks, block quotes, tables, lists and in-line images.'));
- message.push('');
- message.push(localizeMessage('help.messaging.emoji', '**Quickly add emoji** by typing ":", which will open an emoji autocomplete. If the existing emoji don\'t cover what you want to express, you can also create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html).'));
- message.push(localizeMessage('help.messaging.attach', '**Attach files** by dragging and dropping into Mattermost or clicking the attachment icon in the text input box.'));
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/webapp/components/help/help_controller.jsx b/webapp/components/help/help_controller.jsx
deleted file mode 100644
index b58a93320d3..00000000000
--- a/webapp/components/help/help_controller.jsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-import ReactDOM from 'react-dom';
-
-export default class HelpController extends React.Component {
- static get propTypes() {
- return {
- children: PropTypes.node.isRequired
- };
- }
-
- componentWillUpdate() {
- ReactDOM.findDOMNode(this).scrollIntoView();
- }
-
- render() {
- return (
-
-
- {this.props.children}
-
-
- );
- }
-}
diff --git a/webapp/components/integrations/components/abstract_incoming_webhook.jsx b/webapp/components/integrations/components/abstract_incoming_webhook.jsx
deleted file mode 100644
index 1253842a783..00000000000
--- a/webapp/components/integrations/components/abstract_incoming_webhook.jsx
+++ /dev/null
@@ -1,253 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import BackstageHeader from 'components/backstage/components/backstage_header.jsx';
-import ChannelSelect from 'components/channel_select.jsx';
-import {FormattedMessage} from 'react-intl';
-import FormError from 'components/form_error.jsx';
-import SpinnerButton from 'components/spinner_button.jsx';
-import {Link} from 'react-router/es6';
-
-export default class AbstractIncomingWebhook extends React.Component {
- static propTypes = {
-
- /**
- * The current team
- */
- team: PropTypes.object.isRequired,
-
- /**
- * The header text to render, has id and defaultMessage
- */
- header: PropTypes.object.isRequired,
-
- /**
- * The footer text to render, has id and defaultMessage
- */
- footer: PropTypes.object.isRequired,
-
- /**
- * The server error text after a failed action
- */
- serverError: PropTypes.string.isRequired,
-
- /**
- * The hook used to set the initial state
- */
- initialHook: PropTypes.object,
-
- /**
- * The async function to run when the action button is pressed
- */
- action: PropTypes.func.isRequired
- }
-
- constructor(props) {
- super(props);
-
- this.state = this.getStateFromHook(this.props.initialHook || {});
- }
-
- getStateFromHook = (hook) => {
- return {
- displayName: hook.display_name || '',
- description: hook.description || '',
- channelId: hook.channel_id || '',
- saving: false,
- serverError: '',
- clientError: null
- };
- }
-
- handleSubmit = (e) => {
- e.preventDefault();
-
- if (this.state.saving) {
- return;
- }
-
- this.setState({
- saving: true,
- serverError: '',
- clientError: ''
- });
-
- if (!this.state.channelId) {
- this.setState({
- saving: false,
- clientError: (
-
- )
- });
-
- return;
- }
-
- const hook = {
- channel_id: this.state.channelId,
- display_name: this.state.displayName,
- description: this.state.description
- };
-
- this.props.action(hook).then(() => this.setState({saving: false}));
- }
-
- updateDisplayName = (e) => {
- this.setState({
- displayName: e.target.value
- });
- }
-
- updateDescription = (e) => {
- this.setState({
- description: e.target.value
- });
- }
-
- updateChannelId = (e) => {
- this.setState({
- channelId: e.target.value
- });
- }
-
- render() {
- var headerToRender = this.props.header;
- var footerToRender = this.props.footer;
-
- return (
-
-
-
-
-
-
-
-
-
-
-
- );
- }
-}
diff --git a/webapp/components/integrations/components/abstract_outgoing_webhook.jsx b/webapp/components/integrations/components/abstract_outgoing_webhook.jsx
deleted file mode 100644
index 397423395a8..00000000000
--- a/webapp/components/integrations/components/abstract_outgoing_webhook.jsx
+++ /dev/null
@@ -1,483 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import TeamStore from 'stores/team_store.jsx';
-
-import {localizeMessage} from 'utils/utils.jsx';
-
-import BackstageHeader from 'components/backstage/components/backstage_header.jsx';
-import ChannelSelect from 'components/channel_select.jsx';
-import {FormattedMessage} from 'react-intl';
-import FormError from 'components/form_error.jsx';
-import {Link} from 'react-router/es6';
-import SpinnerButton from 'components/spinner_button.jsx';
-
-export default class AbstractOutgoingWebhook extends React.Component {
- static propTypes = {
-
- /**
- * The current team
- */
- team: PropTypes.object.isRequired,
-
- /**
- * The header text to render, has id and defaultMessage
- */
- header: PropTypes.object.isRequired,
-
- /**
- * The footer text to render, has id and defaultMessage
- */
- footer: PropTypes.object.isRequired,
-
- /**
- * Any extra component/node to render
- */
- renderExtra: PropTypes.node.isRequired,
-
- /**
- * The server error text after a failed action
- */
- serverError: PropTypes.string.isRequired,
-
- /**
- * The hook used to set the initial state
- */
- initialHook: PropTypes.object,
-
- /**
- * The async function to run when the action button is pressed
- */
- action: PropTypes.func.isRequired
- }
-
- constructor(props) {
- super(props);
-
- this.state = this.getStateFromHook(this.props.initialHook || {});
- }
-
- getStateFromHook = (hook) => {
- let triggerWords = '';
- if (hook.trigger_words) {
- let i = 0;
- for (i = 0; i < hook.trigger_words.length; i++) {
- triggerWords += hook.trigger_words[i] + '\n';
- }
- }
-
- let callbackUrls = '';
- if (hook.callback_urls) {
- let i = 0;
- for (i = 0; i < hook.callback_urls.length; i++) {
- callbackUrls += hook.callback_urls[i] + '\n';
- }
- }
-
- return {
- displayName: hook.display_name || '',
- description: hook.description || '',
- contentType: hook.content_type || 'application/x-www-form-urlencoded',
- channelId: hook.channel_id || '',
- triggerWords,
- triggerWhen: hook.trigger_when || 0,
- callbackUrls,
- saving: false,
- clientError: null
- };
- }
-
- handleSubmit = (e) => {
- e.preventDefault();
-
- if (this.state.saving) {
- return;
- }
-
- this.setState({
- saving: true,
- clientError: ''
- });
-
- const triggerWords = [];
- if (this.state.triggerWords) {
- for (let triggerWord of this.state.triggerWords.split('\n')) {
- triggerWord = triggerWord.trim();
-
- if (triggerWord.length > 0) {
- triggerWords.push(triggerWord);
- }
- }
- }
-
- if (!this.state.channelId && triggerWords.length === 0) {
- this.setState({
- saving: false,
- clientError: (
-
- )
- });
-
- return;
- }
-
- const callbackUrls = [];
- for (let callbackUrl of this.state.callbackUrls.split('\n')) {
- callbackUrl = callbackUrl.trim();
-
- if (callbackUrl.length > 0) {
- callbackUrls.push(callbackUrl);
- }
- }
-
- if (callbackUrls.length === 0) {
- this.setState({
- saving: false,
- clientError: (
-
- )
- });
-
- return;
- }
-
- const hook = {
- team_id: TeamStore.getCurrentId(),
- channel_id: this.state.channelId,
- trigger_words: triggerWords,
- trigger_when: parseInt(this.state.triggerWhen, 10),
- callback_urls: callbackUrls,
- display_name: this.state.displayName,
- content_type: this.state.contentType,
- description: this.state.description
- };
-
- this.props.action(hook).then(() => this.setState({saving: false}));
- }
-
- updateDisplayName = (e) => {
- this.setState({
- displayName: e.target.value
- });
- }
-
- updateDescription = (e) => {
- this.setState({
- description: e.target.value
- });
- }
-
- updateContentType = (e) => {
- this.setState({
- contentType: e.target.value
- });
- }
-
- updateChannelId = (e) => {
- this.setState({
- channelId: e.target.value
- });
- }
-
- updateTriggerWords = (e) => {
- this.setState({
- triggerWords: e.target.value
- });
- }
-
- updateTriggerWhen = (e) => {
- this.setState({
- triggerWhen: e.target.value
- });
- }
-
- updateCallbackUrls = (e) => {
- this.setState({
- callbackUrls: e.target.value
- });
- }
-
- render() {
- const contentTypeOption1 = 'application/x-www-form-urlencoded';
- const contentTypeOption2 = 'application/json';
-
- var headerToRender = this.props.header;
- var footerToRender = this.props.footer;
- var renderExtra = this.props.renderExtra;
-
- return (
-
- );
- }
-
- let channel = ChannelStore.getByName(this.props.params.channel);
- if (channel == null) {
- // the permalink view is not really tied to a particular channel but still needs it
- const postId = PostStore.getFocusedPostId();
- const post = getPost(store.getState(), postId);
-
- // the post take some time before being available on page load
- if (post != null) {
- channel = ChannelStore.get(post.channel_id);
- }
- }
-
- return (
-
-
-
-
-
-
-
- {content}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
- }
-}
diff --git a/webapp/components/new_channel_flow.jsx b/webapp/components/new_channel_flow.jsx
deleted file mode 100644
index 1a5c77132e1..00000000000
--- a/webapp/components/new_channel_flow.jsx
+++ /dev/null
@@ -1,247 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import * as Utils from 'utils/utils.jsx';
-import TeamStore from 'stores/team_store.jsx';
-import {cleanUpUrlable} from 'utils/url.jsx';
-
-import NewChannelModal from 'components/new_channel_modal';
-import ChangeURLModal from './change_url_modal.jsx';
-
-import {FormattedMessage} from 'react-intl';
-import {createChannel} from 'actions/channel_actions.jsx';
-import {browserHistory} from 'react-router/es6';
-
-const SHOW_NEW_CHANNEL = 1;
-const SHOW_EDIT_URL = 2;
-const SHOW_EDIT_URL_THEN_COMPLETE = 3;
-
-import PropTypes from 'prop-types';
-
-import React from 'react';
-
-export default class NewChannelFlow extends React.Component {
- constructor(props) {
- super(props);
-
- this.doSubmit = this.doSubmit.bind(this);
- this.onModalExited = this.onModalExited.bind(this);
- this.typeSwitched = this.typeSwitched.bind(this);
- this.urlChangeRequested = this.urlChangeRequested.bind(this);
- this.urlChangeSubmitted = this.urlChangeSubmitted.bind(this);
- this.urlChangeDismissed = this.urlChangeDismissed.bind(this);
- this.channelDataChanged = this.channelDataChanged.bind(this);
-
- this.state = {
- serverError: '',
- channelType: 'O',
- flowState: SHOW_NEW_CHANNEL,
- channelDisplayName: '',
- channelName: '',
- channelPurpose: '',
- channelHeader: '',
- nameModified: false
- };
- }
- componentWillReceiveProps(nextProps) {
- // If we are being shown, grab channel type from props and clear
- if (nextProps.show === true && this.props.show === false) {
- this.setState({
- serverError: '',
- channelType: nextProps.channelType,
- flowState: SHOW_NEW_CHANNEL,
- channelDisplayName: '',
- channelName: '',
- channelPurpose: '',
- channelHeader: '',
- nameModified: false
- });
- }
- }
- doSubmit() {
- if (!this.state.channelDisplayName) {
- this.setState({serverError: Utils.localizeMessage('channel_flow.invalidName', 'Invalid Channel Name')});
- return;
- }
-
- if (this.state.channelName < 2) {
- this.setState({flowState: SHOW_EDIT_URL_THEN_COMPLETE});
- return;
- }
-
- const channel = {
- team_id: TeamStore.getCurrentId(),
- name: this.state.channelName,
- display_name: this.state.channelDisplayName,
- purpose: this.state.channelPurpose,
- header: this.state.channelHeader,
- type: this.state.channelType
- };
-
- createChannel(
- channel,
- (data) => {
- this.doOnModalExited = () => {
- browserHistory.push(TeamStore.getCurrentTeamRelativeUrl() + '/channels/' + data.name);
- };
-
- this.props.onModalDismissed();
- },
- (err) => {
- if (err.id === 'model.channel.is_valid.2_or_more.app_error') {
- this.setState({
- flowState: SHOW_EDIT_URL_THEN_COMPLETE,
- serverError: (
-
- )
- });
- return;
- }
- if (err.id === 'store.sql_channel.update.exists.app_error') {
- this.setState({serverError: Utils.localizeMessage('channel_flow.alreadyExist', 'A channel with that URL already exists')});
- return;
- }
- this.setState({serverError: err.message});
- }
- );
- }
- onModalExited() {
- if (this.doOnModalExited) {
- this.doOnModalExited();
- }
- }
- typeSwitched() {
- if (this.state.channelType === 'P') {
- this.setState({channelType: 'O'});
- } else {
- this.setState({channelType: 'P'});
- }
- }
- urlChangeRequested() {
- this.setState({flowState: SHOW_EDIT_URL});
- }
- urlChangeSubmitted(newURL) {
- if (this.state.flowState === SHOW_EDIT_URL_THEN_COMPLETE) {
- this.setState({channelName: newURL, nameModified: true}, this.doSubmit);
- } else {
- this.setState({flowState: SHOW_NEW_CHANNEL, serverError: null, channelName: newURL, nameModified: true});
- }
- }
- urlChangeDismissed() {
- this.setState({flowState: SHOW_NEW_CHANNEL});
- }
- channelDataChanged(data) {
- this.setState({
- channelDisplayName: data.displayName,
- channelPurpose: data.purpose,
- channelHeader: data.header
- });
- if (!this.state.nameModified) {
- this.setState({channelName: cleanUpUrlable(data.displayName.trim())});
- }
- }
- render() {
- const channelData = {
- name: this.state.channelName,
- displayName: this.state.channelDisplayName,
- purpose: this.state.channelPurpose
- };
-
- let showChannelModal = false;
- let showGroupModal = false;
- let showChangeURLModal = false;
-
- let changeURLTitle = '';
- let changeURLSubmitButtonText = '';
-
- // Only listen to flow state if we are being shown
- if (this.props.show) {
- switch (this.state.flowState) {
- case SHOW_NEW_CHANNEL:
- if (this.state.channelType === 'O') {
- showChannelModal = true;
- } else {
- showGroupModal = true;
- }
- break;
- case SHOW_EDIT_URL:
- showChangeURLModal = true;
- changeURLTitle = (
-
- );
- changeURLSubmitButtonText = changeURLTitle;
- break;
- case SHOW_EDIT_URL_THEN_COMPLETE:
- showChangeURLModal = true;
- changeURLTitle = (
-
- );
- changeURLSubmitButtonText = (
-
- );
- break;
- }
- }
- return (
-
-
-
-
-
- );
- }
-}
-
-NewChannelFlow.defaultProps = {
- show: false,
- channelType: 'O'
-};
-
-NewChannelFlow.propTypes = {
- show: PropTypes.bool.isRequired,
- channelType: PropTypes.string.isRequired,
- onModalDismissed: PropTypes.func.isRequired
-};
diff --git a/webapp/components/new_channel_modal/index.js b/webapp/components/new_channel_modal/index.js
deleted file mode 100644
index 770084fbb43..00000000000
--- a/webapp/components/new_channel_modal/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-import {getBool} from 'mattermost-redux/selectors/entities/preferences';
-import {isCurrentUserSystemAdmin} from 'mattermost-redux/selectors/entities/users';
-import {isCurrentUserCurrentTeamAdmin} from 'mattermost-redux/selectors/entities/teams';
-import {Preferences} from 'mattermost-redux/constants';
-
-import NewChannelModal from './new_channel_modal.jsx';
-
-function mapStateToProps(state, ownProps) {
- return {
- ...ownProps,
- ctrlSend: getBool(state, Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter'),
- isTeamAdmin: isCurrentUserCurrentTeamAdmin(state),
- isSystemAdmin: isCurrentUserSystemAdmin(state)
- };
-}
-
-export default connect(mapStateToProps)(NewChannelModal);
diff --git a/webapp/components/new_channel_modal/new_channel_modal.jsx b/webapp/components/new_channel_modal/new_channel_modal.jsx
deleted file mode 100644
index 721defe08b1..00000000000
--- a/webapp/components/new_channel_modal/new_channel_modal.jsx
+++ /dev/null
@@ -1,395 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import $ from 'jquery';
-import ReactDOM from 'react-dom';
-
-import {getShortenedURL} from 'utils/url.jsx';
-import * as UserAgent from 'utils/user_agent.jsx';
-import * as Utils from 'utils/utils.jsx';
-import * as ChannelUtils from 'utils/channel_utils.jsx';
-import Constants from 'utils/constants.jsx';
-
-import {FormattedMessage} from 'react-intl';
-
-import {Modal} from 'react-bootstrap';
-
-import React from 'react';
-import PropTypes from 'prop-types';
-
-export default class NewChannelModal extends React.PureComponent {
- static propTypes = {
-
- /**
- * Set whether to show the modal or not
- */
- show: PropTypes.bool.isRequired,
-
- /**
- * The type of channel to create, 'O' or 'P'
- */
- channelType: PropTypes.string.isRequired,
-
- /**
- * The data needed to create the channel
- */
- channelData: PropTypes.object.isRequired,
-
- /**
- * Set to force form submission on CTRL/CMD + ENTER instead of ENTER
- */
- ctrlSend: PropTypes.bool,
-
- /**
- * Set to show options available to team admins
- */
- isTeamAdmin: PropTypes.bool,
-
- /**
- * Set to show options available to system admins
- */
- isSystemAdmin: PropTypes.bool,
-
- /**
- * Server error from failed channel creation
- */
- serverError: PropTypes.node,
-
- /**
- * Function used to submit the channel
- */
- onSubmitChannel: PropTypes.func.isRequired,
-
- /**
- * Function to call when modal is dimissed
- */
- onModalDismissed: PropTypes.func.isRequired,
-
- /**
- * Function to call when modal has exited
- */
- onModalExited: PropTypes.func,
-
- /**
- * Function to call to switch channel type
- */
- onTypeSwitched: PropTypes.func.isRequired,
-
- /**
- * Function to call when edit URL button is pressed
- */
- onChangeURLPressed: PropTypes.func.isRequired,
-
- /**
- * Function to call when channel data is modified
- */
- onDataChanged: PropTypes.func.isRequired
- }
-
- constructor(props) {
- super(props);
-
- this.handleSubmit = this.handleSubmit.bind(this);
- this.handleChange = this.handleChange.bind(this);
- this.onEnterKeyDown = this.onEnterKeyDown.bind(this);
-
- this.state = {
- displayNameError: ''
- };
- }
-
- componentWillReceiveProps(nextProps) {
- if (nextProps.show === true && this.props.show === false) {
- this.setState({
- displayNameError: ''
- });
-
- document.addEventListener('keydown', this.onEnterKeyDown);
- } else if (nextProps.show === false && this.props.show === true) {
- document.removeEventListener('keydown', this.onEnterKeyDown);
- }
- }
-
- componentDidMount() {
- // ???
- if (UserAgent.isInternetExplorer() || UserAgent.isEdge()) {
- $('body').addClass('browser--ie');
- }
- }
-
- onEnterKeyDown(e) {
- if (this.props.ctrlSend && e.keyCode === Constants.KeyCodes.ENTER && e.ctrlKey) {
- this.handleSubmit(e);
- } else if (!this.props.ctrlSend && e.keyCode === Constants.KeyCodes.ENTER && !e.shiftKey && !e.altKey) {
- this.handleSubmit(e);
- }
- }
-
- handleSubmit(e) {
- e.preventDefault();
-
- const displayName = ReactDOM.findDOMNode(this.refs.display_name).value.trim();
- if (displayName.length < Constants.MIN_CHANNELNAME_LENGTH) {
- this.setState({displayNameError: true});
- return;
- }
-
- this.props.onSubmitChannel();
- }
-
- handleChange() {
- const newData = {
- displayName: this.refs.display_name.value,
- header: this.refs.channel_header.value,
- purpose: this.refs.channel_purpose.value
- };
- this.props.onDataChanged(newData);
- }
-
- render() {
- var displayNameError = null;
- var serverError = null;
- var displayNameClass = 'form-group';
-
- if (this.state.displayNameError) {
- displayNameError = (
-
- );
-
- const nameExtraInfo = {Utils.localizeMessage('general_tab.teamNameInfo', 'Set the name of the team as it appears on your sign-in screen and at the top of the left-hand sidebar.')};
-
- nameSection = (
-
- );
- } else {
- var describe = this.state.name;
-
- nameSection = (
-
- );
- }
-
- let descriptionSection;
-
- if (this.props.activeSection === 'description') {
- const inputs = [];
-
- let teamDescriptionLabel = (
-
- );
- if (Utils.isMobile()) {
- teamDescriptionLabel = '';
- }
-
- inputs.push(
-
-
-
-
-
-
- );
-
- const descriptionExtraInfo = {Utils.localizeMessage('general_tab.teamDescriptionInfo', 'Team description provides additional information to help users select the right team. Maximum of 50 characters.')};
-
- descriptionSection = (
-
- );
- } else {
- let describemsg = '';
- if (this.state.description) {
- describemsg = this.state.description;
- } else {
- describemsg = (
-
- );
- }
-
- descriptionSection = (
-
- );
- }
-
- return (
-
- );
- }
-}
diff --git a/webapp/components/toggle_modal_button.jsx b/webapp/components/toggle_modal_button.jsx
deleted file mode 100644
index 1e72e13b761..00000000000
--- a/webapp/components/toggle_modal_button.jsx
+++ /dev/null
@@ -1,82 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-
-export default class ModalToggleButton extends React.Component {
- constructor(props) {
- super(props);
-
- this.show = this.show.bind(this);
- this.hide = this.hide.bind(this);
-
- this.state = {
- show: false
- };
- }
-
- show(e) {
- if (e) {
- e.preventDefault();
- }
- this.setState({show: true});
- }
-
- hide() {
- this.setState({show: false});
- }
-
- render() {
- const {children, dialogType, dialogProps, onClick, ...props} = this.props;
-
- // allow callers to provide an onClick which will be called before the modal is shown
- let clickHandler = this.show;
- if (onClick) {
- clickHandler = (e) => {
- onClick();
-
- this.show(e);
- };
- }
-
- let dialog;
- if (this.state.show) {
- // this assumes that all modals will have an onHide event and will show when mounted
- dialog = React.createElement(dialogType, Object.assign({}, dialogProps, {
- onHide: () => {
- this.hide();
-
- if (dialogProps.onHide) {
- dialogProps.onHide();
- }
- }
- }));
- }
-
- // nesting the dialog in the anchor tag looks like it shouldn't work, but it does due to how react-bootstrap
- // renders modals at the top level of the DOM instead of where you specify in the virtual DOM
- return (
-
- {children}
- {dialog}
-
- );
- }
-}
-
-ModalToggleButton.propTypes = {
- children: PropTypes.node.isRequired,
- dialogType: PropTypes.func.isRequired,
- dialogProps: PropTypes.object,
- onClick: PropTypes.func
-};
-
-ModalToggleButton.defaultProps = {
- dialogProps: {}
-};
diff --git a/webapp/components/tutorial/tutorial_intro_screens.jsx b/webapp/components/tutorial/tutorial_intro_screens.jsx
deleted file mode 100644
index 7600d15ddde..00000000000
--- a/webapp/components/tutorial/tutorial_intro_screens.jsx
+++ /dev/null
@@ -1,331 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import UserStore from 'stores/user_store.jsx';
-import TeamStore from 'stores/team_store.jsx';
-import PreferenceStore from 'stores/preference_store.jsx';
-import {savePreference} from 'actions/user_actions.jsx';
-import * as GlobalActions from 'actions/global_actions.jsx';
-import {trackEvent} from 'actions/diagnostics_actions.jsx';
-
-import {Constants, Preferences} from 'utils/constants.jsx';
-
-import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
-import {browserHistory} from 'react-router/es6';
-
-import AppIcons from 'images/appIcons.png';
-
-const NUM_SCREENS = 3;
-
-import PropTypes from 'prop-types';
-
-import React from 'react';
-
-export default class TutorialIntroScreens extends React.Component {
- static get propTypes() {
- return {
- townSquare: PropTypes.object,
- offTopic: PropTypes.object
- };
- }
- constructor(props) {
- super(props);
-
- this.handleNext = this.handleNext.bind(this);
- this.createScreen = this.createScreen.bind(this);
- this.createCircles = this.createCircles.bind(this);
- this.skipTutorial = this.skipTutorial.bind(this);
-
- this.state = {currentScreen: 0};
- }
- handleNext() {
- switch (this.state.currentScreen) {
- case 0:
- trackEvent('tutorial', 'tutorial_screen_1_welcome_to_mattermost_next');
- break;
- case 1:
- trackEvent('tutorial', 'tutorial_screen_2_how_mattermost_works_next');
- break;
- case 2:
- trackEvent('tutorial', 'tutorial_screen_3_youre_all_set_next');
- break;
- }
-
- if (this.state.currentScreen < 2) {
- this.setState({currentScreen: this.state.currentScreen + 1});
- return;
- }
-
- browserHistory.push(TeamStore.getCurrentTeamUrl() + '/channels/town-square');
-
- const step = PreferenceStore.getInt(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), 0);
-
- savePreference(
- Preferences.TUTORIAL_STEP,
- UserStore.getCurrentId(),
- (step + 1).toString()
- );
- }
- skipTutorial(e) {
- e.preventDefault();
-
- switch (this.state.currentScreen) {
- case 0:
- trackEvent('tutorial', 'tutorial_screen_1_welcome_to_mattermost_skip');
- break;
- case 1:
- trackEvent('tutorial', 'tutorial_screen_2_how_mattermost_works_skip');
- break;
- case 2:
- trackEvent('tutorial', 'tutorial_screen_3_youre_all_set_skip');
- break;
- }
-
- savePreference(
- Preferences.TUTORIAL_STEP,
- UserStore.getCurrentId(),
- '999'
- );
-
- browserHistory.push(TeamStore.getCurrentTeamUrl() + '/channels/town-square');
- }
- createScreen() {
- switch (this.state.currentScreen) {
- case 0:
- return this.createScreenOne();
- case 1:
- return this.createScreenTwo();
- case 2:
- return this.createScreenThree();
- }
- return null;
- }
- createScreenOne() {
- const circles = this.createCircles();
-
- return (
-
-
- {circles}
-
- );
- }
- createScreenTwo() {
- const circles = this.createCircles();
-
- let appDownloadLink = null;
- let appDownloadImage = null;
- if (global.window.mm_config.AppDownloadLink) {
- // not using a FormattedHTMLMessage here since mm_config.AppDownloadLink is configurable and could be used
- // to inject HTML if we're not careful
- appDownloadLink = (
-
-
-
- )
- }}
- />
- );
-
- appDownloadImage = (
-
-
-
- );
- }
-
- return (
-
- );
- }
-}
diff --git a/webapp/components/unread_channel_indicator.jsx b/webapp/components/unread_channel_indicator.jsx
deleted file mode 100644
index 9462761aca7..00000000000
--- a/webapp/components/unread_channel_indicator.jsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-// Indicator for the left sidebar which indicate if there's unread posts in a channel that is not shown
-// because it is either above or below the screen
-import React from 'react';
-import Constants from 'utils/constants.jsx';
-
-export default function UnreadChannelIndicator(props) {
- const unreadIcon = Constants.UNREAD_ICON_SVG;
- let displayValue = 'none';
- if (props.show) {
- displayValue = 'block';
- }
-
- return (
-
- );
- }
-
- static isYoutubeLink(link) {
- return link.trim().match(ytRegex);
- }
-}
diff --git a/webapp/config/manifest.json b/webapp/config/manifest.json
deleted file mode 100644
index 766b7006b0d..00000000000
--- a/webapp/config/manifest.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "name": "Mattermost",
- "description": "Mattermost is an open source, self-hosted Slack-alternative",
- "icons": [{
- "src": "/static/images/favicon/android-chrome-192x192.png",
- "type": "image/png",
- "sizes": "192x192"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-120x120.png",
- "type": "image/png",
- "sizes": "120x120"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-144x144.png",
- "type": "image/png",
- "sizes": "144x144"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-152x152.png",
- "type": "image/png",
- "sizes": "152x152"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-57x57.png",
- "type": "image/png",
- "sizes": "57x57"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-60x60.png",
- "type": "image/png",
- "sizes": "60x60"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-72x72.png",
- "type": "image/png",
- "sizes": "72x72"
- }, {
- "src": "/static/images/favicon/apple-touch-icon-76x76.png",
- "type": "image/png",
- "sizes": "76x76"
- }, {
- "src": "/static/images/favicon/favicon-16x16.png",
- "type": "image/png",
- "sizes": "16x16"
- }, {
- "src": "/static/images/favicon/favicon-32x32.png",
- "type": "image/png",
- "sizes": "32x32"
- }, {
- "src": "/static/images/favicon/favicon-96x96.png",
- "type": "image/png",
- "sizes": "96x96"
- }]
-}
diff --git a/webapp/dispatcher/app_dispatcher.jsx b/webapp/dispatcher/app_dispatcher.jsx
deleted file mode 100644
index c74a1622060..00000000000
--- a/webapp/dispatcher/app_dispatcher.jsx
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import * as Flux from 'flux';
-
-import Constants from 'utils/constants.jsx';
-const PayloadSources = Constants.PayloadSources;
-
-const AppDispatcher = Object.assign(new Flux.Dispatcher(), {
- handleServerAction: function performServerAction(action) {
- if (!action.type) {
- console.warn('handleServerAction called with undefined action type'); // eslint-disable-line no-console
- }
-
- var payload = {
- source: PayloadSources.SERVER_ACTION,
- action
- };
- this.dispatch(payload);
- },
-
- handleViewAction: function performViewAction(action) {
- if (!action.type) {
- console.warn('handleViewAction called with undefined action type'); // eslint-disable-line no-console
- }
-
- var payload = {
- source: PayloadSources.VIEW_ACTION,
- action
- };
- this.dispatch(payload);
- }
-});
-
-export default AppDispatcher;
diff --git a/webapp/fonts/FontAwesome.otf b/webapp/fonts/FontAwesome.otf
deleted file mode 100644
index f7936cc1e78..00000000000
Binary files a/webapp/fonts/FontAwesome.otf and /dev/null differ
diff --git a/webapp/fonts/fontawesome-webfont.eot b/webapp/fonts/fontawesome-webfont.eot
deleted file mode 100644
index 33b2bb80055..00000000000
Binary files a/webapp/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/webapp/fonts/fontawesome-webfont.svg b/webapp/fonts/fontawesome-webfont.svg
deleted file mode 100644
index 1ee89d4368d..00000000000
--- a/webapp/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,565 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/fonts/fontawesome-webfont.ttf b/webapp/fonts/fontawesome-webfont.ttf
deleted file mode 100644
index ed9372f8ea0..00000000000
Binary files a/webapp/fonts/fontawesome-webfont.ttf and /dev/null differ
diff --git a/webapp/fonts/fontawesome-webfont.woff b/webapp/fonts/fontawesome-webfont.woff
deleted file mode 100644
index 8b280b98fa2..00000000000
Binary files a/webapp/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/webapp/fonts/fontawesome-webfont.woff2 b/webapp/fonts/fontawesome-webfont.woff2
deleted file mode 100644
index 3311d585145..00000000000
Binary files a/webapp/fonts/fontawesome-webfont.woff2 and /dev/null differ
diff --git a/webapp/fonts/generator_config.txt b/webapp/fonts/generator_config.txt
deleted file mode 100755
index 47dd0367b4f..00000000000
--- a/webapp/fonts/generator_config.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Font Squirrel Font-face Generator Configuration File
-# Upload this file to the generator to recreate the settings
-# you used to create these fonts.
-
-{"mode":"optimal","formats":["ttf","woff","woff2","eotz"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
\ No newline at end of file
diff --git a/webapp/fonts/glyphicons-halflings-regular.eot b/webapp/fonts/glyphicons-halflings-regular.eot
deleted file mode 100644
index b93a4953fff..00000000000
Binary files a/webapp/fonts/glyphicons-halflings-regular.eot and /dev/null differ
diff --git a/webapp/fonts/glyphicons-halflings-regular.svg b/webapp/fonts/glyphicons-halflings-regular.svg
deleted file mode 100644
index 94fb5490a2e..00000000000
--- a/webapp/fonts/glyphicons-halflings-regular.svg
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/fonts/glyphicons-halflings-regular.ttf b/webapp/fonts/glyphicons-halflings-regular.ttf
deleted file mode 100644
index 1413fc609ab..00000000000
Binary files a/webapp/fonts/glyphicons-halflings-regular.ttf and /dev/null differ
diff --git a/webapp/fonts/glyphicons-halflings-regular.woff b/webapp/fonts/glyphicons-halflings-regular.woff
deleted file mode 100644
index 9e612858f80..00000000000
Binary files a/webapp/fonts/glyphicons-halflings-regular.woff and /dev/null differ
diff --git a/webapp/fonts/glyphicons-halflings-regular.woff2 b/webapp/fonts/glyphicons-halflings-regular.woff2
deleted file mode 100644
index 64539b54c37..00000000000
Binary files a/webapp/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.eot
deleted file mode 100644
index 784276a3cbf..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.ttf
deleted file mode 100644
index 6f1e0be2028..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.woff
deleted file mode 100644
index 4dded4733b3..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.woff2
deleted file mode 100644
index ea81079c4e2..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_AMS-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.eot b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.eot
deleted file mode 100644
index 1a0db0c568e..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.ttf b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.ttf
deleted file mode 100644
index b94907dad11..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.woff b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.woff
deleted file mode 100644
index 799fa8122ca..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.woff2 b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.woff2
deleted file mode 100644
index 73bb5422878..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Bold.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.eot
deleted file mode 100644
index 6cc83d0922c..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.ttf
deleted file mode 100644
index cf51e2021e4..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.woff
deleted file mode 100644
index f5e5c623577..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.woff2
deleted file mode 100644
index dd76d3488d5..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Caligraphic-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.eot b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.eot
deleted file mode 100644
index 1960b106656..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.ttf b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.ttf
deleted file mode 100644
index 7b0790f1ae8..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.woff b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.woff
deleted file mode 100644
index dc325713291..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.woff2 b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.woff2
deleted file mode 100644
index fdc429227ad..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Bold.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.eot
deleted file mode 100644
index e4e73796aea..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.ttf
deleted file mode 100644
index 063bc0263eb..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.woff
deleted file mode 100644
index c4b18d863f3..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.woff2
deleted file mode 100644
index 4318d938e26..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Fraktur-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.eot b/webapp/fonts/ktexfonts/KaTeX_Main-Bold.eot
deleted file mode 100644
index 80fbd022363..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.ttf b/webapp/fonts/ktexfonts/KaTeX_Main-Bold.ttf
deleted file mode 100644
index 8e10722afae..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.woff b/webapp/fonts/ktexfonts/KaTeX_Main-Bold.woff
deleted file mode 100644
index 43b361a6005..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.woff2 b/webapp/fonts/ktexfonts/KaTeX_Main-Bold.woff2
deleted file mode 100644
index af57a96c148..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Bold.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.eot b/webapp/fonts/ktexfonts/KaTeX_Main-Italic.eot
deleted file mode 100644
index fc770166b5e..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.ttf b/webapp/fonts/ktexfonts/KaTeX_Main-Italic.ttf
deleted file mode 100644
index d124495d7b6..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.woff b/webapp/fonts/ktexfonts/KaTeX_Main-Italic.woff
deleted file mode 100644
index e623236bc44..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.woff2 b/webapp/fonts/ktexfonts/KaTeX_Main-Italic.woff2
deleted file mode 100644
index 944e9740bdf..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Italic.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Main-Regular.eot
deleted file mode 100644
index dc60c090c7a..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Main-Regular.ttf
deleted file mode 100644
index da5797ffcce..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Main-Regular.woff
deleted file mode 100644
index 37db672e821..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Main-Regular.woff2
deleted file mode 100644
index 48820424893..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Main-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.eot b/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.eot
deleted file mode 100644
index 52c8b8c6b40..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.ttf b/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.ttf
deleted file mode 100644
index a8b527c7ef6..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.woff b/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.woff
deleted file mode 100644
index 8940e0b5801..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.woff2 b/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.woff2
deleted file mode 100644
index 15cf56d3408..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-BoldItalic.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.eot b/webapp/fonts/ktexfonts/KaTeX_Math-Italic.eot
deleted file mode 100644
index 64c8992c477..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.ttf b/webapp/fonts/ktexfonts/KaTeX_Math-Italic.ttf
deleted file mode 100644
index 06f39d3a299..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.woff b/webapp/fonts/ktexfonts/KaTeX_Math-Italic.woff
deleted file mode 100644
index cf3b4b79e5b..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.woff2 b/webapp/fonts/ktexfonts/KaTeX_Math-Italic.woff2
deleted file mode 100644
index 5f8c4bfa455..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Italic.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Math-Regular.eot
deleted file mode 100644
index 5521e6a564d..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Math-Regular.ttf
deleted file mode 100644
index 73127082370..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Math-Regular.woff
deleted file mode 100644
index 0e2ebdf18af..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Math-Regular.woff2
deleted file mode 100644
index ebe3d028a34..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Math-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.eot b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.eot
deleted file mode 100644
index 1660e76a2b6..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.ttf b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.ttf
deleted file mode 100644
index dbeb7b92ab5..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.woff b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.woff
deleted file mode 100644
index 8f144a8bb31..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.woff2 b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.woff2
deleted file mode 100644
index 329e85557fa..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Bold.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.eot b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.eot
deleted file mode 100644
index 289ae3ff8b7..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.ttf b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.ttf
deleted file mode 100644
index b3a2f38f224..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.woff b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.woff
deleted file mode 100644
index bddf7ea6579..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.woff2 b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.woff2
deleted file mode 100644
index 5fa767bddd6..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Italic.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.eot
deleted file mode 100644
index 1b38b98a180..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.ttf
deleted file mode 100644
index e4712f84775..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.woff
deleted file mode 100644
index 33be368048f..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.woff2
deleted file mode 100644
index 4fcb2e29a05..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_SansSerif-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Script-Regular.eot
deleted file mode 100644
index 7870d7f319b..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Script-Regular.ttf
deleted file mode 100644
index da4d11308ae..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Script-Regular.woff
deleted file mode 100644
index d6ae79f998a..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Script-Regular.woff2
deleted file mode 100644
index 1b43deb45a8..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Script-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.eot
deleted file mode 100644
index 29950f95ff6..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.ttf
deleted file mode 100644
index 194466a655d..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.woff
deleted file mode 100644
index 237f271edd1..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.woff2
deleted file mode 100644
index 39b6f8f746c..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size1-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.eot
deleted file mode 100644
index b8b0536f967..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.ttf
deleted file mode 100644
index b41b66a638f..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.woff
deleted file mode 100644
index 4a3055854ed..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.woff2
deleted file mode 100644
index 3facec1ab89..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size2-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.eot
deleted file mode 100644
index 576b864fae6..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.ttf
deleted file mode 100644
index 790ddbbc55f..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.woff
deleted file mode 100644
index 3a6d062e660..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.woff2
deleted file mode 100644
index 2cffafe5018..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size3-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.eot
deleted file mode 100644
index c2b045fc3db..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.ttf
deleted file mode 100644
index ce660aa7ff9..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.woff
deleted file mode 100644
index 7826c6c97a1..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.woff2
deleted file mode 100644
index c92189812d9..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Size4-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.eot b/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.eot
deleted file mode 100644
index 4c178f484a8..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.eot and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.ttf b/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.ttf
deleted file mode 100644
index b0427ad0a56..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.ttf and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.woff b/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.woff
deleted file mode 100644
index 78e990488a9..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.woff and /dev/null differ
diff --git a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.woff2 b/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.woff2
deleted file mode 100644
index 618de99d480..00000000000
Binary files a/webapp/fonts/ktexfonts/KaTeX_Typewriter-Regular.woff2 and /dev/null differ
diff --git a/webapp/fonts/luximbi.ttf b/webapp/fonts/luximbi.ttf
deleted file mode 100644
index 734201bed16..00000000000
Binary files a/webapp/fonts/luximbi.ttf and /dev/null differ
diff --git a/webapp/fonts/luxisr.ttf b/webapp/fonts/luxisr.ttf
deleted file mode 100644
index c47fd20beac..00000000000
Binary files a/webapp/fonts/luxisr.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot
deleted file mode 100644
index 23bc6a9998c..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg
deleted file mode 100644
index ceb267c43bf..00000000000
--- a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg
+++ /dev/null
@@ -1,19026 +0,0 @@
-
-
-
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf
deleted file mode 100644
index 0d381897da2..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff
deleted file mode 100644
index fb34cf388ca..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2
deleted file mode 100644
index 9a71d1c7839..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2 and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot
deleted file mode 100644
index cf3a6ffc073..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg
deleted file mode 100644
index 0461c39a600..00000000000
--- a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg
+++ /dev/null
@@ -1,19039 +0,0 @@
-
-
-
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf
deleted file mode 100644
index 68299c4bc6b..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff
deleted file mode 100644
index 360f4a4dcae..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2
deleted file mode 100644
index ec0bfee7d01..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2 and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot
deleted file mode 100644
index 5cf668dc943..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg
deleted file mode 100644
index 81fdf89af47..00000000000
--- a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg
+++ /dev/null
@@ -1,19030 +0,0 @@
-
-
-
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf
deleted file mode 100644
index 1a7679e3949..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff
deleted file mode 100644
index 409c725d020..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2
deleted file mode 100644
index d088697a091..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2 and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot
deleted file mode 100644
index 5b7ffea4865..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg
deleted file mode 100644
index 6e9c8207436..00000000000
--- a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg
+++ /dev/null
@@ -1,19043 +0,0 @@
-
-
-
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf
deleted file mode 100644
index 59b6d16b065..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff
deleted file mode 100644
index 54314774680..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2
deleted file mode 100644
index 2d20d770506..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2 and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot
deleted file mode 100644
index 6e56f5f8dd5..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg
deleted file mode 100644
index c2f16d1728e..00000000000
--- a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg
+++ /dev/null
@@ -1,19043 +0,0 @@
-
-
-
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf
deleted file mode 100644
index c90da48ff3b..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff
deleted file mode 100644
index 9e17567af71..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2
deleted file mode 100644
index 9a96c63fa93..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2 and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot
deleted file mode 100644
index 8d4b7d9e74e..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg
deleted file mode 100644
index 0ec5da573cc..00000000000
--- a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg
+++ /dev/null
@@ -1,19030 +0,0 @@
-
-
-
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf
deleted file mode 100644
index db433349b70..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff
deleted file mode 100644
index 1251d51a644..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff and /dev/null differ
diff --git a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2
deleted file mode 100644
index 0964c7c460f..00000000000
Binary files a/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2 and /dev/null differ
diff --git a/webapp/i18n/de.json b/webapp/i18n/de.json
deleted file mode 100644
index 89e597ce066..00000000000
--- a/webapp/i18n/de.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Schließen",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. Alle Rechte vorbehalten",
- "about.database": "Datenbank:",
- "about.date": "Build-Datum:",
- "about.enterpriseEditionLearn": "Mehr über die Enterprise Edition erfahren auf ",
- "about.enterpriseEditionSt": "Moderne Kommunikation hinter Ihrer Firewall.",
- "about.enterpriseEditione1": "Enterprise Edition",
- "about.hash": "Build Hash:",
- "about.hashee": "EE Build Hash:",
- "about.licensed": "Lizenziert durch:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Build Nummer:",
- "about.teamEditionLearn": "Schließen Sie sich der Mattermost Community an auf ",
- "about.teamEditionSt": "Ihre gesamte Team-Kommunikation an einem Ort, sofort durchsuchbar und überall verfügbar.",
- "about.teamEditiont0": "Team Edition",
- "about.teamEditiont1": "Enterprise Edition",
- "about.title": "Über Mattermost",
- "about.version": "Version:",
- "access_history.title": "Zugriffs-Verlauf",
- "activity_log.activeSessions": "Aktive Sitzungen",
- "activity_log.browser": "Browser: {browser}",
- "activity_log.firstTime": "Aktiv seit: {date}, {time}",
- "activity_log.lastActivity": "Letzte Aktivität: {date}, {time}",
- "activity_log.logout": "Abmelden",
- "activity_log.moreInfo": "Weitere Informationen",
- "activity_log.os": "Betriebssystem: {os}",
- "activity_log.sessionId": "Sitzungs-ID: {id}",
- "activity_log.sessionsDescription": "Sitzungen werden erstellt, sobald Sie sich in einem neuen Browser eines Gerätes anmelden. Sitzungen ermöglichen es Ihnen Mattermost ohne erneutes Anmelden nach einer vom System Administrator definierten Zeit zu verwenden. Um sich früher abzumelden, verwenden Sie den 'Abmelden'-Button unten, um die Sitzung zu beenden.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Native Android-App",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Native Desktop-App",
- "activity_log_modal.iphoneNativeApp": "Native iPhone-App",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "Auto-Vervollständigung",
- "add_command.autocomplete.help": "(Optional) Zeige Slash-Befehle in Autovervollständigungsliste.",
- "add_command.autocompleteDescription": "Autovervollständigung Beschreibung",
- "add_command.autocompleteDescription.help": "(Optional) Kurze Beschreibung des Slash-Befehls für die Autovervollständigungsliste.",
- "add_command.autocompleteDescription.placeholder": "Beispiel: \"Gibt Suchergebnisse für Patientenakten zurück\"",
- "add_command.autocompleteHint": "Autovervollständigungshinweis",
- "add_command.autocompleteHint.help": "(Optional) Argumente für den Slash-Befehl als Hilfestellung in der Autovervollständigungsliste anzeigen.",
- "add_command.autocompleteHint.placeholder": "Beispiel: [Patientenname]",
- "add_command.cancel": "Abbrechen",
- "add_command.description": "Beschreibung",
- "add_command.description.help": "Beschreibung des eingehenden Webhooks.",
- "add_command.displayName": "Anzeigename",
- "add_command.displayName.help": "Anzeigename für den Slash-Befehl mit bis zu 64 Zeichen.",
- "add_command.doneHelp": "Ihr Slash-Befehl wurde eingerichtet. Der folgende Token wird in der ausgehenden Payload mitgesendet. Bitte verwenden Sie ihn, um zu verifizieren, dass er von Ihrem Mattermost-Team kam (sehen Sie in die Dokumentation für mehr Details).",
- "add_command.iconUrl": "Antwort-Symbol",
- "add_command.iconUrl.help": "(Optional) Wählen Sie ein überschreibendes Profilbild für die Antwort für diesen Slash-Befehl. Geben Sie eine URL zu einem .png oder .jpg mit mindestens 128x128 Pixeln ein.",
- "add_command.iconUrl.placeholder": "https://www.beispiel.de/meinsymbol.png",
- "add_command.method": "Anforderungsmethode",
- "add_command.method.get": "GET",
- "add_command.method.help": "Der Typ des an die Anfrage-URL gesendeten Anfragebefehls.",
- "add_command.method.post": "POST",
- "add_command.save": "Speichern",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Befehlsauslösewort",
- "add_command.trigger.help": "Auslösewort muss eindeutig sein und kann nicht mit einem Slash beginnen oder Leerzeichen enthalten.",
- "add_command.trigger.helpExamples": "Beispiele: kunde, mitarbeiter, patient, wetter",
- "add_command.trigger.helpReserved": "Reserviert: {link}",
- "add_command.trigger.helpReservedLinkText": "zeige eine Liste von eingebauten Slash-Befehlen",
- "add_command.trigger.placeholder": "Befehlsauslöser wie \"hallo\"",
- "add_command.triggerInvalidLength": "Ein Auslösewort muss aus mindestens {min} und maximal {max} Buchstaben bestehen",
- "add_command.triggerInvalidSlash": "Ein Triggerwort darf nicht mit / anfangen",
- "add_command.triggerInvalidSpace": "Ein Auslösewort darf keine Leerzeichen enthalten",
- "add_command.triggerRequired": "Ein Auslösewort ist notwendig",
- "add_command.url": "Anfrage-URL",
- "add_command.url.help": "Die Callback-URL welche die HTTP POST oder GET erhält, wenn der Slash-Befehl ausgeführt wird.",
- "add_command.url.placeholder": "Muss mit http:// oder https:// anfangen",
- "add_command.urlRequired": "Eine Anfrage-URL wird benötigt",
- "add_command.username": "Benutzername der Antwort",
- "add_command.username.help": "(Optional) Wählen Sie einen überschreibenden Benutzernamen für Antworten für diesen Slash-Befehl. Benutzernamen können bis zu 22 Zeichen lang sein und Kleinbuchstaben, Ziffern und die Symbole \"-\", \"_\", und \".\" enthalten.",
- "add_command.username.placeholder": "Benutzername",
- "add_emoji.cancel": "Abbrechen",
- "add_emoji.header": "Hinzufügen",
- "add_emoji.image": "Bild",
- "add_emoji.image.button": "Auswählen",
- "add_emoji.image.help": "Wählen Sie ein Bild für Ihr Emoji. Das Bild kann ein gif, png oder jpg mit einer maximalen Größe von 1 MB sein. Die Größe wird automatisch auf 128x128 Pixel unter Einhaltung des Seitenverhältnisses eingepasst.",
- "add_emoji.imageRequired": "Für das Emoji ist ein Bild erforderlich",
- "add_emoji.name": "Name",
- "add_emoji.name.help": "Wählen Sie einen Namen für Ihr Emoji aus bis zu 64 Zeichen, der aus Kleinbuchstaben, Zahlen und den Symbolen '-' und '_' bestehen besteht.",
- "add_emoji.nameInvalid": "Der Name des Emojis darf nur Zahlen, Buchstaben und die Symbole '-' und '_' enthalten.",
- "add_emoji.nameRequired": "Für das Emoji ist ein Name erforderlich",
- "add_emoji.nameTaken": "Dieser Name wird bereits von einem System-Emoji verwendet. Wählen Sie bitte einen anderen Namen.",
- "add_emoji.preview": "Vorschau",
- "add_emoji.preview.sentence": "Das ist ein Satz mit {image} darin.",
- "add_emoji.save": "Speichern",
- "add_incoming_webhook.cancel": "Abbrechen",
- "add_incoming_webhook.channel": "Kanal",
- "add_incoming_webhook.channel.help": "Öffentlicher oder privater Kanal, welcher die Webhook-Daten empfängt. Sie müssen zum privatem Kanal gehören, wenn Sie den Webhook erstellen.",
- "add_incoming_webhook.channelRequired": "Ein gültiger Kanal ist notwendig",
- "add_incoming_webhook.description": "Beschreibung",
- "add_incoming_webhook.description.help": "Beschreibung des eingehenden Webhooks.",
- "add_incoming_webhook.displayName": "Anzeigename",
- "add_incoming_webhook.displayName.help": "Anzeigename des eingehenden Webhooks mit bis zu 64 Zeichen.",
- "add_incoming_webhook.doneHelp": "Ihr eingehender Webhook wurde eingerichtet. Bitte senden Sie die Daten an folgende URL (sehen Sie in die Dokumentation für mehr Details).",
- "add_incoming_webhook.name": "Name",
- "add_incoming_webhook.save": "Speichern",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "Die Weiterleitungs-URI, zu der der Service weiterleiten wird, sobald der Benutzer die Autorisierung Ihrer Anwendung erlaubt oder abgelehnt hat. Behandelt außerdem Autorisierungs-Codes oder Zugriffs-Tokens. Muss eine gültige URL sein und mit http:// oder https:// beginnen.",
- "add_oauth_app.callbackUrlsRequired": "Eine oder mehrere Callback-URLs werden benötigt",
- "add_oauth_app.clientId": "Client-ID: {id}",
- "add_oauth_app.clientSecret": "Client Secret: {secret}",
- "add_oauth_app.description.help": "Beschreibung für Ihre OAuth-2.0-Anwendung.",
- "add_oauth_app.descriptionRequired": "Beschreibung für die OAuth-2.0-Anwendung ist erforderlich.",
- "add_oauth_app.doneHelp": "Ihre OAuth-2.0-Anwendung wurde eingerichtet. Bitte nutzen Sie die folgende Client-ID und Client Secret bei der Autorisierungsanfrage Ihrer Anwendung (siehe Dokumentation für weitere Details).",
- "add_oauth_app.doneUrlHelp": "Die folgenden sind Ihre autorisierten Umleitungs-URL(s).",
- "add_oauth_app.header": "Hinzufügen",
- "add_oauth_app.homepage.help": "Die URL für die Homepage der OAuth-2.0-Anwendung. Stellen Sie sicher, dass Sie HTTP oder HTTPS in Ihrer URL, basierend Ihrer Serverkonfiguration, verwenden.",
- "add_oauth_app.homepageRequired": "Homepage für die OAuth-2.0-Anwendung ist erforderlich.",
- "add_oauth_app.icon.help": "(Optional) Die URL des Bildes, welches für Ihre OAuth-2.0-Anwendung verwendet wird. Stellen Sie sicher, dass Sie HTTP oder HTTPS in Ihrer URL verwenden.",
- "add_oauth_app.name.help": "Anzeigename für Ihre OAuth-2.0-Anwendung aus bis zu 64 Zeichen.",
- "add_oauth_app.nameRequired": "Name für die OAuth-2.0-Anwendung ist erforderlich.",
- "add_oauth_app.trusted.help": "Wenn wahr, wird die OAuth-2.0-Anwendung durch den Mattermost-Server als vertrauenswürdig markiert und fordert den Benutzer nicht auf die Autorisierung zu akzeptieren. Wenn falsch, wird ein zusätzliches Fenster angezeigt, in dem der Benutzer gebeten wird die Autorisierung zu akzeptieren oder abzulehnen.",
- "add_oauth_app.url": "URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "Callback-URLs (eine pro Zeile)",
- "add_outgoing_webhook.callbackUrls.help": "Die URL, an die die Nachricht gesendet wird.",
- "add_outgoing_webhook.callbackUrlsRequired": "Eine oder mehrere Callback-URLs werden benötigt",
- "add_outgoing_webhook.cancel": "Abbrechen",
- "add_outgoing_webhook.channel": "Kanal",
- "add_outgoing_webhook.channel.help": "Öffentlicher Kanal, welcher die Webhook-Daten empfängt. Optional, wenn mindestens ein Auslösewort definiert ist.",
- "add_outgoing_webhook.contentType.help1": "Wählen Sie den Inhaltstyp mit dem die Antwort gesendet wird.",
- "add_outgoing_webhook.contentType.help2": "Wenn application/x-www-form-urlencoded gewählt wird nimmt der Server an, dass die Parameter im URL-Format kodiert werden sollen.",
- "add_outgoing_webhook.contentType.help3": "Wenn application/json gewählt wird nimmt der Server an, dass Sie JSON-Daten senden möchten.",
- "add_outgoing_webhook.content_Type": "Inhaltstyp",
- "add_outgoing_webhook.description": "Beschreibung",
- "add_outgoing_webhook.description.help": "Beschreibung für Ihren ausgehenden Webhook.",
- "add_outgoing_webhook.displayName": "Anzeigename",
- "add_outgoing_webhook.displayName.help": "Anzeigename für Ihren ausgehenden Webhook aus bis zu 64 Zeichen.",
- "add_outgoing_webhook.doneHelp": "Ihr ausgehender Webhook wurde eingerichtet. Der folgende Token wird in der ausgehenden Payload mitgesendet. Der folgende Token wird in der ausgehenden Payload mitgesendet. Bitte verwenden Sie ihn um zu verifizieren, dass er von Ihrem Mattermost-Team kam (sehen Sie in die Dokumentation für mehr Details).",
- "add_outgoing_webhook.name": "Name",
- "add_outgoing_webhook.save": "Speichern",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Auslösewörter (eins pro Zeile)",
- "add_outgoing_webhook.triggerWords.help": "Nachrichten, die mit einem der spezifizierten Wörtern beginnen, lösen den ausgehenden Webhook aus. Optional wenn Kanal gewählt wird.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Ein gültiger Kanal oder eine Liste von Auslösewörtern wird benötigt",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Auslösen sobald",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Auswählen wann der ausgehende Webhook ausgelöst werden soll. Wenn das erste Wort der Nachricht einem Auslösewort exakt entspricht, oder wenn es mit dem Auslösewort beginnt.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "Erstes Wort entspricht exakt einem Auslösewort",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "Erstes Wort startet mit dem Auslösewort",
- "add_users_to_team.title": "Neue Mitglieder zum Team {teamName} hinzufügen",
- "admin.advance.cluster": "Hochverfügbarkeit",
- "admin.advance.metrics": "Performance-Überwachung",
- "admin.audits.reload": "Benutzeraktivitäten-Logs neuladen",
- "admin.audits.title": "Benutzeraktivitäten-Logs",
- "admin.authentication.email": "E-Mail-Authentifizierung",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Notiz:",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "Wenn wahr, wird Mattermost im High-Availability-Modus laufen. Bitte sehen Sie sich die Dokumentation an um mehr über die High-Availability-Konfiguration für Mattermost zu lernen.",
- "admin.cluster.enableTitle": "High-Availability-Modus aktivieren:",
- "admin.cluster.interNodeListenAddressDesc": "Die Adresse auf die der Server für die Kommunikation mit anderen Servern horchen wird.",
- "admin.cluster.interNodeListenAddressEx": "Z.B.: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Internode Abhören Adresse:",
- "admin.cluster.interNodeUrlsDesc": "Die internen/privaten URLs aller Mattermost-Server separiert durch Kommas.",
- "admin.cluster.interNodeUrlsEx": "Z.B.: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Inter-Node-URLs:",
- "admin.cluster.loadedFrom": "Diese Konfigurationsdatei wurde von Node-ID {clusterId} geladen. Bitte schauen Sie im Troubleshooting Guide der Dokumentation nach wenn Sie die Systemkonsole über einen Loadbalancer erreichen und Probleme feststellen.",
- "admin.cluster.noteDescription": "Änderungen an Einstellungen in diesem Bereich erfordern einen Neustart des Servers, bevor sie gültig werden. Wenn der Hochverfügbarkeitsmodus aktiviert ist, ist die Systemkonsole nur lesend erreichbar und kann nur über die Konfigurationsdatei geändert werden, außer ReadOnlyConfig ist in der Konfigurationsdatei deaktiviert.",
- "admin.cluster.should_not_change": "WARNUNG: Diese Einstellungen synchronisieren sich eventuell nicht mit anderen Servern im Cluster. High Availability Internode Kommunikation startet erst, wenn die config.json auf allen Servern identisch ist und Mattermost neugestartet wurde. Bitte schauen Sie in die Dokumentation um zu erfahren, wie Sie dem Cluster einen Server hinzufügen oder entfernen können. Wenn Sie die Systemkonsole über einen Loadbalancer erreichen und Probleme feststellen, schauen Sie bitte in den Troubleshooting Guide der Dokumentation.",
- "admin.cluster.status_table.config_hash": "MD5 der Konfigurationsdatei",
- "admin.cluster.status_table.hostname": "Hostname",
- "admin.cluster.status_table.id": "Node-ID",
- "admin.cluster.status_table.reload": " Cluster Status neu laden",
- "admin.cluster.status_table.status": "Status",
- "admin.cluster.status_table.url": "Gossip-Adresse",
- "admin.cluster.status_table.version": "Version",
- "admin.cluster.unknown": "unbekannt",
- "admin.compliance.directoryDescription": "Verzeichnis in welchem die Bilddateien gespeichert werden. Standardwert: ./data/.",
- "admin.compliance.directoryExample": "Z.B.: \"./data/\"",
- "admin.compliance.directoryTitle": "Compliance-Report-Verzeichnis:",
- "admin.compliance.enableDailyDesc": "Wenn wahr, erstellt Mattermost einen täglichen Compliance-Bericht.",
- "admin.compliance.enableDailyTitle": "Täglichen Bericht aktivieren:",
- "admin.compliance.enableDesc": "Wenn wahr, erlaubt Mattermost das Compliance Reporting über den Compliance und Prüfung Tab. Sehen Sie in der Dokumentation für mehr Details nach.",
- "admin.compliance.enableTitle": "Aktiviere Compliance Reporting:",
- "admin.compliance.false": "falsch",
- "admin.compliance.noLicense": "
Hinweis:
Compliance-Funktionen sind Bestandteil der Enterprise Edition. Ihre derzeitige Lizenz unterstützt Compliance nicht. Besuchen Sie unsere Webseite für Information und Preise der Enterprise Lizenzen.
\"Sende allgemeine Beschreibung mit Benutzer- und Kanalnamen\" enthält den Namen des Absenders der Nachricht und den Kanal, in dem sie versendet wurde, aber nicht den Nachrichteninhalt.
\"Sende kompletten Nachrichtenausschnitt\" enthält einen Nachrichtenauszug in der Push-Benachrichtigung, welche eventuell vertrauliche Informationen aus der Nachricht enthält. Wenn sich Ihr Push-Benachrichtigungsdienst außerhalb der Firewall befindet ist es *sehr empfohlen* diese Option nur mit dem \"https\"-Protokoll zu verwenden, um die Verbindung zu verschlüsseln.",
- "admin.email.pushContentTitle": "Push-Mitteilungs-Inhalt:",
- "admin.email.pushDesc": "Normalerweise wahr in Produktionsumgebungen. Wenn wahr, versucht Mattermost iOS- und Android-Push-Nachrichten über den Push Notification Server zu versenden.",
- "admin.email.pushOff": "Keine Benachrichtigungen senden",
- "admin.email.pushOffHelp": "Schauen Sie in die Dokumentation zu Push-Meldungen um mehr zu den Einrichtungsmöglichkeiten zu erfahren.",
- "admin.email.pushServerDesc": "Adresse des Mattermost Push Notification Servers. Dieser kann hinter einer Firewall mit https://github.com/mattermost/push-proxy betrieben werden. Für Tests können Sie http://push-test.mattermost.com verwenden, welcher mit der Mattermost iOS-Beispiel-App im Apple AppStore zusammenarbeiten. Bitte verwenden Sie den Testdienst nicht für Produktionsumgebungen.",
- "admin.email.pushServerEx": "Z.B.: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Push Notification Server:",
- "admin.email.pushTitle": "Aktiviere Push Nachrichten: ",
- "admin.email.requireVerificationDescription": "Normalerweise wahr in Produktionsumgebungen. Wenn wahr, erfordert Mattermost E-Mail-Adressen nach Kontoerstellung zu bestätigen, bevor die Anmeldung erlaubt wird. Entwickler sollten dies auf falsch setzen um für eine schnellere Entwicklung die E-Mail-Bestätigung zu überspringen.",
- "admin.email.requireVerificationTitle": "Erzwinge E-Mail-Bestätigung: ",
- "admin.email.selfPush": "Manuelle Eingabe des Orts zum Push-Mitteilungs-Service",
- "admin.email.skipServerCertificateVerification.description": "Wenn wahr, wird Mattermost das Zertifikat des E-Mail-Servers nicht verifizieren.",
- "admin.email.skipServerCertificateVerification.title": "Serverzertifikatsüberprüfung überspringen: ",
- "admin.email.smtpPasswordDescription": "Das mit dem SMTP-Benutzernamen verbundene Passwort.",
- "admin.email.smtpPasswordExample": "Z.B.: \"IhrPasswort\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "SMTP-Server-Passwort:",
- "admin.email.smtpPortDescription": "Port des SMTP E-Mail-Servers.",
- "admin.email.smtpPortExample": "Z.B.: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "SMTP-Server-Port:",
- "admin.email.smtpServerDescription": "Adresse des SMTP E-Mail-Servers.",
- "admin.email.smtpServerExample": "Z.B.: \"smtp.ihrefirma.de\", \"email-smtp.eu-west-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "SMTP-Server:",
- "admin.email.smtpUsernameDescription": "Der Benutzername zur Authentifizierung am SMTP-Server.",
- "admin.email.smtpUsernameExample": "Z.B.: \"admin@ihrefirma.de\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "SMTP-Server-Benutzername:",
- "admin.email.testing": "Überprüfen...",
- "admin.false": "falsch",
- "admin.file.enableFileAttachments": "Dateiaustausch erlauben:",
- "admin.file.enableFileAttachmentsDesc": "Wenn falsch, wird der Dateiaustausch auf dem Server deaktiviert. Alle Datei- und Bild-Uploads sind über alle Clients hinweg, inklusive Mobilgeräten, verboten.",
- "admin.file.enableMobileDownloadDesc": "Wenn falsch, werden Datei-Downloads in mobilen Apps deaktiviert. Benutzer können immer noch Dateien über einen mobilen Browser herunterladen.",
- "admin.file.enableMobileDownloadTitle": "Datei-Download auf Mobilgeräten erlauben:",
- "admin.file.enableMobileUploadDesc": "Wenn falsch, werden Datei-Uploads in mobilen Apps deaktiviert. Benutzer können immer noch Dateien über einen mobilen Browser hochladen.",
- "admin.file.enableMobileUploadTitle": "Datei-Upload auf Mobilgeräten erlauben:",
- "admin.file_upload.chooseFile": "Datei auswählen",
- "admin.file_upload.noFile": "Keine Datei hochgeladen",
- "admin.file_upload.uploadFile": "Hochladen",
- "admin.files.images": "Bilder",
- "admin.files.storage": "Speicher",
- "admin.general.configuration": "Konfiguration",
- "admin.general.localization": "Lokalisation",
- "admin.general.localization.availableLocalesDescription": "Einstellen welche Sprachen für die Benutzer in den Kontoeinstellungen verfügbar sein sollen (lassen Sie dieses Feld leer um alle unterstützten Sprachen zur Verfügung zu stellen). Wenn Sie neue Sprachen manuell hinzufügen. die Standardsprache Client muss vorher geändert werden.
Möchten Sie uns bei der Übersetzung unterstützen? Treten Sie dem Mattermost Translation Server bei um Ihren Beitrag zu leisten.",
- "admin.general.localization.availableLocalesNoResults": "Keine Ergebnisse gefunden",
- "admin.general.localization.availableLocalesNotPresent": "Die Standardsprache für die Benutzer muss in der Liste der verfügbaren Sprachen aufgeführt sein",
- "admin.general.localization.availableLocalesTitle": "Verfügbare Sprachen:",
- "admin.general.localization.clientLocaleDescription": "Standard Sprache für neu angelegte Nutzer und Seiten wo sich der Nutzer noch nicht angemeldet hat.",
- "admin.general.localization.clientLocaleTitle": "Standardsprache Client:",
- "admin.general.localization.serverLocaleDescription": "Standard Sprache für Systemnachrichten und Logs. Eine Änderung erfordert einen Neustart damit sie gültig wird.",
- "admin.general.localization.serverLocaleTitle": "Standardsprache Server:",
- "admin.general.log": "Protokollierung",
- "admin.general.policy": "Richtlinie",
- "admin.general.policy.allowBannerDismissalDesc": "Wenn wahr, können Benutzer das Banner bis zu seinem nächsten Update verbergen. Wenn falsch, ist das Banner permanent sichtbar, bis es vom Systemadministrator abgeschaltet wird.",
- "admin.general.policy.allowBannerDismissalTitle": "Erlaube Verbergen des Banners:",
- "admin.general.policy.allowEditPostAlways": "Jederzeit",
- "admin.general.policy.allowEditPostDescription": "Regel festlegen, wie lange Authoren ihre Nachtichten nach dem Absenden bearbeiten können.",
- "admin.general.policy.allowEditPostNever": "Nie",
- "admin.general.policy.allowEditPostTimeLimit": "Sekunden nach dem Absenden",
- "admin.general.policy.allowEditPostTitle": "Erlaube Benutzern das Bearbeiten ihrer Nachrichten:",
- "admin.general.policy.bannerColorTitle": "Banner-Farbe:",
- "admin.general.policy.bannerTextColorTitle": "Banner-Textfarbe:",
- "admin.general.policy.bannerTextDesc": "Text, der im Ankündigungs-Banner erscheinen wird.",
- "admin.general.policy.bannerTextTitle": "Banner-Text:",
- "admin.general.policy.enableBannerDesc": "Aktiviere ein Ankündigungs-Banner über alle Teams hinweg.",
- "admin.general.policy.enableBannerTitle": "Aktiviere Ankündigungs-Banner:",
- "admin.general.policy.permissionsAdmin": "Team- und Systemadministratoren",
- "admin.general.policy.permissionsAll": "Alle Teammitglieder",
- "admin.general.policy.permissionsAllChannel": "Alle Kanalmitglieder",
- "admin.general.policy.permissionsChannelAdmin": "Kanal-, Team- und Systemadminstratoren",
- "admin.general.policy.permissionsDeletePostAdmin": "Team- und Systemadministratoren",
- "admin.general.policy.permissionsDeletePostAll": "Nachrichtenersteller können ihre eigenen Nachrichten löschen, Administratoren können jede Nachricht löschen",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Systemadministratoren",
- "admin.general.policy.permissionsSystemAdmin": "Systemadministratoren",
- "admin.general.policy.restrictPostDeleteDescription": "Richtline festlegen, wer die Berechtigung erhält, Nachrichten zu löschen.",
- "admin.general.policy.restrictPostDeleteTitle": "Löschen von Nachrichten erlauben:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Regel festlegen, wer private Kanäle erstellen darf.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Erlaube Erstellung privater Kanäle für:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "Kommandozeilenwerkzeug",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Regel festlegen, wer private Kanäle löschen darf. Gelöschte Kanäle können von der Datenbank mit einem {commandLineToolLink} wiederhergestellt werden.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Erlaube Löschung privater Kanäle für:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Regel festlegen, wer Mitglieder zu privaten Kanälen hinzufügen und davon löschen darf.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Erlaube Verwaltung von privaten Kanälen für:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Regel festlegen, wer private Kanäle umbenennen und Kopfzeile sowie Zweck anpassen darf.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Erlaube Umbenennung privater Kanäle für:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Regel festlegen, wer öffentliche Kanäle erstellen darf.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Erlaube Erstellung öffentlicher Kanäle für:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "Kommandozeilenwerkzeug",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Regel festlegen, wer öffentliche Kanäle löschen darf. Gelöschte Kanäle können von der Datenbank mit einem {commandLineToolLink} wiederhergestellt werden.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Erlaube Löschung öffentlicher Kanäle für:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Regel festlegen, wer öffentliche Kanäle umbenennen und Kopfzeile sowie Zweck anpassen darf.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Erlaube Umbenennung öffentlicher Kanäle für:",
- "admin.general.policy.teamInviteDescription": "Regel dafür festlegen, wer andere in ein Team mit Neues Mitglied einladen via E-Mail einladen darf oder den Team-Einladungslink erhalten-Link im Hauptmenü verwenden darf. Wenn der Team-Einladungslink erhalten-Link verwendet wird, um einen Link zu teilen, können Sie den Einladungscode in den Teameinstellungen > Einladungscode ablaufen lassen, nachdem alle gewollten Nutzer dem Team beigetreten sind.",
- "admin.general.policy.teamInviteTitle": "Erlaube Senden von Teameinladungen für:",
- "admin.general.privacy": "Privatsphäre",
- "admin.general.usersAndTeams": "Benutzer und Teams",
- "admin.gitab.clientSecretDescription": "Befolgen Sie die Anleitung zum Login in Gitlab, um diesen Schlüssel zu erhalten.",
- "admin.gitlab.EnableHtmlDesc": "
Loggen Sie sich in Ihr GitLab Konto ein und gehen Sie zu Profileinstellungen -> Anwendungen.
Fügen Sie die Weiterleitungs-URL \"/login/gitlab/complete\" (Beispiel: http://localhost:8065/login/gitlab/complete) und \"/signup/gitlab/complete\" ein.
Benutzen Sie dann die Felder \"Secret\" und \"Id\" des GitLab um die folgenden Felder auszufüllen.
Vervollständigen Sie die Endpunkt-URLs.
",
- "admin.gitlab.authDescription": "Geben Sie https:///oauth/authorize (z.B. https://example.com:3000/oauth/authorize) ein. Stellen Sie sicher, dass Sie, abhängig von Ihrer Serverkonfiguration, HTTP oder HTTPS in der URL verwenden.",
- "admin.gitlab.authExample": "Z.B.: \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Auth Endpunkt:",
- "admin.gitlab.clientIdDescription": "Befolgen Sie die Anleitung zum Login in Gitlab, um diesen Wert zu erhalten",
- "admin.gitlab.clientIdExample": "Z.B.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "Anwendungs-ID:",
- "admin.gitlab.clientSecretExample": "Z.B.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Geheimer Schlüssel der Anwendung:",
- "admin.gitlab.enableDescription": "Wenn wahr, erlaubt Mattermost die Erstellung von Teams und die Registrierung mittels GitLab OAuth.",
- "admin.gitlab.enableTitle": "Erlaube die Authentifizierung mit GitLab: ",
- "admin.gitlab.settingsTitle": "GitLab Einstellungen",
- "admin.gitlab.tokenDescription": "Geben Sie https:///oauth/token ein. Stellen Sie sicher, dass Sie, abhängig von Ihrer Serverkonfiguration, HTTP oder HTTPS in der URL verwenden.",
- "admin.gitlab.tokenExample": "Z.B.: \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Token Endpunkt:",
- "admin.gitlab.userDescription": "Geben Sie https:///api/v3/user ein. Stellen Sie sicher, dass Sie, abhängig von Ihrer Serverkonfiguration, HTTP oder HTTPS in der URL verwenden.",
- "admin.gitlab.userExample": "Z.B.: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "API Endpunkt des Nutzers:",
- "admin.google.EnableHtmlDesc": "
Wechseln Sie zu https://console.developers.google.com, klicken Sie auf Zugangsdaten in der linken Seitenleiste und geben \"Mattermost - ihr-firmenname\" als Projektnamen an.
Klicken Sie die OAuth-Zustimmungsbildschirm-Überschrift an und geben \"Mattermost\" als den Produktnamen, der Nutzern gezeigt wird ein. Klicken Sie auf Speichern.
Unter der Anmeldedaten-Überschrift klicken Sie auf Anmeldedaten erstellen, wählen OAuth-Client-ID aus und wählen Webanwendung aus.
Bei den Einschränkungen und den Autorisierte Weiterleitungs-URIs geben Sie ihre-mattermost-url/signup/google/complete (zum Beispiel: http://localhost:8065/signup/google/complete) ein. Klicken Sie auf Erstellen.
Fügen Sie die Client-ID und den Client-Schlüssel in die darunterliegenden Felder ein, dann klicken Sie Speichern.
Abschließend wechseln Sie zu Google+ API und klicken auf Aktivieren. Dies kann einige Minuten dauern bis die Änderung durch Googles Systeme propagiert sind.
",
- "admin.google.authTitle": "Auth Endpunkt:",
- "admin.google.clientIdDescription": "Die Client-ID die Sie bei der Registrierung Ihrer Anwendung bei Google erhalten haben.",
- "admin.google.clientIdExample": "Z.B.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "Client-ID:",
- "admin.google.clientSecretDescription": "Der Clientschlüssel den Sie bei der Registrierung Ihrer Anwendung bei Google erhalten haben.",
- "admin.google.clientSecretExample": "Z.B.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Clientschlüssel:",
- "admin.google.tokenTitle": "Token Endpunkt:",
- "admin.google.userTitle": "API-Endpunkt des Nutzers:",
- "admin.image.amazonS3BucketDescription": "Bezeichnung Ihres S3-Bucket des AWS.",
- "admin.image.amazonS3BucketExample": "Z.B.: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Hostname Ihres S3 kompatiblen Speicheranbieters. Standardmäßig `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Z.B.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Amazon S3 Endpunkt:",
- "admin.image.amazonS3IdDescription": "Erhalten Sie diesen Wert von Ihrem Amazon EC2 Administrator.",
- "admin.image.amazonS3IdExample": "Z.B.: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 Zugangsschlüssel-ID:",
- "admin.image.amazonS3RegionDescription": "AWS Region Ihres S3 Bucket.",
- "admin.image.amazonS3RegionExample": "Z.B.: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Amazon S3 Region:",
- "admin.image.amazonS3SSEDescription": "Wenn wahr, werden Dateien in Amazon S3 mit serverseitiger Verschlüsselung mit Amazon S3-verwalteten Schlüsseln verschlüsselt. Schauen Sie in die Dokumentation, um mehr zu erfahren.",
- "admin.image.amazonS3SSEExample": "Z.B.: \"false\"",
- "admin.image.amazonS3SSETitle": "Serverseitige Verschlüsselung für Amazon S3 aktivieren:",
- "admin.image.amazonS3SSLDescription": "Wenn falsch, werden unsichere Verbindungen zu Amazon S3 erlaubt. Standardmäßig werden nur sichere Verbindungen verwendet.",
- "admin.image.amazonS3SSLExample": "Z.B.: \"wahr\"",
- "admin.image.amazonS3SSLTitle": "Aktiviere sichere Amazon S3 Verbindungen:",
- "admin.image.amazonS3SecretDescription": "Erhalten Sie diesen Wert von Ihrem Amazon EC2 Administrator.",
- "admin.image.amazonS3SecretExample": "Z.B.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 geheimer Zugangsschlüssel:",
- "admin.image.localDescription": "Ort, in den Dateien und Bilder gespeichert werden. Wenn leer, ist der Standard ./data/.",
- "admin.image.localExample": "Z.B.: \"./data/\"",
- "admin.image.localTitle": "Lokaler Speicherort:",
- "admin.image.maxFileSizeDescription": "Maximale Dateigröße für Anhänge in MB. Achtung: Stelle sicher, dass der Server die gewählte Größe unterstützt. Große Dateien erhöhen das Risiko eines Servercrashes und von abgebrochenen Uploads bei Netzwerkstörungen.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Maximale Dateigröße:",
- "admin.image.publicLinkDescription": "32-Zeichen Salt um die öffentlich Links von Bildern zu signieren. Wird bei der Installation zufällig generiert. Klicken Sie \"Neu generieren\" um einen neuen Salt zu erstellen.",
- "admin.image.publicLinkExample": "Z.B.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Salt für öffentlichen Links:",
- "admin.image.shareDescription": "Erlaubt Nutzern öffentliche Links zu Dateien und Bildern zu teilen.",
- "admin.image.shareTitle": "Erlaube öffentliche Dateilinks: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Dateisystem, in dem Dateien und Bilder gespeichert werden.
Die Auswahl von \"Amazon S3\" aktiviert die Felder zur Eingabe des Amazonzuganges.
Die Auswahl von \"lokalem Speicher\" aktiviert das Feld um einen lokalen Dateipfad auszuwählen.",
- "admin.image.storeLocal": "Lokales Dateisystem",
- "admin.image.storeTitle": "Dateisystem:",
- "admin.integrations.custom": "Benutzerdefinierte Integrationen",
- "admin.integrations.external": "Externe Dienste",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "Die Basisdomäne ist der ausgezeichnete Name, mit dem Mattermost mit der Suche nach Nutzern im AD/LDAP Baum beginnen soll.",
- "admin.ldap.baseEx": "Z.B.: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "Basisdomäne:",
- "admin.ldap.bindPwdDesc": "Passwort des Nutzers gegeben durch \"LDAP Nutzername\".",
- "admin.ldap.bindPwdTitle": "LDAP Nutzername:",
- "admin.ldap.bindUserDesc": "Der Nutzername, welcher für die AD/LDAP Suche benutzt wird. Dies sollte an Konto sein, welches speziell für Mattermost angelegt wurde. Es sollte begrenzten Lesezugriff auf den Bereich im AD/LDAP Baum erhalten, welcher im Basisdomäne Feld angegeben wurde.",
- "admin.ldap.bindUserTitle": "LDAP Nutzername:",
- "admin.ldap.emailAttrDesc": "Das Attribut des AD/LDAP-Servers, welches benutzt wird um die E-Mail-Adressen der Nutzer in Mattermost auszufüllen.",
- "admin.ldap.emailAttrEx": "Z.B.: \"mail\" oder \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "E-Mail Attribut:",
- "admin.ldap.enableDesc": "Wenn wahr, erlaubt Mattermost den Login mit AD/LDAP",
- "admin.ldap.enableTitle": "Erlaube Login mit AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Optional) Das Attribut im AD/LDAP-Server wird dazu verwendet, den Vornamen von Nutzern in Mattermost zu füllen. Wenn aktiv, können Nutzer ihren Vornamen nicht ändern, da er mit dem LDAP-Server synchronisiert wird. Wenn nicht gesetzt, können Nutzer ihren eigenen Vornamen in den Kontoeinstellungen ändern.",
- "admin.ldap.firstnameAttrEx": "Z.B.: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Attribut Vorname",
- "admin.ldap.idAttrDesc": "Das Attribut des AD/LDAP-Servers, welches von Mattermost als eindeutiger Identifikator benutzt wird. Es sollte ein AD/LDAP-Attribut sein, dessen Wert sich nicht ändert, z.B. Nutzername oder UID. Wenn sich die ID eines Nutzer ändert, wird Mattermost einen neues Konto erstellen, welches nicht mit dem Alten verbunden ist. Dieser Wert wird für die Anmeldung in Mattermost als \"AD/LDAP-Nutzername\" auf der Anmeldeseite verwendet. Normalerweise ist das Attribut dasselbe wie das vorherige Feld \"Attribut Benutzername\". Wenn ihr Team, zur Anmeldung an andere Dienste mittels AD/LDAP, die Formulierung Domäne\\\\Benutzername verwendet, wählen Sie Domäne\\\\Benutzername in diesem Feld, um die Konsistenz zwischen den Seiten beizubehalten.",
- "admin.ldap.idAttrEx": "Z.B.: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "Attribut-ID: ",
- "admin.ldap.lastnameAttrDesc": "(Optional) Das Attribut im AD/LDAP-Server wird dazu verwendet, den Nachnamen von Nutzern in Mattermost zu füllen. Wenn aktiv, können Nutzer ihren Vornamen nicht ändern, da er mit dem LDAP-Server synchronisiert wird. Wenn nicht gesetzt, können Nutzer ihren eigenen Nachnamen in den Kontoeinstellungen ändern.",
- "admin.ldap.lastnameAttrEx": "Z.B.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Attibut Nachname:",
- "admin.ldap.ldap_test_button": "AD/LDAP Test",
- "admin.ldap.loginNameDesc": "Der Platzhalter, der im Anmeldefeld der Anmeldeseite angezeigt wird. Standard ist \"AD/LDAP-Benutzername\".",
- "admin.ldap.loginNameEx": "Z.B.: \"AD/LDAP-Benutzername\"",
- "admin.ldap.loginNameTitle": "Login Feld Name:",
- "admin.ldap.maxPageSizeEx": "Z.B.: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Die maximale Anzahl von Benutzern, die der Mattermost-Server vom AD/LDAP-Server auf einmal anfordern wird. 0 ist unendlich.",
- "admin.ldap.maxPageSizeTitle": "Maximale Seitengröße:",
- "admin.ldap.nicknameAttrDesc": "(Optional) Das Attribut im AD/LDAP-Server wird dazu verwendet, den Spitznamen von Nutzern in Mattermost zu füllen. Wenn aktiv, können Nutzer ihren Vornamen nicht ändern, da er mit dem LDAP-Server synchronisiert wird. Wenn nicht gesetzt, können Nutzer ihren eigenen Spitznamen in den Kontoeinstellungen ändern.",
- "admin.ldap.nicknameAttrEx": "Z.B.: \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Spitznamen Attribut:",
- "admin.ldap.noLicense": "
Hinweis:
AD/LDAP-Funktionen sind Bestandteil der Enterprise Edition. Ihre derzeitige Lizenz unterstützt AD/LDAP nicht. Besuchen Sie unsere Webseite für Information und Preise der Enterprise Lizenzen.
",
- "admin.ldap.portDesc": "Der Port den Mattermost für die Verbindung mit dem AD/LDAP-Server verwendet. Standard ist 389.",
- "admin.ldap.portEx": "Z.B.: \"389\"",
- "admin.ldap.portTitle": "AD/LDAP-Port:",
- "admin.ldap.positionAttrDesc": "(Optional) Das Attribut des AD/LDAP-Servers, welches benutzt wird um das Positions-Feld des Nutzers in Mattermost auszufüllen.",
- "admin.ldap.positionAttrEx": "Z.B.: \"title\"",
- "admin.ldap.positionAttrTitle": "Positions-Attribut:",
- "admin.ldap.queryDesc": "Wert für Anfragen-Time-out an den AD/LDAP-Server. Erhöhen Sie diesen, wenn Sie Ablauffehler aufgrund eines langsamen AD/LDAP-Servers bekommen.",
- "admin.ldap.queryEx": "Z.B.: \"60\"",
- "admin.ldap.queryTitle": "Wert für Time-out (in Sekunden):",
- "admin.ldap.serverDesc": "Die Domäne oder IP-Adresse des AD/LDAP-Servers.",
- "admin.ldap.serverEx": "Z.B.: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "AD/LDAP-Server:",
- "admin.ldap.skipCertificateVerification": "Zertifikatsprüfung überspringen:",
- "admin.ldap.skipCertificateVerificationDesc": "Zertifikatsprüfung für TLS oder STARTTLS Verbindungen überspringen. Nicht empfohlen bei Produktionsumgebungen bei denen TLS benötigt wird. Nur zum Test gedacht.",
- "admin.ldap.syncFailure": "Sync Fehler: {error}",
- "admin.ldap.syncIntervalHelpText": "Die AD/LDAP-Synchronisation aktualisiert die Mattermost-Benutzerinformationen um die Änderungen auf dem AD/LDAP-Server zu spiegeln. Wenn zum Beispiel der Name eines Benutzers auf dem AD/LDAP-Server geändert wird, wird die Änderung in Mattermost bei der nächsten Synchronisierung durchgeführt. Gelöschte oder deaktivierte Konten auf dem AD/LDAP-Server setzen die Benutzer als \"Inaktiv\" und die Benutzer-Sessions werden entfernt. Mattermost führt die Synchronisation im hier spezifizierten Intervall durch. Wenn zum Beispiel 60 eingegeben wird, synchronisiert Mattermost alle 60 Minuten.",
- "admin.ldap.syncIntervalTitle": "Synchronisationsintervall (in Minuten):",
- "admin.ldap.syncNowHelpText": "Initiiert eine sofortige AD/LDAP Synchronisation.",
- "admin.ldap.sync_button": "AD/LDAP jetzt abgleichen",
- "admin.ldap.testFailure": "AD/LDAP-Test-Fehler: {error}",
- "admin.ldap.testHelpText": "Überprüft ob der Mattermost-Server sich mit dem angegebenen AD/LDAP-Server verbinden kann. Schauen Sie im Log für detailliertere Fehlermeldungen nach.",
- "admin.ldap.testSuccess": "AD/LDAP-Test erfolgreich",
- "admin.ldap.uernameAttrDesc": "Das Attribut des AD/LDAP-Servers das zum Befüllen des Benutzernamens in Mattermost verwendet wird. Das kann auch dem des ID-Attributes entsprechen.",
- "admin.ldap.userFilterDisc": "(Optional) Geben Sie einen AD/LDAP-Filter zur Begrenzung bei der Suche nach Benutzer-Objekten ein. Nur die zurückgegebenen Benutzer dieser Abfrage werden Zugriff auf Mattermost erhalten. Für Active-Directory lautet die Abfrage zum Ausschluss von deaktivierten Benutzern (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Z.B.: \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Benutzerfilter:",
- "admin.ldap.usernameAttrEx": "Z.B.: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Attribut Benutzername:",
- "admin.license.choose": "Datei auswählen",
- "admin.license.chooseFile": "Datei auswählen",
- "admin.license.edition": "Edition: ",
- "admin.license.key": "Lizenzschlüssel: ",
- "admin.license.keyRemove": "Enterprise Lizenz entfernen und Server downgraden",
- "admin.license.noFile": "Keine Datei hochgeladen",
- "admin.license.removing": "Lizenz wird entfernt...",
- "admin.license.title": "Edition und Lizenz",
- "admin.license.type": "Lizenz: ",
- "admin.license.upload": "Hochladen",
- "admin.license.uploadDesc": "Laden Sie einen Mattermost Enterprise Edition Lizenzschlüssel hoch um den Server upzugraden. Besuchen Sie uns online um mehr über die Vorteile der Enterprise Edition zu erfahren oder um eine Lizenz zu kaufen.",
- "admin.license.uploading": "Lizenz wird hochgeladen...",
- "admin.log.consoleDescription": "Üblicherweise falsch bei Produktionsumgebungen. Entwickler können dieses auf wahr stellen um Logmeldungen auf der Konsole anhand der Konsolen-Level-Option zu erhalten. Wenn wahr, schreibt der Server die Meldungen in den Standard-Ausgabe-Stream (stdout).",
- "admin.log.consoleTitle": "Logs auf der Konsole ausgeben: ",
- "admin.log.enableDiagnostics": "Aktiviere Diagnose und Fehlerübermittlung:",
- "admin.log.enableDiagnosticsDescription": "Durch aktivieren dieses Features kann die Qualität und Performance von Mattermost verbessert werden indem Diagnose und Fehler an Mattermost, Inc übermittelt werden. Lesen Sie unsere Datenschutzbestimmungen um mehr darüber zu erfahren.",
- "admin.log.enableWebhookDebugging": "Aktiviere Webhook-Debugging:",
- "admin.log.enableWebhookDebuggingDescription": "Sie können dies auf falsch setzen, um das Debug-Logging von eingehenden Webhook-Anfragen zu deaktivieren.",
- "admin.log.fileDescription": "Normalerweise wahr in Produktionsumgebungen. Wenn wahr, werden Ereignisse in die mattermost.log in den unter Log-Verzeichnis angegebene Ordner mitgeschrieben. Die Logs werden bei 10.000 Zeilen rotiert, in eine Datei im selben Verzeichnis archiviert und mit einem Datumsstempel und Seriennummer versehen. Zum Beispiel mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "Diese Einstellung bestimmt auf welchem Detailgrad Lognachrichten in die Konsole geschrieben werden. FEHLER: Gibt nur Fehlernachrichten aus. INFO: Gibt Fehlernachrichten und Informationen zum Start und Initialisierung aus. DEBUG: Gibt einen hohen Detailgrad für Entwickler zur Fehlersuche aus.",
- "admin.log.fileLevelTitle": "Datei Log-Level:",
- "admin.log.fileTitle": "Logs in Datei schreiben: ",
- "admin.log.formatDateLong": "Datum (2006/01/02)",
- "admin.log.formatDateShort": "Datum (01/02/06)",
- "admin.log.formatDescription": "Format der Lognachrichten. Wenn leer wird \"[%D %T] [%L] %M\" verwendet, wo:",
- "admin.log.formatLevel": "Level (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Nachricht",
- "admin.log.formatPlaceholder": "Dateiformat eingeben",
- "admin.log.formatSource": "Quelle",
- "admin.log.formatTime": "Zeit (15:04:05 MST)",
- "admin.log.formatTitle": "Log-Dateiformat:",
- "admin.log.levelDescription": "Diese Einstellung bestimmt auf welchem Detailgrad Lognachrichten in die Konsole geschrieben werden. ERROR: Gibt nur Fehlernachrichten aus. INFO: Gibt Fehlernachrichten und Informationen zum Start und Initialisierung aus. DEBUG: Gibt einen hohen Detailgrad für Entwickler zur Fehlersuche aus.",
- "admin.log.levelTitle": "Konsole Log Level:",
- "admin.log.locationDescription": "Der Ort für die Log-Dateien. Wenn leer werden sie im ./logs Verzeichnis gespeichert. Bei Angabe eines Verzeichnisses muss dieses existieren und Mattermost muss Schreibberechtigungen darauf haben.",
- "admin.log.locationPlaceholder": "Einen Dateiort eingeben",
- "admin.log.locationTitle": "Log-Verzeichnis:",
- "admin.log.logSettings": "Protokoll-Einstellungen",
- "admin.logs.bannerDesc": "Um Benutzer nach Benutzer-ID oder Token-ID zu suchen, wechseln Sie zu Reporting > Benutzer und fügen die ID in den Suchfilter ein.",
- "admin.logs.reload": "Erneut laden",
- "admin.logs.title": "Serverprotokoll",
- "admin.manage_roles.additionalRoles": "Weitere Berechtigungen für das Konto auswählen. Mehr über Rollen und Berechtigungen lesen.",
- "admin.manage_roles.allowUserAccessTokens": "Diesem Konto erlauben, persönliche Zugriffs-Token zu generieren.",
- "admin.manage_roles.cancel": "Abbrechen",
- "admin.manage_roles.manageRolesTitle": "Rollen verwalten",
- "admin.manage_roles.postAllPublicRole": "Zugriff zum Senden in alle öffentlichen Mattermost-Kanäle.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Zugriff zum Senden in alle Mattermost-Kanäle inklusive Direktnachrichten.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Speichern",
- "admin.manage_roles.saveError": "Rollen konnten nicht gepeichert werden.",
- "admin.manage_roles.systemAdmin": "Systemadministrator",
- "admin.manage_roles.systemMember": "Mitglied",
- "admin.manage_tokens.manageTokensTitle": "Persönliche Zugriffs-Token verwalten",
- "admin.manage_tokens.userAccessTokensDescription": "Persönliche Zugriffs-Token funktionieren ähnlich wie Sitzungs-Token und können von Integrationen zur Interaktion mit diesem Mattermost Server verwendet werden. Lernen Sie mehr über Benutzer-Zugriffs-Token.",
- "admin.manage_tokens.userAccessTokensNone": "Keine persönlichen Zugriffs-Token.",
- "admin.metrics.enableDescription": "Wenn wahr, wird Mattermost Performance-Daten sammeln und profilieren. Bitte schauen Sie in die Dokumentation um mehr über die Konfiguration von Performanceüberwachung für Mattermost zu erfahren.",
- "admin.metrics.enableTitle": "Performance Monitoring aktivieren:",
- "admin.metrics.listenAddressDesc": "Die Adresse auf die der Server hören wird um die Performancemetriken auszugeben.",
- "admin.metrics.listenAddressEx": "Z.B.: \":8067\"",
- "admin.metrics.listenAddressTitle": "Empfangs-Adresse:",
- "admin.mfa.bannerDesc": "Multi-Faktor-Authentifizierung ist für Konten mit AD/LDAP oder E-Mail-Login verfügbar. Wenn andere Loginmethoden verwendet werden, sollte MFA beim Authentifikationsprovider eingerichtet werden.",
- "admin.mfa.cluster": "Hoch",
- "admin.mfa.title": "Multi-Faktor-Authentifizierung",
- "admin.nav.administratorsGuide": "Administratorhandbuch",
- "admin.nav.commercialSupport": "Kommerzieller Support",
- "admin.nav.help": "Hilfe",
- "admin.nav.logout": "Abmelden",
- "admin.nav.report": "Fehler melden",
- "admin.nav.switch": "Teamauswahl",
- "admin.nav.troubleshootingForum": "Fehlerbehebungs-Forum",
- "admin.notifications.email": "E-Mail",
- "admin.notifications.push": "Mobile Push",
- "admin.notifications.title": "Benachrichtigungseinstellungen",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Anmelden mit OAuth-2.0-Provider nicht erlauben",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Wenn wahr, kann Mattermost als OAuth -2.0-Dienst arbeiten. Dies erlaubt Mattermost externe Applikationen über API Aufrufe zu autorisieren. Siehe Dokumentation für weitere Informationen.",
- "admin.oauth.providerTitle": "Aktiviere OAuth-2.0-Dienstprovider: ",
- "admin.oauth.select": "OAuth-2.0-Service-Provider auswählen:",
- "admin.office365.EnableHtmlDesc": "
Melden Sie sich mit Ihrem Microsoft oder Office 365-Konto an. Stellen Sie sicher, dass das Konto zum selben Mandanten gehört, mit dem sich die Nutzer anmelden können sollen.
Wechseln Sie zu https://apps.dev.microsoft.com, klicken auf App hinzufügen und verwenden \"Mattermost - ihr-firmen-name\" als den Namen der App.
Unter Geheime Anwendungsschlüssel klicken Sie auf Generiere neues Passwort und speichern es, um die Felder unten später zu vervollständigen.
Unter Platform klicken Sie auf Plattform hinzufügen, wählen Web und geben ihre-mattermost-url>/signup/office365/complete (zum Beispiel: http://localhost:8065/signup/office365/complete) unter Umleitungs-URI ein. Außerdem sollten Sie Erlaube Implizite Weiterleitung deaktivieren.
Abschließend klicken Sie auf Speichern und vervollständigen die Anwendungs-ID und geheimer Anwendungsschlüssel Felder unten.
",
- "admin.office365.authTitle": "Auth Endpunkt:",
- "admin.office365.clientIdDescription": "Die Anwendungs-ID die Sie bei der Registrierung Ihrer Anwendung bei Microsoft erhalten haben.",
- "admin.office365.clientIdExample": "Z.B.: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "Anwendungs-ID:",
- "admin.office365.clientSecretDescription": "Der geheime Anwendungsschlüssel, den Sie generiert haben, als Sie Ihre Anwendung bei Microsoft registriert haben.",
- "admin.office365.clientSecretExample": "Z.B.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Geheimer Anwendungsschlüssel:",
- "admin.office365.tokenTitle": "Token-Endpunkt:",
- "admin.office365.userTitle": "API-Endpunkt des Nutzers:",
- "admin.password.lowercase": "Mindestens ein Kleinbuchstabe",
- "admin.password.minimumLength": "Minimale Passwortlänge:",
- "admin.password.minimumLengthDescription": "Minimale Anzahl der Zeichen, die für ein gültiges Passwort benötigt werden. Muss eine ganze Zahl größer oder gleich {min} und weniger oder gleich {max} sein.",
- "admin.password.minimumLengthExample": "Z.B.: \"5\"",
- "admin.password.number": "Mindestens eine Ziffer",
- "admin.password.preview": "Vorschau der Fehlermeldung",
- "admin.password.requirements": "Passwortanforderungen:",
- "admin.password.requirementsDescription": "Erforderliche Zeichentypen für ein gültiges Passwort.",
- "admin.password.symbol": "Mindestens ein Symbol (wie \"~!@#$%^&*()\")",
- "admin.password.uppercase": "Mindestens ein Großbuchstabe",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "Wenn wahr, können Sie JIRA-Webhooks konfigurieren um Nachrichten an Mattermost zu senden. Um Phishing-Angriffe zu vermeiden, werden alle Beiträge durch ein BOT-Tag markiert.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "Dieses Geheimnis wird zur Authentifizierung gegenüber Mattermost verwendet.",
- "admin.plugins.jira.secretLabel": "Schlüssel:",
- "admin.plugins.jira.secretParamPlaceholder": "Schlüssel",
- "admin.plugins.jira.secretRegenerateDescription": "Regeneriert das Geheimnis für den Webhooks-URL-Endpunkt. Dadurch werden ihre existierenden JIRA-Integrationen ungültig.",
- "admin.plugins.jira.setupDescription": "Benutzen Sie diese Webhook-URL, um die JIRA-Integration einzurichten. {webhookDocsLink} ansehen, um mehr zu lernen.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Benutzernamen auswählen, mit dem die Integration verbunden ist.",
- "admin.plugins.jira.userLabel": "Benutzer:",
- "admin.plugins.jira.webhookDocsLink": "Dokumentation",
- "admin.privacy.showEmailDescription": "Wenn falsch wird die E-Mail Adresse der Mitglieder vor jedem außer den Systemadministratoren versteckt.",
- "admin.privacy.showEmailTitle": "Zeige E-Mail-Adresse: ",
- "admin.privacy.showFullNameDescription": "Wenn falsch wird der Name der Mitglieder vor jedem außer den Systemadministratoren versteckt. Anstelle des vollen Namens wird der Benutzername angezeigt.",
- "admin.privacy.showFullNameTitle": "Zeige vollen Namen: ",
- "admin.purge.button": "Alle Caches leeren",
- "admin.purge.loading": " Lädt...",
- "admin.purge.purgeDescription": "Dies wird alle Caches im Speicher für Dinge wie Sitzungen, Benutzer, Kanäle etc. leeren. Installationen, die High Availability verwenden, werden versuchen die Caches aller Server im Cluster zu leeren. Leeren der Caches kann einen Einfluss auf die Performance bedeuten.",
- "admin.purge.purgeFail": "Leeren nicht erfolgreich: {error}",
- "admin.rate.enableLimiterDescription": "Wenn wahr, werden API-Anfragen auf die eingestellten Werte begrenzt.",
- "admin.rate.enableLimiterTitle": "Anfragen drosseln: ",
- "admin.rate.httpHeaderDescription": "Wenn ausgefüllt, wird der Begrenzer an dem spezifizierten HTTP Header unterschieden (z.B. NGINX auf \"X-Real-IP\" stellen, bei Amazon ELB auf \"X-Forwarded-For\" stellen).",
- "admin.rate.httpHeaderExample": "Z.B.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Mittels HTTP Header drosseln:",
- "admin.rate.maxBurst": "Maximale Burst-Size:",
- "admin.rate.maxBurstDescription": "Maximale Anzahl von erlaubten Aufrufen nachdem das Query Limit pro Sekunde erreicht ist.",
- "admin.rate.maxBurstExample": "Z.B.: \"100\"",
- "admin.rate.memoryDescription": "Die maximale Anzahl an verbundenen Benutzer-Sitzungen, festgelegt durch die Einstellungen \"Mittels Absender-Adresse drosseln\" bzw. \"Mittels HTTP Header drosseln\".",
- "admin.rate.memoryExample": "Z.B.: \"10000\"",
- "admin.rate.memoryTitle": "Speichergröße:",
- "admin.rate.noteDescription": "Änderungen an Einstellungen außer der Seiten-URL in diesem Bereich erfordern einen Server-Neustart, bevor sie in Kraft treten.",
- "admin.rate.noteTitle": "Notiz:",
- "admin.rate.queriesDescription": "Begrenzt die API auf diese Anzahl an Anfragen pro Sekunde.",
- "admin.rate.queriesExample": "Z.B.: \"10\"",
- "admin.rate.queriesTitle": "Maximale Anfragen pro Sekunde:",
- "admin.rate.remoteDescription": "Wenn wahr, begrenze API-Zugriff durch IP-Adresse.",
- "admin.rate.remoteTitle": "Mittels Absender-Adresse drosseln: ",
- "admin.rate.title": "Begrenzer-Einstellungen",
- "admin.recycle.button": "Datenbankverbindungen recyclen",
- "admin.recycle.loading": " Wiederaufbereitung...",
- "admin.recycle.recycleDescription": "Installationen, die mehrere Datenbanken verwenden, können von einer Hauptdatenbank zu einer anderen umschalten, ohne den Mattermost-Server neu starten zu müssen, indem die \"config.json\" mit der neuen Konfiguration aktualisiert wird und die Funktion {reloadConfiguration} verwendet wird. Hierdurch werden die neuen Einstellungen geladen während der Server läuft. Der Administrator sollte dann die Funktion {featureName} nutzen, um die Datenbankverbindung auf Basis der aktualisierten Konfiguration zu recyclen.",
- "admin.recycle.recycleDescription.featureName": "Datenbankverbindungen recyclen",
- "admin.recycle.recycleDescription.reloadConfiguration": "Konfiguration > Konfiguration von Festplatte neu laden",
- "admin.recycle.reloadFail": "Recycling nicht erfolgreich: {error}",
- "admin.regenerate": "Neu generieren",
- "admin.reload.button": "Konfigurationen neu von Festplatte laden",
- "admin.reload.loading": " Lädt...",
- "admin.reload.reloadDescription": "Installationen, die mehrere Datenbanken verwenden, können von einer Hauptdatenbank zu einer anderen umschalten, ohne den Mattermost-Server neu starten zu müssen, indem die \"config.json\" mit der neuen Konfiguration aktualisiert wird und die Funktion {featureName} verwendet wird. Hierdurch werden die neuen Einstellungen geladen während der Server läuft. Der Administrator sollte dann die Funktion {recycleDatabaseConnections} nutzen, um die Datenbankverbindung auf Basis der aktualisierten Konfiguration zu recyclen.",
- "admin.reload.reloadDescription.featureName": "Konfiguration neu von Festplatte laden",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Datenbank > Datenbankverbindungen recyclen",
- "admin.reload.reloadFail": "Neuladen nicht erfolgreich: {error}",
- "admin.requestButton.loading": " Lädt...",
- "admin.requestButton.requestFailure": "Test-Fehler: {error}",
- "admin.requestButton.requestSuccess": "Test erfolgreich",
- "admin.reset_password.close": "Schließen",
- "admin.reset_password.newPassword": "Neues Passwort",
- "admin.reset_password.select": "Auswählen",
- "admin.reset_password.submit": "Bitte geben Sie mindestens {chars} Zeichen ein.",
- "admin.reset_password.titleReset": "Passwort zurücksetzen",
- "admin.reset_password.titleSwitch": "Zugang auf E-Mail-Adresse/Passwort umstellen",
- "admin.saml.assertionConsumerServiceURLDesc": "Geben Sie https:///login/sso/saml ein. Stellen Sie sicher Sie verwenden HTTP oder HTTPS in Ihrer URL entsprechend Ihrer Serverkonfiguration. Dieses Feld ist auch bekannt als die Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "Z.B.: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Service Provider Login URL:",
- "admin.saml.bannerDesc": "Benutzerattribute des SAML-Servers, inklusive Benutzerdeaktivierung oder -entfernung, werden in Mattermost bei der Benutzeranmeldung übernommen. Erfahren Sie mehr darüber in der Dokumentation",
- "admin.saml.emailAttrDesc": "Das Attribut des LDAP-Servers, welches benutzt wird um die E-Mail-Adressen der Nutzer in Mattermost auszufüllen.",
- "admin.saml.emailAttrEx": "Z.B.: \"Email\" oder \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "E-Mail-Attribut:",
- "admin.saml.enableDescription": "Wenn wahr, erlaubt Mattermost Login mit SAML 2.0. Bitte sehen Sie sich die Dokumentation an um mehr über die SAML-Konfiguration für Mattermost zu lernen.",
- "admin.saml.enableTitle": "Erlaube Login mit SAML 2.0:",
- "admin.saml.encryptDescription": "Wenn falsch wird Mattermost nicht die verschlüsselten SAML Assertions mit dem öffentlichen Zertifikat des Service Providers entschlüsseln. Nicht empfohlen für Produktionsumgebungen. Nur für Testzwecke.",
- "admin.saml.encryptTitle": "Verschlüsselung aktivieren:",
- "admin.saml.firstnameAttrDesc": "(Optional) Das Attribut in der SAML-Erklärung, welches benutzt wird um den Vornamen des Nutzers in Mattermost auszufüllen.",
- "admin.saml.firstnameAttrEx": "Z.B.: \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "Attribut Vorname:",
- "admin.saml.idpCertificateFileDesc": "Das öffentliche Authentifizierungszertifikat, ausgestellt durch Ihren Identitätsprovider.",
- "admin.saml.idpCertificateFileRemoveDesc": "Das durch Ihren Identitätsprovider ausgestellte öffentliche Authentifizierungszertifikat entfernen.",
- "admin.saml.idpCertificateFileTitle": "Öffentliches Zertifikat des Identitätsproviders:",
- "admin.saml.idpDescriptorUrlDesc": "Die Issuer-URL für den Identitätsprovider für SAML anfragen.",
- "admin.saml.idpDescriptorUrlEx": "Z.B.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "Identitätsprovider Issuer URL:",
- "admin.saml.idpUrlDesc": "Die URL, an die Mattermost SAML-Anfragen zum Start der Loginsequenz schickt.",
- "admin.saml.idpUrlEx": "Z.B.: \"https://idp.examle.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Optional) Das Attribut in der SAML-Erklärung, welches benutzt wird um den Nachnamen des Nutzers in Mattermost auszufüllen.",
- "admin.saml.lastnameAttrEx": "Z.B.: \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Attribut Nachname:",
- "admin.saml.localeAttrDesc": "(Optional) Das Attribut in der SAML-Erklärung, welches benutzt wird um de Sprache des Nutzers in Mattermost auszufüllen.",
- "admin.saml.localeAttrEx": "Z.B.: \"Locale\" oder \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Attribut bevorzugte Sprache:",
- "admin.saml.loginButtonTextDesc": "(Optional) Der Text der auf dem Login Button auf der Loginseite erscheint. Standardmäßig \"Mit SAML\".",
- "admin.saml.loginButtonTextEx": "Z.B.: \"Mit OKTA\"",
- "admin.saml.loginButtonTextTitle": "Login Button Text:",
- "admin.saml.nicknameAttrDesc": "(Optional) Das Attribut in der SAML-Erklärung, welches benutzt wird um den Spitznamen des Nutzers in Mattermost auszufüllen.",
- "admin.saml.nicknameAttrEx": "Z.B.: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Attribut Spitzname:",
- "admin.saml.positionAttrDesc": "(Optional) Das Attribut in der SAML-Erklärung, welches benutzt wird um die Position des Nutzers in Mattermost auszufüllen.",
- "admin.saml.positionAttrEx": "Z.B.: \"Role\"",
- "admin.saml.positionAttrTitle": "Positions-Attribut:",
- "admin.saml.privateKeyFileFileDesc": "Der private Schlüssel der zur Entschlüsselung der SAML Assertions des Identitätsproviders verwendet wird.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Den privaten Schlüssel zur Entschlüsselung der SAML Assertions löschen.",
- "admin.saml.privateKeyFileTitle": "Service Provider Privater Schlüssel:",
- "admin.saml.publicCertificateFileDesc": "Das Zertifikat mit dem die Signatur für SAML Anfragen an den Identitätsprovider für den Service Provider initiierten SAML Login generiert wird, wenn Mattermost der Service Provider ist.",
- "admin.saml.publicCertificateFileRemoveDesc": "Entferne das Zertifikat mit dem die Signatur für SAML Anfragen an den Identitätsprovider für den Service Provider initiierten SAML Login generiert wird, wenn Mattermost der Service Provider ist.",
- "admin.saml.publicCertificateFileTitle": "Öffentliches Zertifikat des Service Providers:",
- "admin.saml.remove.idp_certificate": "Entferne Zertifikat des Identitätsproviders",
- "admin.saml.remove.privKey": "Entferne privaten Schlüssel des Service Providers",
- "admin.saml.remove.sp_certificate": "Entferne Zertifikat des Service Providers",
- "admin.saml.removing.certificate": "Entferne Zertifikat...",
- "admin.saml.removing.privKey": "Entferne privaten Schlüssel...",
- "admin.saml.uploading.certificate": "Lade Zertifikat hoch...",
- "admin.saml.uploading.privateKey": "Lade privaten Schlüssel hoch...",
- "admin.saml.usernameAttrDesc": "Das Attribut des LDAP-Servers, welches benutzt wird um den Benutzernamen des Nutzers in Mattermost auszufüllen.",
- "admin.saml.usernameAttrEx": "Z.B.: \"Username\"",
- "admin.saml.usernameAttrTitle": "Attribut Benutzername:",
- "admin.saml.verifyDescription": "Wenn falsch wird Mattermost nicht verifizieren, ob die Signatur einer SAML Response mit der Login-URL des Service Providers übereinstimmt. Nicht empfohlen für Produktionsumgebungen. Nur für Testzwecke.",
- "admin.saml.verifyTitle": "Signatur überprüfen:",
- "admin.save": "Speichern",
- "admin.saving": "Speichere Einstellungen...",
- "admin.security.connection": "Verbindungen",
- "admin.security.inviteSalt.disabled": "Der Salt für Einladungen kann nicht geändert werden solange der E-Mail Versand deaktiviert ist.",
- "admin.security.login": "Anmelden",
- "admin.security.password": "Passwort",
- "admin.security.passwordResetSalt.disabled": "Das Salt für Passwort-Zurücksetzung kann nicht geändert werden, solange der E-Mail-Versand deaktiviert ist.",
- "admin.security.public_links": "Öffentliche Links",
- "admin.security.requireEmailVerification.disabled": "E-Mail-Bestätigung kann nicht geändert werden, solange der E-Mail-Versand deaktiviert ist.",
- "admin.security.session": "Sitzungen",
- "admin.security.signup": "Registrieren",
- "admin.select_team.close": "Schließen",
- "admin.select_team.select": "Auswählen",
- "admin.select_team.selectTeam": "Team auswählen",
- "admin.service.attemptDescription": "Anmeldungsversuche bevor ein Benutzer gesperrt wird und dieser sein Passwort via E-Mail zurücksetzen lassen muss.",
- "admin.service.attemptExample": "Z.B.: \"10\"",
- "admin.service.attemptTitle": "Max. Anmeldeversuche:",
- "admin.service.cmdsDesc": "Wenn wahr, werden benutzerdefinierte Slash-Befehle erlaubt. Dokumentation für mehr Details.",
- "admin.service.cmdsTitle": "Aktiviere benutzerdefinierte Slash-Befehle: ",
- "admin.service.corsDescription": "Aktiviere HTTP Cross Origin Request für spezifische Domains. Verwenden Sie \"*\" wenn Sie CORS von jeder Domain zulassen möchten oder lassen sie es leer um es zu deaktivieren.",
- "admin.service.corsEx": "http://beispiel.com",
- "admin.service.corsTitle": "Erlaube Cross Origin Requests von:",
- "admin.service.developerDesc": "Wenn wahr, werden Javascript Fehler in einer roten Zeile im oberen Bereich des Interfaces angezeigt. Nicht empfohlen für Produktionsumgebungen. ",
- "admin.service.developerTitle": "Aktiviere Entwickler Modus: ",
- "admin.service.enableAPIv3": "Die Verwendung des API-v3-Endpunktes erlauben:",
- "admin.service.enableAPIv3Description": "Auf falsch setzen um alle Endpunkte der Version 3 der REST API zu deaktivieren. Integrationen, die API v3 verwenden, werden nicht mehr funktionieren und können für die Migration zu API v4 identifiziert werden. API v3 ist überholt und wird in der nahen Zukunft entfernt werden. https://api.mattermost.com für mehr Details besuchen.",
- "admin.service.enforceMfaDesc": "Wenn wahr, wird Multi-Faktor-Authentifizierung für einen Login vorausgesetzt. Neue Benutzer werden aufgefordert MFA bei der Registrierung zu konfigurieren. Angemeldete Benutzer ohne eingerichtete MFA werden zur MFA-Einrichtungsseite weitergeleitet bis die Einrichtung abgeschlossen wurde.
Wenn es im System Benutzer mit einer anderen Anmeldemethode als AD/LDAP oder E-Mail gibt, muss MFA beim Authentifikationsprovider außerhalb von Mattermost erzwungen werden.",
- "admin.service.enforceMfaTitle": "Multi-Faktor-Authentifizierung erzwingen:",
- "admin.service.forward80To443": "Port 80 auf 443 weiterleiten:",
- "admin.service.forward80To443Description": "Leitet alle unsicheren Anfragen von Port 80 auf den sicheren Port 443 um",
- "admin.service.googleDescription": "Diesen Key setzen um den Titel von eingebetteten YouTube Videovorschauen anzeigen zu lassen. Ohne den Schlüssel werden YouTube Vorschauen basierend auf den Hyperlinks in Nachrichten und Kommentaren erstellt, sie werden aber nicht den Video Titel enthalten. Sehen Sie sich das Google Developers Tutorial für eine Anleitung, wie Sie an den Schlüssel kommen, an.",
- "admin.service.googleExample": "Z.B.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Google API Key:",
- "admin.service.iconDescription": "Wenn wahr, werden Webhooks, Slash-Befehle und anderen Integrationen wie Zapier erlaubt, das Profilbild zu ändern, mit dem sie Nachrichten senden. Hinweis: Kombiniert mit der Erlaubnis den Benutzernamen zu ändern, können Benutzer Phishing-Attacken ausführen, indem Sie sich als andere Nutzer ausgeben.",
- "admin.service.iconTitle": "Erlaube Integrationen das Profilbild zu ändern:",
- "admin.service.insecureTlsDesc": "Wenn wahr, werden alle ausgehenden HTTPS-Anfragen von selbst-signierten Zertifikaten ungeprüft angenommen. Zum Beispiel werden ausgehende Webhooks an einen Server mit einem selbst-signiertem TLS Zertifikat an eine beliebige Domäne zugelassen. Hinweis: das macht diese Verbindungen anfällig für Man-In-The-Middle Attacken.",
- "admin.service.insecureTlsTitle": "Erlaube unsichere ausgehende Verbindungen: ",
- "admin.service.integrationAdmin": "Verwaltung der Integrationen auf Admins beschränken:",
- "admin.service.integrationAdminDesc": "Wenn wahr, können Webhooks und Slash-Befehle nur durch Team- und Systemadministratoren erstellt, bearbeitet oder betrachtet werden und OAuth-2.0-Anwendungen nur durch Systemadministratoren. Integrationen stehen allen Benutzern zur Verfügung nachdem ein Systemadministrator sie erstellt hat.",
- "admin.service.internalConnectionsDesc": "Benutzen Sie diese Einstellung in Testumgebungen dazu, wie bei der lokalen Entwicklung von Integrationen auf einer Entwicklungsmaschine, Domains, IP-Adressen oder CIDR-Notationen zu spezifizieren um interne Verbindungen zu erlauben. Nicht empfohlen für die Verwendung in der Produktion, da dies Nutzern erlauben kann, vertrauliche Daten aus ihrem internen Netzwerk zu extrahieren.
Per Standard wird durch Benutzer zur Verfügung gestellten URLs, wie für Open-Graph-Metadaten, Webhooks oder Slash-Befehle verwendet, nicht erlaubt, sich mit reservierten IP-Adressen inklusive Loopback oder link-lokalen Adressen zu verbinden, die durch interne Netzwerke verwendet werden.Push-Benachrichtigungs-, Oauth-2.0- und WebRTC-Server-URLs sind vertrauenswürdig und werden durch diese Einstellung nicht beeinflusst.",
- "admin.service.internalConnectionsEx": "webhooks.intern.beispiel.de 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Erlaube ungesicherte interne Verbindungen zu: ",
- "admin.service.letsEncryptCertificateCacheFile": "Let's Encrylt Zertifikat Cache Datei:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Zertifikate und andere Daten über den Let's Encrypt Dienst werden in dieser Datei gespeichert.",
- "admin.service.listenAddress": "Empfangs-Adresse:",
- "admin.service.listenDescription": "Die Adresse und Port an die gebunden und gehört wird. Bei Angabe von \":8065\" wird an alle Netzwerkkarten gebunden. Bei Angabe von \"127.0.0.1:8065\" wird nur an die Netzwerkkarte mit der IP Adresse gebunden. Wenn Sie einen Port eines niedrigen Levels wählen (auch \"System Ports\" oder \"Well Known Ports\" im Bereich 0-1023), müssen Sie Berechtigungen für das Binden an den Port haben. Auf Linux können Sie \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" verwenden um Mattermost das Binden an Well Known Ports zu erlauben.",
- "admin.service.listenExample": "Z.B.: \":8065\"",
- "admin.service.mfaDesc": "Wenn wahr, können Benutzer mit AD/LDAP- oder E-Mail-Anmeldung Multi-Faktor-Authentifizierung ihrem Konto mit Google-Authenticator hinzufügen.",
- "admin.service.mfaTitle": "Multi-Faktor-Authentifizierung einschalten:",
- "admin.service.mobileSessionDays": "Sessiondauer für mobile Anwendungen (Tage):",
- "admin.service.mobileSessionDaysDesc": "Die Anzahl der Tage seit der letzten Anmeldung des Benutzers bis zum Ablauf der Sitzung. Bei Änderung dieser Einstellung tritt die neue Sitzungsdauer in Kraft nachdem der Benutzer sich das nächste Mal anmeldet.",
- "admin.service.outWebhooksDesc": "Wenn wahr, werden ausgehende Webhooks erlaubt. Dokumentation für mehr Details.",
- "admin.service.outWebhooksTitle": "Aktiviere ausgehende Webhooks: ",
- "admin.service.overrideDescription": "Wenn wahr, wird Webhooks, Slash-Befehlen und anderen Integrationen wie Zapier erlaubt, den Benutzernamen zu ändern, mit dem sie Nachrichten senden. Hinweis: Kombiniert mit der Erlaubnis, das Profilbild zu ändern, können Benutzer Phishing-Attacken ausführen, indem Sie sich als andere Nutzer ausgeben.",
- "admin.service.overrideTitle": "Erlaube Integrationen den Benutzernamen zu ändern:",
- "admin.service.readTimeout": "Lese-Zeitüberschreitung:",
- "admin.service.readTimeoutDescription": "Maximale erlaubte Zeit zwischen Verbindungsannahme bis die Anfrage komplett gelesen wurde.",
- "admin.service.securityDesc": "Wenn wahr, werden Systemadministratoren durch E-Mails informiert, dass ein sicherheitsrelevantes Update in den letzen 12 Stunden angekündigt wurde. Setzt voraus, dass E-Mail aktiviert wurde.",
- "admin.service.securityTitle": "Sicherheitsbenachrichtigungen aktivieren: ",
- "admin.service.sessionCache": "Session Cache (Minuten):",
- "admin.service.sessionCacheDesc": "Die Anzahl von Minuten in denen der Sitzungs-Cache im Speicher gehalten wird.",
- "admin.service.sessionDaysEx": "Z.B.: \"30\"",
- "admin.service.siteURL": "Seiten-URL:",
- "admin.service.siteURLDescription": "Die URL, die Benutzer verwenden um auf Mattermost zuzugreifen. Standard-Ports wie 80 und 443 können ausgelassen werden, aber nicht-Standard-Ports sind erforderlich. Zum Beispiel: http://mattermost.example.com:8065. Diese Einstellung ist erforderlich.",
- "admin.service.siteURLExample": "Z.B.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Sessiondauer für SSO Anwendungen (Tage):",
- "admin.service.ssoSessionDaysDesc": "Die Anzahl der Tage seit der letzten Anmeldung des Benutzers bis zum Ablauf der Sitzung. Wenn die Authentifizierungsmethode SAML oder GitLab ist, wird der Benutzer automatisch wieder angemeldet, sofern er noch bei SAML oder GitLab angemeldet ist. Bei Änderung dieser Einstellung tritt die neue Sitzungsdauer in Kraft nachdem der Benutzer sich das nächste Mal anmeldet.",
- "admin.service.testingDescription": "Wenn wahr, wird der /test Slash-Befehl aktiviert, um Testkonten, -daten und Textformatierungen zu laden. Änderung erfordern einen Server-Neustart, bevor sie in Kraft treten.",
- "admin.service.testingTitle": "Aktiviere Testbefehle: ",
- "admin.service.tlsCertFile": "TLS Zertifikatsdatei:",
- "admin.service.tlsCertFileDescription": "Das zu verwendende Zertifikat.",
- "admin.service.tlsKeyFile": "TLS Schlüsseldatei:",
- "admin.service.tlsKeyFileDescription": "Der zu verwendende private Schlüssel.",
- "admin.service.useLetsEncrypt": "Let's Encrypt verwenden:",
- "admin.service.useLetsEncryptDescription": "Aktiviere automatischen Abruf von Zertifikaten über Let's Encrypt. Das Zertifikat wird abgerufen wenn ein Client versucht von einer neuen Domains zuzugreifen. Dies funktioniert mit mehreren Domains.",
- "admin.service.userAccessTokensDescLabel": "Name: ",
- "admin.service.userAccessTokensDescription": "Wenn wahr, können Benutzer persönliche Zugriffs-Token für Integrationen in Kontoeinstellungen > Sicherheit erstellen. Sie können zur Authentifizierung gegenüber der API verwendet werden und geben vollen Zugriff auf das Konto.
Um zu verwalten, wer persönliche Zugriffs-Token erstellen kann, gehen Sie zur Seite Systemkonsole > Benutzer.",
- "admin.service.userAccessTokensIdLabel": "Token-ID: ",
- "admin.service.userAccessTokensTitle": "Persönliche Zugriffs-Token aktivieren: ",
- "admin.service.webSessionDays": "Sitzungsdauer AD/LDAP und E-Mail (in Tagen):",
- "admin.service.webSessionDaysDesc": "Die Anzahl der Tage seit der letzten Anmeldung des Benutzers bis zum Ablauf der Sitzung. Bei Änderung dieser Einstellung tritt die neue Sitzungsdauer in Kraft nachdem der Benutzer sich das nächste Mal anmeldet.",
- "admin.service.webhooksDescription": "Wenn wahr, werden eingehende Webhooks erlaubt. Um Phishing-Attacken vorzubeugen werden alle Posts von Webhooks mit dem BOT-Tag versehen. Dokumentation für mehr Details.",
- "admin.service.webhooksTitle": "Aktiviere eingehende Webhooks: ",
- "admin.service.writeTimeout": "Schreibe-Zeitüberschreitung:",
- "admin.service.writeTimeoutDescription": "Wenn HTTP verwendet wird (unsicher), ist dies die maximale erlaubte Zeit vom ende des Lesens der Anfrage bis die Antwort geschrieben wurde. Wenn HTTPS verwendet wird ist es die komplette Zeit von Verbindungsannahme bis die Antwort geschrieben wurde.",
- "admin.sidebar.advanced": "Erweitert",
- "admin.sidebar.audits": "Compliance und Prüfung",
- "admin.sidebar.authentication": "Authentifizierung",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "Hochverfügbarkeit",
- "admin.sidebar.compliance": "Compliance",
- "admin.sidebar.configuration": "Konfiguration",
- "admin.sidebar.connections": "Verbindungen",
- "admin.sidebar.customBrand": "Eigenes Branding",
- "admin.sidebar.customIntegrations": "Benutzerdefinierte Integrationen",
- "admin.sidebar.customization": "Anpassung",
- "admin.sidebar.database": "Datenbank",
- "admin.sidebar.developer": "Entwickler",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "E-Mail",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "Externe Dienste",
- "admin.sidebar.files": "Dateien",
- "admin.sidebar.general": "Allgemein",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integrationen",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Rechtsabteilung und Support",
- "admin.sidebar.license": "Edition und Lizenz",
- "admin.sidebar.linkPreviews": "Link-Vorschauen",
- "admin.sidebar.localization": "Lokalisation",
- "admin.sidebar.logging": "Protokollierung",
- "admin.sidebar.login": "Anmelden",
- "admin.sidebar.logs": "Protokolle",
- "admin.sidebar.metrics": "Performance Überwachung",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Mattermost-App-Links",
- "admin.sidebar.notifications": "Benachrichtigungen",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "ANDERE",
- "admin.sidebar.password": "Passwort",
- "admin.sidebar.policy": "Richtlinie",
- "admin.sidebar.privacy": "Privatsphäre",
- "admin.sidebar.publicLinks": "Öffentliche Links",
- "admin.sidebar.push": "Mobil Push",
- "admin.sidebar.rateLimiting": "Geschwindigkeitsbegrenzung",
- "admin.sidebar.reports": "REPORTING",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Sicherheit",
- "admin.sidebar.sessions": "Sitzungen",
- "admin.sidebar.settings": "EINSTELLUNGEN",
- "admin.sidebar.signUp": "Registrieren",
- "admin.sidebar.sign_up": "Registrieren",
- "admin.sidebar.statistics": "Teamstatistiken",
- "admin.sidebar.storage": "Speicher",
- "admin.sidebar.support": "Rechtsabteilung und Support",
- "admin.sidebar.users": "Benutzer",
- "admin.sidebar.usersAndTeams": "Benutzer und Teams",
- "admin.sidebar.view_statistics": "System Statistiken",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Systemkonsole",
- "admin.sql.dataSource": "Datenquelle:",
- "admin.sql.driverName": "Treibername:",
- "admin.sql.keyDescription": "32 Zeichen Salt zur Ver- und Entschlüsselung von sensitiven Feldern in der Datenbank.",
- "admin.sql.keyExample": "Z.B.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "Verschlüsselungs-Schlüssel für Rest:",
- "admin.sql.maxConnectionsDescription": "Maximale Anzahl von wartenden Verbindungen zum Offenhalten der Datenbank.",
- "admin.sql.maxConnectionsExample": "Z.B.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Maximal offene Verbindungen:",
- "admin.sql.maxOpenDescription": "Maximale Anzahl von offenen Verbindungen zum Offenhalten der Datenbank.",
- "admin.sql.maxOpenExample": "Z.B.: \"10\"",
- "admin.sql.maxOpenTitle": "Maximal offene Verbindungen:",
- "admin.sql.noteDescription": "Änderungen an Einstellungen in diesem Bereich erfordern einen Server Neustart.",
- "admin.sql.noteTitle": "Notiz:",
- "admin.sql.queryTimeoutDescription": "Die Anzahl an Sekunden, die auf eine Antwort von der Datenbank gewartet wird, nachdem eine Verbindung aufgebaut und die Abfrage gesendet wurde. Fehler, die Sie in der Benutzeroberfläche oder den Logs als Ergebnis einer Abfrage-Zeitüberschreitung sehen, können abhängig vom Typ der Abfrage variieren.",
- "admin.sql.queryTimeoutExample": "Z.B.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Abfrage-Zeitüberschreitung:",
- "admin.sql.replicas": "Datenquellen Replikas:",
- "admin.sql.traceDescription": "(Entwicklermodus) Wenn wahr, werden ausgeführte SQL-Befehle ins Log geschrieben.",
- "admin.sql.traceTitle": "Verfolgung: ",
- "admin.sql.warning": "Warnung: Neugenerierung dieses Salts kann für einige Spalten der Datenbank leere Ergebnisse zurückgeben.",
- "admin.support.aboutDesc": "Die URL für den \"Über\"-Link auf der Mattermost Anmelde- und Registrierungsseite. Wenn das Feld leer ist, wird der Link für Nutzer versteckt.",
- "admin.support.aboutTitle": "Über-Link:",
- "admin.support.emailHelp": "E-Mail Adresse welche in E-Mail-Benachrichtigunen und im Tutorial für Endnutzer für Supportfälle angezeigt werden.",
- "admin.support.emailTitle": "Support-E-Mail-Adresse:",
- "admin.support.helpDesc": "Die URL für den \"Hilfe\"-Link auf der Mattermost Anmelde- und Registrierungsseite. Wenn das Feld leer ist, wird der \"Hilfe\"-Link für Nutzer versteckt.",
- "admin.support.helpTitle": "Hilfe Link:",
- "admin.support.noteDescription": "Wenn zu einer externen Site verlinkt wird, sollte die URL mit http:// oder https:// beginnen.",
- "admin.support.noteTitle": "Notiz:",
- "admin.support.privacyDesc": "Die URL für den \"Privatsphäre\"-Link auf der Mattermost Anmelde- und Registrierungsseite. Wenn das Feld leer ist, wird der \"Privatsphäre\"-Link für Nutzer versteckt.",
- "admin.support.privacyTitle": "Datenschutzerklärung Link:",
- "admin.support.problemDesc": "Die URL für den \"Ein Problem melden\"-Link auf der Mattermost Anmelde- und Registrierungsseite. Wenn das Feld leer ist, wird der Link im Hauptmenü für Nutzer versteckt.",
- "admin.support.problemTitle": "Ein Problem melden link:",
- "admin.support.termsDesc": "Link zu den Bedingungen unter denen Benutzer diesen Onlinedienst verwenden dürfen. In der Voreinstellung beinhaltet dies die \"Mattermost Nutzungsbedingungen (Endnutzer)\", welche die Konditionen erklärt unter denen die Mattermost Software für die Benutzer bereitgestellt wird. Wenn Sie den voreingestellten Link auf eine angepasste Version ändern, muss diese ebenfalls einen Link zu den voreingestellten Bedingungen enthalten, damit die Benutzer die Mattermost Nutzungsbedingungen (Endnutzer) zur Kenntnis nehmen.",
- "admin.support.termsTitle": "AGB Link:",
- "admin.system_analytics.activeUsers": "Aktive Benutzer mit Nachrichten",
- "admin.system_analytics.title": "das System",
- "admin.system_analytics.totalPosts": "Alle Nachrichten",
- "admin.system_users.allUsers": "Alle Benutzer",
- "admin.system_users.noTeams": "Keine Teams",
- "admin.system_users.title": "{siteName} Benutzer",
- "admin.team.brandDesc": "Aktiviere individuelles Branding um ein Bild Ihrer Wahl, unten hoch geladen, sowie einige Hilfetexte, unten angegeben, auf der Login Seite anzuzeigen.",
- "admin.team.brandDescriptionExample": "Die gesamte Teamkommunikation an einem Ort, durchsuchbar und überall verfügbar",
- "admin.team.brandDescriptionHelp": "Beschreibung des Dienstes, die auf dem Anmeldebildschirm und der Benutzeroberfläche angezeigt wird. Wenn nicht spezifiziert, wird \"Die gesamte Teamkommunikation an einem Ort, durchsuchbar und überall verfügbar\" angezeigt.",
- "admin.team.brandDescriptionTitle": "Seitenbeschreibung: ",
- "admin.team.brandImageTitle": "Eigenes Markenlogo:",
- "admin.team.brandTextDescription": "Text, der unterhalb des individuellen Marken-Bildes auf dem Anmeldebildschirm angezeigt wird. Unterstützt Markdown-formatierten Text. Maximal 500 Zeichen erlaubt.",
- "admin.team.brandTextTitle": "Individueller Markentext:",
- "admin.team.brandTitle": "Individuelles Erscheinungsbild aktivieren: ",
- "admin.team.chooseImage": "Neues Bild wählen",
- "admin.team.dirDesc": "Wenn wahr, werden Teams, welche im Team-Verzeichnis angezeigt werden sollen, auf der Hauptseite dargestellt anstatt ein neues Team zu erstellen.",
- "admin.team.dirTitle": "Team Verzeichnis aktivieren: ",
- "admin.team.maxChannelsDescription": "Maximale Anzahl an Kanälen pro Team, inklusive aktiven und gelöschten Kanälen.",
- "admin.team.maxChannelsExample": "Z.B.: \"100\"",
- "admin.team.maxChannelsTitle": "Maximal Kanäle pro Team:",
- "admin.team.maxNotificationsPerChannelDescription": "Maximale Anzahl von Benutzern in einem Kanal bis Benutzer mit @all,@here und @channel keine Benachrichtigungen aufgrund von Performance auslösen können.",
- "admin.team.maxNotificationsPerChannelExample": "Z.B.: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Maximale Benachrichtigungen pro Kanal:",
- "admin.team.maxUsersDescription": "Maximale Anzahl an Benutzern pro Team, inklusive Aktive und Inaktive Benutzer.",
- "admin.team.maxUsersExample": "Z.B.: \"25\"",
- "admin.team.maxUsersTitle": "Max Benutzer pro Team:",
- "admin.team.noBrandImage": "Kein Markenlogo hochgeladen",
- "admin.team.openServerDescription": "Wenn wahr, kann sich jeder auf diesem Server registrieren ohne eine Einladung erhalten zu müssen.",
- "admin.team.openServerTitle": "Aktiviere offenen Server: ",
- "admin.team.restrictDescription": "Teams und Benutzerkonten können sich nur von einer bestimmten Domain (z.B. \"mattermost.org\") oder einer Liste von kommaseparierten Domains (z.B. \"corp.mattermost.com, mattermost.org\") registrieren.",
- "admin.team.restrictDirectMessage": "Erlaubte Benutzern einen Direktnachrichtenkanal zu öffnen mit:",
- "admin.team.restrictDirectMessageDesc": "'Jeder Benutzer auf dem Mattermost-Server' ermöglicht es Benutzern, direkte Nachrichten an alle Benutzer des Servers zu schicken, auch wenn sie nicht zusammen in einem Team sind. 'Jeder Benutzer des Teams' limitiert die Möglichkeit darauf, nur direkte Nachrichten an Benutzer zu schicken, die im gleichen Team sind.",
- "admin.team.restrictExample": "Z.B.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Wenn aktiviert ist es nicht möglich Teams zu erstellen deren Namen reservierte Wörter wie www, admin, support, test, channel, etc. beinhalten",
- "admin.team.restrictNameTitle": "Beschränke Teamnamen: ",
- "admin.team.restrictTitle": "Begrenze Kontoerstellung auf spezifizierte E-Mail-Domains:",
- "admin.team.restrict_direct_message_any": "Jeder Nutzer auf dem Mattermost Server",
- "admin.team.restrict_direct_message_team": "Jedes Mitglied des Teams",
- "admin.team.showFullname": "Zeige Vor- und Nachname",
- "admin.team.showNickname": "Zeige Spitzname, wenn verfügbar, sonst zeige Vor- und Nachname",
- "admin.team.showUsername": "Zeige Benutzername (Standard)",
- "admin.team.siteNameDescription": "Name des Dienstes, der auf der Anmeldeseite und der Seiten angezeigt wird.",
- "admin.team.siteNameExample": "Z.B.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Seitenname:",
- "admin.team.teamCreationDescription": "Wenn falsch können nur Systemadministratoren Teams erstellen.",
- "admin.team.teamCreationTitle": "Aktiviere Team Erstellung: ",
- "admin.team.teammateNameDisplay": "Namensdarstellung der Teammitglider:",
- "admin.team.teammateNameDisplayDesc": "Wählen Sie, wie die Namen anderer Benutzer in Direktnachrichten angezeigt werden sollen.",
- "admin.team.upload": "Hochladen",
- "admin.team.uploadDesc": "Individualisieren Sie ihre Nutzererfahrung durch das Hinzufügen eines Bildes zu ihrem Anmeldebildschirm. Die empfohlene maximale Bildgröße beträgt unter 2MB.",
- "admin.team.uploaded": "Hochgeladen!",
- "admin.team.uploading": "Lade hoch..",
- "admin.team.userCreationDescription": "Wenn falsch, wird die Möglichkeit Konten zu erstellen deaktiviert. Der Konto erstellen Button zeigt dann einen Fehler, wenn er gedrückt wird.",
- "admin.team.userCreationTitle": "Aktiviere Kontoerstellung: ",
- "admin.team_analytics.activeUsers": "Aktive Nutzer mit Beiträgen",
- "admin.team_analytics.totalPosts": "Summe aller Beiträge",
- "admin.true": "wahr",
- "admin.user_item.authServiceEmail": "Anmelde-Methode: E-Mail-Adresse",
- "admin.user_item.authServiceNotEmail": "Anmelde-Methode: {service}",
- "admin.user_item.confirmDemoteDescription": "Wenn Sie sich selbst die Systemadministrations-Rolle entziehen und es gibt keinen weitere Benutzer mit der Systemadministrations-Rolle, müssen Sie einen Systemadministrator über den Mattermost-Server in einer Terminal-Sitzung mit folgendem Befehl festlegen.",
- "admin.user_item.confirmDemoteRoleTitle": "Bestätigung des Entziehens der Systemadministrations-Rolle",
- "admin.user_item.confirmDemotion": "Bestätigung des Entziehens",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "E-Mail-Adresse: {email}",
- "admin.user_item.inactive": "Inaktiv",
- "admin.user_item.makeActive": "Aktivieren",
- "admin.user_item.makeInactive": "Deaktivieren",
- "admin.user_item.makeMember": "Zum Mitglied machen",
- "admin.user_item.makeSysAdmin": "Zum Systemadministrator machen",
- "admin.user_item.makeTeamAdmin": "Zum Teamadministrator machen",
- "admin.user_item.manageRoles": "Rollen verwalten",
- "admin.user_item.manageTeams": "Teams verwalten",
- "admin.user_item.manageTokens": "Token verwalten",
- "admin.user_item.member": "Mitglied",
- "admin.user_item.mfaNo": "MFA: Nein",
- "admin.user_item.mfaYes": "MFA: Ja",
- "admin.user_item.resetMfa": "MFA entfernen",
- "admin.user_item.resetPwd": "Passwort zurücksetzen",
- "admin.user_item.switchToEmail": "Umschalten zu E-Mail-Adresse/Passwort",
- "admin.user_item.sysAdmin": "Systemadministrator",
- "admin.user_item.teamAdmin": "Teamadministrator",
- "admin.user_item.userAccessTokenPostAll": "(mit post:all Benutzer-Zugriffs-Token)",
- "admin.user_item.userAccessTokenPostAllPublic": "(mit post:channels Benutzer-Zugriffs-Token)",
- "admin.user_item.userAccessTokenYes": "(mit persönlichen Zugriffs-Token)",
- "admin.webrtc.enableDescription": "Wenn wahr, erlaubt Mattermost die Erstellung von eins-zu-eins Videokonferenzen. WebRTC Anrufe sind in Chrome, Firefox und Mattermost Desktop Anwendungen verfügbar.",
- "admin.webrtc.enableTitle": "Aktiviere Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Geben Sie ihr geheimes Admin Passwort ein, um die Gateway Admin URL aufzurufen.",
- "admin.webrtc.gatewayAdminSecretExample": "Z.B.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Gateway Admin Secret:",
- "admin.webrtc.gatewayAdminUrlDescription": "Geben Sie https://:/admin ein. Stellen Sie sicher, dass Sie HTTP oder HTTPS abhängig von ihrer Server-Konfiguration verwenden. Mattermost WebRTC verwendet diese URL, um zum Verbindungsaufbau gültige Token für jeden Teilnehmer zu erhalten.",
- "admin.webrtc.gatewayAdminUrlExample": "Z.B.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Gateway Admin URL:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Geben Sie wss://: ein. Stellen Sie sicher das Sie WS oder WSS in Ihrer URL entsprechend Ihrer Serverkonfiguration verwenden. Dies ist das Websocket welches für die Signalisierung und dem Verbindungsaufbau zwischen den Peers verwendet wird.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Z.B.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway-Websocket-URL:",
- "admin.webrtc.stunUriDescription": "Geben Sie ihre STUN URI als stun:: ein. STUN ist ein standardisiertes Netzwerkprotokoll, das einem Endgerät dabei hilft, seine öffentliche IP-Adresse zu erhalten, wenn es sich hinter einem NAT befindet.",
- "admin.webrtc.stunUriExample": "Z.B.: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI:",
- "admin.webrtc.turnSharedKeyDescription": "Geben Sie ihren TURN Server Shared Key ein. Dies wird verwendet, um dynamische Kennwörter zum herstellen der Verbindung zu erzeugen. Jedes Kennwort ist für einen kurzen Zeitraum gültig.",
- "admin.webrtc.turnSharedKeyExample": "Z.B.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "TURN Shared Key:",
- "admin.webrtc.turnUriDescription": "Geben Sie ihre TURN URI als turn:: ein. TURN ist ein standardisiertes Netzwerkprotokoll, das einem Endgerät dabei hilft, eine Verbindung durch die Nutzung einer öffentlichen IP-Weiterleitungsadressse aufzubauen, wenn es sich hinter einem symmetrischen NAT befindet.",
- "admin.webrtc.turnUriExample": "Z.B.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI:",
- "admin.webrtc.turnUsernameDescription": "Geben Sie Ihren TURN-Server-Benutzernamen ein.",
- "admin.webrtc.turnUsernameExample": "Z.B.: \"Benutzername\"",
- "admin.webrtc.turnUsernameTitle": "TURN Benutzername:",
- "admin.webserverModeDisabled": "Deaktiviert",
- "admin.webserverModeDisabledDescription": "Der Mattermost Server wird keine statischen Dateien bereitstellen.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Der Mattermostserver wird statische Dateien gzip komprimiert bereitstellen.",
- "admin.webserverModeHelpText": "Gzip Komprimierung gilt für statische Dateien. Es wird empfohlen gzip zu aktivieren um die Leistung zu verbessern, es sei denn, Ihre Umgebung hat bestimmte Einschränkungen, wie ein Web Proxy, welcher gzip-Dateien schlecht verteilt. Diese Einstellung erfordert einen Serverneustart um wirksam zu werden.",
- "admin.webserverModeTitle": "Webserver Modus:",
- "admin.webserverModeUncompressed": "Unkomprimiert",
- "admin.webserverModeUncompressedDescription": "Der Mattermostserver wird statische Dateien unkomprimiert bereitstellen.",
- "analytics.chart.loading": "Lade...",
- "analytics.chart.meaningful": "Nicht genügend Daten für eine aussagekräftige Darstellung.",
- "analytics.system.activeUsers": "Aktive Nutzer mit Beiträgen",
- "analytics.system.channelTypes": "Kanal Typen",
- "analytics.system.dailyActiveUsers": "Tägliche aktive Benutzer",
- "analytics.system.monthlyActiveUsers": "Monatliche aktive Benutzer",
- "analytics.system.postTypes": "Nachrichten, Dateien und Hashtags",
- "analytics.system.privateGroups": "Private Kanäle",
- "analytics.system.publicChannels": "Öffentliche Kanäle",
- "analytics.system.skippedIntensiveQueries": "Um die Performance zu maximieren sind einige Statistiken deaktiviert. Sie können diese in der config.json wieder reaktivieren. Sie erfahren mehr in der Dokumentation",
- "analytics.system.textPosts": "Nur-Text Beiträge",
- "analytics.system.title": "System Statistiken",
- "analytics.system.totalChannels": "Kanäle Gesamt",
- "analytics.system.totalCommands": "Befehle Gesamt",
- "analytics.system.totalFilePosts": "Beiträge mit Dateien",
- "analytics.system.totalHashtagPosts": "Beiträge mit Hashtags",
- "analytics.system.totalIncomingWebhooks": "Eingehende Webhooks",
- "analytics.system.totalMasterDbConnections": "Master DB Verbindungen",
- "analytics.system.totalOutgoingWebhooks": "Ausgehende Webhooks",
- "analytics.system.totalPosts": "Beiträge Gesamt",
- "analytics.system.totalReadDbConnections": "Replica DB Verbindungen",
- "analytics.system.totalSessions": "Sitzungen Gesamt",
- "analytics.system.totalTeams": "Teams Gesamt",
- "analytics.system.totalUsers": "Benutzer Gesamt",
- "analytics.system.totalWebsockets": "Websocket Verbindungen",
- "analytics.team.activeUsers": "Aktive Benutzer mit Beiträgen",
- "analytics.team.newlyCreated": "Neu erstellte Benutzer",
- "analytics.team.noTeams": "Es gibt keine Teams auf diesem Server um die Statistiken anzuzeigen.",
- "analytics.team.privateGroups": "Private Kanäle",
- "analytics.team.publicChannels": "Öffentliche Kanäle",
- "analytics.team.recentActive": "Zuletzt aktive Benutzer",
- "analytics.team.recentUsers": "Zuletzt aktive Benutzer",
- "analytics.team.title": "Team Statistiken für {team}",
- "analytics.team.totalPosts": "Beiträge Gesamt",
- "analytics.team.totalUsers": "Benutzer Gesamt",
- "api.channel.add_member.added": "{addedUsername} hinzugefügt zum Kanal durch {username}",
- "api.channel.delete_channel.archived": "{username} hat den Kanal archiviert.",
- "api.channel.join_channel.post_and_forget": "{username} ist dem Kanal beigetreten.",
- "api.channel.leave.left": "{username} hat den Kanal verlassen.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} hat den Kanalanzeigenamen aktualisiert von: {old} auf: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} hat die Kanalüberschrift entfernt (war: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} hat die Kanalüberschrift aktualisiert von: {old} auf: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} hat die Kanalüberschrift geändert zu: {new}",
- "api.channel.remove_member.removed": "{removedUsername} wurde aus dem Kanal entfernt",
- "app.channel.post_update_channel_purpose_message.removed": "{username} hat den Kanalzweck entfernt (war: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} hat den Kanalzweck aktualisiert von: {old} auf: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} hat den Kanalzweck geändert zu: {new}",
- "audit_table.accountActive": "Konto aktiviert",
- "audit_table.accountInactive": "Konto deaktiviert",
- "audit_table.action": "Aktion",
- "audit_table.attemptedAllowOAuthAccess": "Versuchte einen neuen OAuth Service Zugriff zu erlauben",
- "audit_table.attemptedLicenseAdd": "Versuchte eine neue Lizenz hinzuzufügen",
- "audit_table.attemptedLogin": "Versuchte anzumelden",
- "audit_table.attemptedOAuthToken": "Versuchte einen OAuth Zugangstoken zu erhalten",
- "audit_table.attemptedPassword": "Versuchte das Passwort zu ändern",
- "audit_table.attemptedRegisterApp": "Versuchte eine neue OAuth-Anwendung mit der ID {id} zu registrieren",
- "audit_table.attemptedReset": "Versuchte das Passwort zurückzusetzen",
- "audit_table.attemptedWebhookCreate": "Versuchte einen Webhook zu erstellen",
- "audit_table.attemptedWebhookDelete": "Versuchte einen Webhook zu löschen",
- "audit_table.by": " von {username}",
- "audit_table.byAdmin": " von einem Administrator",
- "audit_table.channelCreated": "Kanal {channelName} wurde erstellt",
- "audit_table.channelDeleted": "Kanal mit der URL {url} wurde gelöscht",
- "audit_table.establishedDM": "Ein Kanal für direkte Mitteilungen an {username} wurde aufgebaut",
- "audit_table.failedExpiredLicenseAdd": "Neue Lizenz wurde nicht hinzugefügt weil diese entweder abgelaufen oder noch nicht begonnen hat",
- "audit_table.failedInvalidLicenseAdd": "Ungültige Lizenz wurde nicht hinzugefügt",
- "audit_table.failedLogin": "Anmeldeversuch fehlgeschlagen",
- "audit_table.failedOAuthAccess": "Fehler bei dem Zulassen eines neuen OAuth Service Zugriffs - die Umleitungs-URI entspricht nicht dem vorher angegeben Callback",
- "audit_table.failedPassword": "Fehler beim Ändern des Passwortes - versuchte einen Benutzer zu aktualisieren der sich via OAuth anmeldet",
- "audit_table.failedWebhookCreate": "Fehler beim Erstellen eines Webhooks - unzureichende Kanal Zugriffsrechte",
- "audit_table.failedWebhookDelete": "Fehler beim Löschen eines Webhooks - unpassende Bedingungen",
- "audit_table.headerUpdated": "Überschrift des Kanals {channelName} aktualisiert",
- "audit_table.ip": "IP-Adresse",
- "audit_table.licenseRemoved": "Lizenz erfolgreich entfernt",
- "audit_table.loginAttempt": " (Anmeldeversuche)",
- "audit_table.loginFailure": " (Anmeldung fehlgeschlagen)",
- "audit_table.logout": "Von Ihren Zugang abgemeldet",
- "audit_table.member": "Mitglied",
- "audit_table.nameUpdated": "Name des Kanals {channelName} aktualisiert",
- "audit_table.oauthTokenFailed": "Fehler beim Laden des OAuth Access Token - {token}",
- "audit_table.revokedAll": "Alle aktuellen Sitzungen für das Team zurückgezogen",
- "audit_table.sentEmail": "Es wurde eine E-Mail an {email} gesendet um das Passwort zurückzusetzen",
- "audit_table.session": "Sitzungs-ID",
- "audit_table.sessionRevoked": "Die Sitzung mit der ID {sessionId} wurde zurückgezogen",
- "audit_table.successfullLicenseAdd": "Erfolgreich neue Lizenz hinzugefügt",
- "audit_table.successfullLogin": "Erfolgreich angemeldet",
- "audit_table.successfullOAuthAccess": "Erfolgreich einem neuen OAuth Dienst Zugriff gewährt",
- "audit_table.successfullOAuthToken": "Erfolgreich einen neuen OAuth Dienst hinzugefügt",
- "audit_table.successfullPassword": "Passwort erfolgreich geändert",
- "audit_table.successfullReset": "Passwort erfolgreich zurückgesetzt",
- "audit_table.successfullWebhookCreate": "Webhook erfolgreich erstellt",
- "audit_table.successfullWebhookDelete": "Webhook erfolgreich gelöscht",
- "audit_table.timestamp": "Zeitstempel",
- "audit_table.updateGeneral": "Allgemeine Einstellungen Ihres Kontos aktualisiert",
- "audit_table.updateGlobalNotifications": "Benachrichtigungseinstellungen aktualisiert",
- "audit_table.updatePicture": "Profilbild aktualisiert",
- "audit_table.updatedRol": "Benutzerrolle(n) aktualisiert auf ",
- "audit_table.userAdded": "{username} zu {channelName} hinzugefügt",
- "audit_table.userId": "Benutzer-ID",
- "audit_table.userRemoved": "{username} von {channelName} entfernt",
- "audit_table.verified": "E-Mail-Adresse erfolgreich bestätigt",
- "authorize.access": "Erlaube {appName} Zugriff?",
- "authorize.allow": "Erlauben",
- "authorize.app": "Die Anwendung {appName} möchte auf Ihre Daten zugreifen und sie bearbeiten können.",
- "authorize.deny": "Ablehnen",
- "authorize.title": "{appName} möchte sich mit Ihrem Mattermost Benutzerkonto verbinden",
- "backstage_list.search": "Suche",
- "backstage_navbar.backToMattermost": "Zurück zu {siteName}",
- "backstage_sidebar.emoji": "Benutzerdefinierte Emojis",
- "backstage_sidebar.integrations": "Integrationen",
- "backstage_sidebar.integrations.commands": "Slash-Befehle",
- "backstage_sidebar.integrations.incoming_webhooks": "Eingehende Webhooks",
- "backstage_sidebar.integrations.oauthApps": "OAuth-2.0-Applikationen",
- "backstage_sidebar.integrations.outgoing_webhooks": "Ausgehende Webhooks",
- "calling_screen": "Rufe an",
- "center_panel.recent": "Klicken Sie hier um zu vorherigen Mittelungen zurückzukehren. ",
- "change_url.close": "Schließen",
- "change_url.endWithLetter": "Die URL muss mit einem Buchstaben oder einer Nummer enden.",
- "change_url.invalidUrl": "Ungültige URL",
- "change_url.longer": "Die URL muss aus zwei oder mehr Zeichen bestehen.",
- "change_url.noUnderscore": "Die URL darf keine zwei aufeinander folgende Unterstriche enthalten.",
- "change_url.startWithLetter": "Die URL muss mit einem Buchstaben oder einer Nummer beginnen.",
- "change_url.urlLabel": "Kanal-URL",
- "channelHeader.addToFavorites": "Zu Favoriten hinzufügen",
- "channelHeader.removeFromFavorites": "Aus Favoriten entfernen",
- "channel_flow.alreadyExist": "Ein Kanal mit der URL existiert bereits",
- "channel_flow.changeUrlDescription": "Einige Zeichen sind nicht in URLs erlaubt und werden ggfs. entfernt.",
- "channel_flow.changeUrlTitle": "Kanal-URL ändern",
- "channel_flow.create": "Kanal erstellen",
- "channel_flow.handleTooShort": "Kanal-URL muss zwei oder mehr kleingeschriebene alphanumerische Zeichen enthalten",
- "channel_flow.invalidName": "Ungültiger Kanal Name",
- "channel_flow.set_url_title": "Kanal-URL setzen",
- "channel_header.addChannelHeader": "Kanalbeschreibung hinzufügen",
- "channel_header.addMembers": "Mitglieder hinzufügen",
- "channel_header.addToFavorites": "Zu Favoriten hinzufügen",
- "channel_header.channelHeader": "Kanalüberschrift bearbeiten",
- "channel_header.channelMembers": "Mitglieder",
- "channel_header.delete": "Kanal löschen",
- "channel_header.flagged": "Markierte Nachrichten",
- "channel_header.leave": "Kanal verlassen",
- "channel_header.manageMembers": "Mitglieder verwalten",
- "channel_header.notificationPreferences": "Benachrichtigungseinstellungen",
- "channel_header.pinnedPosts": "Markierte Nachrichten",
- "channel_header.recentMentions": "Letzte Erwähnungen",
- "channel_header.removeFromFavorites": "Aus Favoriten entfernen",
- "channel_header.rename": "Kanal umbenennen",
- "channel_header.setHeader": "Kanalüberschrift bearbeiten",
- "channel_header.setPurpose": "Kanalzweck bearbeiten",
- "channel_header.viewInfo": "Info anzeigen",
- "channel_header.viewMembers": "Zeige Mitglieder",
- "channel_header.webrtc.call": "Videoanruf starten",
- "channel_header.webrtc.offline": "Der Benutzer ist offline",
- "channel_header.webrtc.unavailable": "Neuer Anruf nicht möglich bis ihr bestehender Anruf beendet ist",
- "channel_info.about": "Über",
- "channel_info.close": "Schließen",
- "channel_info.header": "Überschrift:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Name:",
- "channel_info.notFound": "Kein Kanal gefunden",
- "channel_info.purpose": "Zweck:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Hinzufügen",
- "channel_invite.addNewMembers": "Füge neue Mitglieder hinzu zu ",
- "channel_invite.close": "Schließen",
- "channel_loader.connection_error": "Es scheint ein Problem mit Ihrer Internetverbindung zu geben.",
- "channel_loader.posted": "Verschickt",
- "channel_loader.postedImage": " hat ein Bild hochgeladen",
- "channel_loader.socketError": "Bitte Verbindung überprüfen, Mattermost ist nicht erreichbar. Wenn das Problem bestehen bleibt fragen Sie Ihren Administrator den WebSocket Port zu überprüfen.",
- "channel_loader.someone": "Jemand",
- "channel_loader.something": " hat etwas neues gemacht",
- "channel_loader.unknown_error": "Es wurde ein unerwarteter Statuscode vom Server empfangen.",
- "channel_loader.uploadedFile": " hat eine Datei hochgeladen",
- "channel_loader.uploadedImage": " hat ein Bild hochgeladen",
- "channel_loader.wrote": " schrieb: ",
- "channel_members_dropdown.channel_admin": "Kanal-Administrator",
- "channel_members_dropdown.channel_member": "Kanalmitglieder",
- "channel_members_dropdown.make_channel_admin": "Zum Kanal-Administrator machen",
- "channel_members_dropdown.make_channel_member": "Zum Kanalmitglied machen",
- "channel_members_dropdown.remove_from_channel": "Vom Kanal entfernen",
- "channel_members_dropdown.remove_member": "Mitglied entfernen",
- "channel_members_modal.addNew": " Füge neue Mitglieder hinzu",
- "channel_members_modal.members": " Mitglieder",
- "channel_modal.cancel": "Abbrechen",
- "channel_modal.createNew": "Neuen Kanal erstellen",
- "channel_modal.descriptionHelp": "Beschreiben Sie,wie dieser Kanal genutzt werden soll.",
- "channel_modal.displayNameError": "Kanalname muss aus 2 oder mehr Zeichen bestehen",
- "channel_modal.edit": "Bearbeiten",
- "channel_modal.header": "Überschrift",
- "channel_modal.headerEx": "Z.B.: \"[Link Titel](http://beispiel.de)\"",
- "channel_modal.headerHelp": "Der Text der in der Kopfzeile des Kanals neben dem Namen steht. Zum Beispiel könnten Sie häufig genutzte Links durch Hinzufügen von [Link Titel](http://example.de) anzeigen lassen.",
- "channel_modal.modalTitle": "Neuer Kanal",
- "channel_modal.name": "Name",
- "channel_modal.nameEx": "Z.B.: \"Bugs\", \"Marketing\", \"客户支持\"",
- "channel_modal.optional": "(optional)",
- "channel_modal.privateGroup1": "Eine neue private Gruppe mit beschränktem Nutzerkreis erstellen. ",
- "channel_modal.privateGroup2": "Einen privaten Kanal erstellen",
- "channel_modal.publicChannel1": "Einen öffentlichen Kanal erstellen",
- "channel_modal.publicChannel2": "Einen neuen öffentlichen Kanal dem jeder beitreten kann erstellen. ",
- "channel_modal.purpose": "Zweck",
- "channel_modal.purposeEx": "Z.B.: \"Ein Kanal um Fehler und Verbesserungsvorschläge abzulegen\"",
- "channel_notifications.allActivity": "Für alle Aktivitäten",
- "channel_notifications.allUnread": "Für alle ungelesenen Nachrichten",
- "channel_notifications.globalDefault": "Globaler Standard ({notifyLevel})",
- "channel_notifications.markUnread": "Markiere Kanal als ungelesen",
- "channel_notifications.never": "Nie",
- "channel_notifications.onlyMentions": "Nur für Erwähnungen",
- "channel_notifications.override": "Auswählen eines anderen Wertes als \"Globaler Standard\" wird die globalen Benachrichtigungseinstellungen außer Kraft setzen. Desktop Benachrichtigungen sind für Firefox, Safari und Chrome verfügbar.",
- "channel_notifications.overridePush": "Auswählen einer anderen Einstellung als \"Globaler Standard\" wird die globalen Benachrichtigungen für mobile Pushbenachrichtigungen in den Benutzereinstellungen überschreiben. Pushbenachrichtigungen müssen durch den Systemadministrator aktiviert werden.",
- "channel_notifications.preferences": "Benachrichtigungseinstellungen für ",
- "channel_notifications.push": "Mobile Push-Nachrichten versenden",
- "channel_notifications.sendDesktop": "Desktop-Benachrichtigungen senden",
- "channel_notifications.unreadInfo": "Der Kanalname wird fettgedruckt dargestellt wenn es ungelesene Nachrichten gibt. Auswählen von \"Nur für Erwähnungen\" wird die Fettschreibung der Kanäle nur durchführen wenn Sie erwähnt werden.",
- "channel_select.placeholder": "--- Wählen Sie einen Kanal ---",
- "channel_switch_modal.dm": "(Direktnachricht)",
- "channel_switch_modal.failed_to_open": "Fehler beim Öffnen des Kanals.",
- "channel_switch_modal.not_found": "Keine Treffer.",
- "channel_switch_modal.submit": "Wechseln",
- "channel_switch_modal.title": "Kanal wechseln",
- "claim.account.noEmail": "Keine E-Mail-Adresse angegeben",
- "claim.email_to_ldap.enterLdapPwd": "Geben Sie eine ID und ein Passwort für Ihr AD/LDAP-Konto ein",
- "claim.email_to_ldap.enterPwd": "Geben Sie das Passwort für das {site} E-Mail-Konto ein",
- "claim.email_to_ldap.ldapId": "AD/LDAP-ID",
- "claim.email_to_ldap.ldapIdError": "Bitte geben Sie Ihre AD/LDAP-ID ein.",
- "claim.email_to_ldap.ldapPasswordError": "Bitte geben Sie Ihr AD/LDAP Passwort ein.",
- "claim.email_to_ldap.ldapPwd": "AD/LDAP Passwort",
- "claim.email_to_ldap.pwd": "Passwort",
- "claim.email_to_ldap.pwdError": "Bitte geben Sie Ihr aktuelles Passwort ein.",
- "claim.email_to_ldap.ssoNote": "Sie müssen bereits ein gültiges AD/LDAP-Konto besitzen",
- "claim.email_to_ldap.ssoType": "Sobald Sie Ihr Konto in Anspruch nehmen, können Sie sich nur noch mit Ihrem AD/LDAP-Konto anmelden",
- "claim.email_to_ldap.switchTo": "Konto zu AD/LDAP wechseln",
- "claim.email_to_ldap.title": "Konto von E-Mail/Passwort auf AD/LDAP wechseln",
- "claim.email_to_oauth.enterPwd": "Geben Sie das Passwort für den {site} Zugang ein",
- "claim.email_to_oauth.pwd": "Passwort",
- "claim.email_to_oauth.pwdError": "Bitte geben Sie Ihr aktuelles Passwort ein.",
- "claim.email_to_oauth.ssoNote": "Sie müssen bereits ein gültiges {type}-Konto besitzen",
- "claim.email_to_oauth.ssoType": "Sobald Sie Ihr Konto in Anspruch nehmen, können Sie sich nur noch mit Ihrem {type}-Konto anmelden",
- "claim.email_to_oauth.switchTo": "Konto zu {uiType} wechseln",
- "claim.email_to_oauth.title": "Konto von E-Mail/Passwort auf {uiType} wechseln",
- "claim.ldap_to_email.confirm": "Passwort bestätigen",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "Bitte geben Sie Ihr AD/LDAP Passwort ein.",
- "claim.ldap_to_email.ldapPwd": "AD/LDAP Passwort",
- "claim.ldap_to_email.pwd": "Passwort",
- "claim.ldap_to_email.pwdError": "Bitte geben Sie Ihr Passwort ein.",
- "claim.ldap_to_email.pwdNotMatch": "Die Passwörter stimmen nicht überein.",
- "claim.ldap_to_email.switchTo": "Zugang auf E-Mail-Adresse/Passwort umstellen",
- "claim.ldap_to_email.title": "AD/LDAP Zugang auf E-Mail-Adresse/Passwort umstellen",
- "claim.oauth_to_email.confirm": "Passwort bestätigen",
- "claim.oauth_to_email.description": "Sobald Sie Ihren Kontotyp wechseln, können Sie sich nur noch mit Ihrer E-Mail-Adresse und Ihrem Passwort anmelden.",
- "claim.oauth_to_email.enterNewPwd": "Geben Sie ein neues Passwort für Ihr {site} E-Mail-Konto ein",
- "claim.oauth_to_email.enterPwd": "Bitte geben Sie Ihr Passwort ein.",
- "claim.oauth_to_email.newPwd": "Neues Passwort",
- "claim.oauth_to_email.pwdNotMatch": "Die Passwörter stimmen nicht überein.",
- "claim.oauth_to_email.switchTo": "Wechsel von {type} auf E-Mail-Adresse und Passwort",
- "claim.oauth_to_email.title": "Von {type}-Konto auf E-Mail wechseln",
- "confirm_modal.cancel": "Abbrechen",
- "connecting_screen": "Verbindung wird aufgebaut",
- "create_comment.addComment": "Kommentar hinzufügen...",
- "create_comment.comment": "Kommentar hinzufügen",
- "create_comment.commentLength": "Kommentarlänge muss weniger als {max} Zeichen lang sein.",
- "create_comment.commentTitle": "Kommentar",
- "create_comment.file": "Datei wird hochgeladen",
- "create_comment.files": "Dateien werden hochgeladen",
- "create_post.comment": "Kommentar",
- "create_post.error_message": "Ihre Mitteilung ist zu lang. Zeichenanzahl: {length}/{limit}",
- "create_post.post": "Senden",
- "create_post.shortcutsNotSupported": "Tastaturkürzel werden auf Ihrem Gerät nicht unterstützt.",
- "create_post.tutorialTip": "
Nachrichten senden
Geben Sie hier Ihre Nachricht ein und drücken Sie Enter um sie senden.
Klicken Sie den Anhang Button um ein Bild oder eine Datei hochzuladen.
",
- "create_post.write": "Schreiben Sie eine Nachricht...",
- "create_team.agreement": "Wenn Sie die Erstellung Ihres Kontos fortsetzen und {siteName} nutzen, stimmen Sie unseren Nutzungsbedingungen und Datenschutzbedingungen zu. Wenn Sie nicht zustimmen, dürfen Sie {siteName} nicht nutzen.",
- "create_team.display_name.charLength": "Name muss zwischen {min} und {max} Zeichen lang sein. Sie können eine längere Teambeschreibung später hinzufügen.",
- "create_team.display_name.nameHelp": "Benennen Sie Ihr Team in jeglicher Sprache. Ihr Teamname wird in Menüs und Überschriften angezeigt.",
- "create_team.display_name.next": "Weiter",
- "create_team.display_name.required": "Dieses Feld ist erforderlich",
- "create_team.display_name.teamName": "Teamname",
- "create_team.team_url.back": "Zurück zum vorigen Schritt",
- "create_team.team_url.charLength": "Der Name muss mindestens {min} und darf maximal {max} Zeichen lang sein",
- "create_team.team_url.creatingTeam": "Erstelle Team...",
- "create_team.team_url.finish": "Fertigstellen",
- "create_team.team_url.hint": "
Kurz und gut merkbar ist von Vorteil
Nur Kleinbuchstaben, Ziffern und Bindestriche verwenden
Es muss mit einem Buchstaben begonnen werden und darf nicht mit einem Bindestrich enden.
",
- "create_team.team_url.regex": "Nur Kleinbuchstaben, Ziffern und Bindestriche verwenden. Es muss mit einem Buchstaben begonnen werden und darf nicht mit einem Bindestrich enden.",
- "create_team.team_url.required": "Dieses Feld ist erforderlich",
- "create_team.team_url.taken": "Diese URL startet mit einem reservierten Wort oder ist nicht verfügbar. Bitte eine andere versuchen.",
- "create_team.team_url.teamUrl": "Team URL",
- "create_team.team_url.unavailable": "Diese URL ist in Verwendung oder nicht verfügbar. Bitte eine andere versuchen.",
- "create_team.team_url.webAddress": "Wählen Sie die Webadresse für Ihr neues Team:",
- "custom_emoji.empty": "Kein eigenes Emoji gefunden",
- "custom_emoji.header": "Eigenes Emoji",
- "custom_emoji.search": "Suche eigenes Emoji",
- "deactivate_member_modal.cancel": "Abbrechen",
- "deactivate_member_modal.deactivate": "Deaktivieren",
- "deactivate_member_modal.desc": "Diese Aktion deaktiviert {username}. Der Nutzer wird abgemeldet und hat keinen Zugriff auf Teams oder Kanäle auf diesem System. Sind Sie sicher, dass Sie {username} deaktivieren möchten?",
- "deactivate_member_modal.title": "{username} deaktivieren",
- "default_channel.purpose": "Senden Sie Nachrichten hier, die jeder sehen können soll. Jeder wird automatisch ein permanentes Mitglied in diesem Kanal wenn Sie dem Team beitreten.",
- "delete_channel.cancel": "Abbrechen",
- "delete_channel.confirm": "Bestätige LÖSCHUNG des Kanals",
- "delete_channel.del": "Löschen",
- "delete_channel.question": "Dies wird den Kanal aus dem Team löschen und die Inhalte für alle Nutzer unzugänglich machen.
Sind Sie sich sicher, dass Sie den Kanal {display_name} löschen möchten?",
- "delete_post.cancel": "Abbrechen",
- "delete_post.comment": "Kommentar",
- "delete_post.confirm": "Bestätige Löschung von {term}",
- "delete_post.del": "Löschen",
- "delete_post.post": "Nachricht",
- "delete_post.question": "Sind Sie sich sicher diese(n) {term} zu löschen?",
- "delete_post.warning": "Diese Nachricht hat {count, number} {count, plural, one {Kommentar} other {Kommentare}}.",
- "edit_channel_header.editHeader": "Kanalüberschrift bearbeiten...",
- "edit_channel_header.previewHeader": "Überschrift bearbeiten",
- "edit_channel_header_modal.cancel": "Abbrechen",
- "edit_channel_header_modal.description": "Geben Sie den Text ein der neben dem Kanal Namen in der Überschrift erscheinen soll.",
- "edit_channel_header_modal.error": "Die Kanalüberschrift ist zu lang, bitte geben Sie einen kürzeren ein",
- "edit_channel_header_modal.save": "Speichern",
- "edit_channel_header_modal.title": "Überschrift für {channel} bearbeiten",
- "edit_channel_header_modal.title_dm": "Überschrift bearbeiten",
- "edit_channel_private_purpose_modal.body": "Dieser Text erscheint im \"Info Anzeigen\" Fenster des privaten Kanals.",
- "edit_channel_purpose_modal.body": "Beschreiben Sie, wie dieser Kanal genutzt werden soll. Dieser Text erscheint in der Kanalliste im \"Mehr...\"-Menü und hilft anderen sich zu entscheiden, ob sie beitreten sollen.",
- "edit_channel_purpose_modal.cancel": "Abbrechen",
- "edit_channel_purpose_modal.error": "Der Kanalzweck ist zu lang, bitte geben Sie einen kürzeren ein",
- "edit_channel_purpose_modal.save": "Speichern",
- "edit_channel_purpose_modal.title1": "Zweck bearbeiten",
- "edit_channel_purpose_modal.title2": "Zweck bearbeiten für ",
- "edit_command.save": "Aktualisieren",
- "edit_post.cancel": "Abbrechen",
- "edit_post.edit": "{title} bearbeiten",
- "edit_post.editPost": "Nachricht bearbeiten...",
- "edit_post.save": "Speichern",
- "email_signup.address": "E-Mail-Adresse",
- "email_signup.createTeam": "Team erstellen",
- "email_signup.emailError": "Bitte geben Sie eine gültige E-Mail-Adresse ein.",
- "email_signup.find": "Finde meine Teams",
- "email_verify.almost": "{siteName}: Sie sind fast fertig",
- "email_verify.failed": " Fehler beim Senden der Bestätigungsmail.",
- "email_verify.notVerifiedBody": "Bitte bestätigen Sie Ihre E-Mail-Adresse. Prüfen Sie Ihren E-Mail Eingang.",
- "email_verify.resend": "E-Mail erneut senden",
- "email_verify.sent": " Bestätigungsmail versendet.",
- "email_verify.verified": "{siteName} E-Mail-Adresse verifiziert",
- "email_verify.verifiedBody": "
Ihre E-Mail-Adresse wurde bestätigt! Klicken Sie hier um sich anzumelden.
",
- "email_verify.verifyFailed": "Fehler beim Bestätigen Ihrer E-Mail-Adresse.",
- "emoji_list.actions": "Aktionen",
- "emoji_list.add": "Eigenes Emoji hinzufügen",
- "emoji_list.creator": "Ersteller",
- "emoji_list.delete": "Löschen",
- "emoji_list.delete.confirm.button": "Löschen",
- "emoji_list.delete.confirm.msg": "Diese Aktion wird das benutzerdefinierten Emoji permanent löschen. Sind Sie sich sicher dass sie es löschen möchten?",
- "emoji_list.delete.confirm.title": "Benutzerdefiniertes Emoji löschen",
- "emoji_list.empty": "Kein eigenes Emoji gefunden",
- "emoji_list.header": "Benutzerdefinierte Emojis",
- "emoji_list.help": "Benutzerdefinierte Emojis sind für jeden auf Ihrem Server verfügbar. Die Eingabe von ':' im Nachrichtenfeld öffnet das Emoji Auswahlfenster. Andere Nutzer müssen eventuell die Seite neu laden bevor neue Emojis angezeigt werden.",
- "emoji_list.help2": "Tipp: Wenn Sie #, ## oder ### als ersten Zeichen in einer neuen Zeile mit einem Emoji eingeben können Sie größere Emojis anzeigen lassen. Um es auszuprobieren senden Sie eine Meldung wie: '# :smile:'.",
- "emoji_list.image": "Bild",
- "emoji_list.name": "Name",
- "emoji_list.search": "Suche eigenes Emoji",
- "emoji_list.somebody": "Jemand in einem anderen Team",
- "emoji_picker.activity": "Aktivität",
- "emoji_picker.custom": "Benutzerdefiniert",
- "emoji_picker.emojiPicker": "Emoji-Auswahl",
- "emoji_picker.flags": "Flaggen",
- "emoji_picker.foods": "Essen",
- "emoji_picker.nature": "Natur",
- "emoji_picker.objects": "Objekte",
- "emoji_picker.people": "Leute",
- "emoji_picker.places": "Orte",
- "emoji_picker.recent": "Zuletzt verwendet",
- "emoji_picker.search": "Suche",
- "emoji_picker.symbols": "Symbole",
- "error.local_storage.help1": "Cookies aktivieren",
- "error.local_storage.help2": "Privates Browsen abschalten",
- "error.local_storage.help3": "Verwenden Sie einen unterstützen Browser (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost konnte nicht geladen werden, da eine Browser-Einstellung die Nutzung der lokalen Speicherfunktion verhindert. Um Mattermost zu erlauben zu laden, versuchen Sie die folgenden Aktionen:",
- "error.not_found.link_message": "Zurück zu Mattermost",
- "error.not_found.message": "Die Seite, die Sie versuchten zu erreichen, existiert nicht",
- "error.not_found.title": "Seite nicht gefunden",
- "error_bar.expired": "Enterprise-Lizenz ist abgelaufen und einige Funktionen wurden evtl. deaktiviert. Bitte erneuern.",
- "error_bar.expiring": "Enterprise-Lizenz läuft am {date} ab. Bitte erneuern.",
- "error_bar.past_grace": "Enterprise Lizenz ist abgelaufen und einige Funktionen wurden evtl. deaktiviert. Bitte wenden Sie sich an den Systemadministrator für mehr Details.",
- "error_bar.preview_mode": "Vorführungsmodus: E-Mail-Benachrichtigungen wurden nicht konfiguriert",
- "error_bar.site_url": "Bitte konfigurieren Sie ihren {docsLink} hier {link}.",
- "error_bar.site_url.docsLink": "Seiten-URL",
- "error_bar.site_url.link": "Systemkonsole",
- "error_bar.site_url_gitlab": "Bitte konfigurieren Sie ihren {docsLink} in der Systemkonsole oder in der gitlab.rb wenn Sie GitLab Mattermost verwenden.",
- "file_attachment.download": "Download",
- "file_info_preview.size": "Größe ",
- "file_info_preview.type": "Dateityp ",
- "file_upload.disabled": "Dateianhänge sind deaktiviert.",
- "file_upload.fileAbove": "Datei über {max}MB kann nicht hochgeladen werden: {filename}",
- "file_upload.filesAbove": "Dateien über {max}MB können nicht hochgeladen werden: {filenames}",
- "file_upload.limited": "Anzahl an Uploads begrenzt auf maximal {count, number}. Bitte nutzen Sie zusätzliche Nachrichten für mehr Dateien.",
- "file_upload.pasted": "Bild eingefügt am ",
- "filtered_channels_list.search": "Suche Kanäle",
- "filtered_user_list.any_team": "Alle Benutzer",
- "filtered_user_list.count": "{count, number} {count, plural, one {Benutzer} other {Benutzer}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {Benutzer} other {Benutzer}} von {total, number} insgesamt",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 Mitglieder} one {Mitglied} other {Mitglieder}} von {total, number} insgesamt",
- "filtered_user_list.member": "Mitglied",
- "filtered_user_list.next": "Weiter",
- "filtered_user_list.prev": "Zurück",
- "filtered_user_list.search": "Benutzer suchen",
- "filtered_user_list.searchButton": "Suchen",
- "filtered_user_list.show": "Filter:",
- "filtered_user_list.team_only": "Mitglieder dieses Teams",
- "find_team.email": "E-Mail",
- "find_team.findDescription": "Eine E-Mail, mit Links zu jedem Team dem Sie angehören, wurde an Sie gesendet.",
- "find_team.findTitle": "Finden Sie Ihr Team",
- "find_team.getLinks": "Erhalten Sie eine E-Mail mit Links zu jedem Team dem Sie angehören.",
- "find_team.placeholder": "ihrname@domain.de",
- "find_team.send": "Senden",
- "find_team.submitError": "Bitte eine gültige E-Mail-Adresse eingeben",
- "flag_post.flag": "Zur Nachverfolgung markieren",
- "flag_post.unflag": "Demarkieren",
- "general_tab.chooseDescription": "Bitte wählen Sie eine neue Beschreibung für Ihr Team",
- "general_tab.codeDesc": "Auf 'Bearbeiten' klicken um den Einladungscode neu zu generieren.",
- "general_tab.codeLongDesc": "Der Einladungscode ist Teil der URL im Team-Einladungslink, welcher über {getTeamInviteLink} im Hauptmenü generiert wird. Eine Neugenerierung erstellt einen neuen Team-Einladungslink und macht den vorherigen Link ungültig.",
- "general_tab.codeTitle": "Einladungscode",
- "general_tab.emptyDescription": "Klicken Sie auf 'Bearbeiten' um eine Teambeschreibung hinzuzufügen.",
- "general_tab.getTeamInviteLink": "Team-Einladungslink abrufen",
- "general_tab.includeDirDesc": "Dieses Team mit aufzuführen wird den Team Namen im Teamverzeichnis auf der Startseite zeigen und einen Link zur Registrierungsseite bereitstellen.",
- "general_tab.no": "Nein",
- "general_tab.openInviteDesc": "Wenn erlaubt wird ein Link zu diesem Team auf der Startseite eingefügt und erlaubt jedem diesem Team beizutreten.",
- "general_tab.openInviteTitle": "Erlaube jedem Benutzer mit einem Konto auf diesem Server diesem Team beizutreten",
- "general_tab.regenerate": "Neu generieren",
- "general_tab.required": "Dieses Feld wird erforderlich",
- "general_tab.teamDescription": "Teambeschreibung",
- "general_tab.teamDescriptionInfo": "Die Teambeschreibung bieten weitere Informationen um Benutzern die Wahl des richtigen Teams zu ermöglichen. Maximal 50 Zeichen.",
- "general_tab.teamName": "Teamname",
- "general_tab.teamNameInfo": "Setzen Sie den Namen Ihres Teams, wie er beim Anmelden und oben in der Seitenleiste erscheinen soll.",
- "general_tab.title": "Allgemeine Einstellungen",
- "general_tab.yes": "Ja",
- "get_app.alreadyHaveIt": "Haben Sie bereits?",
- "get_app.androidAppName": "Mattermost für Android",
- "get_app.androidHeader": "Mattermost funktioniert am besten, wenn Sie unsere Android-App benutzen",
- "get_app.continue": "fortfahren",
- "get_app.continueWithBrowser": "Oder {link}",
- "get_app.continueWithBrowserLink": "mit Browser fortfahren",
- "get_app.iosHeader": "Mattermost funktioniert am besten, wenn Sie unsere iPhone-App benutzen",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Öffne Mattermost",
- "get_link.clipboard": " Link kopiert",
- "get_link.close": "Schließen",
- "get_link.copy": "Link kopieren",
- "get_post_link_modal.help": "Der Link erlaubt berechtigten Nutzern diese Nachricht zu sehen.",
- "get_post_link_modal.title": "Kopiere Permalink",
- "get_public_link_modal.help": "Der unten stehende Link erlaubt jedem diese Datei zu sehen ohne auf diesem Server registriert zu sein.",
- "get_public_link_modal.title": "Öffentlichen Link kopieren",
- "get_team_invite_link_modal.help": "Senden Sie Teammitgliedern den unten stehenden Link, damit diese sich für dieses Team registrieren können. Der Team-Einladungslink kann mit mehreren Teammitgliedern geteilt werden da er sich nicht ändert, sofern er nicht in den Teameinstellungen durch den Teamadmin geändert wird.",
- "get_team_invite_link_modal.helpDisabled": "Erstellung von Benutzern wurde für Ihr Team deaktiviert. Für Details, fragen Sie bitte Ihren Administrator.",
- "get_team_invite_link_modal.title": "Team-Einladungslink",
- "help.attaching.downloading": "#### Dateien herunterladen\nLaden Sie eine angehängte Datei herunter indem dem Sie das Herunterladen-Symbol neben dem Miniaturbild anklicken oder durch öffnen in der Dateivorschau und auf **Herunterladen** klicken.",
- "help.attaching.dragdrop": "#### Drag und Drop\nLaden Sie eine oder mehrere Dateien hoch indem Sie die Datei(en) vom Ihrem Computer in die rechte oder mittige Fläche ziehen. Wenn Sie die Datei(en) in die Nachrichtenbox ziehen, können Sie optional eine Nachricht dazu verfassen und durch **ENTER** absenden.",
- "help.attaching.icon": "#### Anhänge-Symbol\nAlternativ können Sie Dateien über einen Klick auf die graue Büroklammer in der Nachrichtenbox hochladen. Dies öffnet den System-Dateidialog, in dem Sie zu den gewünschten Dateien navigieren können und durch einen Klick auf **Öffnen** hochladen können. Optional können Sie noch eine Nachricht verfassen und mit **ENTER** absenden.",
- "help.attaching.limitations": "## Dateigrößenbeschränkung\nMattermost unterstützt ein Maximum an fünf angehängten Dateien pro Nachricht, jede mit einer maximalen Dateigröße von 50 MB.",
- "help.attaching.methods": "## Anhängmethoden\nHängen Sie eine Datei durch Drag und Drop oder durch klicken des Anhänge-Symbols in der Nachrichtenbox an.",
- "help.attaching.notSupported": "Dateivorschau (Word, Excel, PowerPoint) wird noch nicht unterstützt.",
- "help.attaching.pasting": "#### Bilder einfügen\nIn Chrome und Edge Browsern können Bilder auch hochgeladen werden in dem sie von der Zwischenablage eingefügt werden. Dies wird noch nicht in anderen Browsern unterstützt.",
- "help.attaching.previewer": "## Dateivorschau\nMattermost hat eine eingebaute Dateivorschau mit der Medien angeschaut, heruntergeladen und öffentlich geteilt werden können. Klicken Sie auf das Miniaturbild einer angehängten Datei um die Dateivorschau zu öffnen.",
- "help.attaching.publicLinks": "#### Links öffentlich teilen\nÖffentliche Links erlaubt Ihnen Dateianhänge an Personen außerhalb Ihre Mattermost-Teams zu senden. Öffnen Sie die Dateivorschau durch Klick auf das Miniaturbild eines Anhanges und klicken auf **Öffentlichen Link abrufen**. Dies öffnet einen Dialog mit einem Link zum kopieren. Wenn der Link geteilt und durch einen anderen Benutzer geöffnet wird, wird die Datei automatisch heruntergeladen.",
- "help.attaching.publicLinks2": "Wenn **Öffentlichen Link abrufen** nicht in der Dateivorschau sichtbar ist und dieses Feature gerne aktiviert haben möchten, bitten Sie Ihren Systemadministrator das Feature in der Systemkonsole unter **Sicherheit** > **Öffentliche Links** zu aktivieren.",
- "help.attaching.supported": "#### Unterstützte Dateitypen\nWenn Sie versuchen eine Datei anzusehen, welche nicht unterstützt wird, wird die Dateivorschau ein Standard-Anhang-Symbol anzeigen. Unterstützte Dateitypen hängen stark von Ihrem Browser und Betriebssystem ab, aber folgende Formate werden in den meisten Browsern unterstützt:",
- "help.attaching.supportedList": "- Bilder: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Dokumente: PDF",
- "help.attaching.title": "# Dateien Anhängen\n_____",
- "help.commands.builtin": "## Eingebaute Befehle\nDie folgenden Slash-Befehle sind in allen Mattermost-Installationen verfügbar:",
- "help.commands.builtin2": "Starten Sie durch tippen von `/` und eine Liste aller Slash-Befehlsoptionen erscheint über dem Eingabefeld. Die Autovervollständigungsvoschläge helfen durch ein Formatierungsbeispiel in schwarzem Text und eine kurze Beschreibung des Slash-Befehls in grauem Text.",
- "help.commands.custom": "## Benutzerdefinierte Befehle\nBenutzerdefinierte Slash-Befehle integrieren externe Anwendungen. Zum Beispiel könnte ein Team einen Slash-Befehl zum Abrufen interner Patientenakten mit `/patient max mustermann` einbinden oder die wöchentliche Wettervorhersage einer Stadt mit `/wetter berlin woche` abrufen. Fragen Sie Ihren Systemadministrator oder öffnen Sie die Liste der Autovervollständigung durch Eingabe von `/`um zu prüfen ob für Ihr Team benutzerdefinierte Slash Befehle konfiguriert wurden.",
- "help.commands.custom2": "Benutzerdefinierte Slash-Befehle sind per Standard deaktiviert und können durch den Systemadministrator in der **Systemkonsole** > **Integrationen** > **Webhooks und Befehle** aktiviert werden. Lernen Sie mehr über benutzerdefinierte Befehle in der [Entwickler-Dokumentation für Slash-Befehle](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Slash-Befehle führen Vorgänge in Mattermost durch Eingabe im Eingabefeld aus. Geben Sie ein `/`gefolgt von einem Befehl und einigen Argumenten ein um Aktionen auszulösen.\n\nEingebaute Slash Befehle gibt es in jeder Mattermost-Installation und benutzerdefinierte Slash-Befehle werden zur Interaktion mit externen Anwendungen eingerichtet. Lernen Sie mehr über das Einrichten benutzerdefinierter Slash Befehle in der [Entwickler-Dokumentation für Slash-Befehle](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Befehle ausführen\n___",
- "help.composing.deleting": "## Eine Nachricht löschen\nSie können eine Nachricht durch einen Klick auf das **[...]** Symbol neben jeder Ihrer Mitteilungen und anschließendem Klick auf **Löschen** entfernen. System- und Teamadministratoren können jede Nachricht Ihres Systems oder Teams löschen.",
- "help.composing.editing": "## Eine Nachricht bearbeiten\nSie können eine Nachricht durch einen Klick auf das **[...]** Symbol neben jeder Ihrer Mitteilungen und anschließendem Klick auf **Bearbeiten** editieren, drücken Sie **Enter** um die Änderungen zu speichern. Bearbeitete Nachrichten lösen keine neuen @Erwähnungen, Desktop-Benachrichtigungen oder Töne aus.",
- "help.composing.linking": "## Eine Nachricht verlinken\nDie **dauerhafter Link**-Funktion erstellt einen Link für jede Nachricht. Das Teilen eines Links mit anderen Kanalmitgliedern ermöglicht ihnen, die verknüpfte Nachricht im Archiv zu betrachten. Benutzer, die nicht Mitglied des originären Kanals sind, können den Link nicht betrachten. Um den dauerhaften Link zu einer Nachricht zu erhalten klicken Sie auf das **[...]** Symbol neben einer Nachricht > **Dauerhafter Link** > **Link kopieren**.",
- "help.composing.posting": "## Eine Nachricht senden\nSchreiben Sie eine Nachricht indem Sie diese in das Eingabefeld eingeben und anschließend **Enter** drücken, um sie zu senden. Verwenden Sie **Shift + Enter** um einen Zeilenumbruch zu erzeugen, ohne die Nachricht zu versenden. Um Nachrichten durch **Strg + Enter** zu senden, wechseln Sie zu **Hauptmenü > Kontoeinstellungen > Erweitert > Sende Nachrichten mit Strg + Enter**.",
- "help.composing.posts": "#### Nachrichten\nNachrichten können als übergeordnete Mitteilungen verstanden werden. Sie sind häufig die Nachrichten die den Start für Antworten sind. Nachrichten werden über das Eingabefeld am Ende des mittleren Feldes erzeugt und versendet.",
- "help.composing.replies": "#### Antworten\nAntworten Sie auf eine Nachricht, indem Sie auf das Antworten-Symbol neben einer Nachricht klicken. Diese Aktion öffnet die rechte Seitenleiste, in der Sie den Nachrichtenverlauf sehen und Ihre Antwort schreiben und versenden können. Antworten werden etwas eingerückt im mittleren Feld dargestellt, um zu signalisieren, dass es sich um eine Antwort einer übergeordneten Nachricht handelt.\n\nWenn Sie eine Antwort in der rechten Seitenleiste erstellen, klicken Sie auf das erweitern/verkleinern-Symbol mit den zwei Pfeilen in der oberen Ecke der Seitenleiste, um leichter lesen zu können.",
- "help.composing.title": "# Senden von Nachrichten\n_____",
- "help.composing.types": "## Nachrichtentypen\nAntworten Sie auf Nachrichten um Unterhaltungen strukturiert zu halten.",
- "help.formatting.checklist": "Erstellen Sie eine Aufgabenliste durch die Verwendung von eckigen Klammern:",
- "help.formatting.checklistExample": "- [ ] Eintrag eins\n- [ ] Eintrag zwei\n- [x] Erledigter Eintrag",
- "help.formatting.code": "## Code Block\n\nErstellen Sie einen Code Block durch einrücken jeder Zeile durch vier Leerzeichen, oder indem Sie ``` in der Zeile über und unter Ihrem Code eingeben.",
- "help.formatting.codeBlock": "Code Block",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nÖffnen Sie die Emoji-Autovervollständigung durch Eingabe von `:`. Eine komplette Liste aller Emojis finden Sie [hier](http://www.emoji-cheat-sheet.com/). Es ist außerdem möglich, Ihre [eigenen Emojis](http://docs.mattermost.com/help/settings/custom-emoji.html) zu erstellen, sollte das benötigte Emoji fehlen.",
- "help.formatting.example": "Beispiel:",
- "help.formatting.githubTheme": "**GitHub Theme**",
- "help.formatting.headings": "## Überschriften\n\nErstellen Sie eine Überschrift durch Eingabe von # und einem Leerzeichen vor Ihrem Titel. Für kleinere Überschriften verwenden Sie mehrere #.",
- "help.formatting.headings2": "Alternativ können Sie Überschriften durch schreiben von `===` oder `---` unter dem Text erstellen.",
- "help.formatting.headings2Example": "Große Überschrift\n--------------",
- "help.formatting.headingsExample": "## Große Überschrift\n### Kleinere Überschrift\n#### Noch kleinere Überschrift",
- "help.formatting.images": "## Eingebettete Bilder\n\nErstellen Sie eingebettete Bilder durch `!`gefolgt vom alternativen Text in eckigen Klammern und einem Link in normalen Klammern. Fügen Sie einen Hover Text hinzu, indem Sie diesen in Anführungszeichen nach dem Link schreiben.",
- "help.formatting.imagesExample": "\n\nund\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Eingebetteter Code\n\nErstellen Sie eingebetteten Monospaced Font durch die Verwendung von Backticks vor und nach dem Code.",
- "help.formatting.intro": "Markdown macht es einfach Nachrichten zu formatieren. Schreiben Sie Nachrichten wie Sie es normalerweise Tun würden und verwenden diese Regeln um ihn zu formatieren.",
- "help.formatting.lines": "## Linien\n\nErstellen Sie eine Linie durch drei `*`, `_`oder `-`.",
- "help.formatting.linkEx": "[Sehen Sie sich mal Mattermost an!](https://about.mattermost.com/)",
- "help.formatting.links": "## Links\n\nErstellen Sie benannte Links indem Sie den gewünschten Text in eckigen Klammern vor dem dazugehörenden Link un regulären Klammern stellen.",
- "help.formatting.listExample": "* Eintrag eins\n* Eintrag zwei\n * Eintrag zwei Unterpunkt",
- "help.formatting.lists": "## Listen\n\nErstellen Sie eine Liste indem Sie `*` oder `-` als Aufzählungszeichen verwenden. Rücken Sie einen Listenpunkt ein indem Sie zwei Leerzeilen davor einfügen.",
- "help.formatting.monokaiTheme": "**Monokai Theme**",
- "help.formatting.ordered": "Erstellen Sie eine sortiere Liste indem Sie stattdessen Nummern verwenden:",
- "help.formatting.orderedExample": "1. Eintrag eins\n2. Eintrag zwei",
- "help.formatting.quotes": "## Blockzitate\n\nErstellen Sie ein Blockzitat indem Sie `>` verwenden.",
- "help.formatting.quotesExample": "`> Blockzitat` wird dargestellt als:",
- "help.formatting.quotesRender": "> Blockzitat",
- "help.formatting.renders": "Wird dargestellt als:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark Theme**",
- "help.formatting.solirizedLightTheme": "**Solarized Light Theme**",
- "help.formatting.style": "## Text Stile\n\nSie können entweder `_` oder `*` um ein Wort stellen um es Kursiv zu machen. Verwenden Sie zwei um es Fett zu machen.\n\n* `_Kursiv_` wird dargestellt als _Kursiv_\n* `**Fett**` wird dargestellt als **Fett**\n* `**_Fett Kursiv_**` wird dargestellt als **_Fett Kursiv_**\n* `~~Durchgestrichen~~` wird dargestellt als ~~Durchgestrichen~~~",
- "help.formatting.supportedSyntax": "Unterstützte Sprachen:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Syntaxhervorhebung\n\nUm Syntaxhervorhebung hinzuzufügen, schreiben Sie die zu verwendende Sprache hinter die ```am Beginn des Codeblocks. Mattermost unterstützt außerdem vier unterschiedliche Code Themes (GitHub, Solarized Dark, Solarized Light, Monokai), welche über **Kontoeinstellungen** > **Anzeige** > **Motiv** > **Benutzerdefiniertes Motiv** > **Aussehen des zentralen Kanals** gewählt werden können.",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hallo, 世界\")\n }",
- "help.formatting.tableExample": "| Links ausgerichtet | Mittig ausgerichtet | Rechts ausgerichtet|\n| :----------------- |:-------------------:| --------:|\n| Linke Spalte 1 | Dieser Text | 100€ |\n| Linke Spalte 2 | ist | 10€ |\n| Linke Spalte 3 | zentriert | 1€ |",
- "help.formatting.tables": "## Tabellen\n\nUm eine Tabelle zu erstellen, erstellen Sie eine Zeile aus Bindestrichen unter der Tabellenüberschrift und separieren die Spalten mit einem Senkrechtstrich `|`. Die Spalten müssen nicht exakt gleich breit sein damit es funktioniert. Wählen Sie wie die Tabellenspalte ausgerichtet werden soll indem Sie Doppelpunkte in der Überschriftsreihe verwenden.",
- "help.formatting.title": "# Text formatieren\n_____",
- "help.learnMore": "Erfahren Sie mehr über:",
- "help.link.attaching": "Dateien anhängen",
- "help.link.commands": "Befehle ausführen",
- "help.link.composing": "Nachrichten Erstellen und darauf Antworten",
- "help.link.formatting": "Nachrichten mit Markdown formatieren",
- "help.link.mentioning": "Teammitglieder erwähnen",
- "help.link.messaging": "Generelles zur Nachrichtenerstellung",
- "help.mentioning.channel": "#### @Channel\nSie können alle Mitglieder eines Kanals erwähnen indem Sie `@channel` verwenden. Alle Mitglieder des Kanals erhalten eine Benachrichtigung als wären sie persönlich erwähnt worden.",
- "help.mentioning.channelExample": "@channel Super Arbeit bei den Vorstellungsgesprächen. Ich glaube wir haben einige exzellente potentielle Kandidaten gefunden!",
- "help.mentioning.mentions": "## @Erwähnungen\nVerwenden Sie @Erwähnungen um die Aufmerksamkeit eines spezifischen Teammitgliedes zu erhalten.",
- "help.mentioning.recent": "## Letzte Erwähnungen\nKlicken Sie auf das `@`neben dem Suchfeld um die letzten @Erwähnungen und Wörter, die eine Erwähnungen auslösen, aufzurufen. Klicken Sie auf **Anzeigen** neben dem Suchergebnis in der rechten Seitenleiste um im mittleren Feld an die Stelle der Mittteilung mit der Erwähnungen zu springen.",
- "help.mentioning.title": "# Teammitglieder erwähnen\n_____",
- "help.mentioning.triggers": "## Wörter welche Erwähnungen auslösen\nZusätzlich zur Benachrichtigung durch @Benutzername und @channel können Sie eigene Wörter unter **Kontoeinstellungen** > **Benachrichtigungen** > **Wörter, welche Erwähnungen auslösen** definieren welche eine Erwähnungsbenachrichtigung auslösen. Standardmäßig erhalten Sie Erwähnungsbenachrichtigungen für Ihren Vornamen und Sie können weitere Wörter durch Eingabe in das Feld, separiert durch Kommas, hinzufügen. Dies ist hilfreich, wenn Sie wegen bestimmter Themen benachrichtigt werden wollen, wie zum Beispiel \"Vorstellungsgespräche\" oder \"Marketing\".",
- "help.mentioning.username": "#### @Benutzername\nSie können ein Teammitglied erwähnen, indem Sie das `@`-Symbol und seinen Benutzernamen verwenden, um ihm eine Benachrichtigung zu senden.\n\nTippen Sie `@` um eine Liste der Mitglieder aufzurufen, die erwähnt werden können. Um die Liste zu filtern, tippen Sie die ersten Buchstaben des Benutzernamens, Vornamens, Nachnamens oder Spitznamens. Die **Hoch** und **Runter** Pfeiltasten können zum Scrollen durch die Liste verwendet werden und durch drücken von **Enter** wird die gewählte Erwähnung übernommen. Sobald dieser ausgewählt wurde wird der volle Name oder Spitzname durch den Benutzernamen ersetzt.\nDas folgende Beispiel sendet eine Erwähnungsnachricht an **alice*, welche Sie über den Kanal und die Mitteilung informiert, in der sie erwähnt wurde. Wenn **alice** von Mattermost abwesend ist und [E-Mail-Benachrichtigung](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) aktiviert hat, erhält sie eine E-Mail mit der Mitteilung.",
- "help.mentioning.usernameCont": "Sollte der erwähnte Benutzer kein Kanalmitglied sein wird eine Systemnachricht angezeigt um Sie darüber zu informieren. Dies ist eine temporäre Mitteilung die nur auslösende Person sieht. Um den erwähnten Benutzer dem Kanal hinzuzufügen, gehen Sie zum Dropdown Menü neben dem Kanalnamen und wählen **Mitglieder hinzufügen**.",
- "help.mentioning.usernameExample": "@alice wie lief das Vorstellungsgespräch mit dem neuen Kandidaten?",
- "help.messaging.attach": "**Dateien anhängen** durch Drag und Drop in Mattermost oder durch anklicken des Anhänge-Symbols neben dem Eingabefeld.",
- "help.messaging.emoji": "**Schnell Emojis hinzufügen** durch Eingabe von \":\", welches die Emoji-Autovervollständigung aufruft. Wenn die zur Verfügung stehenden Emojis nicht das abdecken können, was Sie ausdrücken möchten, können Sie [eigene Emojis](http://docs.mattermost.com/help/settings/custom-emoji.html) erstellen.",
- "help.messaging.format": "**Formatieren von Mittelungen** mit Markdown, welches Textstile, Überschriften, Links, Emoticons, Codeblöcke, Blockzitate, Tabellen, Listen und eingebettete Bilder unterstützt.",
- "help.messaging.notify": "**Teammitglieder benachrichtigen** sobald benötigt durch die Eingabe von `@Benutzername`.",
- "help.messaging.reply": "**Auf Mitteilungen Antworten** durch klicke auf den Antworten Pfeil neben dem Nachrichtentext.",
- "help.messaging.title": "# Grundlagen zu Nachrichten\n_____",
- "help.messaging.write": "**Schreiben Sie Nachrichten** indem Sie das Eingabefeld am unteren Ende von Mattermost verwenden. Drücken Sie **Enter* um sie zu versenden. Verwenden Sie **Shift+Enter** um einen Zeilenumbruch einzufügen ohne die Nachricht zu senden.",
- "installed_command.header": "Slash-Befehle",
- "installed_commands.add": "Slash-Befehl hinzufügen",
- "installed_commands.delete.confirm": "Diese Aktion wird den Slash-Befehl permanent löschen und wird jede Integration, die ihn verwendet, stoppen. Sind Sie sich sicher dass sie ihn löschen möchten?",
- "installed_commands.empty": "Keine Befehle gefunden",
- "installed_commands.header": "Slash-Befehle",
- "installed_commands.help": "Verwenden Sie Slash-Befehle um externe Tools mit Mattermost zu verbinden. {buildYourOwn} oder besuchen Sie das {appDirectory} um selbst gehostete Anwendungen, Drittanbieteranwendungen und Integrationen zu finden.",
- "installed_commands.help.appDirectory": "App-Verzeichnis",
- "installed_commands.help.buildYourOwn": "Selbst entwickeln",
- "installed_commands.search": "Suche nach Slash-Befehlen",
- "installed_commands.unnamed_command": "Unbenannter Slash-Befehl",
- "installed_incoming_webhooks.add": "Eingehenden Webhook hinzufügen",
- "installed_incoming_webhooks.delete.confirm": "Die Aktion wird den eingehenden Webhook permanent löschen und jede Integration, die ihn verwendet, stoppen. Sind Sie sich sicher dass sie ihn löschen möchten?",
- "installed_incoming_webhooks.empty": "Keine eingehende Webhooks gefunden",
- "installed_incoming_webhooks.header": "Eingehende Webhooks",
- "installed_incoming_webhooks.help": "Verwenden Sie eingehende Webhooks um externe Tools mit Mattermost zu verbinden. {buildYourOwn} oder besuchen Sie das {appDirectory} um selbst gehostete Anwendungen, Drittanbieteranwendungen und Integrationen zu finden.",
- "installed_incoming_webhooks.help.appDirectory": "App-Verzeichnis",
- "installed_incoming_webhooks.help.buildYourOwn": "Selbst entwickeln",
- "installed_incoming_webhooks.search": "Suche nach eingehenden Webhooks",
- "installed_incoming_webhooks.unknown_channel": "Ein privater Webhook",
- "installed_integrations.callback_urls": "Callback-URLs: {urls}",
- "installed_integrations.client_id": "Client-ID: {clientId}",
- "installed_integrations.client_secret": "Client Secret: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Erstellt durch {creator} am {createAt, date, full}",
- "installed_integrations.delete": "Löschen",
- "installed_integrations.edit": "Bearbeiten",
- "installed_integrations.hideSecret": "Secret ausblenden",
- "installed_integrations.regenSecret": "Secret erneuern",
- "installed_integrations.regenToken": "Token neu generieren",
- "installed_integrations.showSecret": "Secret einblenden",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Auslösen sobald: {triggerWhen}",
- "installed_integrations.triggerWords": "Auslösewörter: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Unbenannte OAuth-2.0-Applikation",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "OAuth-2.0-Applikation hinzufügen",
- "installed_oauth_apps.callbackUrls": "Callback-URLs (eine pro Zeile)",
- "installed_oauth_apps.cancel": "Abbrechen",
- "installed_oauth_apps.delete.confirm": "Die Aktion wird die OAuth-2.0-Applikation permanent löschen und jede Integration, die sie verwendet, stoppen. Sind Sie sich sicher, dass Sie sie löschen möchten?",
- "installed_oauth_apps.description": "Beschreibung",
- "installed_oauth_apps.empty": "Keine OAuth-2.0-Applikationen gefunden",
- "installed_oauth_apps.header": "OAuth-2.0-Applikationen",
- "installed_oauth_apps.help": "Erstellen Sie {oauthApplications} um Bots und Drittanbieteranwendungen mit Mattermost sicher zu verbinden. Besuchen Sie das {appDirectory} um verfügbare selbst gehostete Anwendungen zu finden.",
- "installed_oauth_apps.help.appDirectory": "App-Verzeichnis",
- "installed_oauth_apps.help.oauthApplications": "OAuth-2.0-Applikationen",
- "installed_oauth_apps.homepage": "Homepage",
- "installed_oauth_apps.iconUrl": "Symbol-URL",
- "installed_oauth_apps.is_trusted": "Ist vertrauenswürdig: {isTrusted}",
- "installed_oauth_apps.name": "Anzeigename",
- "installed_oauth_apps.save": "Speichern",
- "installed_oauth_apps.search": "Durchsuche OAuth-2.0-Applikationen",
- "installed_oauth_apps.trusted": "Vertrauenswürdig",
- "installed_oauth_apps.trusted.no": "Nein",
- "installed_oauth_apps.trusted.yes": "Ja",
- "installed_outgoing_webhooks.add": "Ausgehenden Webhook hinzufügen",
- "installed_outgoing_webhooks.delete.confirm": "Diese Aktion wird den ausgehenden Webhook permanent löschen und und jede Integration, die ihn verwendet, stoppen. Sind Sie sich sicher, dass Sie ihn löschen möchten?",
- "installed_outgoing_webhooks.empty": "Keine ausgehenden Webhooks gefunden",
- "installed_outgoing_webhooks.header": "Ausgehende Webhooks",
- "installed_outgoing_webhooks.help": "Verwenden Sie ausgehende Webhooks um externe Tools mit Mattermost zu verbinden. {buildYourOwn} oder besuchen Sie das {appDirectory} um selbst gehostete Anwendungen, Drittanbieteranwendungen und Integrationen zu finden.",
- "installed_outgoing_webhooks.help.appDirectory": "App-Verzeichnis",
- "installed_outgoing_webhooks.help.buildYourOwn": "Selbst entwickeln",
- "installed_outgoing_webhooks.search": "Suche ausgehende Webhooks",
- "installed_outgoing_webhooks.unknown_channel": "Ein privater Webhook",
- "integrations.add": "Hinzufügen",
- "integrations.command.description": "Slash-Befehle senden Events an externe Integrationen",
- "integrations.command.title": "Slash-Befehle",
- "integrations.delete.confirm.button": "Entfernen",
- "integrations.delete.confirm.title": "Integration entfernen",
- "integrations.done": "Erledigt",
- "integrations.edit": "Bearbeiten",
- "integrations.header": "Integrationen",
- "integrations.help": "Besuchen Sie das {appDirectory} um selbst gehostete Drittanbieteranwendungen und Integrationen für Mattermost zu finden.",
- "integrations.help.appDirectory": "App-Verzeichnis",
- "integrations.incomingWebhook.description": "Eingehende Webhooks erlauben externen Integrationen Nachrichten zu senden",
- "integrations.incomingWebhook.title": "Eingehende Webhooks",
- "integrations.oauthApps.description": "OAuth 2.0 erlaubt externen Applikationen autorisierte Anfragen an die Mattermost API zu stellen.",
- "integrations.oauthApps.title": "OAuth-2.0-Applikationen",
- "integrations.outgoingWebhook.description": "Ausgehende Webhooks erlauben externen Integrationen Nachrichten zu erhalten und zu antworten",
- "integrations.outgoingWebhook.title": "Ausgehende Webhooks",
- "integrations.successful": "Einrichtung erfolgreich",
- "intro_messages.DM": "Dies ist der Start der Privatnachrichten mit {teammate}. Privatnachrichten und hier geteilte Dateien sind für Personen außerhalb dieses Bereichs nicht sichtbar.",
- "intro_messages.GM": "Dies ist der Start der Gruppennachrichten mit {names}. Gruppennachrichten und hier geteilte Dateien sind für Personen außerhalb dieses Bereichs nicht sichtbar.",
- "intro_messages.anyMember": " Jedes Mitglied kann diesem Kanal beitreten und folgen.",
- "intro_messages.beginning": "Start von {name}",
- "intro_messages.channel": "Kanal",
- "intro_messages.creator": "Dies ist der Start von {type} {name}, erstellt durch {creator} am {date}.",
- "intro_messages.default": "
Start von {display_name}
Willkommen in {display_name}!
Versenden Sie Nachrichten hier, die jeder sehen können soll. Jeder wird automatisch permanentes Mitglied in diesem Kanal sobald er dem Team beitritt.
",
- "intro_messages.group": "Privater Kanal",
- "intro_messages.group_message": "Dies ist der Start Ihres Gruppennachrichten-Verlaufs mit diesen Teammitgliedern. Nachrichten und hier geteilte Dateien sind für Personen außerhalb dieses Bereichs nicht sichtbar.",
- "intro_messages.invite": "Laden Sie andere zu {type} ein",
- "intro_messages.inviteOthers": "Laden Sie andere zu diesem Team ein",
- "intro_messages.noCreator": "Dies ist der Start von {type} {name}, erstellt am {date}.",
- "intro_messages.offTopic": "
Start von {display_name}
Dies ist der Start von {display_name}, einem Kanal für nicht-arbeitsbezogene Unterhaltungen.
",
- "intro_messages.onlyInvited": " Nur eingeladene Mitglieder können diesen privaten Kanal sehen.",
- "intro_messages.purpose": " Der Zweck der/des {type} ist: {purpose}.",
- "intro_messages.setHeader": "Eine Überschrift setzen",
- "intro_messages.teammate": "Dies ist der Start Ihres Privatnachrichtenverlaufs mit diesem Teammitglied. Privatnachrichten und hier geteilte Dateien sind für Personen außerhalb dieses Bereichs nicht sichtbar.",
- "invite_member.addAnother": "Hinzufügen",
- "invite_member.autoJoin": "Eingeladene Personen treten automatisch dem Kanal {channel} bei.",
- "invite_member.cancel": "Abbrechen",
- "invite_member.content": "E-Mail ist momentan für Ihr Team deaktiviert und es werden keine E-Mails versendet. Kontaktieren Sie Ihren Systemadministrator um E-Mails und E-Mail-Einladungen zu aktivieren.",
- "invite_member.disabled": "Erstellung von Benutzern wurde für Ihr Team deaktiviert. Für Details, fragen Sie bitte Ihren Administrator.",
- "invite_member.emailError": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
- "invite_member.firstname": "Vorname",
- "invite_member.inviteLink": "Team-Einladungslink",
- "invite_member.lastname": "Nachname",
- "invite_member.modalButton": "Ja, verwerfen",
- "invite_member.modalMessage": "Sie haben ungesendete Einladungen, möchte Sie diese wirklich verwerfen?",
- "invite_member.modalTitle": "Einladungen verwerfen?",
- "invite_member.newMember": "E-Mail-Einladung versenden",
- "invite_member.send": "Einladung senden",
- "invite_member.send2": "Einladungen senden",
- "invite_member.sending": " Sende",
- "invite_member.teamInviteLink": "Sie können außerdem Personen über den {link} einladen.",
- "ldap_signup.find": "Finde meine Teams",
- "ldap_signup.ldap": "Team mit AD/LDAP-Konto erstellen",
- "ldap_signup.length_error": "Der Name muss 3 bis 15 Zeichen enthalten",
- "ldap_signup.teamName": "Name für neues Team eingeben",
- "ldap_signup.team_error": "Bitte geben Sie einen Team Namen ein",
- "leave_private_channel_modal.leave": "Ja, Kanal verlassen",
- "leave_private_channel_modal.message": "Sind Sie sicher, dass Sie den privaten Kanal {channel}? verlassen möchten? Sie müssen erneut eingeladen werden, um diesen Kanal erneut zu betreten.",
- "leave_private_channel_modal.title": "Privaten Kanal {channel} verlassen",
- "leave_team_modal.desc": "Sie werden von allen öffentlichen und privaten Kanälen entfernt. Wenn das Team privat ist können Sie diesem nicht wieder beitreten. Sind Sie sich sicher?",
- "leave_team_modal.no": "Nein",
- "leave_team_modal.title": "Team verlassen?",
- "leave_team_modal.yes": "Ja",
- "loading_screen.loading": "Laden",
- "login.changed": " Anmeldemethode erfolgreich geändert",
- "login.create": "Jetzt neuen Erstellen",
- "login.createTeam": "Neues Team erstellen",
- "login.createTeamAdminOnly": "Diese Option ist nur für Systemadministratoren verfügbar und wird nicht für andere Nutzer angezeigt.",
- "login.email": "E-Mail-Adresse",
- "login.find": "Finden Sie Ihre anderen Teams",
- "login.forgot": "Ich habe mein Passwort vergessen",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Ihr Passwort ist falsch.",
- "login.ldapUsername": "AD/LDAP-Benutzername",
- "login.ldapUsernameLower": "AD/LDAP-Benutzername",
- "login.noAccount": "Sie haben keinen Zugang? ",
- "login.noEmail": "Bitte geben Sie Ihre E-Mail-Adresse ein",
- "login.noEmailLdapUsername": "Bitte geben Sie Ihre E-Mail-Adresse oder {ldapUsername} ein",
- "login.noEmailUsername": "Bitte geben Sie Ihre E-Mail-Adresse oder Benutzernamen ein",
- "login.noEmailUsernameLdapUsername": "Bitte geben Sie Ihre E-Mail-Adresse, Benutzername oder {ldapUsername} ein",
- "login.noLdapUsername": "Bitte geben Sie Ihren {ldapUsername} ein",
- "login.noMethods": "Keine Anmeldemethoden konfiguriert, bitte kontaktieren Sie Ihren Systemadministrator.",
- "login.noPassword": "Bitte geben Sie Ihr Passwort ein",
- "login.noUsername": "Bitte geben Sie Ihren Benutzernamen ein",
- "login.noUsernameLdapUsername": "Bitte geben Sie Ihren Benutzernamen oder {ldapUsername} ein",
- "login.office365": "Office 365",
- "login.on": "zu {siteName}",
- "login.or": "oder",
- "login.password": "Passwort",
- "login.passwordChanged": " Passwort erfolgreich aktualisiert",
- "login.placeholderOr": " oder ",
- "login.session_expired": " Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.",
- "login.signIn": "Anmelden",
- "login.signInLoading": "Anmeldung läuft...",
- "login.signInWith": "Anmelden mit:",
- "login.userNotFound": "Es konnte kein Konto mit den angegebenen Zugangsdaten gefunden werden.",
- "login.username": "Benutzername",
- "login.verified": " E-Mail-Adresse bestätigt",
- "login_mfa.enterToken": "Um Ihre Anmeldung zu vervollständigen, geben Sie bitte den Token des Authenticators ein",
- "login_mfa.submit": "Absenden",
- "login_mfa.token": "MFA Token",
- "login_mfa.tokenReq": "Bitte geben Sie den MFA Token ein",
- "member_item.makeAdmin": "Zum Admin machen",
- "member_item.member": "Mitglied",
- "member_list.noUsersAdd": "Keine Benutzer zum Hinzufügen.",
- "members_popover.manageMembers": "Mitglieder verwalten",
- "members_popover.msg": "Nachricht",
- "members_popover.title": "Kanalmitglieder",
- "members_popover.viewMembers": "Zeige Mitglieder",
- "mfa.confirm.complete": "Einrichtung abgeschlossen!",
- "mfa.confirm.okay": "OK",
- "mfa.confirm.secure": "Ihr Zugang ist nun abgesichert. Wenn Sie sich das nächste mal anmelden werden Sie gefragt den Code aus der Google Authenticator App von Ihrem Smartphone einzugeben.",
- "mfa.setup.badCode": "Ungültiger Code. Wenn dieser Fehler sicher wiederholt, wenden Sie sich an Ihren Systemadministrator.",
- "mfa.setup.code": "MFA Code",
- "mfa.setup.codeError": "Bitte geben Sie den Code Ihres Google Authenticators ein.",
- "mfa.setup.required": "Multi-Faktor-Authentifizierung ist erforderlich auf {siteName}.",
- "mfa.setup.save": "Speichern",
- "mfa.setup.secret": "Schlüssel: {secret}",
- "mfa.setup.step1": "Schritt 1:Auf Ihrem Smartphone laden Sie den Google Authenticator von iTunes oder Google Play herunter",
- "mfa.setup.step2": "Schritt 2: Verwenden Sie Google Authenticator um diesen QR-Code zu scannen, oder geben sie manuell den Schlüssel ein",
- "mfa.setup.step3": "Schritt 3: Geben Sie den durch Google Authenticator generierten Code ein",
- "mfa.setupTitle": "Multi-Faktor-Authentifizierung einrichten",
- "mobile.about.appVersion": "App Version: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. Alle Rechte vorbehalten",
- "mobile.about.database": "Datenbank: {type}",
- "mobile.about.serverVersion": "Server Version: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Server Version: {version}",
- "mobile.account.notifications.email.footer": "Wenn offline oder abwesend für mehr als fünf Minuten",
- "mobile.account_notifications.mentions_footer": "Ihr Benutzername (\"@{username}\") wird immer eine Erwähnung auslösen.",
- "mobile.account_notifications.non-case_sensitive_words": "Weitere nicht groß-/kleinschreibungsabhängige Wörter...",
- "mobile.account_notifications.reply.header": "Antwort-Benachrichtigungen für",
- "mobile.account_notifications.threads_mentions": "Erwähnungen in Antworten",
- "mobile.account_notifications.threads_start": "Diskussionen die ich starte",
- "mobile.account_notifications.threads_start_participate": "Diskussionen die ich starte oder an denen ich teilnehme",
- "mobile.advanced_settings.reset_button": "Zurücksetzen",
- "mobile.advanced_settings.reset_message": "\nDies wird alle gespeicherten Offlinedaten löschen und die Anwendung neustarten. Sie werden automatisch wieder angemeldet, sobald die App neugestartet wurde.\n",
- "mobile.advanced_settings.reset_title": "Cache zurücksetzen",
- "mobile.advanced_settings.title": "Erweiterte Einstellungen",
- "mobile.channel_drawer.search": "Springe zu einer Konversation",
- "mobile.channel_info.alertMessageDeleteChannel": "Sind Sie sicher, dass Sie den {term} {name} löschen möchten?",
- "mobile.channel_info.alertMessageLeaveChannel": "Sind Sie sicher, dass Sie den {term} {name} verlassen möchten?",
- "mobile.channel_info.alertNo": "Nein",
- "mobile.channel_info.alertTitleDeleteChannel": "{term} löschen",
- "mobile.channel_info.alertTitleLeaveChannel": "{term} verlassen",
- "mobile.channel_info.alertYes": "Ja",
- "mobile.channel_info.delete_failed": "Der Kanal {displayName} konnte nicht gelöscht werden. Bitte überprüfen Sie Ihre Verbindung und versuchen es erneut.",
- "mobile.channel_info.privateChannel": "Privater Kanal",
- "mobile.channel_info.publicChannel": "Öffentlicher Kanal",
- "mobile.channel_list.alertMessageLeaveChannel": "Sind Sie sicher, dass Sie den {term} {name} verlassen möchten?",
- "mobile.channel_list.alertNo": "Nein",
- "mobile.channel_list.alertTitleLeaveChannel": "{term} verlassen",
- "mobile.channel_list.alertYes": "Ja",
- "mobile.channel_list.closeDM": "Direktnachricht schließen",
- "mobile.channel_list.closeGM": "Gruppennachricht schließen",
- "mobile.channel_list.dm": "Direktnachricht",
- "mobile.channel_list.gm": "Gruppennachricht",
- "mobile.channel_list.not_member": "KEIN MITGLIED",
- "mobile.channel_list.open": "{term} öffnen",
- "mobile.channel_list.openDM": "Direktnachricht öffen",
- "mobile.channel_list.openGM": "Gruppennachricht öffnen",
- "mobile.channel_list.privateChannel": "Privater Kanal",
- "mobile.channel_list.publicChannel": "Öffentlicher Kanal",
- "mobile.channel_list.unreads": "UNGELESENE",
- "mobile.components.channels_list_view.yourChannels": "Ihre Kanäle:",
- "mobile.components.error_list.dismiss_all": "Alle verwerfen",
- "mobile.components.select_server_view.continue": "Weiter",
- "mobile.components.select_server_view.enterServerUrl": "Geben Sie die Server-URL ein",
- "mobile.components.select_server_view.proceed": "Fortfahren",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Erstellen",
- "mobile.create_channel.private": "Neuer privater Kanal",
- "mobile.create_channel.public": "Neuer Öffentlicher Kanal",
- "mobile.custom_list.no_results": "Keine Ergebnisse",
- "mobile.drawer.teamsTitle": "Teams",
- "mobile.edit_post.title": "Nachricht bearbeiten",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Neustarten",
- "mobile.error_handler.description": "\nKlicken Sie auf Neustarten um die App neu zu öffnen. Nach dem Neustart können Sie das Problem über das Einstellungsmenü melden.\n",
- "mobile.error_handler.title": "Ein unerwarteter Fehler ist aufgetreten",
- "mobile.file_upload.camera": "Ein Foto oder ein Video aufnehmen",
- "mobile.file_upload.library": "Foto-Bibliothek",
- "mobile.file_upload.more": "Mehr",
- "mobile.file_upload.video": "Videobibliothek",
- "mobile.help.title": "Hilfe",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "Dies ist der Start der Privatnachrichten mit {teammate}. Privatnachrichten und hier geteilte Dateien sind für Personen außerhalb dieses Bereichs nicht sichtbar.",
- "mobile.intro_messages.default_message": "Dies ist der Kanal, den Teammitglieder sehen, wenn sie sich anmelden - benutzen Sie ihn zum Veröffentlichen von Aktualisierungen, die jeder kennen muss.",
- "mobile.intro_messages.default_welcome": "Willkommen bei {name}!",
- "mobile.join_channel.error": "Dem Kanal {displayName} konnte nicht beigetreten werden. Bitte überprüfen Sie Ihre Verbindung und versuchen es erneut.",
- "mobile.loading_channels": "Lade Kanäle...",
- "mobile.loading_members": "Lade Mitglieder...",
- "mobile.loading_posts": "Lade Mitteilungen...",
- "mobile.login_options.choose_title": "Wählen Sie Ihre Anmeldemethode",
- "mobile.managed.blocked_by": "Blockiert durch {vendor}",
- "mobile.managed.exit": "Beenden",
- "mobile.managed.jailbreak": "Geräten mit Jailbreak wird von {vendor} nicht vertraut, bitte beenden Sie die App.",
- "mobile.managed.secured_by": "Gesichert durch {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Start",
- "mobile.more_dms.title": "Neue Konversation",
- "mobile.notice_mobile_link": "mobile Apps",
- "mobile.notice_platform_link": "Plattform",
- "mobile.notice_text": "Mattermost wird durch die in {platform} und {mobile} verwendete Open-Source-Software ermöglicht.",
- "mobile.notification.in": " in ",
- "mobile.offlineIndicator.connected": "Verbunden",
- "mobile.offlineIndicator.connecting": "Verbinde...",
- "mobile.offlineIndicator.offline": "Keine Internetverbindung",
- "mobile.open_dm.error": "Der Direktnachrichtenkanal mit {displayName} konnte nicht geöffnet werden. Bitte überprüfen Sie Ihre Verbindung und versuchen es erneut.",
- "mobile.open_gm.error": "Der Gruppennachrichtenkanal mit diesen Benutzern konnte nicht geöffnet werden. Bitte überprüfen Sie Ihre Verbindung und versuchen es erneut.",
- "mobile.post.cancel": "Abbrechen",
- "mobile.post.delete_question": "Möchten Sie diese Nachricht wirklich löschen?",
- "mobile.post.delete_title": "Nachricht löschen",
- "mobile.post.failed_delete": "Nachricht löschen",
- "mobile.post.failed_retry": "Erneut versuchen",
- "mobile.post.failed_title": "Ihre Nachricht konnte nicht gesendet werden",
- "mobile.post.retry": "Aktualisieren",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Ungültige Antwort vom Server erhalten.",
- "mobile.routes.channelInfo": "Info",
- "mobile.routes.channelInfo.createdBy": "Erstellt durch {creator} am ",
- "mobile.routes.channelInfo.delete_channel": "Kanal löschen",
- "mobile.routes.channelInfo.favorite": "Favoriten",
- "mobile.routes.channel_members.action": "Mitglieder entfernen",
- "mobile.routes.channel_members.action_message": "Sie müssen mindestens ein Mitglied auswählen.",
- "mobile.routes.channel_members.action_message_confirm": "Sind Sie sicher, dass Sie die ausgewählten Mitglieder vom Kanal löschen möchten?",
- "mobile.routes.channels": "Kanäle",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Geben Sie die Server-URL ein",
- "mobile.routes.login": "Anmelden",
- "mobile.routes.loginOptions": "Loginauswahl",
- "mobile.routes.mfa": "Multi-Faktor-Authentifizierung",
- "mobile.routes.postsList": "Mitteilungsliste",
- "mobile.routes.saml": "Single Sign On",
- "mobile.routes.selectTeam": "Team auswählen",
- "mobile.routes.settings": "Einstellungen",
- "mobile.routes.sso": "Single Sign-On",
- "mobile.routes.thread": "{channelName} Diskussion",
- "mobile.routes.thread_dm": "Direktnachrichten-Diskussion",
- "mobile.routes.user_profile": "Profil",
- "mobile.routes.user_profile.send_message": "Nachricht senden",
- "mobile.search.jump": "JUMP",
- "mobile.search.no_results": "Keine Ergebnisse gefunden",
- "mobile.select_team.choose": "Ihre Teams:",
- "mobile.select_team.join_open": "Offene Teams, denen Sie beitreten können",
- "mobile.select_team.no_teams": "Es sind keine Teams zum Betreten für Sie verfügbar.",
- "mobile.server_ping_failed": "Kann nicht mit Server verbinden. Bitte überprüfen Sie ihre Server-URL und Internetverbindung.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nEine Serveraktualisierung ist erforderlich um die Mattermost-App zu verwenden. Bitte Fragen Sie Ihren Systemadministrator für Details.\n",
- "mobile.server_upgrade.title": "Serveraktualisierung erforderlich",
- "mobile.server_url.invalid_format": "URL muss mit http:// oder https:// beginnen",
- "mobile.session_expired": "Sitzung abgelaufen: Bitte anmelden um weiterhin Benachrichtigungen zu erhalten.",
- "mobile.settings.clear": "Offline-Speicher leeren",
- "mobile.settings.clear_button": "Leeren",
- "mobile.settings.clear_message": "\nDies wird alle gespeicherten Offlinedaten löschen und die Anwendung neustarten. Sie werden automatisch wieder angemeldet, sobald die App neugestartet wurde.\n",
- "mobile.settings.team_selection": "Teamauswahl",
- "mobile.suggestion.members": "Mitglieder",
- "modal.manaul_status.ask": "Nicht wieder nachfragen",
- "modal.manaul_status.button": "Ja, meinen Status auf \"Online\" setzen",
- "modal.manaul_status.cancel": "Nein, \"{status}\" beibehalten",
- "modal.manaul_status.message": "Möchten Sie Ihren Status auf \"Online\" umschalten?",
- "modal.manaul_status.title": "Ihr Status wurde auf \"{status}\" gesetzt",
- "more_channels.close": "Schließen",
- "more_channels.create": "Neuen Kanal erstellen",
- "more_channels.createClick": "Klicken Sie auf 'Neuen Kanal erstellen' um einen Neuen zu erzeugen",
- "more_channels.join": "Betreten",
- "more_channels.next": "Weiter",
- "more_channels.noMore": "Keine weiteren Kanäle zum Betreten",
- "more_channels.prev": "Zurück",
- "more_channels.title": "Weitere Kanäle",
- "more_direct_channels.close": "Schließen",
- "more_direct_channels.message": "Nachricht",
- "more_direct_channels.new_convo_note": "Dies wird eine neue Unterhaltung starten. Wenn Sie viele Personen hinzufügen, könnte ein privater Kanal besser geeignet sein.",
- "more_direct_channels.new_convo_note.full": "Sie haben die maximale Anzahl an Personen für diese Unterhaltung erreicht. Ziehen Sie in Erwägung einen privaten Kanal zu erstellen.",
- "more_direct_channels.title": "Direktnachricht",
- "msg_typing.areTyping": "{users} und {last} tippen gerade...",
- "msg_typing.isTyping": "{user} tippt...",
- "msg_typing.someone": "Jemand",
- "multiselect.add": "Hinzufügen",
- "multiselect.go": "Los",
- "multiselect.list.notFound": "Keine Elemente gefunden",
- "multiselect.numPeopleRemaining": "Verwenden Sie ↑↓ zum Navigieren, ↵ zur Auswahl. Sie können {num, number} weitere {num, plural, one {Person} other {Personen}} hinzufügen. ",
- "multiselect.numRemaining": "Sie können {num, number} weitere hinzufügen",
- "multiselect.placeholder": "Mitglieder suchen und hinzufügen",
- "navbar.addMembers": "Mitglieder hinzufügen",
- "navbar.click": "Klicken Sie hier",
- "navbar.delete": "Kanal löschen...",
- "navbar.leave": "Kanal verlassen",
- "navbar.manageMembers": "Mitglieder verwalten",
- "navbar.noHeader": "Bisher keine Kanalüberschrift vorhanden.{newline}{link} um eine einzutragen.",
- "navbar.preferences": "Benachrichtigungseinstellungen",
- "navbar.rename": "Kanal umbenennen...",
- "navbar.setHeader": "Kanalüberschrift festlegen...",
- "navbar.setPurpose": "Kanalzweck festlegen...",
- "navbar.toggle1": "Seitenleiste umschalten",
- "navbar.toggle2": "Seitenleiste umschalten",
- "navbar.viewInfo": "Info anzeigen",
- "navbar.viewPinnedPosts": "Zeige angeheftete Nachrichten",
- "navbar_dropdown.about": "Über Mattermost",
- "navbar_dropdown.accountSettings": "Kontoeinstellungen",
- "navbar_dropdown.addMemberToTeam": "Mitglieder zum Team hinzufügen",
- "navbar_dropdown.console": "Systemkonsole",
- "navbar_dropdown.create": "Neues Team erstellen",
- "navbar_dropdown.emoji": "Eigene Emojis",
- "navbar_dropdown.help": "Hilfe",
- "navbar_dropdown.integrations": "Integrationen",
- "navbar_dropdown.inviteMember": "E-Mail-Einladung versenden",
- "navbar_dropdown.join": "Einem anderen Team beitreten",
- "navbar_dropdown.keyboardShortcuts": "Tastaturkürzel",
- "navbar_dropdown.leave": "Team verlassen",
- "navbar_dropdown.logout": "Abmelden",
- "navbar_dropdown.manageMembers": "Mitglieder verwalten",
- "navbar_dropdown.nativeApps": "Apps herunterladen",
- "navbar_dropdown.report": "Fehler melden",
- "navbar_dropdown.switchTeam": "Wechsel zu {team}",
- "navbar_dropdown.switchTo": "Wechsel zu ",
- "navbar_dropdown.teamLink": "Team-Einladungslink erhalten",
- "navbar_dropdown.teamSettings": "Teameinstellungen",
- "navbar_dropdown.viewMembers": "Zeige Mitglieder",
- "notification.dm": "Direktnachricht",
- "notify_all.confirm": "Bestätigen",
- "notify_all.question": "Durch die Verwendung von @all oder @channel werden Sie Benachrichtigungen an {totalMembers} Personen senden. Sind Sie sicher, dass Sie dies tun wollen?",
- "notify_all.title.confirm": "Bestätigen Sie das Senden von Benachrichtigungen an den gesamten Kanal",
- "passwordRequirements": "Passwortanforderungen:",
- "password_form.change": "Mein Passwort ändern",
- "password_form.click": "Zur Anmeldung hier klicken.",
- "password_form.enter": "Geben Sie ein neues Passwort für den {siteName} Zugang ein.",
- "password_form.error": "Bitte geben Sie mindestens {chars} Zeichen ein.",
- "password_form.pwd": "Passwort",
- "password_form.title": "Passwort zurücksetzen",
- "password_form.update": "Das Passwort wurde erfolgreich aktualisiert.",
- "password_send.checkInbox": "Bitte prüfen Sie den Posteingang.",
- "password_send.description": "Um Ihr Passwort zurückzusetzen, geben Sie die E-Mail-Adresse an, die Sie zur Registrierung verwendet haben",
- "password_send.email": "E-Mail",
- "password_send.error": "Bitte geben Sie eine gültige E-Mail-Adresse ein.",
- "password_send.link": "Wenn ein Zugang existiert wird eine Passwort Zurücksetzen E-Mail gesendet an: {email}
",
- "password_send.reset": "Mein Passwort zurücksetzen",
- "password_send.title": "Passwort zurücksetzen",
- "pdf_preview.max_pages": "Herunterladen um mehr Seiten zu lesen",
- "pending_post_actions.cancel": "Abbrechen",
- "pending_post_actions.retry": "Erneut versuchen",
- "permalink.error.access": "Der dauerhafte Link verweist auf eine gelöschte Nachricht oder einen Kanal auf den Sie keinen Zugriff haben.",
- "permalink.error.title": "Nachricht nicht gefunden",
- "post_attachment.collapse": "Weniger anzeigen...",
- "post_attachment.more": "Mehr anzeigen...",
- "post_body.commentedOn": "Kommentierte {name}{apostrophe} Nachricht: ",
- "post_body.deleted": "(Nachricht gelöscht)",
- "post_body.plusMore": " plus {count, number} weitere {count, plural, one {Datei} other {Dateien}}",
- "post_delete.notPosted": "Kommentar soll nicht geschrieben werden",
- "post_delete.okay": "OK",
- "post_delete.someone": "Jemand hat die Nachricht gelöscht die Sie kommentieren wollten.",
- "post_focus_view.beginning": "Anfang des Kanal-Archivs",
- "post_info.del": "Löschen",
- "post_info.edit": "Bearbeiten",
- "post_info.message.visible": "(Nur für Sie sichtbar)",
- "post_info.message.visible.compact": " (Nur für Sie sichtbar)",
- "post_info.mobile.flag": "Markieren",
- "post_info.mobile.unflag": "Demarkieren",
- "post_info.permalink": "Dauerhafter Link",
- "post_info.pin": "An Kanal anheften",
- "post_info.pinned": "Angeheftet",
- "post_info.reply": "Antworten",
- "post_info.system": "System",
- "post_info.unpin": "Vom Kanal abheften",
- "post_message_view.edited": "(bearbeitet)",
- "posts_view.loadMore": "Weitere Nachrichten laden",
- "posts_view.loadingMore": "Lade weitere Nachrichten...",
- "posts_view.newMsg": "Neue Nachrichten",
- "posts_view.newMsgBelow": "Neue {count, plural, one {Mitteilung} other {Mitteilungen}}",
- "quick_switch_modal.channels": "Kanäle",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- STRG+K",
- "quick_switch_modal.help": "Beginnen Sie zu schreiben und nutzen dann TAB um zwischen Kanälen/Teams umzuschalten, ↑↓ zum Navigieren, ↵ zum Auswählen und ESC zum Abbrechen.",
- "quick_switch_modal.help_mobile": "Tippen, um einen Kanal zu finden.",
- "quick_switch_modal.help_no_team": "Beginnen Sie mit der Eingabe, um Kanäle zu finden. Verwenden Sie ↑↓ zum Navigieren, ↵ zum Auswählen und ESC zum Abbrechen.",
- "quick_switch_modal.teams": "Teams",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- STRG+ALT+K",
- "reaction.clickToAdd": "(Klicken zum Hinzufügen)",
- "reaction.clickToRemove": "(Klicken zum Entfernen)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {Benutzer} other {Benutzer}}",
- "reaction.reacted": "{users} {reactionVerb} mit {emoji}",
- "reaction.reactionVerb.user": "reagierte",
- "reaction.reactionVerb.users": "reagierten",
- "reaction.reactionVerb.you": "reagierten",
- "reaction.reactionVerb.youAndUsers": "reagierten",
- "reaction.usersAndOthersReacted": "{users} und {otherUsers, number} {otherUsers, plural, one {weiterer Benutzer} other {weitere Benutzer}}",
- "reaction.usersReacted": "{users} und {lastUser}",
- "reaction.you": "Sie",
- "removed_channel.channelName": "der Kanal",
- "removed_channel.from": "Entfernt von ",
- "removed_channel.okay": "Ok",
- "removed_channel.remover": "{remover} hat Sie aus {channel} entfernt",
- "removed_channel.someone": "Jemand",
- "rename_channel.cancel": "Abbrechen",
- "rename_channel.defaultError": " - Kann nicht für den Vorgabe-Kanal geändert werden",
- "rename_channel.displayName": "Angezeigter Name",
- "rename_channel.displayNameHolder": "Anzeigenamen eingeben",
- "rename_channel.handleHolder": "Kleinbuchstaben oder Ziffern",
- "rename_channel.lowercase": "Dürfen nur Kleinbuchstaben oder Ziffern sein",
- "rename_channel.maxLength": "Dieses Feld muss kleiner als {maxLength, number} Zeichen sein",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "Dieses Feld wird erforderlich",
- "rename_channel.save": "Speichern",
- "rename_channel.title": "Kanal umbenennen",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Kommentar",
- "rhs_comment.del": "Löschen",
- "rhs_comment.edit": "Bearbeiten",
- "rhs_comment.mobile.flag": "Markieren",
- "rhs_comment.mobile.unflag": "Demarkieren",
- "rhs_comment.permalink": "Dauerhafter Link",
- "rhs_header.backToCallTooltip": "Zurück zu Telefonat",
- "rhs_header.backToFlaggedTooltip": "Zurück zu markierten Nachrichten",
- "rhs_header.backToPinnedTooltip": "Zurück zu markierten Nachrichten",
- "rhs_header.backToResultsTooltip": "Zurück zu den Suchergebnissen",
- "rhs_header.closeSidebarTooltip": "Seitenleiste schließen",
- "rhs_header.closeTooltip": "Seitenleiste schließen",
- "rhs_header.details": "Nachrichtendetails",
- "rhs_header.expandSidebarTooltip": "Seitenleiste erweitern",
- "rhs_header.expandTooltip": "Seitenleiste verkleinern",
- "rhs_header.shrinkSidebarTooltip": "Seitenleiste verkleinern",
- "rhs_root.del": "Löschen",
- "rhs_root.direct": "Direktnachricht",
- "rhs_root.edit": "Bearbeiten",
- "rhs_root.mobile.flag": "Markieren",
- "rhs_root.mobile.unflag": "Demarkieren",
- "rhs_root.permalink": "Dauerhafter Link",
- "rhs_root.pin": "An Kanal anheften",
- "rhs_root.unpin": "Vom Kanal abheften",
- "search_bar.search": "Suche",
- "search_bar.usage": "
Suchoptionen
Verwenden Sie \"Anführungszeichen\" zur Suche nach Phrasen
Verwenden Sie from: um nach Nachrichten eines bestimmten Absenders zu suchen und in: für Nachrichten in einem bestimmten Kanal
Wenn Sie nach einem Textteil suchen(z.b. suche nach \"rea\", wenn Sie \"Realität\" oder \"Reaktion\" finden möchten), hängen Sie ein * an Ihren Suchbegriff
Wegen zu vieler Treffer werden Suchen mit nur zwei Buchstaben oder häufigen Wörtern wie \"this\", \"a\" und \"is\" im Suchergebnis nicht angezeigt.
Verwenden Sie \"Anführungszeichen\" zur Suche nach Phrasen
Verwenden Sie from: um nach Nachrichten eines bestimmten Absenders zu suchen und in: für Nachrichten in einem bestimmten Kanal
",
- "search_results.usageFlag1": "Sie haben bisher keine Nachrichten markiert.",
- "search_results.usageFlag2": "Sie können eine Markierung zu einer Nachricht oder einem Kommentar hinzufügen indem Sie das ",
- "search_results.usageFlag3": " Symbol neben dem Zeitstempel klicken.",
- "search_results.usageFlag4": "Markierungen dienen als Möglichkeit Nachrichten für eine Wiedervorlage zu markieren. Ihre Markierungen sind persönlich und können nicht von anderen Benutzern gesehen werden.",
- "search_results.usagePin1": "Es gibt bisher keine angeheftete Nachrichten.",
- "search_results.usagePin2": "Alle Mitglieder dieses Kanals können wichtige oder nützliche Nachrichten anheften.",
- "search_results.usagePin3": "Angeheftete Nachrichten sind für alle Kanalmitglieder sichtbar.",
- "search_results.usagePin4": "Um eine Nachricht anzuheften: Gehen Sie auf die Nachricht welche Sie anheften wollen, klicken auf [...] > \"An Kanal anheften\".",
- "setting_item_max.cancel": "Abbrechen",
- "setting_item_max.save": "Speichern",
- "setting_item_min.edit": "Bearbeiten",
- "setting_picture.cancel": "Abbrechen",
- "setting_picture.help": "Ein Profilbild im BMP, JPG, JPEG oder PNG Format hochladen, mindestens {width}px breit und {height}px hoch.",
- "setting_picture.save": "Speichern",
- "setting_picture.select": "Auswählen",
- "setting_upload.import": "Importieren",
- "setting_upload.noFile": "Keine Datei ausgewählt.",
- "setting_upload.select": "Datei auswählen",
- "shortcuts.browser.channel_next": "Forward in history:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Forward in history:\t⌘|]",
- "shortcuts.browser.channel_prev": "Back in history:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Back in history:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom out:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom out:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom in:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom in:\t⌘|+",
- "shortcuts.browser.header": "Built-in Browser Commands",
- "shortcuts.browser.highlight_next": "Highlight text to the next line:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Highlight text to the previous line:\tShift|Up",
- "shortcuts.browser.input.header": "Funktioniert in einem leeren Eingabefeld",
- "shortcuts.browser.newline": "Create a new line:\tShift|Enter",
- "shortcuts.files.header": "Dateien",
- "shortcuts.files.upload": "Upload files:\tCtrl|U",
- "shortcuts.files.upload.mac": "Upload files:\t⌘|U",
- "shortcuts.header": "Tastaturkürzel",
- "shortcuts.info": "Begin a message with / for a list of all the commands at your disposal.",
- "shortcuts.msgs.comp.channel": "Channel:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Auto-Vervollständigung",
- "shortcuts.msgs.comp.username": "Username:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Edit last message in channel:\tUp",
- "shortcuts.msgs.header": "Nachrichten",
- "shortcuts.msgs.input.header": "Funktioniert in einem leeren Eingabefeld",
- "shortcuts.msgs.mark_as_read": "Mark current channel as read:\tEsc",
- "shortcuts.msgs.reply": "Reply to last message in channel:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Reprint next message:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Reprint next message:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Reprint previous message:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Reprint previous message:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Direct messages menu:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Direct messages menu:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigation",
- "shortcuts.nav.next": "Next channel:\tAlt|Down",
- "shortcuts.nav.next.mac": "Next channel:\t⌥|Down",
- "shortcuts.nav.prev": "Previous channel:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Previous channel:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Recent mentions:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Recent mentions:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Account settings:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Account settings:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Quick channel switcher:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Quick channel switcher:\t⌘|K",
- "shortcuts.nav.unread_next": "Next unread channel:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Next unread channel:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Previous unread channel:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Previous unread channel:\t⌥|Shift|Up",
- "sidebar.channels": "ÖFFENTLICHE KANÄLE",
- "sidebar.createChannel": "Einen neuen öffentlichen Kanal erstellen",
- "sidebar.createGroup": "Einen neuen privaten Kanal erstellen",
- "sidebar.direct": "DIREKTNACHRICHTEN",
- "sidebar.favorite": "KANALFAVORITEN",
- "sidebar.leave": "Kanal verlassen",
- "sidebar.mainMenu": "Main Menu",
- "sidebar.more": "Mehr",
- "sidebar.moreElips": "Mehr...",
- "sidebar.otherMembers": "Außerhalb dieses Teams",
- "sidebar.pg": "PRIVATE KANÄLE",
- "sidebar.removeList": "Von Liste entfernen",
- "sidebar.tutorialScreen1": "
Kanäle
Kanäle organisieren die Unterhaltungen über verschiedene Themen. Jeder aus dem Team kann beitreten. Zur privaten, direkten Kommunikation nutzen Sie Direktnachrichten mit einer anderen Person oder Private Kanäle bei mehreren Personen.
",
- "sidebar.tutorialScreen2": "
\"{townsquare}\" und \"{offtopic}\" Kanäle
Hier sind zwei öffentliche Kanäle zum Start:
{townsquare} ist ein Platz für Teamweite Kommunikation. Jeder in Ihrem Team ist ein Mitglied dieses Kanals.
{offtopic} ist ein Platz fpr Spaß und Unterhaltungen außerhalb von arbeitsrelevanten Kanälen. Sie und Ihr Team können entscheiden welche weiteren Kanäle erstellt werden müssen.
",
- "sidebar.tutorialScreen3": "
Erstellen und Beitreten von Kanälen
Klicken Sie auf \"Mehr...\" um einen neuen Kanal zu erstellen oder einem bestehenden beizutreten.
Sie können auch einen neuen Kanal über einen Klick auf das \"+\" Symbol neben der öffentlichen oder privaten Kanalüberschrift erstellen.
Über das Hauptmenükönnen Sie neue Teammitglieder einladen, auf Ihre Benutzereinstellungen zugreifen und Ihre Motiv Farbe ändern.
Teamadministratoren können außerdem auf die Team Einstellungen zugreifen.
Systemadministratoren werden eine System Konsole Option für die Administration des kompletten Systems finden.
",
- "sidebar_right_menu.accountSettings": "Kontoeinstellungen",
- "sidebar_right_menu.addMemberToTeam": "Mitglieder zum Team hinzufügen",
- "sidebar_right_menu.console": "Systemkonsole",
- "sidebar_right_menu.flagged": "Markierte Nachrichten",
- "sidebar_right_menu.help": "Hilfe",
- "sidebar_right_menu.inviteNew": "E-Mail-Einladung versenden",
- "sidebar_right_menu.logout": "Abmelden",
- "sidebar_right_menu.manageMembers": "Mitglieder verwalten",
- "sidebar_right_menu.nativeApps": "Apps herunterladen",
- "sidebar_right_menu.recentMentions": "Kürzliche Erwähnungen",
- "sidebar_right_menu.report": "Fehler melden",
- "sidebar_right_menu.teamLink": "Team-Einladungslink erhalten",
- "sidebar_right_menu.teamSettings": "Teameinstellungen",
- "sidebar_right_menu.viewMembers": "Zeige Mitglieder",
- "signup.email": "E-Mail-Adresse und Passwort",
- "signup.gitlab": "GitLab Single-Sign-On",
- "signup.google": "Googl-Konto",
- "signup.ldap": "AD/LDAP Zugangsdaten",
- "signup.office365": "Office 365",
- "signup.title": "Ein Konto erstellen mit:",
- "signup_team.createTeam": "Oder erstellen Sie ein Team",
- "signup_team.disabled": "Teamerstellung wurde deaktiviert. Bitte kontaktieren Sie einen Administrator.",
- "signup_team.join_open": "Teams denen Sie beitreten können: ",
- "signup_team.noTeams": "Es sind keine Teams im Teamverzeichnis gelistet und die Teamerstellung wurde deaktiviert.",
- "signup_team.no_open_teams": "Keine Teams zu Beitreten verfügbar. Bitte fragen Sie Ihren Administrator um eine Einladung.",
- "signup_team.no_open_teams_canCreate": "Keine Teams zu Beitreten verfügbar. Bitte erstellen Sie ein neues Team oder fragen Sie Ihren Administrator um eine Einladung.",
- "signup_team.no_teams": "Es wurden keine Teams erstellt. Bitte wenden Sie sich an Ihren Administrator.",
- "signup_team.no_teams_canCreate": "Es wurden keine Teams erstellt. Sie können eines durch \"Erstelle neues Team\" erstellen.",
- "signup_team.none": "Keine Teamerstellungsmethode wurde aktiviert. Bitte kontaktieren Sie einen Administrator.",
- "signup_team_complete.completed": "Sie haben sich bereits angemeldet oder die Einladung ist abgelaufen.",
- "signup_team_confirm.checkEmail": "Bitte prüfen Sie Ihre E-Mail-Adresse: {email} Die E-Mail enthält einen Link zur Erstellung Ihres Teams",
- "signup_team_confirm.title": "Anmeldung abgeschlossen",
- "signup_team_system_console": "Zur Systemkonsole gehen",
- "signup_user_completed.choosePwd": "Wählen Sie Ihr Passwort",
- "signup_user_completed.chooseUser": "Wählen Sie einen Benutzernamen",
- "signup_user_completed.create": "Konto erstellen",
- "signup_user_completed.emailHelp": "Gültige E-Mail-Adresse für Registrierung erforderlich",
- "signup_user_completed.emailIs": "Ihre E-Mail-Adresse ist {email}. Sie werden diese Adresse zum Anmelden in {siteName} verwenden.",
- "signup_user_completed.expired": "Sie haben sich bereits angemeldet oder die Einladung ist abgelaufen.",
- "signup_user_completed.gitlab": "mit GitLab",
- "signup_user_completed.google": "mit google",
- "signup_user_completed.haveAccount": "Sie besitzen bereits ein Konto?",
- "signup_user_completed.invalid_invite": "Der Einladungslink war ungültig. Bitte sprechen Sie mit Ihrem Administrator um eine Einladung zu erhalten.",
- "signup_user_completed.lets": "Ein eigenes Konto erstellen",
- "signup_user_completed.no_open_server": "Dieser Server erlaubt keine offenen Registrierungen. Bitten Sie Ihren Administrator um eine Einladung.",
- "signup_user_completed.none": "Keine Benutzererstellungsmethode wurde aktiviert. Bitte kontaktieren Sie einen Administrator.",
- "signup_user_completed.office365": "mit Office 365",
- "signup_user_completed.onSite": "zu {siteName}",
- "signup_user_completed.or": "oder",
- "signup_user_completed.passwordLength": "Bitte geben Sie zwischen {min} und {max} Buchstaben ein",
- "signup_user_completed.required": "Dieses Feld ist erforderlich",
- "signup_user_completed.reserved": "Dieser Benutzername ist reserviert, bitte einen anderen wählen.",
- "signup_user_completed.signIn": "Klicken Sie hier um sich anzumelden.",
- "signup_user_completed.userHelp": "Der Benutzername muss mit einem Buchstaben beginnen, mindestens {min} bis {max} Zeichen lang sein und darf Ziffern, kleine Buchstaben und die Symbole '.', '-' und '_' enthalten",
- "signup_user_completed.usernameLength": "Der Benutzername muss mit einem Buchstaben beginnen, mindestens {min} bis {max} Zeichen lang sein und darf Ziffern, kleine Buchstaben und die Symbole '.', '-' und '_' enthalten.",
- "signup_user_completed.validEmail": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
- "signup_user_completed.welcome": "Willkommen bei:",
- "signup_user_completed.whatis": "Wie lautet Ihre E-Mail-Adresse?",
- "signup_user_completed.withLdap": "Mit Ihren AD/LDAP Zugangsdaten",
- "sso_signup.find": "Finde meine Teams",
- "sso_signup.gitlab": "Team mit GitLab-Konto erstellen",
- "sso_signup.google": "Team mit Google-Apps-Konto erstellen",
- "sso_signup.length_error": "Der Name muss mindestens 3 bis 15 Zeichen enthalten",
- "sso_signup.teamName": "Geben Sie den Namen des neuen Teams ein",
- "sso_signup.team_error": "Bitte einen Teamnamen eingeben",
- "status_dropdown.set_away": "Abwesend",
- "status_dropdown.set_offline": "Offline",
- "status_dropdown.set_online": "Online",
- "suggestion.loading": "Lade...",
- "suggestion.mention.all": "ACHTUNG: Dies erwähnt jeden im Kanal",
- "suggestion.mention.channel": "Benachrichtigt jeden in diesem Kanal",
- "suggestion.mention.channels": "Meine Kanäle",
- "suggestion.mention.here": "Benachrichtigt jeden der im Kanal und online ist",
- "suggestion.mention.in_channel": "Kanäle",
- "suggestion.mention.members": "Kanalmitglieder",
- "suggestion.mention.morechannels": "Andere Kanäle",
- "suggestion.mention.nonmembers": "Nicht im Kanal",
- "suggestion.mention.not_in_channel": "Andere Kanäle",
- "suggestion.mention.special": "Spezielle Erwähnungen",
- "suggestion.search.private": "Private Kanäle",
- "suggestion.search.public": "Öffentliche Kanäle",
- "system_users_list.count": "{count, number} {count, plural, one {Benutzer} other {Benutzer}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 Mitglieder} one {Mitglied} other {Mitglieder}} von {total, number} insgesamt",
- "system_users_list.countSearch": "{count, number} {count, plural, one {Benutzer} other {Benutzer}} von {total, number} total",
- "team_export_tab.download": "Download",
- "team_export_tab.export": "Exportieren",
- "team_export_tab.exportTeam": "Ihr Team exportieren",
- "team_export_tab.exporting": " Exportiere...",
- "team_export_tab.ready": " Bereit für ",
- "team_export_tab.unable": " Fehler beim Export: {error}",
- "team_import_tab.failure": " Fehler beim Import: ",
- "team_import_tab.import": "Importieren",
- "team_import_tab.importHelpDocsLink": "Dokumentation",
- "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
- "team_import_tab.importHelpExporterLink": "Slack erweiterter Exporter",
- "team_import_tab.importHelpLine1": "Slack-Import zu Mattermost unterstützt das Importieren von Nachrichten in den öffentlichen Kanälen Ihres Slack-Teams.",
- "team_import_tab.importHelpLine2": "Um ein Slack Team zu importieren, gehen Sie zu {exportInstructions}. Schauen Sie in den {uploadDocsLink} um mehr darüber zu erfahren.",
- "team_import_tab.importHelpLine3": "Um Mitteilungen mit angehängten Dateien zu importieren, schauen Sie sich {slackAdvancedExporterLink} für mehr Details an.",
- "team_import_tab.importSlack": "Import von Slack (Beta)",
- "team_import_tab.importing": " Importiere...",
- "team_import_tab.successful": " Import erfolgreich: ",
- "team_import_tab.summary": "Zusammenfassung anzeigen",
- "team_member_modal.close": "Schließen",
- "team_member_modal.members": "{team} Mitglieder",
- "team_members_dropdown.confirmDemoteDescription": "Wenn Sie sich selbst die Systemadministrations-Rolle entziehen und es gibt keinen weitere Benutzer mit der Systemadministrations-Rolle, müssen Sie einen Systemadministrator über den Mattermost-Server in einer Terminal-Sitzung mit folgendem Befehl festlegen.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Bestätigung des Entziehens der Systemadministrations-Rolle",
- "team_members_dropdown.confirmDemotion": "Bestätigung des Entziehens",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "Inaktiv",
- "team_members_dropdown.leave_team": "Aus dem Team entfernen",
- "team_members_dropdown.makeActive": "Aktivieren",
- "team_members_dropdown.makeAdmin": "Zum Teamadministrator machen",
- "team_members_dropdown.makeInactive": "Deaktivieren",
- "team_members_dropdown.makeMember": "Zum Mitglied machen",
- "team_members_dropdown.member": "Mitglied",
- "team_members_dropdown.systemAdmin": "Systemadministrator",
- "team_members_dropdown.teamAdmin": "Teamadministrator",
- "team_settings_modal.exportTab": "Export",
- "team_settings_modal.generalTab": "Allgemein",
- "team_settings_modal.importTab": "Importieren",
- "team_settings_modal.title": "Team Einstellungen",
- "team_sidebar.join": "Andere Teams denen Sie beitreten können.",
- "textbox.bold": "**fett**",
- "textbox.edit": "Nachricht bearbeiten",
- "textbox.help": "Hilfe",
- "textbox.inlinecode": "`inline code`",
- "textbox.italic": "_kursiv_",
- "textbox.preformatted": "```vorvormatiert´´´",
- "textbox.preview": "Vorschau",
- "textbox.quote": ">Zitat",
- "textbox.strike": "Durchgestrichen",
- "tutorial_intro.allSet": "Sie sind bereit",
- "tutorial_intro.end": "Klicken Sie auf \"Weiter\" um {channel} zu betreten. Dies ist der erste Kanal den Ihre Teammitglieder sehen, wenn Sie sich registrieren. Verwenden Sie ihn, um Aktualisierungen zu versenden, die jeder kennen sollte.",
- "tutorial_intro.invite": "Teammitglieder einladen",
- "tutorial_intro.mobileApps": "Installieren Sie die Apps für {link} für einfachen Zugriff und mobile Benachrichtigungen.",
- "tutorial_intro.mobileAppsLinkText": "PC, macOS, iOS und Android",
- "tutorial_intro.next": "Weiter",
- "tutorial_intro.screenOne": "
Willkommen bei:
Mattermost
Ihre Teamkommunikation an einer Stelle, sofort durchsuchbar und überall verfügbar.
Bleiben Sie mit Ihrem Team verbunden, um zu erreichen, was am meisten zählt.
",
- "tutorial_intro.screenTwo": "
Wie Mattermost funktioniert:
Die Kommunikation findet in öffentlichen Diskussionskanälen, privaten Kanälen und Direktnachrichten statt.
Alles ist archiviert und von jedem webfähigem Desktop, Notebook oder Smartphone durchsuchbar.
",
- "tutorial_intro.skip": "Anleitung überspringen",
- "tutorial_intro.support": "Wenn Sie irgendwas benötigen, schreiben Sie uns einfach eine E-Mail an ",
- "tutorial_intro.teamInvite": "Teammitglieder einladen",
- "tutorial_intro.whenReady": " sobald Sie bereit sind.",
- "tutorial_tip.next": "Weiter",
- "tutorial_tip.ok": "Ok",
- "tutorial_tip.out": "Diese Tipps deaktivieren.",
- "tutorial_tip.seen": "Wurde bereits angezeigt? ",
- "update_command.cancel": "Abbrechen",
- "update_command.confirm": "Slash-Befehl bearbeiten",
- "update_command.question": "Ihre Änderungen könnten einen existierenden Slash-Befehl außer Kraft setzen. Sind Sie sich sicher dass Sie ihn aktualisieren möchten?",
- "update_command.update": "Aktualisieren",
- "update_incoming_webhook.update": "Aktualisieren",
- "update_outgoing_webhook.confirm": "Ausgehenden Webhook bearbeiten",
- "update_outgoing_webhook.question": "Ihre Änderungen könnten einen existierenden Slash-Befehl außer Kraft setzen. Sind Sie sich sicher, dass Sie ihn aktualisieren möchten?",
- "update_outgoing_webhook.update": "Aktualisieren",
- "upload_overlay.info": "Datei zum Hochladen hier ablegen.",
- "user.settings.advance.embed_preview": "Für den ersten Weblink in einer Nachricht eine Vorschau des Webseiteninhaltes unterhalb der Nachricht anzeigen, sofern verfügbar",
- "user.settings.advance.embed_toggle": "Zeige Umschalter für alle eingebetteten Vorschauen",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Feature} other {Features}} aktiviert",
- "user.settings.advance.formattingDesc": "Wenn aktiviert, werden Nachrichten so formatiert, dass Links erstellt, Emojis angezeigt, Text formatiert und Zeilenumbrüche hinzugefügt werden. Standardmäßig ist dies aktiviert. Ändern der Einstellung erfordert ein Neuladen der Seite.",
- "user.settings.advance.formattingTitle": "Formatierung von Nachrichten aktivieren",
- "user.settings.advance.joinLeaveDesc": "Wenn \"Ein\" werden Systemnachrichten angezeigt wenn ein Benutzer einen Kanal betritt oder verlässt. Wenn \"Aus\" werden diese Nachrichten nicht angezeigt. Es wird weiterhin eine Meldung angezeigt wenn Sie einem Kanal hinzugefügt werden sodass Sie Benachrichtigungen erhalten können.",
- "user.settings.advance.joinLeaveTitle": "Aktiviere Betreten-/Verlassen-Nachrichten",
- "user.settings.advance.markdown_preview": "Zeige Markdown Vorschauoption im der Nachrichten Eingabefeld",
- "user.settings.advance.off": "Aus",
- "user.settings.advance.on": "Ein",
- "user.settings.advance.preReleaseDesc": "Markieren Sie jede Pre-Release-Features, die Sie testen möchten. Eventuell müssen Sie die Seite neu laden, bevor die Änderung wirksam werden.",
- "user.settings.advance.preReleaseTitle": "Vorschau auf Features der neuen Version",
- "user.settings.advance.sendDesc": "Wenn aktiviert, fügt Enter einen Zeilenumbruch ein und Strg+Enter sendet die Nachricht.",
- "user.settings.advance.sendTitle": "Sende Nachrichten mit Strg+Enter",
- "user.settings.advance.slashCmd_autocmp": "Erlaube externe Anwendung Slash-Befehl-Autovervollständigung anzubieten",
- "user.settings.advance.title": "Erweiterte Einstellungen",
- "user.settings.advance.webrtc_preview": "Die Möglichkeit aktivieren, WebRTC-Anrufe zu tätigen und zu empfangen",
- "user.settings.custom_theme.awayIndicator": "Abwesend Anzeige",
- "user.settings.custom_theme.buttonBg": "Button Hintergrund",
- "user.settings.custom_theme.buttonColor": "Button Text",
- "user.settings.custom_theme.centerChannelBg": "Mittlerer Kanal Hintergrund",
- "user.settings.custom_theme.centerChannelColor": "Mittlerer Kanal Text",
- "user.settings.custom_theme.centerChannelTitle": "Aussehen des zentralen Kanals",
- "user.settings.custom_theme.codeTheme": "Code Design",
- "user.settings.custom_theme.copyPaste": "Kopieren und einfügen um Motivfarben zu teilen:",
- "user.settings.custom_theme.linkButtonTitle": "Aussehen von Links und Schaltern",
- "user.settings.custom_theme.linkColor": "Link-Farbe",
- "user.settings.custom_theme.mentionBj": "Erwähnungsrahmen Hintergrund",
- "user.settings.custom_theme.mentionColor": "Erwähnungsrahmen Text",
- "user.settings.custom_theme.mentionHighlightBg": "Erwähnung Hintergrund",
- "user.settings.custom_theme.mentionHighlightLink": "Erwähnung Hervorhebung Link",
- "user.settings.custom_theme.newMessageSeparator": "Neue Nachricht Trenner",
- "user.settings.custom_theme.onlineIndicator": "Online Anzeige",
- "user.settings.custom_theme.sidebarBg": "Seitenleiste Hintergrund",
- "user.settings.custom_theme.sidebarHeaderBg": "Seitenleiste Überschrift Hintergrund",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Seitenleiste Überschrift Text",
- "user.settings.custom_theme.sidebarText": "Seitenleiste Text",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Seitenleiste Text Aktiv Rand",
- "user.settings.custom_theme.sidebarTextActiveColor": "Seitenleiste Text Aktiv Farbe",
- "user.settings.custom_theme.sidebarTextHoverBg": "Seitenleiste Text Hover Hintergrund",
- "user.settings.custom_theme.sidebarTitle": "Aussehen der Seitenleiste",
- "user.settings.custom_theme.sidebarUnreadText": "Seitenleiste Ungelesen Text",
- "user.settings.display.channelDisplayTitle": "Kanalanzeige-Modus",
- "user.settings.display.channeldisplaymode": "Wählen Sie die Breite den mittleren Kanals.",
- "user.settings.display.clockDisplay": "Uhrzeit-Format",
- "user.settings.display.collapseDesc": "Einstellen ob Vorschauen für Bildlinks standardmäßig ausgeklappt oder eingeklappt dargestellt werden sollen. Diese Einstellung kann auch über den Slash-Befehl /expand und /collapse verwaltet werden.",
- "user.settings.display.collapseDisplay": "Standardansicht für Bildlink-Vorschauen",
- "user.settings.display.collapseOff": "Eingeklappt",
- "user.settings.display.collapseOn": "Ausgeklappt",
- "user.settings.display.fixedWidthCentered": "Feste Breite, zentriert",
- "user.settings.display.fullScreen": "Ganze Breite",
- "user.settings.display.language": "Sprache",
- "user.settings.display.messageDisplayClean": "Standard",
- "user.settings.display.messageDisplayCleanDes": "Einfach zu überblicken und lesen.",
- "user.settings.display.messageDisplayCompact": "Kompakt",
- "user.settings.display.messageDisplayCompactDes": "So viele Mitteilungen auf dem Bildschirm wie möglich.",
- "user.settings.display.messageDisplayDescription": "Wählen Sie, wie Nachrichten in einem Kanal angezeigt werden sollen.",
- "user.settings.display.messageDisplayTitle": "Nachrichtenanzeige",
- "user.settings.display.militaryClock": "24-Stunden-Format (z.B.: 16:00)",
- "user.settings.display.nameOptsDesc": "Wählen Sie, wie die Namen anderer Benutzer in Direktnachrichten angezeigt werden sollen.",
- "user.settings.display.normalClock": "12-Stunden-Format (z.B.: 4:00 PM)",
- "user.settings.display.preferTime": "Wählen Sie das bevorzugte Zeitformat aus.",
- "user.settings.display.theme.applyToAllTeams": "Motiv für alle meine Teams festlegen",
- "user.settings.display.theme.customTheme": "Benutzerdefiniertes Motiv",
- "user.settings.display.theme.describe": "Öffnen um das Motiv zu ändern",
- "user.settings.display.theme.import": "Importiere Motivfarben von Slack",
- "user.settings.display.theme.otherThemes": "Zeige andere Themes",
- "user.settings.display.theme.themeColors": "Motivfarben",
- "user.settings.display.theme.title": "Motiv",
- "user.settings.display.title": "Anzeigeeinstellungen",
- "user.settings.general.checkEmail": "Überprüfen Sie Ihr Postfach für {email} um die Adresse zu verifizieren.",
- "user.settings.general.checkEmailNoAddress": "Überprüfen Sie Ihr E-Mail Postfach um die neue Adresse zu verifizieren",
- "user.settings.general.close": "Schließen",
- "user.settings.general.confirmEmail": "E-Mail-Adresse bestätigen",
- "user.settings.general.currentEmail": "Aktuelle E-Mail-Adresse",
- "user.settings.general.email": "E-Mail-Adresse",
- "user.settings.general.emailGitlabCantUpdate": "Anmeldung erfolgt durch GitLab. E-Mail-Adresse kann nicht aktualisiert werden. Die E-Mail-Adresse zum Versand von Hinweisen lautet {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Anmeldung erfolgt durch Google. E-Mail-Adresse kann nicht aktualisiert werden. Die E-Mail-Adresse zum Versand von Hinweisen lautet {email}.",
- "user.settings.general.emailHelp1": "Die E-Mail-Adresse wird für den Login, die Benachrichtigungen und das Zurücksetzen des Passworts verwendet. Änderungen der E-Mail-Adresse müssen erneut verifiziert werden.",
- "user.settings.general.emailHelp2": "E-Mails wurden durch Ihren Systemadministrator deaktiviert. Es werden keine Benachrichtigungen versendet bis dies aktiviert wird.",
- "user.settings.general.emailHelp3": "Die E-Mail-Adresse wird für den Login, die Benachrichtigungen und das Zurücksetzen des Passworts verwendet.",
- "user.settings.general.emailHelp4": "Es wurde eine E-Mail zur Bestätigung an {email} gesendet.",
- "user.settings.general.emailLdapCantUpdate": "Anmeldung erfolgt durch AD/LDAP. E-Mail-Adresse kann nicht aktualisiert werden. Die E-Mail-Adresse zum Versand von Hinweisen lautet {email}.",
- "user.settings.general.emailMatch": "Die von Ihnen eingegebenen E-Mail-Adressen stimmen nicht überein.",
- "user.settings.general.emailOffice365CantUpdate": "Anmeldung erfolgt durch Office 365. E-Mail-Adresse kann nicht aktualisiert werden. Die E-Mail-Adresse zum Versand von Hinweisen lautet {email}.",
- "user.settings.general.emailSamlCantUpdate": "Anmeldung erfolgt durch SAML. E-Mail-Adresse kann nicht aktualisiert werden. Die E-Mail-Adresse zum Versand von Hinweisen lautet {email}.",
- "user.settings.general.emailUnchanged": "Ihre neue E-Mail-Adresse entspricht Ihrer alten E-Mail-Adresse.",
- "user.settings.general.emptyName": "Auf 'Bearbeiten' klicken um den vollen Namen hinzuzufügen",
- "user.settings.general.emptyNickname": "Auf 'Bearbeiten' klicken um den Spitznamen hinzuzufügen",
- "user.settings.general.emptyPosition": "Klicken Sie auf 'Bearbeiten' um Ihre(n) Jobtitel/Position hinzuzufügen",
- "user.settings.general.field_handled_externally": "Dieses Feld wird durch Ihren Login Provider festgelegt. Wenn Sie es ändern möchten, müssen Sie dies durch den Login Provider tun.",
- "user.settings.general.firstName": "Vorname",
- "user.settings.general.fullName": "Vollständiger Name",
- "user.settings.general.imageTooLarge": "Das Bild konnte nicht hochgeladen werden. Datei ist zu groß.",
- "user.settings.general.imageUpdated": "Bild zuletzt aktualisiert am {date}",
- "user.settings.general.lastName": "Nachname",
- "user.settings.general.loginGitlab": "Anmeldung erfolgt durch GitLab ({email})",
- "user.settings.general.loginGoogle": "Anmeldung erfolgt durch Google ({email})",
- "user.settings.general.loginLdap": "Anmeldung erfolgt durch AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Anmeldung erfolgt durch Office 365 ({email})",
- "user.settings.general.loginSaml": "Anmeldung erfolgt durch SAML ({email})",
- "user.settings.general.mobile.emptyName": "Klicken, um Ihren vollständigen Namen hinzuzufügen",
- "user.settings.general.mobile.emptyNickname": "Klicken, um einen Spitznamen hinzuzufügen",
- "user.settings.general.mobile.emptyPosition": "Klicken, um Ihre(n) Jobtitel/Position hinzuzufügen",
- "user.settings.general.mobile.uploadImage": "Klicken, um ein Bild hochzuladen.",
- "user.settings.general.newAddress": "Neue Adresse: {email} Überprüfen Sie Ihr Postfach um die obige Adresse zu verifizieren.",
- "user.settings.general.newEmail": "Neue E-Mail-Adresse",
- "user.settings.general.nickname": "Spitzname",
- "user.settings.general.nicknameExtra": "Benutzen Sie den Spitznamen als einen Rufnamen der sich von Ihrem Vor- und Nachnamen unterscheidet. Dies wird hauptsächlich verwendet wenn zwei oder mehr Personen ähnliche Namen haben.",
- "user.settings.general.notificationsExtra": "Sie erhalten standardmäßig Benachrichtigungen, wenn jemand Ihren Vornamen erwähnt. Gehen Sie zu den {notify} Einstellungen um dies zu ändern.",
- "user.settings.general.notificationsLink": "Benachrichtigungen",
- "user.settings.general.position": "Position",
- "user.settings.general.positionExtra": "Verwenden Sie die Position für Ihre Rolle oder Ihren Jobtitel. Dies wird in Ihrem Profil Popover angezeigt.",
- "user.settings.general.profilePicture": "Profilbild",
- "user.settings.general.title": "Allgemeine Einstellungen",
- "user.settings.general.uploadImage": "Auf 'Bearbeiten' klicken um ein Bild hochzuladen.",
- "user.settings.general.username": "Benutzername",
- "user.settings.general.usernameInfo": "Wählen Sie etwas einfaches, das Ihre Teammitglieder erkennen und sich daran erinnern können.",
- "user.settings.general.usernameReserved": "Dieser Benutzername ist reserviert, bitte einen anderen wählen.",
- "user.settings.general.usernameRestrictions": "Der Benutzername muss mit einem Buchstaben beginnen, zwischen {min} und {max} Zeichen lang sein und darf Ziffern, Buchstaben und die Symbole '.', '-' und '_' enthalten.",
- "user.settings.general.validEmail": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
- "user.settings.general.validImage": "Nur JPG und PNG Dateien sind als Profilbilder zugelassen",
- "user.settings.import_theme.cancel": "Abbrechen",
- "user.settings.import_theme.importBody": "Um ein Motiv zu importieren, gehen Sie in Ihr Slack-Team und suchen nach \"Preferences -> Sidebar Theme\". Öffnen Sie die \"Custom Theme\"-Option, kopieren den Inhalt und fügen in hier ein:",
- "user.settings.import_theme.importHeader": "Slack Motiv importieren",
- "user.settings.import_theme.submit": "Absenden",
- "user.settings.import_theme.submitError": "Falsches Format, bitte mit erneut kopieren und einfügen ausprobieren.",
- "user.settings.languages.change": "Interface Sprache ändern",
- "user.settings.languages.promote": "Auswählen welche Sprache Mattermost im Benutzerinterface anzeigt.
Möchten Sie mit der Übersetzung helfen? Treten Sie dem Mattermost Translation Server bei um beizusteuern.",
- "user.settings.mfa.add": "MFA zu Ihrem Konto hinzufügen",
- "user.settings.mfa.addHelp": "Das Hinzufügen von Multi-Faktor-Authentifizierung wird Ihren Zugang sicherer machen, da ein Code von Ihrem Smartphone zu jeder Anmeldung erforderlich wird.",
- "user.settings.mfa.addHelpQr": "Bitte Scannen Sie den QR Code mit der Google Authenticator App auf Ihrem Smartphone und fügen den durch die App generierten Token hier ein. Sollte es Ihnen nicht möglich sein den Code zu scannen, können Sie den Schlüssel manuell eingeben.",
- "user.settings.mfa.enterToken": "Token (nur Ziffern)",
- "user.settings.mfa.qrCode": "QR-Code",
- "user.settings.mfa.remove": "MFA von Ihrem Zugang entfernen",
- "user.settings.mfa.removeHelp": "Entfernen des MFA multi-factor authentication bedeutet das Sie nicht länger einen zusätzlichen Zugangs-Token für die Anmeldung benötigen.",
- "user.settings.mfa.requiredHelp": "Multi-Faktor-Authentifizierung ist auf diesem Server erforderlich. Zurücksetzen ist nur empfohlen wenn Sie die Generierung der Codes auf ein neues Smartphone übertragen möchten. Sie werden sofort aufgefordert MFA erneut einzurichten.",
- "user.settings.mfa.reset": "MFA für mein Konto zurücksetzen",
- "user.settings.mfa.secret": "Schlüssel",
- "user.settings.mfa.title": "Multi-Faktor-Authentifizierung einschalten",
- "user.settings.modal.advanced": "Erweitert",
- "user.settings.modal.confirmBtns": "Ja, verwerfen",
- "user.settings.modal.confirmMsg": "Sie haben nicht gespeicherte Änderungen, möchten Sie diese wirklich verwerfen?",
- "user.settings.modal.confirmTitle": "Änderungen verwerfen?",
- "user.settings.modal.display": "Anzeige",
- "user.settings.modal.general": "Allgemein",
- "user.settings.modal.notifications": "Benachrichtigungen",
- "user.settings.modal.security": "Sicherheit",
- "user.settings.modal.title": "Kontoeinstellungen",
- "user.settings.notifications.allActivity": "Für alle Aktivitäten",
- "user.settings.notifications.channelWide": "Kanalweite Erwähnungen \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Schließen",
- "user.settings.notifications.comments": "Antwort-Benachrichtigungen",
- "user.settings.notifications.commentsAny": "Eine Benachrichtigung für Meldungen in Diskussionsfaden auslösen, welche ich gestartet habe oder an denen ich teilnehme",
- "user.settings.notifications.commentsInfo": "Zusätzlich zu Benachrichtigung wenn Sie erwähnt werden können Sie hier wählen ob Sie auch bei Antworten benachrichtigt werden wollen.",
- "user.settings.notifications.commentsNever": "Keine Benachrichtigung bei Antworten auslösen, sofern ich nicht erwähnt wurde",
- "user.settings.notifications.commentsRoot": "Löse Benachrichtigungen für Mitteilungen aus die ich starte",
- "user.settings.notifications.desktop": "Desktop-Benachrichtigungen senden",
- "user.settings.notifications.desktop.allNoSoundForever": "Für alle Aktivitäten, ohne Ton, zeige unbegrenzt",
- "user.settings.notifications.desktop.allNoSoundTimed": "Für alle Aktivitäten, ohne Ton, zeige für {seconds} Sekunden",
- "user.settings.notifications.desktop.allSoundForever": "Für alle Aktivitäten, mit Ton, zeige unbegrenzt",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Für alle Aktivitäten, zeige unbegrenzt",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Für alle Aktivitäten, zeige für {seconds} Sekunden",
- "user.settings.notifications.desktop.allSoundTimed": "Für alle Aktivitäten, mit Ton, zeige für {seconds} Sekunden",
- "user.settings.notifications.desktop.duration": "Mitteilungsdauer",
- "user.settings.notifications.desktop.durationInfo": "Stellt ein wie lange Desktop-Benachrichtigungen auf dem Bildschirm verbleiben wenn Firefox oder Chrome verwendet wird. Desktop-Benachrichtigungen in Edge und Safari können maximal für 5 Sekunden auf dem Bildschirm bleiben.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Für Erwähnungen und Direktnachrichten, ohne Ton, zeige unbegrenzt",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Für Erwähnungen und Direktnachrichten, ohne Ton, zeige für {seconds} Sekunden",
- "user.settings.notifications.desktop.mentionsSoundForever": "Für Erwähnungen und Direktnachrichten, mit Ton, zeige unbegrenzt",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Für Erwähnungen und Direktnachrichten, zeige unbegrenzt",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Für Erwähnungen und Direktnachrichten, zeige für {seconds} Sekunden",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Für Erwähnungen und Direktnachrichten, mit Ton, zeige für {seconds} Sekunden",
- "user.settings.notifications.desktop.seconds": "{seconds} Sekunden",
- "user.settings.notifications.desktop.sound": "Benachrichtigungston",
- "user.settings.notifications.desktop.title": "Desktop-Benachrichtigungen",
- "user.settings.notifications.desktop.unlimited": "Unbegrenzt",
- "user.settings.notifications.desktopSounds": "Töne der Desktop-Benachrichtigungen",
- "user.settings.notifications.email.disabled": "Deaktiviert durch den Systemadministrator",
- "user.settings.notifications.email.disabled_long": "E-Mail-Benachrichtigungen wurden vom Systemadministrator deaktiviert.",
- "user.settings.notifications.email.everyHour": "Jede Stunde",
- "user.settings.notifications.email.everyXMinutes": "{count, plural, one {Jede Minute} other {Alle {count, number} Minuten}}",
- "user.settings.notifications.email.immediately": "Sofort",
- "user.settings.notifications.email.never": "Nie",
- "user.settings.notifications.email.send": "E-Mail-Benachrichtigungen senden",
- "user.settings.notifications.emailBatchingInfo": "Benachrichtigungen über den ausgewählten Zeitraum werden kombiniert und in einer einzelnen E-Mail versendet.",
- "user.settings.notifications.emailInfo": "E-Mail-Benachrichtigungen werden bei Erwähnungen und Direktnachrichten gesendet, sobald Sie von {siteName} mehr als 5 Minuten offline oder abwesend waren.",
- "user.settings.notifications.emailNotifications": "E-Mail-Benachrichtigung",
- "user.settings.notifications.header": "Benachrichtigungen",
- "user.settings.notifications.info": "Desktop-Benachrichtigungen sind in Edge, Firefox, Safari, Chrome und Mattermost-Desktop-Apps verfügbar.",
- "user.settings.notifications.mentionsInfo": "Erwähnungen werden ausgelöst, sobald jemand eine Nachricht versendet, welche Ihren Benutzernamen (\"@{username}\") oder irgendeine der oben gewählten Optionen enthält.",
- "user.settings.notifications.never": "Nie",
- "user.settings.notifications.noWords": "Keine Wörter konfiguriert",
- "user.settings.notifications.off": "Aus",
- "user.settings.notifications.on": "Ein",
- "user.settings.notifications.onlyMentions": "Nur für Erwähnungen und Direktnachrichten",
- "user.settings.notifications.push": "Mobile Push-Nachrichten versenden",
- "user.settings.notifications.push_notification.status": "Pushnachrichten auslösen wenn",
- "user.settings.notifications.sensitiveName": "Ihr groß-/kleinschreibungsabhängiger Vorname \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Ihr groß-/kleinschreibungsabhängiger Benutzername \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Weitere nicht groß-/kleinschreibungsabhängige Wörter, getrennt mit Komma:",
- "user.settings.notifications.soundConfig": "Bitte konfigurieren Sie die Benachrichtigungstöne in Ihren Browsereinstellungen",
- "user.settings.notifications.sounds_info": "Benachrichtigungstöne sind in IE11, Safari, Chrome und den Mattermost-Desktop-Apps verfügbar.",
- "user.settings.notifications.teamWide": "Teamweite Erwähnungen \"@all\"",
- "user.settings.notifications.title": "Benachrichtigungseinstellungen",
- "user.settings.notifications.wordsTrigger": "Wörter, welche Erwähnungen auslösen",
- "user.settings.push_notification.allActivity": "Für alle Aktivitäten",
- "user.settings.push_notification.allActivityAway": "Für alle Aktivitäten wenn abwesend oder offline",
- "user.settings.push_notification.allActivityOffline": "Für alle Aktivitäten wenn offline",
- "user.settings.push_notification.allActivityOnline": "Für alle Aktivitäten wenn online, abwesend oder offline",
- "user.settings.push_notification.away": "Abwesend oder offline",
- "user.settings.push_notification.disabled": "Deaktiviert durch den Systemadministrator",
- "user.settings.push_notification.disabled_long": "Push Mitteilungen für mobile Geräte wurden durch den Systemadministrator deaktiviert.",
- "user.settings.push_notification.info": "Benachrichtigung werden zu Ihrem Smartphone gesendet sobald es in Mattermost eine neue Benachrichtigung gibt.",
- "user.settings.push_notification.off": "Aus",
- "user.settings.push_notification.offline": "Offline",
- "user.settings.push_notification.online": "Online, abwesend oder offline",
- "user.settings.push_notification.onlyMentions": "Nur für Erwähungen und Direktnachrichten",
- "user.settings.push_notification.onlyMentionsAway": "Für Erwähnungen und Direktnachrichten wenn abwesend oder offline",
- "user.settings.push_notification.onlyMentionsOffline": "Für Erwähnungen und Direktnachrichten wenn offline",
- "user.settings.push_notification.onlyMentionsOnline": "Für Erwähnungen und Direktnachrichten wenn online, abwesend oder offline",
- "user.settings.push_notification.send": "Mobile Push-Nachrichten versenden",
- "user.settings.push_notification.status": "Pushnachrichten auslösen wenn",
- "user.settings.push_notification.status_info": "Benachrichtigungen werden nur an Ihr Mobilgerät gesendet wenn Ihr Onlinestatus der oberen Auswahl entspricht.",
- "user.settings.security.active": "Aktiv",
- "user.settings.security.close": "Schließen",
- "user.settings.security.currentPassword": "Aktuelles Passwort",
- "user.settings.security.currentPasswordError": "Bitte geben Sie Ihr aktuelles Passwort ein.",
- "user.settings.security.deauthorize": "Legitimation aufheben",
- "user.settings.security.emailPwd": "E-Mail-Adresse und Passwort",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inaktiv",
- "user.settings.security.lastUpdated": "Zuletzt aktualisiert am {date} um {time} Uhr",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Anmeldung durchgeführt durch GitLab",
- "user.settings.security.loginGoogle": "Anmeldung via Google Apps",
- "user.settings.security.loginLdap": "Anmeldung via AD/LDAP",
- "user.settings.security.loginOffice365": "Anmeldung via Office 365",
- "user.settings.security.loginSaml": "Anmeldung durchgeführt durch SAML",
- "user.settings.security.logoutActiveSessions": "Zeigen und beenden von aktiven Sitzungen",
- "user.settings.security.method": "Anmeldemethode",
- "user.settings.security.newPassword": "Neues Passwort",
- "user.settings.security.noApps": "Es sind keine OAuth-2.0-Anwendungen autorisiert.",
- "user.settings.security.oauthApps": "OAuth-2.0-Applikationen",
- "user.settings.security.oauthAppsDescription": "Klicken Sie auf 'Bearbeiten' um Ihre OAuth-2.0-Anwendungen zu verwalten",
- "user.settings.security.oauthAppsHelp": "Anwendungen greifen in Ihrem Namen auf Ihre Daten basieren auf den Ihnen gewählten Berechtigungen zu.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Sie können immer nur eine Anmeldemethode haben. Der Wechsel der Anmeldemethode löst eine E-Mail mit dem Umstellungserfolg aus.",
- "user.settings.security.password": "Passwort",
- "user.settings.security.passwordError": "Ihr Passwort muss aus mindestens {min} und maximal {max} Buchstaben bestehen.",
- "user.settings.security.passwordErrorLowercase": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben enthalten.",
- "user.settings.security.passwordErrorLowercaseNumber": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben und eine Ziffer enthalten.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben, eine Ziffer und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorLowercaseSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorLowercaseUppercase": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben und einen Großbuchstaben enthalten.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben, einen Großbuchstaben und eine Ziffer enthalten.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben, einen Großbuchstaben, eine Ziffer und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Kleinbuchstaben , einen Großbuchstaben und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorNumber": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens eine Ziffer enthalten.",
- "user.settings.security.passwordErrorNumberSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens eine Ziffer und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorUppercase": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Großbuchstaben enthalten.",
- "user.settings.security.passwordErrorUppercaseNumber": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Großbuchstaben und eine Ziffer enthalten.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Großbuchstaben, eine Ziffer und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordErrorUppercaseSymbol": "Ihr Passwort muss aus mindestens {min} und maximal {max} Zeichen bestehen und mindestens einen Großbuchstaben und ein Symbol (wie \"~!@#$%^&*()\") enthalten.",
- "user.settings.security.passwordGitlabCantUpdate": "Anmeldung findet über GitLab statt. Das Passwort kann nicht aktualisiert werden.",
- "user.settings.security.passwordGoogleCantUpdate": "Anmeldung findet über Google Apps statt. Das Passwort kann nicht aktualisiert werden.",
- "user.settings.security.passwordLdapCantUpdate": "Anmeldung findet über AD/LDAP statt. Das Passwort kann nicht aktualisiert werden.",
- "user.settings.security.passwordMatchError": "Die eingegebenen neuen Passwörter stimmen nicht überein.",
- "user.settings.security.passwordMinLength": "Ungültige minimale Länge, kann keine Vorschau anzeigen.",
- "user.settings.security.passwordOffice365CantUpdate": "Anmeldung findet über Office 365 statt. Das Passwort kann nicht aktualisiert werden.",
- "user.settings.security.passwordSamlCantUpdate": "Dieses Feld wird durch Ihren Login Provider festgelegt. Wenn Sie es ändern möchten, müssen Sie dies durch den Login Provider tun.",
- "user.settings.security.retypePassword": "Passwort erneut eingeben",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Wechsel auf E-Mail-Adresse und Passwort",
- "user.settings.security.switchGitlab": "Wechsel auf GitLab SSO",
- "user.settings.security.switchGoogle": "Wechsel auf Google SSO",
- "user.settings.security.switchLdap": "Wechsel auf AD/LDAP",
- "user.settings.security.switchOffice365": "Wechseln auf Office 365 SSO",
- "user.settings.security.switchSaml": "Wechsel auf SAML SSO",
- "user.settings.security.title": "Sicherheitseinstellungen",
- "user.settings.security.viewHistory": "Zeige Zugriffshistorie",
- "user.settings.tokens.cancel": "Abbrechen",
- "user.settings.tokens.clickToEdit": "Klicken Sie 'Bearbeiten', um ihre persönlichen Zugriffs-Token zu verwalten",
- "user.settings.tokens.confirmCreateButton": "Ja, erstellen",
- "user.settings.tokens.confirmCreateMessage": "Sie generieren einen persönlichen Zugriffs-Token mit Systemadministrator-Berechtigungen. Sind Sie sicher, dass Sie dieses Token erstellen wollen?",
- "user.settings.tokens.confirmCreateTitle": "Persönlichen Systemadministrator-Zugriffs-Token erstellen",
- "user.settings.tokens.confirmDeleteButton": "Ja, löschen",
- "user.settings.tokens.confirmDeleteMessage": "Alle Integrationen, die dieses Token verwenden, werden nicht weiter in der Lage sein auf die Mattermost-API zuzugreifen. Diese Aktion kann nicht rückgängig gemacht werden.
Sind Sie sicher, dass sie das Token {description} löschen möchten?",
- "user.settings.tokens.confirmDeleteTitle": "Token löschen?",
- "user.settings.tokens.copy": "Bitte kopieren Sie das unten stehende Token. Sie werden es nicht erneut ansehen können!",
- "user.settings.tokens.create": "Neues Token erstellen",
- "user.settings.tokens.delete": "Löschen",
- "user.settings.tokens.description": "Persönliche Zugriffs-Token funktionieren ähnlich wie Sitzungs-Token und können von Integrationen zur Authentifizierung gegenüber der REST-API verwendet werden.",
- "user.settings.tokens.description_mobile": "Persönliche Zugriffs-Token funktionieren ähnlich wie Sitzungs-Token und können von Integrationen zur Authentifizierung gegenüber der REST-API verwendet werden. Erstellen Sie neue Token auf ihrem Desktop.",
- "user.settings.tokens.id": "Token-ID: ",
- "user.settings.tokens.name": "Token-Beschreibung: ",
- "user.settings.tokens.nameHelp": "Geben Sie eine Beschreibung für Ihr Token ein, um sich zu merken, was es tut.",
- "user.settings.tokens.nameRequired": "Bitte geben Sie eine Beschreibung ein.",
- "user.settings.tokens.save": "Speichern",
- "user.settings.tokens.title": "Persönliche Zugriffs-Token",
- "user.settings.tokens.token": "Zugriffs-Token: ",
- "user.settings.tokens.tokenId": "Token-ID: ",
- "user.settings.tokens.userAccessTokensNone": "Keine Benutzer-Zugriffs-Token.",
- "user_list.notFound": "Keine Benutzer gefunden",
- "user_profile.send.dm": "Nachricht versenden",
- "user_profile.webrtc.call": "Videoanruf starten",
- "user_profile.webrtc.offline": "Der Benutzer ist offline",
- "user_profile.webrtc.unavailable": "Neuer Anruf nicht möglich bis ihr bestehender Anruf beendet ist",
- "view_image.loading": "Laden ",
- "view_image_popover.download": "Herunterladen",
- "view_image_popover.file": "Datei {count, number} von {total, number}",
- "view_image_popover.publicLink": "Öffentlichen Link erhalten",
- "web.footer.about": "Über",
- "web.footer.help": "Hilfe",
- "web.footer.privacy": "Privatsphäre",
- "web.footer.terms": "Bedingungen",
- "web.header.back": "Zurück",
- "web.header.logout": "Abmelden",
- "web.root.signup_info": "Die gesamte Teamkommunikation an einem Ort, durchsuchbar und überall verfügbar",
- "webrtc.busy": "{username} ist beschäftigt.",
- "webrtc.call": "Anrufen",
- "webrtc.callEnded": "Anruf mit {username} beendet.",
- "webrtc.cancel": "Anruf abbrechen",
- "webrtc.cancelled": "{username} hat den Anruf abgebrochen.",
- "webrtc.declined": "Ihr Anruf wurde durch {username} abgelehnt.",
- "webrtc.disabled": "{username} hat WebRTC deaktiviert. Um die Funktion zu aktivieren, muss der Benutzer zu Kontoeinstellungen > Erweitert > Vorschau auf Features der neuen Version gehen und WebRTC aktivieren.",
- "webrtc.failed": "Es gab ein Problem bei der Verbindung des Videoanrufs.",
- "webrtc.hangup": "Auflegen",
- "webrtc.header": "Anruf mit {username}",
- "webrtc.inProgress": "Sie haben bereits einen laufenden Anruf. Bitte legen Sie zuerst auf.",
- "webrtc.mediaError": "Zugriff auf Kamera und Mikrofon nicht möglich.",
- "webrtc.mute_audio": "Mikrofon stummschalten",
- "webrtc.noAnswer": "{username} beantwortet den Anruf nicht.",
- "webrtc.notification.answer": "Annehmen",
- "webrtc.notification.decline": "Ablehnen",
- "webrtc.notification.incoming_call": "{username} ruft Sie an.",
- "webrtc.notification.returnToCall": "Zu laufendem Anruf mit {username} zurückkehren",
- "webrtc.offline": "{username} ist offline.",
- "webrtc.pause_video": "Kamera abschalten",
- "webrtc.unmute_audio": "Mikrofon-Stummschaltung aufheben",
- "webrtc.unpause_video": "Kamera einschalten",
- "webrtc.unsupported": "Das Gerät von {username} unterstützt keine Videoanrufe.",
- "youtube_video.notFound": "Video nicht gefunden"
-}
diff --git a/webapp/i18n/en.json b/webapp/i18n/en.json
deleted file mode 100755
index 62f50e39f7a..00000000000
--- a/webapp/i18n/en.json
+++ /dev/null
@@ -1,2737 +0,0 @@
-{
- "about.close": "Close",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. All rights reserved",
- "about.database": "Database:",
- "about.date": "Build Date:",
- "about.enterpriseEditionLearn": "Learn more about Enterprise Edition at ",
- "about.enterpriseEditionSt": "Modern communication from behind your firewall.",
- "about.enterpriseEditione1": "Enterprise Edition",
- "about.hash": "Build Hash:",
- "about.hashee": "EE Build Hash:",
- "about.licensed": "Licensed to:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Build Number:",
- "about.teamEditionLearn": "Join the Mattermost community at ",
- "about.teamEditionSt": "All your team communication in one place, instantly searchable and accessible anywhere.",
- "about.teamEditiont0": "Team Edition",
- "about.teamEditiont1": "Enterprise Edition",
- "about.title": "About Mattermost",
- "about.version": "Version:",
- "access_history.title": "Access History",
- "activity_log.activeSessions": "Active Sessions",
- "activity_log.browser": "Browser: {browser}",
- "activity_log.firstTime": "First time active: {date}, {time}",
- "activity_log.lastActivity": "Last activity: {date}, {time}",
- "activity_log.logout": "Logout",
- "activity_log.moreInfo": "More info",
- "activity_log.os": "OS: {os}",
- "activity_log.sessionId": "Session ID: {id}",
- "activity_log.sessionsDescription": "Sessions are created when you log in to a new browser on a device. Sessions let you use Mattermost without having to log in again for a time period specified by the System Admin. If you want to log out sooner, use the 'Logout' button below to end a session.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Android Native App",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Native Desktop App",
- "activity_log_modal.iphoneNativeApp": "iPhone Native App",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "Autocomplete",
- "add_command.autocomplete.help": "(Optional) Show slash command in autocomplete list.",
- "add_command.autocompleteDescription": "Autocomplete Description",
- "add_command.autocompleteDescription.help": "(Optional) Short description of slash command for the autocomplete list.",
- "add_command.autocompleteDescription.placeholder": "Example: \"Returns search results for patient records\"",
- "add_command.autocompleteHint": "Autocomplete Hint",
- "add_command.autocompleteHint.help": "(Optional) Arguments associated with your slash command, displayed as help in the autocomplete list.",
- "add_command.autocompleteHint.placeholder": "Example: [Patient Name]",
- "add_command.cancel": "Cancel",
- "add_command.description": "Description",
- "add_command.description.help": "Description for your incoming webhook.",
- "add_command.displayName": "Display Name",
- "add_command.displayName.help": "Display name for your slash command made of up to 64 characters.",
- "add_command.doneHelp": "Your slash command has been set up. The following token will be sent in the outgoing payload. Please use it to verify the request came from your Mattermost team (see documentation for further details).",
- "add_command.iconUrl": "Response Icon",
- "add_command.iconUrl.help": "(Optional) Choose a profile picture override for the post responses to this slash command. Enter the URL of a .png or .jpg file at least 128 pixels by 128 pixels.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "Request Method",
- "add_command.method.get": "GET",
- "add_command.method.help": "The type of command request issued to the Request URL.",
- "add_command.method.post": "POST",
- "add_command.save": "Save",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Command Trigger Word",
- "add_command.trigger.help": "Trigger word must be unique, and cannot begin with a slash or contain any spaces.",
- "add_command.trigger.helpExamples": "Examples: client, employee, patient, weather",
- "add_command.trigger.helpReserved": "Reserved: {link}",
- "add_command.trigger.helpReservedLinkText": "see list of built-in slash commands",
- "add_command.trigger.placeholder": "Command trigger e.g. \"hello\"",
- "add_command.triggerInvalidLength": "A trigger word must contain between {min} and {max} characters",
- "add_command.triggerInvalidSlash": "A trigger word cannot begin with a /",
- "add_command.triggerInvalidSpace": "A trigger word must not contain spaces",
- "add_command.triggerRequired": "A trigger word is required",
- "add_command.url": "Request URL",
- "add_command.url.help": "The callback URL to receive the HTTP POST or GET event request when the slash command is run.",
- "add_command.url.placeholder": "Must start with http:// or https://",
- "add_command.urlRequired": "A request URL is required",
- "add_command.username": "Response Username",
- "add_command.username.help": "(Optional) Choose a username override for responses for this slash command. Usernames can consist of up to 22 characters consisting of lowercase letters, numbers and they symbols \"-\", \"_\", and \".\" .",
- "add_command.username.placeholder": "Username",
- "add_emoji.cancel": "Cancel",
- "add_emoji.header": "Add",
- "add_emoji.image": "Image",
- "add_emoji.image.button": "Select",
- "add_emoji.image.help": "Choose the image for your emoji. The image can be a gif, png, or jpeg file with a max size of 1 MB. Dimensions will automatically resize to fit 128 by 128 pixels but keeping aspect ratio.",
- "add_emoji.imageRequired": "An image is required for the emoji",
- "add_emoji.name": "Name",
- "add_emoji.name.help": "Choose a name for your emoji made of up to 64 characters consisting of lowercase letters, numbers, and the symbols '-' and '_'.",
- "add_emoji.nameInvalid": "An emoji's name can only contain numbers, letters, and the symbols '-' and '_'.",
- "add_emoji.nameRequired": "A name is required for the emoji",
- "add_emoji.nameTaken": "This name is already in use by a system emoji. Please choose another name.",
- "add_emoji.preview": "Preview",
- "add_emoji.preview.sentence": "This is a sentence with {image} in it.",
- "add_emoji.save": "Save",
- "add_incoming_webhook.cancel": "Cancel",
- "add_incoming_webhook.channel": "Channel",
- "add_incoming_webhook.channel.help": "Public or private channel that receives the webhook payloads. You must belong to the private channel when setting up the webhook.",
- "add_incoming_webhook.channelRequired": "A valid channel is required",
- "add_incoming_webhook.description": "Description",
- "add_incoming_webhook.description.help": "Description for your incoming webhook.",
- "add_incoming_webhook.displayName": "Display Name",
- "add_incoming_webhook.displayName.help": "Display name for your incoming webhook made of up to 64 characters.",
- "add_incoming_webhook.doneHelp": "Your incoming webhook has been set up. Please send data to the following URL (see documentation for further details).",
- "add_incoming_webhook.name": "Name",
- "add_incoming_webhook.save": "Save",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "The redirect URIs to which the service will redirect users after accepting or denying authorization of your application, and which will handle authorization codes or access tokens. Must be a valid URL and start with http:// or https://.",
- "add_oauth_app.callbackUrlsRequired": "One or more callback URLs are required",
- "add_oauth_app.clientId": "Client ID: {id}",
- "add_oauth_app.clientSecret": "Client Secret: {secret}",
- "add_oauth_app.description.help": "Description for your OAuth 2.0 application.",
- "add_oauth_app.descriptionRequired": "Description for the OAuth 2.0 application is required.",
- "add_oauth_app.doneHelp": "Your OAuth 2.0 application has been set up. Please use the following Client ID and Client Secret when requesting authorization for your application (see documentation for further details).",
- "add_oauth_app.doneUrlHelp": "The following are your authorized redirect URL(s).",
- "add_oauth_app.header": "Add",
- "add_oauth_app.homepage.help": "The URL for the homepage of the OAuth 2.0 application. Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
- "add_oauth_app.homepageRequired": "Homepage for the OAuth 2.0 application is required.",
- "add_oauth_app.icon.help": "(Optional) The URL of the image used for your OAuth 2.0 application. Make sure you use HTTP or HTTPS in your URL.",
- "add_oauth_app.name.help": "Display name for your OAuth 2.0 application made of up to 64 characters.",
- "add_oauth_app.nameRequired": "Name for the OAuth 2.0 application is required.",
- "add_oauth_app.trusted.help": "When true, the OAuth 2.0 application is considered trusted by the Mattermost server and doesn't require the user to accept authorization. When false, an additional window will appear, asking the user to accept or deny the authorization.",
- "add_oauth_app.url": "URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "Callback URLs (One Per Line)",
- "add_outgoing_webhook.callbackUrls.help": "The URL that messages will be sent to.",
- "add_outgoing_webhook.callbackUrlsRequired": "One or more callback URLs are required",
- "add_outgoing_webhook.cancel": "Cancel",
- "add_outgoing_webhook.channel": "Channel",
- "add_outgoing_webhook.channel.help": "Public channel to receive webhook payloads. Optional if at least one Trigger Word is specified.",
- "add_outgoing_webhook.contentType.help1": "Choose the content type by which the response will be sent.",
- "add_outgoing_webhook.contentType.help2": "If application/x-www-form-urlencoded is chosen, the server assumes you will be encoding the parameters in a URL format.",
- "add_outgoing_webhook.contentType.help3": "If application/json is chosen, the server assumes you will posting JSON data.",
- "add_outgoing_webhook.content_Type": "Content Type",
- "add_outgoing_webhook.description": "Description",
- "add_outgoing_webhook.description.help": "Description for your outgoing webhook.",
- "add_outgoing_webhook.displayName": "Display Name",
- "add_outgoing_webhook.displayName.help": "Display name for your outgoing webhook made of up to 64 characters.",
- "add_outgoing_webhook.doneHelp": "Your outgoing webhook has been set up. The following token will be sent in the outgoing payload. Please use it to verify the request came from your Mattermost team (see documentation for further details).",
- "add_outgoing_webhook.name": "Name",
- "add_outgoing_webhook.save": "Save",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Trigger Words (One Per Line)",
- "add_outgoing_webhook.triggerWords.help": "Messages that start with one of the specified words will trigger the outgoing webhook. Optional if Channel is selected.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "A valid channel or a list of trigger words is required",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Trigger When",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Choose when to trigger the outgoing webhook; if the first word of a message matches a Trigger Word exactly, or if it starts with a Trigger Word.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "First word matches a trigger word exactly",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "First word starts with a trigger word",
- "add_users_to_team.title": "Add New Members To {teamName} Team",
- "admin.advance.cluster": "High Availability",
- "admin.advance.metrics": "Performance Monitoring",
- "admin.audits.reload": "Reload User Activity Logs",
- "admin.audits.title": "User Activity Logs",
- "admin.authentication.email": "Email Authentication",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Note:",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "When true, Mattermost will run in High Availability mode. Please see documentation to learn more about configuring High Availability for Mattermost.",
- "admin.cluster.enableTitle": "Enable High Availability Mode:",
- "admin.cluster.interNodeListenAddressDesc": "The address the server will listen on for communicating with other servers.",
- "admin.cluster.interNodeListenAddressEx": "E.g.: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Inter-Node Listen Address:",
- "admin.cluster.interNodeUrlsDesc": "The internal/private URLs of all the Mattermost servers separated by commas.",
- "admin.cluster.interNodeUrlsEx": "E.g.: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Inter-Node URLs:",
- "admin.cluster.loadedFrom": "This configuration file was loaded from Node ID {clusterId}. Please see the Troubleshooting Guide in our documentation if you are accessing the System Console through a load balancer and experiencing issues.",
- "admin.cluster.noteDescription": "Changing properties in this section will require a server restart before taking effect. When High Availability mode is enabled, the System Console is set to read-only and can only be changed from the configuration file unless ReadOnlyConfig is disabled in the configuration file.",
- "admin.cluster.should_not_change": "WARNING: These settings may not sync with the other servers in the cluster. High Availability inter-node communication will not start until you modify the config.json to be identical on all servers and restart Mattermost. Please see the documentation on how to add or remove a server from the cluster. If you are accessing the System Console through a load balancer and experiencing issues, please see the Troubleshooting Guide in our documentation.",
- "admin.cluster.status_table.config_hash": "Config File MD5",
- "admin.cluster.status_table.hostname": "Hostname",
- "admin.cluster.status_table.id": "Node ID",
- "admin.cluster.status_table.reload": " Reload Cluster Status",
- "admin.cluster.status_table.status": "Status",
- "admin.cluster.status_table.url": "Gossip Address",
- "admin.cluster.status_table.version": "Version",
- "admin.cluster.unknown": "unknown",
- "admin.compliance.directoryDescription": "Directory to which compliance reports are written. If blank, will be set to ./data/.",
- "admin.compliance.directoryExample": "E.g.: \"./data/\"",
- "admin.compliance.directoryTitle": "Compliance Report Directory:",
- "admin.compliance.enableDailyDesc": "When true, Mattermost will generate a daily compliance report.",
- "admin.compliance.enableDailyTitle": "Enable Daily Report:",
- "admin.compliance.enableDesc": "When true, Mattermost allows compliance reporting from the Compliance and Auditing tab. See documentation to learn more.",
- "admin.compliance.enableTitle": "Enable Compliance Reporting:",
- "admin.compliance.false": "false",
- "admin.compliance.noLicense": "
Note:
Compliance is an enterprise feature. Your current license does not support Compliance. Click here for information and pricing on enterprise licenses.
\"Send generic description with sender and channel names\" includes the name of the person who sent the message and the channel it was sent in, but not the message text.
\"Send full message snippet\" includes a message excerpt in push notifications, which may contain confidential information sent in messages. If your Push Notification Service is outside your firewall, it is *highly recommended* this option only be used with an \"https\" protocol to encrypt the connection.",
- "admin.email.pushContentTitle": "Push Notification Contents:",
- "admin.email.pushDesc": "Typically set to true in production. When true, Mattermost attempts to send iOS and Android push notifications through the push notification server.",
- "admin.email.pushOff": "Do not send push notifications",
- "admin.email.pushOffHelp": "Please see documentation on push notifications to learn more about setup options.",
- "admin.email.pushServerDesc": "Location of Mattermost push notification service you can set up behind your firewall using https://github.com/mattermost/push-proxy. For testing you can use http://push-test.mattermost.com, which connects to the sample Mattermost iOS app in the public Apple AppStore. Please do not use test service for production deployments.",
- "admin.email.pushServerEx": "E.g.: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Push Notification Server:",
- "admin.email.pushTitle": "Enable Push Notifications: ",
- "admin.email.requireVerificationDescription": "Typically set to true in production. When true, Mattermost requires email verification after account creation prior to allowing login. Developers may set this field to false so skip sending verification emails for faster development.",
- "admin.email.requireVerificationTitle": "Require Email Verification: ",
- "admin.email.selfPush": "Manually enter Push Notification Service location",
- "admin.email.skipServerCertificateVerification.description": "When true, Mattermost will not verify the email server certificate.",
- "admin.email.skipServerCertificateVerification.title": "Skip Server Certificate Verification: ",
- "admin.email.smtpPasswordDescription": "The password associated with the SMTP username.",
- "admin.email.smtpPasswordExample": "E.g.: \"yourpassword\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "SMTP Server Password:",
- "admin.email.smtpPortDescription": "Port of SMTP email server.",
- "admin.email.smtpPortExample": "E.g.: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "SMTP Server Port:",
- "admin.email.smtpServerDescription": "Location of SMTP email server.",
- "admin.email.smtpServerExample": "E.g.: \"smtp.yourcompany.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "SMTP Server:",
- "admin.email.smtpUsernameDescription": "The username for authenticating to the SMTP server.",
- "admin.email.smtpUsernameExample": "E.g.: \"admin@yourcompany.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "SMTP Server Username:",
- "admin.email.testing": "Testing...",
- "admin.false": "false",
- "admin.file.enableFileAttachments": "Allow File Sharing:",
- "admin.file.enableFileAttachmentsDesc": "When false, disables file sharing on the server. All file and image uploads on messages are forbidden across clients and devices, including mobile.",
- "admin.file.enableMobileDownloadDesc": "When false, disables file downloads on mobile apps. Users can still download files from a mobile web browser.",
- "admin.file.enableMobileDownloadTitle": "Allow File Downloads on Mobile:",
- "admin.file.enableMobileUploadDesc": "When false, disables file uploads on mobile apps. If Allow File Sharing is set to true, users can still upload files from a mobile web browser.",
- "admin.file.enableMobileUploadTitle": "Allow File Uploads on Mobile:",
- "admin.file_upload.chooseFile": "Choose File",
- "admin.file_upload.noFile": "No file uploaded",
- "admin.file_upload.uploadFile": "Upload",
- "admin.files.images": "Images",
- "admin.files.storage": "Storage",
- "admin.general.configuration": "Configuration",
- "admin.general.localization": "Localization",
- "admin.general.localization.availableLocalesDescription": "Set which languages are available for users in Account Settings (leave this field blank to have all supported languages available). If you’re manually adding new languages, the Default Client Language must be added before saving this setting.
Would like to help with translations? Join the Mattermost Translation Server to contribute.",
- "admin.general.localization.availableLocalesNoResults": "No results found",
- "admin.general.localization.availableLocalesNotPresent": "The default client language must be included in the available list",
- "admin.general.localization.availableLocalesTitle": "Available Languages:",
- "admin.general.localization.clientLocaleDescription": "Default language for newly created users and pages where the user hasn't logged in.",
- "admin.general.localization.clientLocaleTitle": "Default Client Language:",
- "admin.general.localization.serverLocaleDescription": "Default language for system messages and logs. Changing this will require a server restart before taking effect.",
- "admin.general.localization.serverLocaleTitle": "Default Server Language:",
- "admin.general.log": "Logging",
- "admin.general.policy": "Policy",
- "admin.general.policy.allowBannerDismissalDesc": "When true, users can dismiss the banner until its next update. When false, the banner is permanently visible until it is turned off by the System Admin.",
- "admin.general.policy.allowBannerDismissalTitle": "Allow Banner Dismissal:",
- "admin.general.policy.allowEditPostAlways": "Any time",
- "admin.general.policy.allowEditPostDescription": "Set policy on the length of time authors have to edit their messages after posting.",
- "admin.general.policy.allowEditPostNever": "Never",
- "admin.general.policy.allowEditPostTimeLimit": "seconds after posting",
- "admin.general.policy.allowEditPostTitle": "Allow users to edit their messages:",
- "admin.general.policy.bannerColorTitle": "Banner Color:",
- "admin.general.policy.bannerTextColorTitle": "Banner Text Color:",
- "admin.general.policy.bannerTextDesc": "Text that will appear in the announcement banner.",
- "admin.general.policy.bannerTextTitle": "Banner Text:",
- "admin.general.policy.enableBannerDesc": "Enable an announcement banner across all teams.",
- "admin.general.policy.enableBannerTitle": "Enable Announcement Banner:",
- "admin.general.policy.permissionsAdmin": "Team and System Admins",
- "admin.general.policy.permissionsAll": "All team members",
- "admin.general.policy.permissionsAllChannel": "All channel members",
- "admin.general.policy.permissionsChannelAdmin": "Channel, Team and System Admins",
- "admin.general.policy.permissionsDeletePostAdmin": "Team Admins and System Admins",
- "admin.general.policy.permissionsDeletePostAll": "Message authors can delete their own messages, and Administrators can delete any message",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "System Admins",
- "admin.general.policy.permissionsSystemAdmin": "System Admins",
- "admin.general.policy.restrictPostDeleteDescription": "Set policy on who has permission to delete messages.",
- "admin.general.policy.restrictPostDeleteTitle": "Allow which users to delete messages:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Set policy on who can create private channels.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Enable private channel creation for:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "command line tool",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Set policy on who can delete private channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Enable private channel deletion for:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Set policy on who can add and remove members from private channels.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Enable managing of private channel members for:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Set policy on who can rename and set the header or purpose for private channels.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Enable private channel renaming for:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Set policy on who can create public channels.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Enable public channel creation for:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "command line tool",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Set policy on who can delete public channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Enable public channel deletion for:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Set policy on who can rename and set the header or purpose for public channels.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Enable public channel renaming for:",
- "admin.general.policy.teamInviteDescription": "Set policy on who can invite others to a team using Send Email Invite to invite new users by email, or the Get Team Invite Link and Add Members to Team options from the Main Menu. If Get Team Invite Link is used to share a link, you can expire the invite code from Team Settings > Invite Code after the desired users join the team.",
- "admin.general.policy.teamInviteTitle": "Enable sending team invites from:",
- "admin.general.privacy": "Privacy",
- "admin.general.usersAndTeams": "Users and Teams",
- "admin.gitab.clientSecretDescription": "Obtain this value via the instructions above for logging into GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Log in to your GitLab account and go to Profile Settings -> Applications.
Enter Redirect URIs \"/login/gitlab/complete\" (example: http://localhost:8065/login/gitlab/complete) and \"/signup/gitlab/complete\".
Then use \"Application Secret Key\" and \"Application ID\" fields from GitLab to complete the options below.
Complete the Endpoint URLs below.
",
- "admin.gitlab.authDescription": "Enter https:///oauth/authorize (example https://example.com:3000/oauth/authorize). Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
- "admin.gitlab.authExample": "E.g.: \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Auth Endpoint:",
- "admin.gitlab.clientIdDescription": "Obtain this value via the instructions above for logging into GitLab",
- "admin.gitlab.clientIdExample": "E.g.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "Application ID:",
- "admin.gitlab.clientSecretExample": "E.g.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Application Secret Key:",
- "admin.gitlab.enableDescription": "When true, Mattermost allows team creation and account signup using GitLab OAuth.",
- "admin.gitlab.enableTitle": "Enable authentication with GitLab: ",
- "admin.gitlab.settingsTitle": "GitLab Settings",
- "admin.gitlab.tokenDescription": "Enter https:///oauth/token. Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
- "admin.gitlab.tokenExample": "E.g.: \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Token Endpoint:",
- "admin.gitlab.userDescription": "Enter https:///api/v3/user. Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
- "admin.gitlab.userExample": "E.g.: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "User API Endpoint:",
- "admin.google.EnableHtmlDesc": "
Go to https://console.developers.google.com, click Credentials in the left hand sidebar and enter \"Mattermost - your-company-name\" as the Project Name, then click Create.
Click the OAuth consent screen header and enter \"Mattermost\" as the Product name shown to users, then click Save.
Under the Credentials header, click Create credentials, choose OAuth client ID and select Web Application.
Under Restrictions and Authorized redirect URIs enter your-mattermost-url/signup/google/complete (example: http://localhost:8065/signup/google/complete). Click Create.
Paste the Client ID and Client Secret to the fields below, then click Save.
Finally, go to Google+ API and click Enable. This might take a few minutes to propagate through Google's systems.
",
- "admin.google.authTitle": "Auth Endpoint:",
- "admin.google.clientIdDescription": "The Client ID you received when registering your application with Google.",
- "admin.google.clientIdExample": "E.g.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "Client ID:",
- "admin.google.clientSecretDescription": "The Client Secret you received when registering your application with Google.",
- "admin.google.clientSecretExample": "E.g.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Client Secret:",
- "admin.google.tokenTitle": "Token Endpoint:",
- "admin.google.userTitle": "User API Endpoint:",
- "admin.image.amazonS3BucketDescription": "Name you selected for your S3 bucket in AWS.",
- "admin.image.amazonS3BucketExample": "E.g.: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Hostname of your S3 Compatible Storage provider. Defaults to `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "E.g.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Amazon S3 Endpoint:",
- "admin.image.amazonS3IdDescription": "Obtain this credential from your Amazon EC2 administrator.",
- "admin.image.amazonS3IdExample": "E.g.: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 Access Key ID:",
- "admin.image.amazonS3RegionDescription": "AWS region you selected for creating your S3 bucket.",
- "admin.image.amazonS3RegionExample": "E.g.: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Amazon S3 Region:",
- "admin.image.amazonS3SSEDescription": "When true, encrypt files in Amazon S3 using server-side encryption with Amazon S3-managed keys. See documentation to learn more.",
- "admin.image.amazonS3SSETitle": "Enable Server-Side Encryption for Amazon S3:",
- "admin.image.amazonS3SSLDescription": "When false, allow insecure connections to Amazon S3. Defaults to secure connections only.",
- "admin.image.amazonS3SSLTitle": "Enable Secure Amazon S3 Connections:",
- "admin.image.amazonS3SecretDescription": "Obtain this credential from your Amazon EC2 administrator.",
- "admin.image.amazonS3SecretExample": "E.g.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 Secret Access Key:",
- "admin.image.amazonS3TraceDescription": "(Development Mode) When true, log additional debugging information to the system logs.",
- "admin.image.amazonS3TraceTitle": "Enable Amazon S3 Debugging:",
- "admin.image.localDescription": "Directory to which files and images are written. If blank, defaults to ./data/.",
- "admin.image.localExample": "E.g.: \"./data/\"",
- "admin.image.localTitle": "Local Storage Directory:",
- "admin.image.maxFileSizeDescription": "Maximum file size for message attachments in megabytes. Caution: Verify server memory can support your setting choice. Large file sizes increase the risk of server crashes and failed uploads due to network interruptions.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Maximum File Size:",
- "admin.image.publicLinkDescription": "32-character salt added to signing of public image links. Randomly generated on install. Click \"Regenerate\" to create new salt.",
- "admin.image.publicLinkExample": "E.g.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Public Link Salt:",
- "admin.image.shareDescription": "Allow users to share public links to files and images.",
- "admin.image.shareTitle": "Enable Public File Links: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Storage system where files and image attachments are saved.
Selecting \"Amazon S3\" enables fields to enter your Amazon credentials and bucket details.
Selecting \"Local File System\" enables the field to specify a local file directory.",
- "admin.image.storeLocal": "Local File System",
- "admin.image.storeTitle": "File Storage System:",
- "admin.integrations.custom": "Custom Integrations",
- "admin.integrations.external": "External Services",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "The Base DN is the Distinguished Name of the location where Mattermost should start its search for users in the AD/LDAP tree.",
- "admin.ldap.baseEx": "E.g.: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Password of the user given in \"Bind Username\".",
- "admin.ldap.bindPwdTitle": "Bind Password:",
- "admin.ldap.bindUserDesc": "The username used to perform the AD/LDAP search. This should typically be an account created specifically for use with Mattermost. It should have access limited to read the portion of the AD/LDAP tree specified in the BaseDN field.",
- "admin.ldap.bindUserTitle": "Bind Username:",
- "admin.ldap.emailAttrDesc": "The attribute in the AD/LDAP server that will be used to populate the email addresses of users in Mattermost.",
- "admin.ldap.emailAttrEx": "E.g.: \"mail\" or \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Email Attribute:",
- "admin.ldap.enableDesc": "When true, Mattermost allows login using AD/LDAP",
- "admin.ldap.enableTitle": "Enable sign-in with AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the first name of users in Mattermost. When set, users will not be able to edit their first name, since it is synchronized with the LDAP server. When left blank, users can set their own first name in Account Settings.",
- "admin.ldap.firstnameAttrEx": "E.g.: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "First Name Attribute",
- "admin.ldap.idAttrDesc": "The attribute in the AD/LDAP server that will be used as a unique identifier in Mattermost. It should be an AD/LDAP attribute with a value that does not change, such as username or uid. If a user's ID Attribute changes, it will create a new Mattermost account unassociated with their old one. This is the value used to log in to Mattermost in the \"AD/LDAP Username\" field on the sign in page. Normally this attribute is the same as the \"Username Attribute\" field above. If your team typically uses domain\\\\username to sign in to other services with AD/LDAP, you may choose to put domain\\\\username in this field to maintain consistency between sites.",
- "admin.ldap.idAttrEx": "E.g.: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "ID Attribute: ",
- "admin.ldap.lastnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the last name of users in Mattermost. When set, users will not be able to edit their last name, since it is synchronized with the LDAP server. When left blank, users can set their own last name in Account Settings.",
- "admin.ldap.lastnameAttrEx": "E.g.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Last Name Attribute:",
- "admin.ldap.ldap_test_button": "AD/LDAP Test",
- "admin.ldap.loginNameDesc": "The placeholder text that appears in the login field on the login page. Defaults to \"AD/LDAP Username\".",
- "admin.ldap.loginNameEx": "E.g.: \"AD/LDAP Username\"",
- "admin.ldap.loginNameTitle": "Login Field Name:",
- "admin.ldap.maxPageSizeEx": "E.g.: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "The maximum number of users the Mattermost server will request from the AD/LDAP server at one time. 0 is unlimited.",
- "admin.ldap.maxPageSizeTitle": "Maximum Page Size:",
- "admin.ldap.nicknameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the nickname of users in Mattermost. When set, users will not be able to edit their nickname, since it is synchronized with the LDAP server. When left blank, users can set their own nickname in Account Settings.",
- "admin.ldap.nicknameAttrEx": "E.g.: \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Nickname Attribute:",
- "admin.ldap.noLicense": "
Note:
AD/LDAP is an enterprise feature. Your current license does not support AD/LDAP. Click here for information and pricing on enterprise licenses.
",
- "admin.ldap.portDesc": "The port Mattermost will use to connect to the AD/LDAP server. Default is 389.",
- "admin.ldap.portEx": "E.g.: \"389\"",
- "admin.ldap.portTitle": "AD/LDAP Port:",
- "admin.ldap.positionAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the position field in Mattermost.",
- "admin.ldap.positionAttrEx": "E.g.: \"title\"",
- "admin.ldap.positionAttrTitle": "Position Attribute:",
- "admin.ldap.queryDesc": "The timeout value for queries to the AD/LDAP server. Increase if you are getting timeout errors caused by a slow AD/LDAP server.",
- "admin.ldap.queryEx": "E.g.: \"60\"",
- "admin.ldap.queryTitle": "Query Timeout (seconds):",
- "admin.ldap.serverDesc": "The domain or IP address of AD/LDAP server.",
- "admin.ldap.serverEx": "E.g.: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "AD/LDAP Server:",
- "admin.ldap.skipCertificateVerification": "Skip Certificate Verification:",
- "admin.ldap.skipCertificateVerificationDesc": "Skips the certificate verification step for TLS or STARTTLS connections. Not recommended for production environments where TLS is required. For testing only.",
- "admin.ldap.syncFailure": "Sync Failure: {error}",
- "admin.ldap.syncIntervalHelpText": "AD/LDAP Synchronization updates Mattermost user information to reflect updates on the AD/LDAP server. For example, when a user’s name changes on the AD/LDAP server, the change updates in Mattermost when synchronization is performed. Accounts removed from or disabled in the AD/LDAP server have their Mattermost accounts set to \"Inactive\" and have their account sessions revoked. Mattermost performs synchronization on the interval entered. For example, if 60 is entered, Mattermost synchronizes every 60 minutes.",
- "admin.ldap.syncIntervalTitle": "Synchronization Interval (minutes):",
- "admin.ldap.syncNowHelpText": "Initiates an AD/LDAP synchronization immediately.",
- "admin.ldap.sync_button": "AD/LDAP Synchronize Now",
- "admin.ldap.testFailure": "AD/LDAP Test Failure: {error}",
- "admin.ldap.testHelpText": "Tests if the Mattermost server can connect to the AD/LDAP server specified. See log file for more detailed error messages.",
- "admin.ldap.testSuccess": "AD/LDAP Test Successful",
- "admin.ldap.uernameAttrDesc": "The attribute in the AD/LDAP server that will be used to populate the username field in Mattermost. This may be the same as the ID Attribute.",
- "admin.ldap.userFilterDisc": "(Optional) Enter an AD/LDAP Filter to use when searching for user objects. Only the users selected by the query will be able to access Mattermost. For Active Directory, the query to filter out disabled users is (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "E.g.: \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "User Filter:",
- "admin.ldap.usernameAttrEx": "E.g.: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Username Attribute:",
- "admin.plugin.banner": "Plugins are experimental and not recommended for use in production.",
- "admin.plugin.uploading": "Uploading...",
- "admin.plugin.upload": "Upload",
- "admin.plugin.error.extract": "Encountered an error when extracting the plugin. Review your plugin file content and try again.",
- "admin.plugin.error.activate": "Unable to upload the plugin. It may conflict with another plugin on your server.",
- "admin.plugin.no_plugins": "No active plugins.",
- "admin.plugin.removing": "Removing...",
- "admin.plugin.remove": "Remove",
- "admin.plugin.id": "ID:",
- "admin.plugin.desc": "Description:",
- "admin.plugin.title": "Plugins (Experimental)",
- "admin.plugin.uploadTitle": "Upload Plugin: ",
- "admin.plugin.uploadDesc": "Upload a plugin for your Mattermost server. Adding or removing a webapp plugin requires users to refresh their browser or Desktop App before taking effect. See documentation to learn more.",
- "admin.plugin.activeTitle": "Active Plugins: ",
- "admin.license.choose": "Choose File",
- "admin.license.chooseFile": "Choose File",
- "admin.license.edition": "Edition: ",
- "admin.license.key": "License Key: ",
- "admin.license.keyRemove": "Remove Enterprise License and Downgrade Server",
- "admin.license.noFile": "No file uploaded",
- "admin.license.removing": "Removing License...",
- "admin.license.title": "Edition and License",
- "admin.license.type": "License: ",
- "admin.license.upload": "Upload",
- "admin.license.uploadDesc": "Upload a license key for Mattermost Enterprise Edition to upgrade this server. Visit us online to learn more about the benefits of Enterprise Edition or to purchase a key.",
- "admin.license.uploading": "Uploading License...",
- "admin.log.consoleDescription": "Typically set to false in production. Developers may set this field to true to output log messages to console based on the console level option. If true, server writes messages to the standard output stream (stdout).",
- "admin.log.consoleTitle": "Output logs to console: ",
- "admin.log.enableDiagnostics": "Enable Diagnostics and Error Reporting:",
- "admin.log.enableDiagnosticsDescription": "Enable this feature to improve the quality and performance of Mattermost by sending error reporting and diagnostic information to Mattermost, Inc. Read our privacy policy to learn more.",
- "admin.log.enableWebhookDebugging": "Enable Webhook Debugging:",
- "admin.log.enableWebhookDebuggingDescription": "You can set this to false to disable the debug logging of all incoming webhook request bodies.",
- "admin.log.fileDescription": "Typically set to true in production. When true, logged events are written to the mattermost.log file in the directory specified in the File Log Directory field. The logs are rotated at 10,000 lines and archived to a file in the same directory, and given a name with a datestamp and serial number. For example, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "This setting determines the level of detail at which log events are written to the log file. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.",
- "admin.log.fileLevelTitle": "File Log Level:",
- "admin.log.fileTitle": "Output logs to file: ",
- "admin.log.formatDateLong": "Date (2006/01/02)",
- "admin.log.formatDateShort": "Date (01/02/06)",
- "admin.log.formatDescription": "Format of log message output. If blank will be set to \"[%D %T] [%L] %M\", where:",
- "admin.log.formatLevel": "Level (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Message",
- "admin.log.formatPlaceholder": "Enter your file format",
- "admin.log.formatSource": "Source",
- "admin.log.formatTime": "Time (15:04:05 MST)",
- "admin.log.formatTitle": "File Log Format:",
- "admin.log.levelDescription": "This setting determines the level of detail at which log events are written to the console. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.",
- "admin.log.levelTitle": "Console Log Level:",
- "admin.log.locationDescription": "The location of the log files. If blank, they are stored in the ./logs directory. The path that you set must exist and Mattermost must have write permissions in it.",
- "admin.log.locationPlaceholder": "Enter your file location",
- "admin.log.locationTitle": "File Log Directory:",
- "admin.log.logSettings": "Log Settings",
- "admin.logs.bannerDesc": "To look up users by User ID or Token ID, go to Reporting > Users and paste the ID into the search filter.",
- "admin.logs.reload": "Reload",
- "admin.logs.title": "Server Logs",
- "admin.manage_roles.additionalRoles": "Select additional permissions for the account. Read more about roles and permissions.",
- "admin.manage_roles.allowUserAccessTokens": "Allow this account to generate personal access tokens.",
- "admin.manage_roles.cancel": "Cancel",
- "admin.manage_roles.manageRolesTitle": "Manage Roles",
- "admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Access to post to all Mattermost channels including direct messages.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Save",
- "admin.manage_roles.saveError": "Unable to save roles.",
- "admin.manage_roles.systemAdmin": "System Admin",
- "admin.manage_roles.systemMember": "Member",
- "admin.manage_tokens.manageTokensTitle": "Manage Personal Access Tokens",
- "admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to interact with this Mattermost server. Learn more about personal access tokens.",
- "admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
- "admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see documentation to learn more about configuring performance monitoring for Mattermost.",
- "admin.metrics.enableTitle": "Enable Performance Monitoring:",
- "admin.metrics.listenAddressDesc": "The address the server will listen on to expose performance metrics.",
- "admin.metrics.listenAddressEx": "E.g.: \":8067\"",
- "admin.metrics.listenAddressTitle": "Listen Address:",
- "admin.mfa.bannerDesc": "Multi-factor authentication is available for accounts with AD/LDAP or email login. If other login methods are used, MFA should be configured with the authentication provider.",
- "admin.mfa.cluster": "High",
- "admin.mfa.title": "Multi-factor Authentication",
- "admin.nav.administratorsGuide": "Administrator's Guide",
- "admin.nav.commercialSupport": "Commercial Support",
- "admin.nav.help": "Help",
- "admin.nav.logout": "Logout",
- "admin.nav.report": "Report a Problem",
- "admin.nav.switch": "Team Selection",
- "admin.nav.troubleshootingForum": "Troubleshooting Forum",
- "admin.notifications.email": "Email",
- "admin.notifications.push": "Mobile Push",
- "admin.notifications.title": "Notification Settings",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Do not allow sign-in via an OAuth 2.0 provider",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "When true, Mattermost can act as an OAuth 2.0 service provider allowing Mattermost to authorize API requests from external applications. See documentation to learn more.",
- "admin.oauth.providerTitle": "Enable OAuth 2.0 Service Provider: ",
- "admin.oauth.select": "Select OAuth 2.0 service provider:",
- "admin.office365.EnableHtmlDesc": "
Log in to your Microsoft or Office 365 account. Make sure it's the account on the same tenant that you would like users to log in with.
Go to https://apps.dev.microsoft.com, click Go to app list > Add an app and use \"Mattermost - your-company-name\" as the Application Name.
Under Application Secrets, click Generate New Password and paste it to the Application Secret Password field below.
Under Platforms, click Add Platform, choose Web and enter your-mattermost-url/signup/office365/complete (example: http://localhost:8065/signup/office365/complete) under Redirect URIs. Also uncheck Allow Implicit Flow.
Finally, click Save and then paste the Application ID below.
",
- "admin.office365.authTitle": "Auth Endpoint:",
- "admin.office365.clientIdDescription": "The Application/Client ID you received when registering your application with Microsoft.",
- "admin.office365.clientIdExample": "E.g.: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "Application ID:",
- "admin.office365.clientSecretDescription": "The Application Secret Password you generated when registering your application with Microsoft.",
- "admin.office365.clientSecretExample": "E.g.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Application Secret Password:",
- "admin.office365.tokenTitle": "Token Endpoint:",
- "admin.office365.userTitle": "User API Endpoint:",
- "admin.password.lowercase": "At least one lowercase letter",
- "admin.password.minimumLength": "Minimum Password Length:",
- "admin.password.minimumLengthDescription": "Minimum number of characters required for a valid password. Must be a whole number greater than or equal to {min} and less than or equal to {max}.",
- "admin.password.minimumLengthExample": "E.g.: \"5\"",
- "admin.password.number": "At least one number",
- "admin.password.preview": "Error message preview",
- "admin.password.requirements": "Password Requirements:",
- "admin.password.requirementsDescription": "Character types required in a valid password.",
- "admin.password.symbol": "At least one symbol (e.g. \"~!@#$%^&*()\")",
- "admin.password.uppercase": "At least one uppercase letter",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "When true, you can configure JIRA webhooks to post message in Mattermost. To help combat phishing attacks, all posts are labelled by a BOT tag.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "This secret is used to authenticate to Mattermost.",
- "admin.plugins.jira.secretLabel": "Secret:",
- "admin.plugins.jira.secretParamPlaceholder": "secret",
- "admin.plugins.jira.secretRegenerateDescription": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing JIRA integrations.",
- "admin.plugins.jira.setupDescription": "Use this webhook URL to set up the JIRA integration. See {webhookDocsLink} to learn more.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Select the username that this integration is attached to.",
- "admin.plugins.jira.userLabel": "User:",
- "admin.plugins.jira.webhookDocsLink": "documentation",
- "admin.privacy.showEmailDescription": "When false, hides the email address of members from everyone except System Administrators.",
- "admin.privacy.showEmailTitle": "Show Email Address: ",
- "admin.privacy.showFullNameDescription": "When false, hides the full name of members from everyone except System Administrators. Username is shown in place of full name.",
- "admin.privacy.showFullNameTitle": "Show Full Name: ",
- "admin.purge.button": "Purge All Caches",
- "admin.purge.loading": " Loading...",
- "admin.purge.purgeDescription": "This will purge all the in-memory caches for things like sessions, accounts, channels, etc. Deployments using High Availability will attempt to purge all the servers in the cluster. Purging the caches may adversly impact performance.",
- "admin.purge.purgeFail": "Purging unsuccessful: {error}",
- "admin.rate.enableLimiterDescription": "When true, APIs are throttled at rates specified below.",
- "admin.rate.enableLimiterTitle": "Enable Rate Limiting: ",
- "admin.rate.httpHeaderDescription": "When filled in, vary rate limiting by HTTP header field specified (e.g. when configuring NGINX set to \"X-Real-IP\", when configuring AmazonELB set to \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "E.g.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Vary rate limit by HTTP header:",
- "admin.rate.maxBurst": "Maximum Burst Size:",
- "admin.rate.maxBurstDescription": "Maximum number of requests allowed beyond the per second query limit.",
- "admin.rate.maxBurstExample": "E.g.: \"100\"",
- "admin.rate.memoryDescription": "Maximum number of users sessions connected to the system as determined by \"Vary rate limit by remote address\" and \"Vary rate limit by HTTP header\" settings below.",
- "admin.rate.memoryExample": "E.g.: \"10000\"",
- "admin.rate.memoryTitle": "Memory Store Size:",
- "admin.rate.noteDescription": "Changing properties other than Site URL in this section will require a server restart before taking effect.",
- "admin.rate.noteTitle": "Note:",
- "admin.rate.queriesDescription": "Throttles API at this number of requests per second.",
- "admin.rate.queriesExample": "E.g.: \"10\"",
- "admin.rate.queriesTitle": "Maximum Queries per Second:",
- "admin.rate.remoteDescription": "When true, rate limit API access by IP address.",
- "admin.rate.remoteTitle": "Vary rate limit by remote address: ",
- "admin.rate.title": "Rate Limit Settings",
- "admin.recycle.button": "Recycle Database Connections",
- "admin.recycle.loading": " Recycling...",
- "admin.recycle.recycleDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the {reloadConfiguration} feature to load the new settings while the server is running. The administrator should then use {featureName} feature to recycle the database connections based on the new settings.",
- "admin.recycle.recycleDescription.featureName": "Recycle Database Connections",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuration > Reload Configuration from Disk",
- "admin.recycle.reloadFail": "Recycling unsuccessful: {error}",
- "admin.regenerate": "Regenerate",
- "admin.reload.button": "Reload Configuration From Disk",
- "admin.reload.loading": " Loading...",
- "admin.reload.reloadDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the {featureName} feature to load the new settings while the server is running. The administrator should then use the {recycleDatabaseConnections} feature to recycle the database connections based on the new settings.",
- "admin.reload.reloadDescription.featureName": "Reload Configuration from Disk",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Database > Recycle Database Connections",
- "admin.reload.reloadFail": "Reloading unsuccessful: {error}",
- "admin.requestButton.loading": " Loading...",
- "admin.requestButton.requestFailure": "Test Failure: {error}",
- "admin.requestButton.requestSuccess": "Test Successful",
- "admin.reset_password.close": "Close",
- "admin.reset_password.newPassword": "New Password",
- "admin.reset_password.select": "Select",
- "admin.reset_password.submit": "Please enter at least {chars} characters.",
- "admin.reset_password.titleReset": "Reset Password",
- "admin.reset_password.titleSwitch": "Switch Account to Email/Password",
- "admin.saml.assertionConsumerServiceURLDesc": "Enter https:///login/sso/saml. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. This field is also known as the Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "E.g.: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Service Provider Login URL:",
- "admin.saml.bannerDesc": "User attributes in SAML server, including user deactivation or removal, are updated in Mattermost during user login. Learn more at: https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "The attribute in the SAML Assertion that will be used to populate the email addresses of users in Mattermost.",
- "admin.saml.emailAttrEx": "E.g.: \"Email\" or \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "Email Attribute:",
- "admin.saml.enableDescription": "When true, Mattermost allows login using SAML 2.0. Please see documentation to learn more about configuring SAML for Mattermost.",
- "admin.saml.enableTitle": "Enable Login With SAML 2.0:",
- "admin.saml.encryptDescription": "When false, Mattermost will not decrypt SAML Assertions encrypted with your Service Provider Public Certificate. Not recommended for production environments. For testing only.",
- "admin.saml.encryptTitle": "Enable Encryption:",
- "admin.saml.firstnameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the first name of users in Mattermost.",
- "admin.saml.firstnameAttrEx": "E.g.: \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "First Name Attribute:",
- "admin.saml.idpCertificateFileDesc": "The public authentication certificate issued by your Identity Provider.",
- "admin.saml.idpCertificateFileRemoveDesc": "Remove the public authentication certificate issued by your Identity Provider.",
- "admin.saml.idpCertificateFileTitle": "Identity Provider Public Certificate:",
- "admin.saml.idpDescriptorUrlDesc": "The issuer URL for the Identity Provider you use for SAML requests.",
- "admin.saml.idpDescriptorUrlEx": "E.g.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "Identity Provider Issuer URL:",
- "admin.saml.idpUrlDesc": "The URL where Mattermost sends a SAML request to start login sequence.",
- "admin.saml.idpUrlEx": "E.g.: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the last name of users in Mattermost.",
- "admin.saml.lastnameAttrEx": "E.g.: \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Last Name Attribute:",
- "admin.saml.localeAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the language of users in Mattermost.",
- "admin.saml.localeAttrEx": "E.g.: \"Locale\" or \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Preferred Language Attribute:",
- "admin.saml.loginButtonTextDesc": "(Optional) The text that appears in the login button on the login page. Defaults to \"With SAML\".",
- "admin.saml.loginButtonTextEx": "E.g.: \"With OKTA\"",
- "admin.saml.loginButtonTextTitle": "Login Button Text:",
- "admin.saml.nicknameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the nickname of users in Mattermost.",
- "admin.saml.nicknameAttrEx": "E.g.: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Nickname Attribute:",
- "admin.saml.positionAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the position of users in Mattermost.",
- "admin.saml.positionAttrEx": "E.g.: \"Role\"",
- "admin.saml.positionAttrTitle": "Position Attribute:",
- "admin.saml.privateKeyFileFileDesc": "The private key used to decrypt SAML Assertions from the Identity Provider.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Remove the private key used to decrypt SAML Assertions from the Identity Provider.",
- "admin.saml.privateKeyFileTitle": "Service Provider Private Key:",
- "admin.saml.publicCertificateFileDesc": "The certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
- "admin.saml.publicCertificateFileRemoveDesc": "Remove the certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
- "admin.saml.publicCertificateFileTitle": "Service Provider Public Certificate:",
- "admin.saml.remove.idp_certificate": "Remove Identity Provider Certificate",
- "admin.saml.remove.privKey": "Remove Service Provider Private Key",
- "admin.saml.remove.sp_certificate": "Remove Service Provider Certificate",
- "admin.saml.removing.certificate": "Removing Certificate...",
- "admin.saml.removing.privKey": "Removing Private Key...",
- "admin.saml.uploading.certificate": "Uploading Certificate...",
- "admin.saml.uploading.privateKey": "Uploading Private Key...",
- "admin.saml.usernameAttrDesc": "The attribute in the SAML Assertion that will be used to populate the username field in Mattermost.",
- "admin.saml.usernameAttrEx": "E.g.: \"Username\"",
- "admin.saml.usernameAttrTitle": "Username Attribute:",
- "admin.saml.verifyDescription": "When false, Mattermost will not verify that the signature sent from a SAML Response matches the Service Provider Login URL. Not recommended for production environments. For testing only.",
- "admin.saml.verifyTitle": "Verify Signature:",
- "admin.save": "Save",
- "admin.saving": "Saving Config...",
- "admin.security.connection": "Connections",
- "admin.security.inviteSalt.disabled": "Invite salt cannot be changed while sending emails is disabled.",
- "admin.security.login": "Login",
- "admin.security.password": "Password",
- "admin.security.passwordResetSalt.disabled": "Password reset salt cannot be changed while sending emails is disabled.",
- "admin.security.public_links": "Public Links",
- "admin.security.requireEmailVerification.disabled": "Email verification cannot be changed while sending emails is disabled.",
- "admin.security.session": "Sessions",
- "admin.security.signup": "Signup",
- "admin.select_team.close": "Close",
- "admin.select_team.select": "Select",
- "admin.select_team.selectTeam": "Select Team",
- "admin.service.attemptDescription": "Number of login attempts allowed before a user is locked out and required to reset their password via email.",
- "admin.service.attemptExample": "E.g.: \"10\"",
- "admin.service.attemptTitle": "Maximum Login Attempts:",
- "admin.service.cmdsDesc": "When true, custom slash commands will be allowed. See documentation to learn more.",
- "admin.service.cmdsTitle": "Enable Custom Slash Commands: ",
- "admin.service.corsDescription": "Enable HTTP Cross origin request from a specific domain. Use \"*\" if you want to allow CORS from any domain or leave it blank to disable it.",
- "admin.service.corsEx": "http://example.com",
- "admin.service.corsTitle": "Enable cross-origin requests from:",
- "admin.service.developerDesc": "When true, JavaScript errors are shown in a purple bar at the top of the user interface. Not recommended for use in production. ",
- "admin.service.developerTitle": "Enable Developer Mode: ",
- "admin.service.enableAPIv3": "Allow use of API v3 endpoints:",
- "admin.service.enableAPIv3Description": "Set to false to disable all version 3 endpoints of the REST API. Integrations that rely on API v3 will fail and can then be identified for migration to API v4. API v3 is deprecated and will be removed in the near future. See https://api.mattermost.com for details.",
- "admin.service.enforceMfaDesc": "When true, multi-factor authentication is required for login. New users will be required to configure MFA on signup. Logged in users without MFA configured are redirected to the MFA setup page until configuration is complete.
If your system has users with login methods other than AD/LDAP and email, MFA must be enforced with the authentication provider outside of Mattermost.",
- "admin.service.enforceMfaTitle": "Enforce Multi-factor Authentication:",
- "admin.service.forward80To443": "Forward port 80 to 443:",
- "admin.service.forward80To443Description": "Forwards all insecure traffic from port 80 to secure port 443",
- "admin.service.googleDescription": "Set this key to enable the display of titles for embedded YouTube video previews. Without the key, YouTube previews will still be created based on hyperlinks appearing in messages or comments but they will not show the video title. View a Google Developers Tutorial for instructions on how to obtain a key.",
- "admin.service.googleExample": "E.g.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Google API Key:",
- "admin.service.iconDescription": "When true, webhooks, slash commands and other integrations, such as Zapier, will be allowed to change the profile picture they post with. Note: Combined with allowing integrations to override usernames, users may be able to perform phishing attacks by attempting to impersonate other users.",
- "admin.service.iconTitle": "Enable integrations to override profile picture icons:",
- "admin.service.insecureTlsDesc": "When true, any outgoing HTTPS requests will accept unverified, self-signed certificates. For example, outgoing webhooks to a server with a self-signed TLS certificate, using any domain, will be allowed. Note that this makes these connections susceptible to man-in-the-middle attacks.",
- "admin.service.insecureTlsTitle": "Enable Insecure Outgoing Connections: ",
- "admin.service.integrationAdmin": "Restrict managing integrations to Admins:",
- "admin.service.integrationAdminDesc": "When true, webhooks and slash commands can only be created, edited and viewed by Team and System Admins, and OAuth 2.0 applications by System Admins. Integrations are available to all users after they have been created by the Admin.",
- "admin.service.internalConnectionsDesc": "In testing environments, such as when developing integrations locally on a development machine, use this setting to specify domains, IP addresses, or CIDR notations to allow internal connections. Not recommended for use in production, since this can allow a user to extract confidential data from your server or internal network.
By default, user-supplied URLs such as those used for Open Graph metadata, webhooks, or slash commands will not be allowed to connect to reserved IP addresses including loopback or link-local addresses used for internal networks. Push notification, OAuth 2.0 and WebRTC server URLs are trusted and not affected by this setting.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Allow untrusted internal connections to: ",
- "admin.service.letsEncryptCertificateCacheFile": "Let's Encrypt Certificate Cache File:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Certificates retrieved and other data about the Let's Encrypt service will be stored in this file.",
- "admin.service.listenAddress": "Listen Address:",
- "admin.service.listenDescription": "The address and port to which to bind and listen. Specifying \":8065\" will bind to all network interfaces. Specifying \"127.0.0.1:8065\" will only bind to the network interface having that IP address. If you choose a port of a lower level (called \"system ports\" or \"well-known ports\", in the range of 0-1023), you must have permissions to bind to that port. On Linux you can use: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" to allow Mattermost to bind to well-known ports.",
- "admin.service.listenExample": "E.g.: \":8065\"",
- "admin.service.mfaDesc": "When true, users with AD/LDAP or email login can add multi-factor authentication to their account using Google Authenticator.",
- "admin.service.mfaTitle": "Enable Multi-factor Authentication:",
- "admin.service.mobileSessionDays": "Session length mobile (days):",
- "admin.service.mobileSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.",
- "admin.service.outWebhooksDesc": "When true, outgoing webhooks will be allowed. See documentation to learn more.",
- "admin.service.outWebhooksTitle": "Enable Outgoing Webhooks: ",
- "admin.service.overrideDescription": "When true, webhooks, slash commands and other integrations, such as Zapier, will be allowed to change the username they are posting as. Note: Combined with allowing integrations to override profile picture icons, users may be able to perform phishing attacks by attempting to impersonate other users.",
- "admin.service.overrideTitle": "Enable integrations to override usernames:",
- "admin.service.readTimeout": "Read Timeout:",
- "admin.service.readTimeoutDescription": "Maximum time allowed from when the connection is accepted to when the request body is fully read.",
- "admin.service.securityDesc": "When true, System Administrators are notified by email if a relevant security fix alert has been announced in the last 12 hours. Requires email to be enabled.",
- "admin.service.securityTitle": "Enable Security Alerts: ",
- "admin.service.sessionCache": "Session Cache (minutes):",
- "admin.service.sessionCacheDesc": "The number of minutes to cache a session in memory.",
- "admin.service.sessionDaysEx": "E.g.: \"30\"",
- "admin.service.siteURL": "Site URL:",
- "admin.service.siteURLDescription": "The URL that users will use to access Mattermost. Standard ports, such as 80 and 443, can be omitted, but non-standard ports are required. For example: http://mattermost.example.com:8065. This setting is required.",
- "admin.service.siteURLExample": "E.g.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Session length SSO (days):",
- "admin.service.ssoSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. If the authentication method is SAML or GitLab, the user may automatically be logged back in to Mattermost if they are already logged in to SAML or GitLab. After changing this setting, the setting will take effect after the next time the user enters their credentials.",
- "admin.service.testingDescription": "When true, /test slash command is enabled to load test accounts, data and text formatting. Changing this requires a server restart before taking effect.",
- "admin.service.testingTitle": "Enable Testing Commands: ",
- "admin.service.tlsCertFile": "TLS Certificate File:",
- "admin.service.tlsCertFileDescription": "The certificate file to use.",
- "admin.service.tlsKeyFile": "TLS Key File:",
- "admin.service.tlsKeyFileDescription": "The private key file to use.",
- "admin.service.useLetsEncrypt": "Use Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Enable the automatic retreval of certificates from the Let's Encrypt. The certificate will be retrieved when a client attempts to connect from a new domain. This will work with multiple domains.",
- "admin.service.userAccessTokensDescLabel": "Name: ",
- "admin.service.userAccessTokensDescription": "When true, users can create personal access tokens for integrations in Account Settings > Security. They can be used to authenticate against the API and give full access to the account.
To manage who can create personal access tokens or to search users by token ID, go to the System Console > Users page.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Enable Personal Access Tokens: ",
- "admin.service.webSessionDays": "Session length AD/LDAP and email (days):",
- "admin.service.webSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.",
- "admin.service.webhooksDescription": "When true, incoming webhooks will be allowed. To help combat phishing attacks, all posts from webhooks will be labelled by a BOT tag. See documentation to learn more.",
- "admin.service.webhooksTitle": "Enable Incoming Webhooks: ",
- "admin.service.writeTimeout": "Write Timeout:",
- "admin.service.writeTimeoutDescription": "If using HTTP (insecure), this is the maximum time allowed from the end of reading the request headers until the response is written. If using HTTPS, it is the total time from when the connection is accepted until the response is written.",
- "admin.sidebar.advanced": "Advanced",
- "admin.sidebar.audits": "Compliance and Auditing",
- "admin.sidebar.authentication": "Authentication",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "High Availability",
- "admin.sidebar.compliance": "Compliance",
- "admin.sidebar.configuration": "Configuration",
- "admin.sidebar.connections": "Connections",
- "admin.sidebar.customBrand": "Custom Branding",
- "admin.sidebar.customIntegrations": "Custom Integrations",
- "admin.sidebar.customization": "Customization",
- "admin.sidebar.database": "Database",
- "admin.sidebar.developer": "Developer",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "Email",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "External Services",
- "admin.sidebar.plugins": "Plugins (Experimental)",
- "admin.sidebar.files": "Files",
- "admin.sidebar.general": "General",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integrations",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Legal and Support",
- "admin.sidebar.license": "Edition and License",
- "admin.sidebar.linkPreviews": "Link Previews",
- "admin.sidebar.localization": "Localization",
- "admin.sidebar.logging": "Logging",
- "admin.sidebar.login": "Login",
- "admin.sidebar.logs": "Logs",
- "admin.sidebar.metrics": "Performance Monitoring",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Mattermost App Links",
- "admin.sidebar.notifications": "Notifications",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "OTHER",
- "admin.sidebar.password": "Password",
- "admin.sidebar.policy": "Policy",
- "admin.sidebar.privacy": "Privacy",
- "admin.sidebar.publicLinks": "Public Links",
- "admin.sidebar.push": "Mobile Push",
- "admin.sidebar.rateLimiting": "Rate Limiting",
- "admin.sidebar.reports": "REPORTING",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Security",
- "admin.sidebar.sessions": "Sessions",
- "admin.sidebar.settings": "SETTINGS",
- "admin.sidebar.signUp": "Sign Up",
- "admin.sidebar.sign_up": "Sign Up",
- "admin.sidebar.statistics": "Team Statistics",
- "admin.sidebar.storage": "Storage",
- "admin.sidebar.support": "Legal and Support",
- "admin.sidebar.users": "Users",
- "admin.sidebar.usersAndTeams": "Users and Teams",
- "admin.sidebar.view_statistics": "Site Statistics",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "System Console",
- "admin.sql.dataSource": "Data Source:",
- "admin.sql.driverName": "Driver Name:",
- "admin.sql.keyDescription": "32-character salt available to encrypt and decrypt sensitive fields in database.",
- "admin.sql.keyExample": "E.g.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Encrypt Key:",
- "admin.sql.maxConnectionsDescription": "Maximum number of idle connections held open to the database.",
- "admin.sql.maxConnectionsExample": "E.g.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Maximum Idle Connections:",
- "admin.sql.maxOpenDescription": "Maximum number of open connections held open to the database.",
- "admin.sql.maxOpenExample": "E.g.: \"10\"",
- "admin.sql.maxOpenTitle": "Maximum Open Connections:",
- "admin.sql.noteDescription": "Changing properties in this section will require a server restart before taking effect.",
- "admin.sql.noteTitle": "Note:",
- "admin.sql.queryTimeoutDescription": "The number of seconds to wait for a response from the database after opening a connection and sending the query. Errors that you see in the UI or in the logs as a result of a query timeout can vary depending on the type of query.",
- "admin.sql.queryTimeoutExample": "E.g.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Query Timeout:",
- "admin.sql.replicas": "Data Source Replicas:",
- "admin.sql.traceDescription": "(Development Mode) When true, executing SQL statements are written to the log.",
- "admin.sql.traceTitle": "Trace: ",
- "admin.sql.warning": "Warning: regenerating this salt may cause some columns in the database to return empty results.",
- "admin.support.aboutDesc": "The URL for the About link on the Mattermost login and sign-up pages. If this field is empty, the About link is hidden from users.",
- "admin.support.aboutTitle": "About link:",
- "admin.support.emailHelp": "Email address displayed on email notifications and during tutorial for end users to ask support questions.",
- "admin.support.emailTitle": "Support Email:",
- "admin.support.helpDesc": "The URL for the Help link on the Mattermost login page, sign-up pages, and Main Menu. If this field is empty, the Help link is hidden from users.",
- "admin.support.helpTitle": "Help link:",
- "admin.support.noteDescription": "If linking to an external site, URLs should begin with http:// or https://.",
- "admin.support.noteTitle": "Note:",
- "admin.support.privacyDesc": "The URL for the Privacy link on the login and sign-up pages. If this field is empty, the Privacy link is hidden from users.",
- "admin.support.privacyTitle": "Privacy Policy link:",
- "admin.support.problemDesc": "The URL for the Report a Problem link in the Main Menu. If this field is empty, the link is removed from the Main Menu.",
- "admin.support.problemTitle": "Report a Problem link:",
- "admin.support.termsDesc": "Link to the terms under which users may use your online service. By default, this includes the \"Mattermost Conditions of Use (End Users)\" explaining the terms under which Mattermost software is provided to end users. If you change the default link to add your own terms for using the service you provide, your new terms must include a link to the default terms so end users are aware of the Mattermost Conditions of Use (End User) for Mattermost software.",
- "admin.support.termsTitle": "Terms of Service link:",
- "admin.system_analytics.activeUsers": "Active Users With Posts",
- "admin.system_analytics.title": "the System",
- "admin.system_analytics.totalPosts": "Total Posts",
- "admin.system_users.allUsers": "All Users",
- "admin.system_users.noTeams": "No Teams",
- "admin.system_users.title": "{siteName} Users",
- "admin.team.brandDesc": "Enable custom branding to show an image of your choice, uploaded below, and some help text, written below, on the login page.",
- "admin.team.brandDescriptionExample": "All team communication in one place, searchable and accessible anywhere",
- "admin.team.brandDescriptionHelp": "Description of service shown in login screens and UI. When not specified, \"All team communication in one place, searchable and accessible anywhere\" is displayed.",
- "admin.team.brandDescriptionTitle": "Site Description: ",
- "admin.team.brandImageTitle": "Custom Brand Image:",
- "admin.team.brandTextDescription": "Text that will appear below your custom brand image on your login screen. Supports Markdown-formatted text. Maximum 500 characters allowed.",
- "admin.team.brandTextTitle": "Custom Brand Text:",
- "admin.team.brandTitle": "Enable Custom Branding: ",
- "admin.team.chooseImage": "Choose New Image",
- "admin.team.dirDesc": "When true, teams that are configured to show in team directory will show on main page inplace of creating a new team.",
- "admin.team.dirTitle": "Enable Team Directory: ",
- "admin.team.maxChannelsDescription": "Maximum total number of channels per team, including both active and deleted channels.",
- "admin.team.maxChannelsExample": "E.g.: \"100\"",
- "admin.team.maxChannelsTitle": "Max Channels Per Team:",
- "admin.team.maxNotificationsPerChannelDescription": "Maximum total number of users in a channel before users typing messages, @all, @here, and @channel no longer send notifications because of performance.",
- "admin.team.maxNotificationsPerChannelExample": "E.g.: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Max Notifications Per Channel:",
- "admin.team.maxUsersDescription": "Maximum total number of users per team, including both active and inactive users.",
- "admin.team.maxUsersExample": "E.g.: \"25\"",
- "admin.team.maxUsersTitle": "Max Users Per Team:",
- "admin.team.noBrandImage": "No brand image uploaded",
- "admin.team.openServerDescription": "When true, anyone can signup for a user account on this server without the need to be invited.",
- "admin.team.openServerTitle": "Enable Open Server: ",
- "admin.team.restrictDescription": "Teams and user accounts can only be created from a specific domain (e.g. \"mattermost.org\") or list of comma-separated domains (e.g. \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Enable users to open Direct Message channels with:",
- "admin.team.restrictDirectMessageDesc": "'Any user on the Mattermost server' enables users to open a Direct Message channel with any user on the server, even if they are not on any teams together. 'Any member of the team' limits the ability to open Direct Message channels to only users who are in the same team.",
- "admin.team.restrictExample": "E.g.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "When true, You cannot create a team name with reserved words like www, admin, support, test, channel, etc",
- "admin.team.restrictNameTitle": "Restrict Team Names: ",
- "admin.team.restrictTitle": "Restrict account creation to specified email domains:",
- "admin.team.restrict_direct_message_any": "Any user on the Mattermost server",
- "admin.team.restrict_direct_message_team": "Any member of the team",
- "admin.team.showFullname": "Show first and last name",
- "admin.team.showNickname": "Show nickname if one exists, otherwise show first and last name",
- "admin.team.showUsername": "Show username (default)",
- "admin.team.siteNameDescription": "Name of service shown in login screens and UI.",
- "admin.team.siteNameExample": "E.g.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Site Name:",
- "admin.team.teamCreationDescription": "When false, only System Administrators can create teams.",
- "admin.team.teamCreationTitle": "Enable Team Creation: ",
- "admin.team.teammateNameDisplay": "Teammate Name Display:",
- "admin.team.teammateNameDisplayDesc": "Set how to display users' names in posts and the Direct Messages list.",
- "admin.team.upload": "Upload",
- "admin.team.uploadDesc": "Customize your user experience by adding a custom image to your login screen. Recommended maximum image size is less than 2 MB.",
- "admin.team.uploaded": "Uploaded!",
- "admin.team.uploading": "Uploading..",
- "admin.team.userCreationDescription": "When false, the ability to create accounts is disabled. The create account button displays error when pressed.",
- "admin.team.userCreationTitle": "Enable Account Creation: ",
- "admin.team_analytics.activeUsers": "Active Users With Posts",
- "admin.team_analytics.totalPosts": "Total Posts",
- "admin.true": "true",
- "admin.user_item.authServiceEmail": "Sign-in Method: Email",
- "admin.user_item.authServiceNotEmail": "Sign-in Method: {service}",
- "admin.user_item.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
- "admin.user_item.confirmDemoteRoleTitle": "Confirm demotion from System Admin role",
- "admin.user_item.confirmDemotion": "Confirm Demotion",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "Email: {email}",
- "admin.user_item.inactive": "Inactive",
- "admin.user_item.makeActive": "Activate",
- "admin.user_item.makeInactive": "Deactivate",
- "admin.user_item.makeMember": "Make Member",
- "admin.user_item.makeSysAdmin": "Make System Admin",
- "admin.user_item.makeTeamAdmin": "Make Team Admin",
- "admin.user_item.manageRoles": "Manage Roles",
- "admin.user_item.manageTeams": "Manage Teams",
- "admin.user_item.manageTokens": "Manage Tokens",
- "admin.user_item.member": "Member",
- "admin.user_item.mfaNo": "MFA: No",
- "admin.user_item.mfaYes": "MFA: Yes",
- "admin.user_item.resetMfa": "Remove MFA",
- "admin.user_item.resetPwd": "Reset Password",
- "admin.user_item.switchToEmail": "Switch to Email/Password",
- "admin.user_item.sysAdmin": "System Admin",
- "admin.user_item.teamAdmin": "Team Admin",
- "admin.user_item.userAccessTokenPostAll": "(with post:all personal access tokens)",
- "admin.user_item.userAccessTokenPostAllPublic": "(with post:channels personal access tokens)",
- "admin.user_item.userAccessTokenYes": "(with personal access tokens)",
- "admin.webrtc.enableDescription": "When true, Mattermost allows making one-on-one video calls. WebRTC calls are available on Chrome, Firefox and Mattermost Desktop Apps.",
- "admin.webrtc.enableTitle": "Enable Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Enter your admin secret password to access the Gateway Admin URL.",
- "admin.webrtc.gatewayAdminSecretExample": "E.g.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Gateway Admin Secret:",
- "admin.webrtc.gatewayAdminUrlDescription": "Enter https://:/admin. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. Mattermost WebRTC uses this URL to obtain valid tokens for each peer to establish the connection.",
- "admin.webrtc.gatewayAdminUrlExample": "E.g.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Gateway Admin URL:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Enter wss://:. Make sure you use WS or WSS in your URL depending on your server configuration. This is the WebSocket used to signal and establish communication between the peers.",
- "admin.webrtc.gatewayWebsocketUrlExample": "E.g.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway WebSocket URL:",
- "admin.webrtc.stunUriDescription": "Enter your STUN URI as stun::. STUN is a standardized network protocol to allow an end host to assist devices to access its public IP address if it is located behind a NAT.",
- "admin.webrtc.stunUriExample": "E.g.: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI:",
- "admin.webrtc.turnSharedKeyDescription": "Enter your TURN Server Shared Key. This is used to created dynamic passwords to establish the connection. Each password is valid for a short period of time.",
- "admin.webrtc.turnSharedKeyExample": "E.g.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "TURN Shared Key:",
- "admin.webrtc.turnUriDescription": "Enter your TURN URI as turn::. TURN is a standardized network protocol to allow an end host to assist devices to establish a connection by using a relay public IP address if it is located behind a symmetric NAT.",
- "admin.webrtc.turnUriExample": "E.g.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI:",
- "admin.webrtc.turnUsernameDescription": "Enter your TURN Server Username.",
- "admin.webrtc.turnUsernameExample": "E.g.: \"myusername\"",
- "admin.webrtc.turnUsernameTitle": "TURN Username:",
- "admin.webserverModeDisabled": "Disabled",
- "admin.webserverModeDisabledDescription": "The Mattermost server will not serve static files.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "The Mattermost server will serve static files compressed with gzip.",
- "admin.webserverModeHelpText": "gzip compression applies to static content files. It is recommended to enable gzip to improve performance unless your environment has specific restrictions, such as a web proxy that distributes gzip files poorly.",
- "admin.webserverModeTitle": "Webserver Mode:",
- "admin.webserverModeUncompressed": "Uncompressed",
- "admin.webserverModeUncompressedDescription": "The Mattermost server will serve static files uncompressed.",
- "analytics.chart.loading": "Loading...",
- "analytics.chart.meaningful": "Not enough data for a meaningful representation.",
- "analytics.system.activeUsers": "Active Users With Posts",
- "analytics.system.channelTypes": "Channel Types",
- "analytics.system.dailyActiveUsers": "Daily Active Users",
- "analytics.system.monthlyActiveUsers": "Monthly Active Users",
- "analytics.system.postTypes": "Posts, Files and Hashtags",
- "analytics.system.privateGroups": "Private Channels",
- "analytics.system.publicChannels": "Public Channels",
- "analytics.system.skippedIntensiveQueries": "To maximize performance, some statistics are disabled. You can re-enable them in config.json. See: https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Posts with Text-only",
- "analytics.system.title": "System Statistics",
- "analytics.system.totalChannels": "Total Channels",
- "analytics.system.totalCommands": "Total Commands",
- "analytics.system.totalFilePosts": "Posts with Files",
- "analytics.system.totalHashtagPosts": "Posts with Hashtags",
- "analytics.system.totalIncomingWebhooks": "Incoming Webhooks",
- "analytics.system.totalMasterDbConnections": "Master DB Conns",
- "analytics.system.totalOutgoingWebhooks": "Outgoing Webhooks",
- "analytics.system.totalPosts": "Total Posts",
- "analytics.system.totalReadDbConnections": "Replica DB Conns",
- "analytics.system.totalSessions": "Total Sessions",
- "analytics.system.totalTeams": "Total Teams",
- "analytics.system.totalUsers": "Total Users",
- "analytics.system.totalWebsockets": "WebSocket Conns",
- "analytics.team.activeUsers": "Active Users With Posts",
- "analytics.team.newlyCreated": "Newly Created Users",
- "analytics.team.noTeams": "There are no teams on this server for which to view statistics.",
- "analytics.team.privateGroups": "Private Channels",
- "analytics.team.publicChannels": "Public Channels",
- "analytics.team.recentActive": "Recent Active Users",
- "analytics.team.recentUsers": "Recent Active Users",
- "analytics.team.title": "Team Statistics for {team}",
- "analytics.team.totalPosts": "Total Posts",
- "analytics.team.totalUsers": "Total Users",
- "api.channel.add_member.added": "{addedUsername} added to the channel by {username}",
- "api.channel.delete_channel.archived": "{username} has archived the channel.",
- "api.channel.join_channel.post_and_forget": "{username} has joined the channel.",
- "api.channel.leave.left": "{username} has left the channel.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} updated the channel display name from: {old} to: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} removed the channel header (was: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} updated the channel header from: {old} to: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} updated the channel header to: {new}",
- "api.channel.remove_member.removed": "{removedUsername} was removed from the channel",
- "app.channel.post_update_channel_purpose_message.removed": "{username} removed the channel purpose (was: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} updated the channel purpose from: {old} to: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} updated the channel purpose to: {new}",
- "audit_table.accountActive": "Account activated",
- "audit_table.accountInactive": "Account deactivated",
- "audit_table.action": "Action",
- "audit_table.attemptedAllowOAuthAccess": "Attempted to allow a new OAuth service access",
- "audit_table.attemptedLicenseAdd": "Attempted to add new license",
- "audit_table.attemptedLogin": "Attempted to login",
- "audit_table.attemptedOAuthToken": "Attempted to get an OAuth access token",
- "audit_table.attemptedPassword": "Attempted to change password",
- "audit_table.attemptedRegisterApp": "Attempted to register a new OAuth Application with ID {id}",
- "audit_table.attemptedReset": "Attempted to reset password",
- "audit_table.attemptedWebhookCreate": "Attempted to create a webhook",
- "audit_table.attemptedWebhookDelete": "Attempted to delete a webhook",
- "audit_table.by": " by {username}",
- "audit_table.byAdmin": " by an admin",
- "audit_table.channelCreated": "Created the {channelName} channel",
- "audit_table.channelDeleted": "Deleted the channel with the URL {url}",
- "audit_table.establishedDM": "Established a direct message channel with {username}",
- "audit_table.failedExpiredLicenseAdd": "Failed to add a new license as it has either expired or not yet been started",
- "audit_table.failedInvalidLicenseAdd": "Failed to add an invalid license",
- "audit_table.failedLogin": "FAILED login attempt",
- "audit_table.failedOAuthAccess": "Failed to allow a new OAuth service access - the redirect URI did not match the previously registered callback",
- "audit_table.failedPassword": "Failed to change password - tried to update user password who was logged in through OAuth",
- "audit_table.failedWebhookCreate": "Failed to create a webhook - bad channel permissions",
- "audit_table.failedWebhookDelete": "Failed to delete a webhook - inappropriate conditions",
- "audit_table.headerUpdated": "Updated the {channelName} channel header",
- "audit_table.ip": "IP Address",
- "audit_table.licenseRemoved": "Successfully removed a license",
- "audit_table.loginAttempt": " (Login attempt)",
- "audit_table.loginFailure": " (Login failure)",
- "audit_table.logout": "Logged out of your account",
- "audit_table.member": "member",
- "audit_table.nameUpdated": "Updated the {channelName} channel name",
- "audit_table.oauthTokenFailed": "Failed to get an OAuth access token - {token}",
- "audit_table.revokedAll": "Revoked all current sessions for the team",
- "audit_table.sentEmail": "Sent an email to {email} to reset your password",
- "audit_table.session": "Session ID",
- "audit_table.sessionRevoked": "The session with id {sessionId} was revoked",
- "audit_table.successfullLicenseAdd": "Successfully added new license",
- "audit_table.successfullLogin": "Successfully logged in",
- "audit_table.successfullOAuthAccess": "Successfully gave a new OAuth service access",
- "audit_table.successfullOAuthToken": "Successfully added a new OAuth service",
- "audit_table.successfullPassword": "Successfully changed password",
- "audit_table.successfullReset": "Successfully reset password",
- "audit_table.successfullWebhookCreate": "Successfully created a webhook",
- "audit_table.successfullWebhookDelete": "Successfully deleted a webhook",
- "audit_table.timestamp": "Timestamp",
- "audit_table.updateGeneral": "Updated the general settings of your account",
- "audit_table.updateGlobalNotifications": "Updated your global notification settings",
- "audit_table.updatePicture": "Updated your profile picture",
- "audit_table.updatedRol": "Updated user role(s) to ",
- "audit_table.userAdded": "Added {username} to the {channelName} channel",
- "audit_table.userId": "User ID",
- "audit_table.userRemoved": "Removed {username} to the {channelName} channel",
- "audit_table.verified": "Sucessfully verified your email address",
- "authorize.access": "Allow {appName} access?",
- "authorize.allow": "Allow",
- "authorize.app": "The app {appName} would like the ability to access and modify your basic information.",
- "authorize.deny": "Deny",
- "authorize.title": "{appName} would like to connect to your Mattermost user account",
- "backstage_list.search": "Search",
- "backstage_navbar.backToMattermost": "Back to {siteName}",
- "backstage_sidebar.emoji": "Custom Emoji",
- "backstage_sidebar.integrations": "Integrations",
- "backstage_sidebar.integrations.commands": "Slash Commands",
- "backstage_sidebar.integrations.incoming_webhooks": "Incoming Webhooks",
- "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 Applications",
- "backstage_sidebar.integrations.outgoing_webhooks": "Outgoing Webhooks",
- "calling_screen": "Calling",
- "center_panel.recent": "Click here to jump to recent messages. ",
- "change_url.close": "Close",
- "change_url.endWithLetter": "URL must end with a letter or number.",
- "change_url.invalidUrl": "Invalid URL",
- "change_url.longer": "URL must be two or more characters.",
- "change_url.noUnderscore": "URL can not contain two underscores in a row.",
- "change_url.startWithLetter": "URL must start with a letter or number.",
- "change_url.urlLabel": "Channel URL",
- "channelHeader.addToFavorites": "Add to Favorites",
- "channelHeader.removeFromFavorites": "Remove from Favorites",
- "channel_flow.alreadyExist": "A channel with that URL already exists",
- "channel_flow.changeUrlDescription": "Some characters are not allowed in URLs and may be removed.",
- "channel_flow.changeUrlTitle": "Change Channel URL",
- "channel_flow.create": "Create Channel",
- "channel_flow.handleTooShort": "Channel URL must be 2 or more lowercase alphanumeric characters",
- "channel_flow.invalidName": "Invalid Channel Name",
- "channel_flow.set_url_title": "Set Channel URL",
- "channel_header.addChannelHeader": "Add a channel description",
- "channel_header.addMembers": "Add Members",
- "channel_header.addToFavorites": "Add to Favorites",
- "channel_header.channelHeader": "Edit Channel Header",
- "channel_header.channelMembers": "Members",
- "channel_header.delete": "Delete Channel",
- "channel_header.flagged": "Flagged Posts",
- "channel_header.leave": "Leave Channel",
- "channel_header.manageMembers": "Manage Members",
- "channel_header.notificationPreferences": "Notification Preferences",
- "channel_header.pinnedPosts": "Pinned Posts",
- "channel_header.recentMentions": "Recent Mentions",
- "channel_header.removeFromFavorites": "Remove from Favorites",
- "channel_header.rename": "Rename Channel",
- "channel_header.setHeader": "Edit Channel Header",
- "channel_header.setPurpose": "Edit Channel Purpose",
- "channel_header.viewInfo": "View Info",
- "channel_header.viewMembers": "View Members",
- "channel_header.webrtc.call": "Start Video Call",
- "channel_header.webrtc.offline": "The user is offline",
- "channel_header.webrtc.unavailable": "New call unavailable until your existing call ends",
- "channel_info.about": "About",
- "channel_info.close": "Close",
- "channel_info.header": "Header:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Name:",
- "channel_info.notFound": "No Channel Found",
- "channel_info.purpose": "Purpose:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Add",
- "channel_invite.addNewMembers": "Add New Members to ",
- "channel_invite.close": "Close",
- "channel_loader.connection_error": "There appears to be a problem with your internet connection.",
- "channel_loader.posted": "Posted",
- "channel_loader.postedImage": " posted an image",
- "channel_loader.socketError": "Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.",
- "channel_loader.someone": "Someone",
- "channel_loader.something": " did something new",
- "channel_loader.unknown_error": "We received an unexpected status code from the server.",
- "channel_loader.uploadedFile": " uploaded a file",
- "channel_loader.uploadedImage": " uploaded an image",
- "channel_loader.wrote": " wrote: ",
- "channel_members_dropdown.channel_admin": "Channel Admin",
- "channel_members_dropdown.channel_member": "Channel Member",
- "channel_members_dropdown.make_channel_admin": "Make Channel Admin",
- "channel_members_dropdown.make_channel_member": "Make Channel Member",
- "channel_members_dropdown.remove_from_channel": "Remove From Channel",
- "channel_members_dropdown.remove_member": "Remove Member",
- "channel_members_modal.addNew": " Add New Members",
- "channel_members_modal.members": " Members",
- "channel_modal.cancel": "Cancel",
- "channel_modal.createNew": "Create New Channel",
- "channel_modal.descriptionHelp": "Describe how this channel should be used.",
- "channel_modal.displayNameError": "Channel name must be 2 or more characters",
- "channel_modal.edit": "Edit",
- "channel_modal.header": "Header",
- "channel_modal.headerEx": "E.g.: \"[Link Title](http://example.com)\"",
- "channel_modal.headerHelp": "Set text that will appear in the header of the channel beside the channel name. For example, include frequently used links by typing [Link Title](http://example.com).",
- "channel_modal.modalTitle": "New Channel",
- "channel_modal.name": "Name",
- "channel_modal.nameEx": "E.g.: \"Bugs\", \"Marketing\", \"客户支持\"",
- "channel_modal.optional": "(optional)",
- "channel_modal.privateGroup1": "Create a new private channel with restricted membership. ",
- "channel_modal.privateGroup2": "Create a private channel",
- "channel_modal.publicChannel1": "Create a public channel",
- "channel_modal.publicChannel2": "Create a new public channel anyone can join. ",
- "channel_modal.purpose": "Purpose",
- "channel_modal.purposeEx": "E.g.: \"A channel to file bugs and improvements\"",
- "channel_notifications.allActivity": "For all activity",
- "channel_notifications.allUnread": "For all unread messages",
- "channel_notifications.globalDefault": "Global default ({notifyLevel})",
- "channel_notifications.markUnread": "Mark Channel Unread",
- "channel_notifications.never": "Never",
- "channel_notifications.onlyMentions": "Only for mentions",
- "channel_notifications.override": "Selecting an option other than \"Default\" will override the global notification settings. Desktop notifications are available on Firefox, Safari, and Chrome.",
- "channel_notifications.overridePush": "Selecting an option other than \"Global default\" will override the global notification settings for mobile push notifications in account settings. Push notifications must be enabled by the System Admin.",
- "channel_notifications.preferences": "Notification Preferences for ",
- "channel_notifications.push": "Send mobile push notifications",
- "channel_notifications.sendDesktop": "Send desktop notifications",
- "channel_notifications.unreadInfo": "The channel name is bolded in the sidebar when there are unread messages. Selecting \"Only for mentions\" will bold the channel only when you are mentioned.",
- "channel_select.placeholder": "--- Select a channel ---",
- "channel_switch_modal.dm": "(Direct Message)",
- "channel_switch_modal.failed_to_open": "Failed to open channel.",
- "channel_switch_modal.not_found": "No matches found.",
- "channel_switch_modal.submit": "Switch",
- "channel_switch_modal.title": "Switch Channels",
- "claim.account.noEmail": "No email specified",
- "claim.email_to_ldap.enterLdapPwd": "Enter the ID and password for your AD/LDAP account",
- "claim.email_to_ldap.enterPwd": "Enter the password for your {site} email account",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "Please enter your AD/LDAP ID.",
- "claim.email_to_ldap.ldapPasswordError": "Please enter your AD/LDAP password.",
- "claim.email_to_ldap.ldapPwd": "AD/LDAP Password",
- "claim.email_to_ldap.pwd": "Password",
- "claim.email_to_ldap.pwdError": "Please enter your password.",
- "claim.email_to_ldap.ssoNote": "You must already have a valid AD/LDAP account",
- "claim.email_to_ldap.ssoType": "Upon claiming your account, you will only be able to login with AD/LDAP",
- "claim.email_to_ldap.switchTo": "Switch account to AD/LDAP",
- "claim.email_to_ldap.title": "Switch Email/Password Account to AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Enter the password for your {site} account",
- "claim.email_to_oauth.pwd": "Password",
- "claim.email_to_oauth.pwdError": "Please enter your password.",
- "claim.email_to_oauth.ssoNote": "You must already have a valid {type} account",
- "claim.email_to_oauth.ssoType": "Upon claiming your account, you will only be able to login with {type} SSO",
- "claim.email_to_oauth.switchTo": "Switch account to {uiType}",
- "claim.email_to_oauth.title": "Switch Email/Password Account to {uiType}",
- "claim.ldap_to_email.confirm": "Confirm Password",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "Please enter your AD/LDAP password.",
- "claim.ldap_to_email.ldapPwd": "AD/LDAP Password",
- "claim.ldap_to_email.pwd": "Password",
- "claim.ldap_to_email.pwdError": "Please enter your password.",
- "claim.ldap_to_email.pwdNotMatch": "Passwords do not match.",
- "claim.ldap_to_email.switchTo": "Switch account to email/password",
- "claim.ldap_to_email.title": "Switch AD/LDAP Account to Email/Password",
- "claim.oauth_to_email.confirm": "Confirm Password",
- "claim.oauth_to_email.description": "Upon changing your account type, you will only be able to login with your email and password.",
- "claim.oauth_to_email.enterNewPwd": "Enter a new password for your {site} email account",
- "claim.oauth_to_email.enterPwd": "Please enter a password.",
- "claim.oauth_to_email.newPwd": "New Password",
- "claim.oauth_to_email.pwdNotMatch": "Password do not match.",
- "claim.oauth_to_email.switchTo": "Switch {type} to email and password",
- "claim.oauth_to_email.title": "Switch {type} Account to Email",
- "confirm_modal.cancel": "Cancel",
- "connecting_screen": "Connecting",
- "create_comment.addComment": "Add a comment...",
- "create_comment.comment": "Add Comment",
- "create_comment.commentLength": "Comment length must be less than {max} characters.",
- "create_comment.commentTitle": "Comment",
- "create_comment.file": "File uploading",
- "create_comment.files": "Files uploading",
- "create_post.comment": "Comment",
- "create_post.error_message": "Your message is too long. Character count: {length}/{limit}",
- "create_post.post": "Post",
- "create_post.shortcutsNotSupported": "Keyboard shortcuts are not supported on your device.",
- "create_post.tutorialTip": "
Sending Messages
Type here to write a message and press ENTER to post it.
Click the Attachment button to upload an image or a file.
",
- "create_post.write": "Write a message...",
- "create_team.agreement": "By proceeding to create your account and use {siteName}, you agree to our Terms of Service and Privacy Policy. If you do not agree, you cannot use {siteName}.",
- "create_team.display_name.charLength": "Name must be {min} or more characters up to a maximum of {max}. You can add a longer team description later.",
- "create_team.display_name.nameHelp": "Name your team in any language. Your team name shows in menus and headings.",
- "create_team.display_name.next": "Next",
- "create_team.display_name.required": "This field is required",
- "create_team.display_name.teamName": "Team Name",
- "create_team.team_url.back": "Back to previous step",
- "create_team.team_url.charLength": "Name must be {min} or more characters up to a maximum of {max}",
- "create_team.team_url.creatingTeam": "Creating team...",
- "create_team.team_url.finish": "Finish",
- "create_team.team_url.hint": "
Short and memorable is best
Use lowercase letters, numbers and dashes
Must start with a letter and can't end in a dash
",
- "create_team.team_url.regex": "Use only lower case letters, numbers and dashes. Must start with a letter and can't end in a dash.",
- "create_team.team_url.required": "This field is required",
- "create_team.team_url.taken": "This URL starts with a reserved word or is unavailable. Please try another.",
- "create_team.team_url.teamUrl": "Team URL",
- "create_team.team_url.unavailable": "This URL is taken or unavailable. Please try another.",
- "create_team.team_url.webAddress": "Choose the web address of your new team:",
- "custom_emoji.empty": "No custom emoji found",
- "custom_emoji.header": "Custom Emoji",
- "custom_emoji.search": "Search Custom Emoji",
- "deactivate_member_modal.cancel": "Cancel",
- "deactivate_member_modal.deactivate": "Deactivate",
- "deactivate_member_modal.desc": "This action deactivates {username}. They will be logged out and not have access to any teams or channels on this system. Are you sure you want to deactivate {username}?",
- "deactivate_member_modal.title": "Deactivate {username}",
- "default_channel.purpose": "Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.",
- "delete_channel.cancel": "Cancel",
- "delete_channel.confirm": "Confirm DELETE Channel",
- "delete_channel.del": "Delete",
- "delete_channel.question": "This will delete the channel from the team and make its contents inaccessible for all users.
Are you sure you wish to delete the {display_name} channel?",
- "delete_post.cancel": "Cancel",
- "delete_post.comment": "Comment",
- "delete_post.confirm": "Confirm {term} Delete",
- "delete_post.del": "Delete",
- "delete_post.post": "Post",
- "delete_post.question": "Are you sure you want to delete this {term}?",
- "delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
- "edit_channel_header.editHeader": "Edit the Channel Header...",
- "edit_channel_header.previewHeader": "Edit header",
- "edit_channel_header_modal.cancel": "Cancel",
- "edit_channel_header_modal.description": "Edit the text appearing next to the channel name in the channel header.",
- "edit_channel_header_modal.error": "This channel header is too long, please enter a shorter one",
- "edit_channel_header_modal.save": "Save",
- "edit_channel_header_modal.title": "Edit Header for {channel}",
- "edit_channel_header_modal.title_dm": "Edit Header",
- "edit_channel_private_purpose_modal.body": "This text appears in the \"View Info\" modal of the private channel.",
- "edit_channel_purpose_modal.body": "Describe how this channel should be used. This text appears in the channel list in the \"More...\" menu and helps others decide whether to join.",
- "edit_channel_purpose_modal.cancel": "Cancel",
- "edit_channel_purpose_modal.error": "This channel purpose is too long, please enter a shorter one",
- "edit_channel_purpose_modal.save": "Save",
- "edit_channel_purpose_modal.title1": "Edit Purpose",
- "edit_channel_purpose_modal.title2": "Edit Purpose for ",
- "edit_command.save": "Update",
- "edit_post.cancel": "Cancel",
- "edit_post.edit": "Edit {title}",
- "edit_post.editPost": "Edit the post...",
- "edit_post.save": "Save",
- "email_signup.address": "Email Address",
- "email_signup.createTeam": "Create Team",
- "email_signup.emailError": "Please enter a valid email address.",
- "email_signup.find": "Find my teams",
- "email_verify.almost": "{siteName}: You are almost done",
- "email_verify.failed": " Failed to send verification email.",
- "email_verify.notVerifiedBody": "Please verify your email address. Check your inbox for an email.",
- "email_verify.resend": "Resend Email",
- "email_verify.sent": " Verification email sent.",
- "email_verify.verified": "{siteName} Email Verified",
- "email_verify.verifiedBody": "
Your email has been verified! Click here to log in.
",
- "email_verify.verifyFailed": "Failed to verify your email.",
- "emoji_list.actions": "Actions",
- "emoji_list.add": "Add Custom Emoji",
- "emoji_list.creator": "Creator",
- "emoji_list.delete": "Delete",
- "emoji_list.delete.confirm.button": "Delete",
- "emoji_list.delete.confirm.msg": "This action permanently deletes the custom emoji. Are you sure you want to delete it?",
- "emoji_list.delete.confirm.title": "Delete Custom Emoji",
- "emoji_list.empty": "No Custom Emoji Found",
- "emoji_list.header": "Custom Emoji",
- "emoji_list.help": "Custom emoji are available to everyone on your server. Type ':' in a message box to bring up the emoji selection menu. Other users may need to refresh the page before new emojis appear.",
- "emoji_list.help2": "Tip: If you add #, ##, or ### as the first character on a new line containing emoji, you can use larger sized emoji. To try it out, send a message such as: '# :smile:'.",
- "emoji_list.image": "Image",
- "emoji_list.name": "Name",
- "emoji_list.search": "Search Custom Emoji",
- "emoji_list.somebody": "Somebody on another team",
- "emoji_picker.activity": "Activity",
- "emoji_picker.custom": "Custom",
- "emoji_picker.emojiPicker": "Emoji Picker",
- "emoji_picker.flags": "Flags",
- "emoji_picker.foods": "Foods",
- "emoji_picker.nature": "Nature",
- "emoji_picker.objects": "Objects",
- "emoji_picker.people": "People",
- "emoji_picker.places": "Places",
- "emoji_picker.recent": "Recently Used",
- "emoji_picker.search": "Search",
- "emoji_picker.symbols": "Symbols",
- "error.generic.title": "Error",
- "error.generic.message": "An error has occurred.",
- "error.generic.link_message": "Back to Mattermost",
- "error.generic.link": "Back to Mattermost",
- "error.generic.message": "An error has occurred.",
- "error.local_storage.help1": "Enable cookies",
- "error.local_storage.help2": "Turn off private browsing",
- "error.local_storage.help3": "Use a supported browser (IE 11, Chrome 43+, Firefox 52+, Safari 9, Edge 40+)",
- "error.local_storage.message": "Mattermost was unable to load because a setting in your browser prevents the use of its local storage features. To allow Mattermost to load, try the following actions:",
- "error.not_found.link_message": "Back to Mattermost",
- "error.not_found.message": "The page you were trying to reach does not exist",
- "error.not_found.title": "Page not found",
- "error.oauth_missing_code": "The service provider {service} did not provide an authorization code in the redirect URL.",
- "error.oauth_missing_code.forum": "If you reviewed the above and are still having trouble with configuration, you may post in our {link} where we'll be happy to help with issues during setup.",
- "error.oauth_missing_code.forum.link": "Troubleshooting forum",
- "error.oauth_missing_code.gitlab": "For {link} please make sure you followed the setup instructions.",
- "error.oauth_missing_code.gitlab.link": "GitLab",
- "error.oauth_missing_code.google": "For {link} make sure your administrator enabled the Google+ API.",
- "error.oauth_missing_code.google.link": "Google Apps",
- "error.oauth_missing_code.office365": "For {link} make sure the administrator of your Microsoft organization has enabled the Mattermost app.",
- "error.oauth_missing_code.office365.link": "Office 365",
- "error_bar.expired": "Enterprise license is expired and some features may be disabled. Please renew.",
- "error_bar.expiring": "Enterprise license expires on {date}. Please renew.",
- "error_bar.past_grace": "Enterprise license is expired and some features may be disabled. Please contact your System Administrator for details.",
- "error_bar.preview_mode": "Preview Mode: Email notifications have not been configured",
- "error_bar.site_url": "Please configure your {docsLink} in the {link}.",
- "error_bar.site_url.docsLink": "Site URL",
- "error_bar.site_url.link": "System Console",
- "error_bar.site_url_gitlab": "Please configure your {docsLink} in the System Console or in gitlab.rb if you're using GitLab Mattermost.",
- "file_attachment.download": "Download",
- "file_info_preview.size": "Size ",
- "file_info_preview.type": "File type ",
- "file_upload.disabled": "File attachments are disabled.",
- "file_upload.fileAbove": "File above {max}MB cannot be uploaded: {filename}",
- "file_upload.filesAbove": "Files above {max}MB cannot be uploaded: {filenames}",
- "file_upload.limited": "Uploads limited to {count, number} files maximum. Please use additional posts for more files.",
- "file_upload.pasted": "Image Pasted at ",
- "filtered_channels_list.search": "Search channels",
- "filtered_user_list.any_team": "All Users",
- "filtered_user_list.count": "{count, number} {count, plural, one {member} other {members}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {member} other {members}} of {total, number} total",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {member} other {members}} of {total, number} total",
- "filtered_user_list.member": "Member",
- "filtered_user_list.next": "Next",
- "filtered_user_list.prev": "Previous",
- "filtered_user_list.search": "Search users",
- "filtered_user_list.searchButton": "Search",
- "filtered_user_list.show": "Filter:",
- "filtered_user_list.team_only": "Members of this Team",
- "find_team.email": "Email",
- "find_team.findDescription": "An email was sent with links to any teams to which you are a member.",
- "find_team.findTitle": "Find Your Team",
- "find_team.getLinks": "Get an email with links to any teams to which you are a member.",
- "find_team.placeholder": "you@domain.com",
- "find_team.send": "Send",
- "find_team.submitError": "Please enter a valid email address",
- "flag_post.flag": "Flag for follow up",
- "flag_post.unflag": "Unflag",
- "general_tab.chooseDescription": "Please choose a new description for your team",
- "general_tab.codeDesc": "Click 'Edit' to regenerate Invite Code.",
- "general_tab.codeLongDesc": "The Invite Code is used as part of the URL in the team invitation link created by {getTeamInviteLink} in the main menu. Regenerating creates a new team invitation link and invalidates the previous link.",
- "general_tab.codeTitle": "Invite Code",
- "general_tab.emptyDescription": "Click 'Edit' to add a team description.",
- "general_tab.getTeamInviteLink": "Get Team Invite Link",
- "general_tab.includeDirDesc": "Including this team will display the team name from the Team Directory section of the Home Page, and provide a link to the sign-in page.",
- "general_tab.no": "No",
- "general_tab.openInviteDesc": "When allowed, a link to this team will be included on the landing page allowing anyone with an account to join this team.",
- "general_tab.openInviteTitle": "Allow any user with an account on this server to join this team",
- "general_tab.regenerate": "Regenerate",
- "general_tab.required": "This field is required",
- "general_tab.teamDescription": "Team Description",
- "general_tab.teamDescriptionInfo": "Team description provides additional information to help users select the right team. Maximum of 50 characters.",
- "general_tab.teamName": "Team Name",
- "general_tab.teamNameInfo": "Set the name of the team as it appears on your sign-in screen and at the top of the left-hand sidebar.",
- "general_tab.title": "General Settings",
- "general_tab.yes": "Yes",
- "get_app.alreadyHaveIt": "Already have it?",
- "get_app.androidAppName": "Mattermost for Android",
- "get_app.androidHeader": "Mattermost works best if you switch to our Android app",
- "get_app.continue": "continue",
- "get_app.continueWithBrowser": "Or {link}",
- "get_app.continueWithBrowserLink": "continue with browser",
- "get_app.iosHeader": "Mattermost works best if you switch to our iPhone app",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Open Mattermost",
- "get_link.clipboard": " Link copied",
- "get_link.close": "Close",
- "get_link.copy": "Copy Link",
- "get_post_link_modal.help": "The link below allows authorized users to see your post.",
- "get_post_link_modal.title": "Copy Permalink",
- "get_public_link_modal.help": "The link below allows anyone to see this file without being registered on this server.",
- "get_public_link_modal.title": "Copy Public Link",
- "get_team_invite_link_modal.help": "Send teammates the link below for them to sign-up to this team site. The Team Invite Link can be shared with multiple teammates as it does not change unless it's regenerated in Team Settings by a Team Admin.",
- "get_team_invite_link_modal.helpDisabled": "User creation has been disabled for your team. Please ask your Team Administrator for details.",
- "get_team_invite_link_modal.title": "Team Invite Link",
- "help.attaching.downloading": "#### Downloading Files\nDownload an attached file by clicking the download icon next to the file thumbnail or by opening the file previewer and clicking **Download**.",
- "help.attaching.dragdrop": "#### Drag and Drop\nUpload a file or selection of files by dragging the files from your computer into the right-hand sidebar or center pane. Dragging and dropping attaches the files to the message input box, then you can optionally type a message and press **ENTER** to post.",
- "help.attaching.icon": "#### Attachment Icon\nAlternatively, upload files by clicking the grey paperclip icon inside the message input box. This opens up your system file viewer where you can navigate to the desired files and then click **Open** to upload the files to the message input box. Optionally type a message and then press **ENTER** to post.",
- "help.attaching.limitations": "## File Size Limitations\nMattermost supports a maximum of five attached files per post, each with a maximum file size of 50Mb.",
- "help.attaching.methods": "## Attachment Methods\nAttach a file by drag and drop or by clicking the attachment icon in the message input box.",
- "help.attaching.notSupported": "Document preview (Word, Excel, PPT) is not yet supported.",
- "help.attaching.pasting": "#### Pasting Images\nOn Chrome and Edge browsers, it is also possible to upload files by pasting them from the clipboard. This is not yet supported on other browsers.",
- "help.attaching.previewer": "## File Previewer\nMattermost has a built in file previewer that is used to view media, download files and share public links. Click the thumbnail of an attached file to open it in the file previewer.",
- "help.attaching.publicLinks": "#### Sharing Public Links\nPublic links allow you to share file attachments with people outside your Mattermost team. Open the file previewer by clicking on the thumbnail of an attachment, then click **Get Public Link**. This opens a dialog box with a link to copy. When the link is shared and opened by another user, the file will automatically download.",
- "help.attaching.publicLinks2": "If **Get Public Link** is not visible in the file previewer and you prefer the feature enabled, you can request that your System Admin enable the feature from the System Console under **Security** > **Public Links**.",
- "help.attaching.supported": "#### Supported Media Types\nIf you are trying to preview a media type that is not supported, the file previewer will open a standard media attachment icon. Supported media formats depend heavily on your browser and operating system, but the following formats are supported by Mattermost on most browsers:",
- "help.attaching.supportedList": "- Images: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Documents: PDF",
- "help.attaching.title": "# Attaching Files\n_____",
- "help.commands.builtin": "## Built-in Commands\nThe following slash commands are available on all Mattermost installations:",
- "help.commands.builtin2": "Begin by typing `/` and a list of slash command options appears above the text input box. The autocomplete suggestions help by providing a format example in black text and a short description of the slash command in grey text.",
- "help.commands.custom": "## Custom Commands\nCustom slash commands integrate with external applications. For example, a team might configure a custom slash command to check internal health records with `/patient joe smith` or check the weekly weather forecast in a city with `/weather toronto week`. Check with your System Admin or open the autocomplete list by typing `/` to determine if your team configured any custom slash commands.",
- "help.commands.custom2": "Custom slash commands are disabled by default and can be enabled by the System Admin in the **System Console** > **Integrations** > **Webhooks and Commands**. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Slash commands perform operations in Mattermost by typing into the text input box. Enter a `/` followed by a command and some arguments to perform actions.\n\nBuilt-in slash commands come with all Mattermost installations and custom slash commands are configurable to interact with external applications. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Executing Commands\n___",
- "help.composing.deleting": "## Deleting a message\nDelete a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Delete**. System and Team Admins can delete any message on their system or team.",
- "help.composing.editing": "## Editing a Message\nEdit a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Edit**. After making modifications to the message text, press **ENTER** to save the modifications. Message edits do not trigger new @mention notifications, desktop notifications or notification sounds.",
- "help.composing.linking": "## Linking to a message\nThe **Permalink** feature creates a link to any message. Sharing this link with other users in the channel lets them view the linked message in the Message Archives. Users who are not a member of the channel where the message was posted cannot view the permalink. Get the permalink to any message by clicking the **[...]** icon next to the message text > **Permalink** > **Copy Link**.",
- "help.composing.posting": "## Posting a Message\nWrite a message by typing into the text input box, then press ENTER to send it. Use SHIFT+ENTER to create a new line without sending a message. To send messages by pressing CTRL+ENTER go to **Main Menu > Account Settings > Send messages on CTRL+ENTER**.",
- "help.composing.posts": "#### Posts\nPosts can be considered parent messages. They are the messages that often start a thread of replies. Posts are composed and sent from the text input box at the bottom of the center pane.",
- "help.composing.replies": "#### Replies\nReply to a message by clicking the reply icon next to any message text. This action opens the right-hand sidebar where you can see the message thread, then compose and send your reply. Replies are indented slightly in the center pane to indicate that they are child messages of a parent post.\n\nWhen composing a reply in the right-hand side, click the expand/collapse icon with two arrows at the top of the sidebar to make things easier to read.",
- "help.composing.title": "# Sending Messages\n_____",
- "help.composing.types": "## Message Types\nReply to posts to keep conversations organized in threads.",
- "help.formatting.checklist": "Make a task list by including square brackets:",
- "help.formatting.checklistExample": "- [ ] Item one\n- [ ] Item two\n- [x] Completed item",
- "help.formatting.code": "## Code Block\n\nCreate a code block by indenting each line by four spaces, or by placing ``` on the line above and below your code.",
- "help.formatting.codeBlock": "Code block",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nOpen the emoji autocomplete by typing `:`. A full list of emojis can be found [here](http://www.emoji-cheat-sheet.com/). It is also possible to create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html) if the emoji you want to use doesn't exist.",
- "help.formatting.example": "Example:",
- "help.formatting.githubTheme": "**GitHub Theme**",
- "help.formatting.headings": "## Headings\n\nMake a heading by typing # and a space before your title. For smaller headings, use more #’s.",
- "help.formatting.headings2": "Alternatively, you can underline the text using `===` or `---` to create headings.",
- "help.formatting.headings2Example": "Large Heading\n-------------",
- "help.formatting.headingsExample": "## Large Heading\n### Smaller Heading\n#### Even Smaller Heading",
- "help.formatting.images": "## In-line Images\n\nCreate in-line images using an `!` followed by the alt text in square brackets and the link in normal brackets. Add hover text by placing it in quotes after the link.",
- "help.formatting.imagesExample": "\n\nand\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## In-line Code\n\nCreate in-line monospaced font by surrounding it with backticks.",
- "help.formatting.intro": "Markdown makes it easy to format messages. Type a message as you normally would, and use these rules to render it with special formatting.",
- "help.formatting.lines": "## Lines\n\nCreate a line by using three `*`, `_`, or `-`.",
- "help.formatting.linkEx": "[Check out Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Links\n\nCreate labeled links by putting the desired text in square brackets and the associated link in normal brackets.",
- "help.formatting.listExample": "* list item one\n* list item two\n * item two sub-point",
- "help.formatting.lists": "## Lists\n\nCreate a list by using `*` or `-` as bullets. Indent a bullet point by adding two spaces in front of it.",
- "help.formatting.monokaiTheme": "**Monokai Theme**",
- "help.formatting.ordered": "Make it an ordered list by using numbers instead:",
- "help.formatting.orderedExample": "1. Item one\n2. Item two",
- "help.formatting.quotes": "## Block quotes\n\nCreate block quotes using `>`.",
- "help.formatting.quotesExample": "`> block quotes` renders as:",
- "help.formatting.quotesRender": "> block quotes",
- "help.formatting.renders": "Renders as:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark Theme**",
- "help.formatting.solirizedLightTheme": "**Solarized Light Theme**",
- "help.formatting.style": "## Text Style\n\nYou can use either `_` or `*` around a word to make it italic. Use two to make it bold.\n\n* `_italics_` renders as _italics_\n* `**bold**` renders as **bold**\n* `**_bold-italic_**` renders as **_bold-italics_**\n* `~~strikethrough~~` renders as ~~strikethrough~~",
- "help.formatting.supportedSyntax": "Supported languages are:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Syntax Highlighting\n\nTo add syntax highlighting, type the language to be highlighted after the ``` at the beginning of the code block. Mattermost also offers four different code themes (GitHub, Solarized Dark, Solarized Light, Monokai) that can be changed in **Account Settings** > **Display** > **Theme** > **Custom Theme** > **Center Channel Styles**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| Left-Aligned | Center Aligned | Right Aligned |\n| :------------ |:---------------:| -----:|\n| Left column 1 | this text | $100 |\n| Left column 2 | is | $10 |\n| Left column 3 | centered | $1 |",
- "help.formatting.tables": "## Tables\n\nCreate a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.",
- "help.formatting.title": "# Formatting Text\n_____",
- "help.learnMore": "Learn more about:",
- "help.link.attaching": "Attaching Files",
- "help.link.commands": "Executing Commands",
- "help.link.composing": "Composing Messages and Replies",
- "help.link.formatting": "Formatting Messages using Markdown",
- "help.link.mentioning": "Mentioning Teammates",
- "help.link.messaging": "Basic Messaging",
- "help.mentioning.channel": "#### @Channel\nYou can mention an entire channel by typing `@channel`. All members of the channel will receive a mention notification that behaves the same way as if the members had been mentioned personally.",
- "help.mentioning.channelExample": "@channel great work on interviews this week. I think we found some excellent potential candidates!",
- "help.mentioning.mentions": "## @Mentions\nUse @mentions to get the attention of specific team members.",
- "help.mentioning.recent": "## Recent Mentions\nClick `@` next to the search box to query for your most recent @mentions and words that trigger mentions. Click **Jump** next to a search result in the right-hand sidebar to jump the center pane to the channel and location of the message with the mention.",
- "help.mentioning.title": "# Mentioning Teammates\n_____",
- "help.mentioning.triggers": "## Words That Trigger Mentions\nIn addition to being notified by @username and @channel, you can customize words that trigger mention notifications in **Account Settings** > **Notifications** > **Words that trigger mentions**. By default, you will receive mention notifications on your first name, and you can add more words by typing them into the input box separated by commas. This is useful if you want to be notified of all posts on certain topics, for example, \"interviewing\" or \"marketing\".",
- "help.mentioning.username": "#### @Username\nYou can mention a teammate by using the `@` symbol plus their username to send them a mention notification.\n\nType `@` to bring up a list of team members who can be mentioned. To filter the list, type the first few letters of any username, first name, last name, or nickname. The **Up** and **Down** arrow keys can then be used to scroll through entries in the list, and pressing **ENTER** will select which user to mention. Once selected, the username will automatically replace the full name or nickname.\nThe following example sends a special mention notification to **alice** that alerts her of the channel and message where she has been mentioned. If **alice** is away from Mattermost and has [email notifications](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) turned on, then she will receive an email alert of her mention along with the message text.",
- "help.mentioning.usernameCont": "If the user you mentioned does not belong to the channel, a System Message will be posted to let you know. This is a temporary message only seen by the person who triggered it. To add the mentioned user to the channel, go to the dropdown menu beside the channel name and select **Add Members**.",
- "help.mentioning.usernameExample": "@alice how did your interview go with the new candidate?",
- "help.messaging.attach": "**Attach files** by dragging and dropping into Mattermost or clicking the attachment icon in the text input box.",
- "help.messaging.emoji": "**Quickly add emoji** by typing \":\", which will open an emoji autocomplete. If the existing emoji don't cover what you want to express, you can also create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Format your messages** using Markdown that supports text styling, headings, links, emoticons, code blocks, block quotes, tables, lists and in-line images.",
- "help.messaging.notify": "**Notify teammates** when they are needed by typing `@username`.",
- "help.messaging.reply": "**Reply to messages** by clicking the reply arrow next to the message text.",
- "help.messaging.title": "# Messaging Basics\n_____",
- "help.messaging.write": "**Write messages** using the text input box at the bottom of Mattermost. Press ENTER to send a message. Use SHIFT+ENTER to create a new line without sending a message.",
- "installed_command.header": "Slash Commands",
- "installed_commands.add": "Add Slash Command",
- "installed_commands.delete.confirm": "This action permanently deletes the slash command and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_commands.empty": "No commands found",
- "installed_commands.header": "Slash Commands",
- "installed_commands.help": "Use slash commands to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_commands.help.appDirectory": "App Directory",
- "installed_commands.help.buildYourOwn": "Build your own",
- "installed_commands.search": "Search Slash Commands",
- "installed_commands.unnamed_command": "Unnamed Slash Command",
- "installed_incoming_webhooks.add": "Add Incoming Webhook",
- "installed_incoming_webhooks.delete.confirm": "This action permanently deletes the incoming webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_incoming_webhooks.empty": "No incoming webhooks found",
- "installed_incoming_webhooks.header": "Incoming Webhooks",
- "installed_incoming_webhooks.help": "Use incoming webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_incoming_webhooks.help.appDirectory": "App Directory",
- "installed_incoming_webhooks.help.buildYourOwn": "Build your own",
- "installed_incoming_webhooks.search": "Search Incoming Webhooks",
- "installed_incoming_webhooks.unknown_channel": "A Private Webhook",
- "installed_integrations.callback_urls": "Callback URLs: {urls}",
- "installed_integrations.client_id": "Client ID: {clientId}",
- "installed_integrations.client_secret": "Client Secret: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Created by {creator} on {createAt, date, full}",
- "installed_integrations.delete": "Delete",
- "installed_integrations.edit": "Edit",
- "installed_integrations.hideSecret": "Hide Secret",
- "installed_integrations.regenSecret": "Regenerate Secret",
- "installed_integrations.regenToken": "Regenerate Token",
- "installed_integrations.showSecret": "Show Secret",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Trigger When: {triggerWhen}",
- "installed_integrations.triggerWords": "Trigger Words: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Unnamed OAuth 2.0 Application",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "Add OAuth 2.0 Application",
- "installed_oauth_apps.callbackUrls": "Callback URLs (One Per Line)",
- "installed_oauth_apps.cancel": "Cancel",
- "installed_oauth_apps.delete.confirm": "This action permanently deletes the OAuth 2.0 application and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_oauth_apps.description": "Description",
- "installed_oauth_apps.empty": "No OAuth 2.0 Applications found",
- "installed_oauth_apps.header": "OAuth 2.0 Applications",
- "installed_oauth_apps.help": "Create {oauthApplications} to securely integrate bots and third-party apps with Mattermost. Visit the {appDirectory} to find available self-hosted apps.",
- "installed_oauth_apps.help.appDirectory": "App Directory",
- "installed_oauth_apps.help.oauthApplications": "OAuth 2.0 applications",
- "installed_oauth_apps.homepage": "Homepage",
- "installed_oauth_apps.iconUrl": "Icon URL",
- "installed_oauth_apps.is_trusted": "Is Trusted: {isTrusted}",
- "installed_oauth_apps.name": "Display Name",
- "installed_oauth_apps.save": "Save",
- "installed_oauth_apps.search": "Search OAuth 2.0 Applications",
- "installed_oauth_apps.trusted": "Is Trusted",
- "installed_oauth_apps.trusted.no": "No",
- "installed_oauth_apps.trusted.yes": "Yes",
- "installed_outgoing_webhooks.add": "Add Outgoing Webhook",
- "installed_outgoing_webhooks.delete.confirm": "This action permanently deletes the outgoing webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_outgoing_webhooks.empty": "No outgoing webhooks found",
- "installed_outgoing_webhooks.header": "Outgoing Webhooks",
- "installed_outgoing_webhooks.help": "Use outgoing webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_outgoing_webhooks.help.appDirectory": "App Directory",
- "installed_outgoing_webhooks.help.buildYourOwn": "Build your own",
- "installed_outgoing_webhooks.search": "Search Outgoing Webhooks",
- "installed_outgoing_webhooks.unknown_channel": "A Private Webhook",
- "integrations.add": "Add",
- "integrations.command.description": "Slash commands send events to external integrations",
- "integrations.command.title": "Slash Command",
- "integrations.delete.confirm.button": "Delete",
- "integrations.delete.confirm.title": "Delete Integration",
- "integrations.done": "Done",
- "integrations.edit": "Edit",
- "integrations.header": "Integrations",
- "integrations.help": "Visit the {appDirectory} to find self-hosted, third-party apps and integrations for Mattermost.",
- "integrations.help.appDirectory": "App Directory",
- "integrations.incomingWebhook.description": "Incoming webhooks allow external integrations to send messages",
- "integrations.incomingWebhook.title": "Incoming Webhook",
- "integrations.oauthApps.description": "OAuth 2.0 allows external applications to make authorized requests to the Mattermost API.",
- "integrations.oauthApps.title": "OAuth 2.0 Applications",
- "integrations.outgoingWebhook.description": "Outgoing webhooks allow external integrations to receive and respond to messages",
- "integrations.outgoingWebhook.title": "Outgoing Webhook",
- "integrations.successful": "Setup Successful",
- "intro_messages.DM": "This is the start of your direct message history with {teammate}. Direct messages and files shared here are not shown to people outside this area.",
- "intro_messages.GM": "This is the start of your group message history with {names}. Messages and files shared here are not shown to people outside this area.",
- "intro_messages.anyMember": " Any member can join and read this channel.",
- "intro_messages.beginning": "Beginning of {name}",
- "intro_messages.channel": "channel",
- "intro_messages.creator": "This is the start of the {name} {type}, created by {creator} on {date}.",
- "intro_messages.default": "
Beginning of {display_name}
Welcome to {display_name}!
Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.
",
- "intro_messages.group": "private channel",
- "intro_messages.group_message": "This is the start of your group message history with these teammates. Messages and files shared here are not shown to people outside this area.",
- "intro_messages.invite": "Invite others to this {type}",
- "intro_messages.inviteOthers": "Invite others to this team",
- "intro_messages.noCreator": "This is the start of the {name} {type}, created on {date}.",
- "intro_messages.offTopic": "
Beginning of {display_name}
This is the start of {display_name}, a channel for non-work-related conversations.
",
- "intro_messages.onlyInvited": " Only invited members can see this private channel.",
- "intro_messages.purpose": " This {type}'s purpose is: {purpose}.",
- "intro_messages.setHeader": "Set a Header",
- "intro_messages.teammate": "This is the start of your direct message history with this teammate. Direct messages and files shared here are not shown to people outside this area.",
- "invite_member.addAnother": "Add another",
- "invite_member.autoJoin": "People invited automatically join the {channel} channel.",
- "invite_member.cancel": "Cancel",
- "invite_member.content": "Email is currently disabled for your team, and email invitations cannot be sent. Contact your System Administrator to enable email and email invitations.",
- "invite_member.disabled": "User creation has been disabled for your team. Please ask your Team Administrator for details.",
- "invite_member.emailError": "Please enter a valid email address",
- "invite_member.firstname": "First name",
- "invite_member.inviteLink": "Team Invite Link",
- "invite_member.lastname": "Last name",
- "invite_member.modalButton": "Yes, Discard",
- "invite_member.modalMessage": "You have unsent invitations, are you sure you want to discard them?",
- "invite_member.modalTitle": "Discard Invitations?",
- "invite_member.newMember": "Send Email Invite",
- "invite_member.send": "Send Invitation",
- "invite_member.send2": "Send Invitations",
- "invite_member.sending": " Sending",
- "invite_member.teamInviteLink": "You can also invite people using the {link}.",
- "ldap_signup.find": "Find my teams",
- "ldap_signup.ldap": "Create team with AD/LDAP Account",
- "ldap_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
- "ldap_signup.teamName": "Enter name of new team",
- "ldap_signup.team_error": "Please enter a team name",
- "leave_private_channel_modal.leave": "Yes, leave channel",
- "leave_private_channel_modal.message": "Are you sure you wish to leave the private channel {channel}? You must be re-invited in order to re-join this channel in the future.",
- "leave_private_channel_modal.title": "Leave Private Channel {channel}",
- "leave_team_modal.desc": "You will be removed from all public and private channels. If the team is private you will not be able to rejoin the team. Are you sure?",
- "leave_team_modal.no": "No",
- "leave_team_modal.title": "Leave the team?",
- "leave_team_modal.yes": "Yes",
- "loading_screen.loading": "Loading",
- "login.changed": " Sign-in method changed successfully",
- "login.create": "Create one now",
- "login.createTeam": "Create a new team",
- "login.createTeamAdminOnly": "This option is only available for System Administrators, and does not show up for other users.",
- "login.email": "Email",
- "login.find": "Find your other teams",
- "login.forgot": "I forgot my password",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Your password is incorrect.",
- "login.ldapUsername": "AD/LDAP Username",
- "login.ldapUsernameLower": "AD/LDAP username",
- "login.noAccount": "Don't have an account? ",
- "login.noEmail": "Please enter your email",
- "login.noEmailLdapUsername": "Please enter your email or {ldapUsername}",
- "login.noEmailUsername": "Please enter your email or username",
- "login.noEmailUsernameLdapUsername": "Please enter your email, username or {ldapUsername}",
- "login.noLdapUsername": "Please enter your {ldapUsername}",
- "login.noMethods": "No sign-in methods are enabled. Please contact your System Administrator.",
- "login.noPassword": "Please enter your password",
- "login.noUsername": "Please enter your username",
- "login.noUsernameLdapUsername": "Please enter your username or {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "on {siteName}",
- "login.or": "or",
- "login.password": "Password",
- "login.passwordChanged": " Password updated successfully",
- "login.placeholderOr": " or ",
- "login.session_expired": " Your session has expired. Please login again.",
- "login.signIn": "Sign in",
- "login.signInLoading": "Signing in...",
- "login.signInWith": "Sign in with:",
- "login.userNotFound": "We couldn't find an account matching your login credentials.",
- "login.username": "Username",
- "login.verified": " Email Verified",
- "login_mfa.enterToken": "To complete the sign in process, please enter a token from your smartphone's authenticator",
- "login_mfa.submit": "Submit",
- "login_mfa.token": "MFA Token",
- "login_mfa.tokenReq": "Please enter an MFA token",
- "member_item.makeAdmin": "Make Admin",
- "member_item.member": "Member",
- "member_list.noUsersAdd": "No users to add.",
- "members_popover.manageMembers": "Manage Members",
- "members_popover.msg": "Message",
- "members_popover.title": "Channel Members",
- "members_popover.viewMembers": "View Members",
- "mfa.confirm.complete": "Set up complete!",
- "mfa.confirm.okay": "Okay",
- "mfa.confirm.secure": "Your account is now secure. Next time you sign in, you will be asked to enter a code from the Google Authenticator app on your phone.",
- "mfa.setup.badCode": "Invalid code. If this issue persists, contact your System Administrator.",
- "mfa.setup.code": "MFA Code",
- "mfa.setup.codeError": "Please enter the code from Google Authenticator.",
- "mfa.setup.required": "Multi-factor authentication is required on {siteName}.",
- "mfa.setup.save": "Save",
- "mfa.setup.secret": "Secret: {secret}",
- "mfa.setup.step1": "Step 1: On your phone, download Google Authenticator from iTunes or Google Play",
- "mfa.setup.step2": "Step 2: Use Google Authenticator to scan this QR code, or manually type in the secret key",
- "mfa.setup.step3": "Step 3: Enter the code generated by Google Authenticator",
- "mfa.setupTitle": "Multi-factor Authentication Setup",
- "mobile.about.appVersion": "App Version: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved",
- "mobile.about.database": "Database: {type}",
- "mobile.about.serverVersion": "Server Version: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Server Version: {version}",
- "mobile.account.notifications.email.footer": "When offline or away for more than five minutes",
- "mobile.account_notifications.mentions_footer": "Your username (\"@{username}\") will always trigger mentions.",
- "mobile.account_notifications.non-case_sensitive_words": "Other non-case sensitive words...",
- "mobile.account_notifications.reply.header": "Send reply notifications for",
- "mobile.account_notifications.threads_mentions": "Mentions in threads",
- "mobile.account_notifications.threads_start": "Threads that I start",
- "mobile.account_notifications.threads_start_participate": "Threads that I start or participate in",
- "mobile.advanced_settings.reset_button": "Reset",
- "mobile.advanced_settings.reset_message": "\nThis will reset all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.advanced_settings.reset_title": "Reset Cache",
- "mobile.advanced_settings.title": "Advanced Settings",
- "mobile.channel_drawer.search": "Jump to a conversation",
- "mobile.channel_info.alertMessageDeleteChannel": "Are you sure you want to delete the {term} {name}?",
- "mobile.channel_info.alertMessageLeaveChannel": "Are you sure you want to leave the {term} {name}?",
- "mobile.channel_info.alertNo": "No",
- "mobile.channel_info.alertTitleDeleteChannel": "Delete {term}",
- "mobile.channel_info.alertTitleLeaveChannel": "Leave {term}",
- "mobile.channel_info.alertYes": "Yes",
- "mobile.channel_info.delete_failed": "We couldn't delete the channel {displayName}. Please check your connection and try again.",
- "mobile.channel_info.privateChannel": "Private Channel",
- "mobile.channel_info.publicChannel": "Public Channel",
- "mobile.channel_list.alertMessageLeaveChannel": "Are you sure you want to leave the {term} {name}?",
- "mobile.channel_list.alertNo": "No",
- "mobile.channel_list.alertTitleLeaveChannel": "Leave {term}",
- "mobile.channel_list.alertYes": "Yes",
- "mobile.channel_list.closeDM": "Close Direct Message",
- "mobile.channel_list.closeGM": "Close Group Message",
- "mobile.channel_list.dm": "Direct Message",
- "mobile.channel_list.gm": "Group Message",
- "mobile.channel_list.not_member": "NOT A MEMBER",
- "mobile.channel_list.open": "Open {term}",
- "mobile.channel_list.openDM": "Open Direct Message",
- "mobile.channel_list.openGM": "Open Group Message",
- "mobile.channel_list.privateChannel": "Private Channel",
- "mobile.channel_list.publicChannel": "Public Channel",
- "mobile.channel_list.unreads": "UNREADS",
- "mobile.components.channels_list_view.yourChannels": "Your channels:",
- "mobile.components.error_list.dismiss_all": "Dismiss All",
- "mobile.components.select_server_view.continue": "Continue",
- "mobile.components.select_server_view.enterServerUrl": "Enter Server URL",
- "mobile.components.select_server_view.proceed": "Proceed",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Create",
- "mobile.create_channel.private": "New Private Channel",
- "mobile.create_channel.public": "New Public Channel",
- "mobile.custom_list.no_results": "No Results",
- "mobile.drawer.teamsTitle": "Teams",
- "mobile.edit_post.title": "Editing Message",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Relaunch",
- "mobile.error_handler.description": "\nClick relaunch to open the app again. After restart, you can report the problem from the settings menu.\n",
- "mobile.error_handler.title": "Unexpected error occurred",
- "mobile.file_upload.camera": "Take Photo or Video",
- "mobile.file_upload.library": "Photo Library",
- "mobile.file_upload.more": "More",
- "mobile.file_upload.video": "Video Library",
- "mobile.help.title": "Help",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "This is the start of your direct message history with {teammate}. Direct messages and files shared here are not shown to people outside this area.",
- "mobile.intro_messages.default_message": "This is the first channel teammates see when they sign up - use it for posting updates everyone needs to know.",
- "mobile.intro_messages.default_welcome": "Welcome to {name}!",
- "mobile.join_channel.error": "We couldn't join the channel {displayName}. Please check your connection and try again.",
- "mobile.loading_channels": "Loading Channels...",
- "mobile.loading_members": "Loading Members...",
- "mobile.loading_posts": "Loading Messages...",
- "mobile.login_options.choose_title": "Choose your login method",
- "mobile.managed.blocked_by": "Blocked by {vendor}",
- "mobile.managed.exit": "Exit",
- "mobile.managed.jailbreak": "Jailbroken devices are not trusted by {vendor}, please exit the app.",
- "mobile.managed.secured_by": "Secured by {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Start",
- "mobile.more_dms.title": "New Conversation",
- "mobile.notice_mobile_link": "mobile apps",
- "mobile.notice_platform_link": "platform",
- "mobile.notice_text": "Mattermost is made possible by the open source software used in our {platform} and {mobile}.",
- "mobile.notification.in": " in ",
- "mobile.offlineIndicator.connected": "Connected",
- "mobile.offlineIndicator.connecting": "Connecting...",
- "mobile.offlineIndicator.offline": "No internet connection",
- "mobile.open_dm.error": "We couldn't open a direct message with {displayName}. Please check your connection and try again.",
- "mobile.open_gm.error": "We couldn't open a group message with those users. Please check your connection and try again.",
- "mobile.post.cancel": "Cancel",
- "mobile.post.delete_question": "Are you sure you want to delete this post?",
- "mobile.post.delete_title": "Delete Post",
- "mobile.post.failed_delete": "Delete Message",
- "mobile.post.failed_retry": "Try Again",
- "mobile.post.failed_title": "Unable to send your message",
- "mobile.post.retry": "Refresh",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Received invalid response from the server.",
- "mobile.routes.channelInfo": "Info",
- "mobile.routes.channelInfo.createdBy": "Created by {creator} on ",
- "mobile.routes.channelInfo.delete_channel": "Delete Channel",
- "mobile.routes.channelInfo.favorite": "Favorite",
- "mobile.routes.channel_members.action": "Remove Members",
- "mobile.routes.channel_members.action_message": "You must select at least one member to remove from the channel.",
- "mobile.routes.channel_members.action_message_confirm": "Are you sure you want to remove the selected members from the channel?",
- "mobile.routes.channels": "Channels",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Enter Server URL",
- "mobile.routes.login": "Login",
- "mobile.routes.loginOptions": "Login Chooser",
- "mobile.routes.mfa": "Multi-factor Authentication",
- "mobile.routes.postsList": "Posts List",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "Select Team",
- "mobile.routes.settings": "Settings",
- "mobile.routes.sso": "Single Sign-On",
- "mobile.routes.thread": "{channelName} Thread",
- "mobile.routes.thread_dm": "Direct Message Thread",
- "mobile.routes.user_profile": "Profile",
- "mobile.routes.user_profile.send_message": "Send Message",
- "mobile.search.jump": "JUMP",
- "mobile.search.no_results": "No Results Found",
- "mobile.select_team.choose": "Your teams:",
- "mobile.select_team.join_open": "Open teams you can join",
- "mobile.select_team.no_teams": "There are no available teams for you to join.",
- "mobile.server_ping_failed": "Cannot connect to the server. Please check your server URL and internet connection.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nA server upgrade is required to use the Mattermost app. Please ask your System Administrator for details.\n",
- "mobile.server_upgrade.title": "Server upgrade required",
- "mobile.server_url.invalid_format": "URL must start with http:// or https://",
- "mobile.session_expired": "Session Expired: Please log in to continue receiving notifications.",
- "mobile.settings.clear": "Clear Offline Store",
- "mobile.settings.clear_button": "Clear",
- "mobile.settings.clear_message": "\nThis will clear all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.settings.team_selection": "Team Selection",
- "mobile.suggestion.members": "Members",
- "modal.manaul_status.ask": "Do not ask me again",
- "modal.manaul_status.button": "Yes, set my status to \"Online\"",
- "modal.manaul_status.cancel": "No, keep it as \"{status}\"",
- "modal.manaul_status.message": "Would you like to switch your status to \"Online\"?",
- "modal.manaul_status.title": "Your status is set to \"{status}\"",
- "more_channels.close": "Close",
- "more_channels.create": "Create New Channel",
- "more_channels.createClick": "Click 'Create New Channel' to make a new one",
- "more_channels.join": "Join",
- "more_channels.next": "Next",
- "more_channels.noMore": "No more channels to join",
- "more_channels.prev": "Previous",
- "more_channels.title": "More Channels",
- "more_direct_channels.close": "Close",
- "more_direct_channels.message": "Message",
- "more_direct_channels.new_convo_note": "This will start a new conversation. If you’re adding a lot of people, consider creating a private channel instead.",
- "more_direct_channels.new_convo_note.full": "You’ve reached the maximum number of people for this conversation. Consider creating a private channel instead.",
- "more_direct_channels.title": "Direct Messages",
- "msg_typing.areTyping": "{users} and {last} are typing...",
- "msg_typing.isTyping": "{user} is typing...",
- "msg_typing.someone": "Someone",
- "multiselect.add": "Add",
- "multiselect.go": "Go",
- "multiselect.list.notFound": "No items found",
- "multiselect.numPeopleRemaining": "Use ↑↓ to browse, ↵ to select. You can add {num, number} more {num, plural, one {person} other {people}}. ",
- "multiselect.numRemaining": "You can add {num, number} more",
- "multiselect.placeholder": "Search and add members",
- "navbar.addMembers": "Add Members",
- "navbar.click": "Click here",
- "navbar.delete": "Delete Channel...",
- "navbar.leave": "Leave Channel",
- "navbar.manageMembers": "Manage Members",
- "navbar.noHeader": "No channel header yet.{newline}{link} to add one.",
- "navbar.preferences": "Notification Preferences",
- "navbar.rename": "Rename Channel...",
- "navbar.setHeader": "Set Channel Header...",
- "navbar.setPurpose": "Set Channel Purpose...",
- "navbar.toggle1": "Toggle sidebar",
- "navbar.toggle2": "Toggle sidebar",
- "navbar.viewInfo": "View Info",
- "navbar.viewPinnedPosts": "View Pinned Posts",
- "navbar_dropdown.about": "About Mattermost",
- "navbar_dropdown.accountSettings": "Account Settings",
- "navbar_dropdown.addMemberToTeam": "Add Members to Team",
- "navbar_dropdown.console": "System Console",
- "navbar_dropdown.create": "Create a New Team",
- "navbar_dropdown.emoji": "Custom Emoji",
- "navbar_dropdown.help": "Help",
- "navbar_dropdown.integrations": "Integrations",
- "navbar_dropdown.inviteMember": "Send Email Invite",
- "navbar_dropdown.join": "Join Another Team",
- "navbar_dropdown.keyboardShortcuts": "Keyboard Shortcuts",
- "navbar_dropdown.leave": "Leave Team",
- "navbar_dropdown.logout": "Logout",
- "navbar_dropdown.manageMembers": "Manage Members",
- "navbar_dropdown.nativeApps": "Download Apps",
- "navbar_dropdown.report": "Report a Problem",
- "navbar_dropdown.switchTeam": "Switch to {team}",
- "navbar_dropdown.switchTo": "Switch to ",
- "navbar_dropdown.teamLink": "Get Team Invite Link",
- "navbar_dropdown.teamSettings": "Team Settings",
- "navbar_dropdown.viewMembers": "View Members",
- "notification.dm": "Direct Message",
- "notify_all.confirm": "Confirm",
- "notify_all.question": "By using @all or @channel you are about to send notifications to {totalMembers} people. Are you sure you want to do this?",
- "notify_all.title.confirm": "Confirm sending notifications to entire channel",
- "passwordRequirements": "Password Requirements:",
- "password_form.change": "Change my password",
- "password_form.click": "Click here to log in.",
- "password_form.enter": "Enter a new password for your {siteName} account.",
- "password_form.error": "Please enter at least {chars} characters.",
- "password_form.pwd": "Password",
- "password_form.title": "Password Reset",
- "password_form.update": "Your password has been updated successfully.",
- "password_send.checkInbox": "Please check your inbox.",
- "password_send.description": "To reset your password, enter the email address you used to sign up",
- "password_send.email": "Email",
- "password_send.error": "Please enter a valid email address.",
- "password_send.link": "If the account exists, a password reset email will be sent to: {email}
",
- "password_send.reset": "Reset my password",
- "password_send.title": "Password Reset",
- "pdf_preview.max_pages": "Download to read more pages",
- "pending_post_actions.cancel": "Cancel",
- "pending_post_actions.retry": "Retry",
- "permalink.error.access": "Permalink belongs to a deleted message or to a channel to which you do not have access.",
- "permalink.error.title": "Message Not Found",
- "post_attachment.collapse": "Show less...",
- "post_attachment.more": "Show more...",
- "post_body.commentedOn": "Commented on {name}{apostrophe} message: ",
- "post_body.deleted": "(message deleted)",
- "post_body.plusMore": " plus {count, number} other {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Comment could not be posted",
- "post_delete.okay": "Okay",
- "post_delete.someone": "Someone deleted the message on which you tried to post a comment.",
- "post_focus_view.beginning": "Beginning of Channel Archives",
- "post_info.del": "Delete",
- "post_info.edit": "Edit",
- "post_info.message.visible": "(Only visible to you)",
- "post_info.message.visible.compact": " (Only visible to you)",
- "post_info.mobile.flag": "Flag",
- "post_info.mobile.unflag": "Unflag",
- "post_info.permalink": "Permalink",
- "post_info.pin": "Pin to channel",
- "post_info.pinned": "Pinned",
- "post_info.reply": "Reply",
- "post_info.system": "System",
- "post_info.unpin": "Un-pin from channel",
- "post_message_view.edited": "(edited)",
- "posts_view.loadMore": "Load more messages",
- "posts_view.loadingMore": "Loading more messages...",
- "posts_view.newMsg": "New Messages",
- "posts_view.newMsgBelow": "New {count, plural, one {message} other {messages}}",
- "quick_switch_modal.channels": "Channels",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Start typing then use TAB to toggle channels/teams, ↑↓ to browse, ↵ to select, and ESC to dismiss.",
- "quick_switch_modal.help_mobile": "Type to find a channel.",
- "quick_switch_modal.help_no_team": "Type to find a channel. Use ↑↓ to browse, ↵ to select, ESC to dismiss.",
- "quick_switch_modal.teams": "Teams",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(click to add)",
- "reaction.clickToRemove": "(click to remove)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {user} other {users}}",
- "reaction.reacted": "{users} {reactionVerb} with {emoji}",
- "reaction.reactionVerb.user": "reacted",
- "reaction.reactionVerb.users": "reacted",
- "reaction.reactionVerb.you": "reacted",
- "reaction.reactionVerb.youAndUsers": "reacted",
- "reaction.usersAndOthersReacted": "{users} and {otherUsers, number} other {otherUsers, plural, one {user} other {users}}",
- "reaction.usersReacted": "{users} and {lastUser}",
- "reaction.you": "You",
- "removed_channel.channelName": "the channel",
- "removed_channel.from": "Removed from ",
- "removed_channel.okay": "Okay",
- "removed_channel.remover": "{remover} removed you from {channel}",
- "removed_channel.someone": "Someone",
- "rename_channel.cancel": "Cancel",
- "rename_channel.defaultError": " - Cannot be changed for the default channel",
- "rename_channel.displayName": "Display Name",
- "rename_channel.displayNameHolder": "Enter display name",
- "rename_channel.handleHolder": "lowercase alphanumeric characters",
- "rename_channel.lowercase": "Must be lowercase alphanumeric characters",
- "rename_channel.maxLength": "This field must be less than {maxLength, number} characters",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "This field is required",
- "rename_channel.save": "Save",
- "rename_channel.title": "Rename Channel",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Comment",
- "rhs_comment.del": "Delete",
- "rhs_comment.edit": "Edit",
- "rhs_comment.mobile.flag": "Flag",
- "rhs_comment.mobile.unflag": "Unflag",
- "rhs_comment.permalink": "Permalink",
- "rhs_header.backToCallTooltip": "Back to Call",
- "rhs_header.backToFlaggedTooltip": "Back to Flagged Posts",
- "rhs_header.backToPinnedTooltip": "Back to Pinned Posts",
- "rhs_header.backToResultsTooltip": "Back to Search Results",
- "rhs_header.closeSidebarTooltip": "Close Sidebar",
- "rhs_header.closeTooltip": "Close Sidebar",
- "rhs_header.details": "Message Details",
- "rhs_header.expandSidebarTooltip": "Expand Sidebar",
- "rhs_header.expandTooltip": "Shrink Sidebar",
- "rhs_header.shrinkSidebarTooltip": "Shrink Sidebar",
- "rhs_root.del": "Delete",
- "rhs_root.direct": "Direct Message",
- "rhs_root.edit": "Edit",
- "rhs_root.mobile.flag": "Flag",
- "rhs_root.mobile.unflag": "Unflag",
- "rhs_root.permalink": "Permalink",
- "rhs_root.pin": "Pin to channel",
- "rhs_root.unpin": "Un-pin from channel",
- "search_bar.search": "Search",
- "search_bar.usage": "
Search Options
Use \"quotation marks\" to search for phrases
Use from: to find posts from specific users and in: to find posts in specific channels
Use from: to find posts from specific users and in: to find posts in specific channels
",
- "search_results.usageFlag1": "You haven't flagged any messages yet.",
- "search_results.usageFlag2": "You can add a flag to messages and comments by clicking the ",
- "search_results.usageFlag3": " icon next to the timestamp.",
- "search_results.usageFlag4": "Flags are a way to mark messages for follow up. Your flags are personal, and cannot be seen by other users.",
- "search_results.usagePin1": "There are no pinned messages yet.",
- "search_results.usagePin2": "All members of this channel can pin important or useful messages.",
- "search_results.usagePin3": "Pinned messages are visible to all channel members.",
- "search_results.usagePin4": "To pin a message: Go to the message that you want to pin and click [...] > \"Pin to channel\".",
- "setting_item_max.cancel": "Cancel",
- "setting_item_max.save": "Save",
- "setting_item_min.edit": "Edit",
- "setting_picture.cancel": "Cancel",
- "setting_picture.help": "Upload a profile picture in BMP, JPG, JPEG or PNG format, at least {width}px in width and {height}px height.",
- "setting_picture.save": "Save",
- "setting_picture.select": "Select",
- "setting_upload.import": "Import",
- "setting_upload.noFile": "No file selected.",
- "setting_upload.select": "Select file",
- "shortcuts.browser.channel_next": "Forward in history:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Forward in history:\t⌘|]",
- "shortcuts.browser.channel_prev": "Back in history:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Back in history:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom out:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom out:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom in:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom in:\t⌘|+",
- "shortcuts.browser.header": "Built-in Browser Commands",
- "shortcuts.browser.highlight_next": "Highlight text to the next line:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Highlight text to the previous line:\tShift|Up",
- "shortcuts.browser.input.header": "Works inside an input field",
- "shortcuts.browser.newline": "Create a new line:\tShift|Enter",
- "shortcuts.files.header": "Files",
- "shortcuts.files.upload": "Upload files:\tCtrl|U",
- "shortcuts.files.upload.mac": "Upload files:\t⌘|U",
- "shortcuts.header": "Keyboard Shortcuts\tCtrl|/",
- "shortcuts.header.mac": "Keyboard Shortcuts\t⌘|/",
- "shortcuts.info": "Begin a message with / for a list of all the commands at your disposal.",
- "shortcuts.msgs.comp.channel": "Channel:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Autocomplete",
- "shortcuts.msgs.comp.username": "Username:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Edit last message in channel:\tUp",
- "shortcuts.msgs.header": "Messages",
- "shortcuts.msgs.input.header": "Works inside an empty input field",
- "shortcuts.msgs.reply": "Reply to last message in channel:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Reprint next message:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Reprint next message:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Reprint previous message:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Reprint previous message:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Direct messages menu:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Direct messages menu:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigation",
- "shortcuts.nav.next": "Next channel:\tAlt|Down",
- "shortcuts.nav.next.mac": "Next channel:\t⌥|Down",
- "shortcuts.nav.prev": "Previous channel:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Previous channel:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Recent mentions:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Recent mentions:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Account settings:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Account settings:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Quick channel switcher:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Quick channel switcher:\t⌘|K",
- "shortcuts.nav.unread_next": "Next unread channel:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Next unread channel:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Previous unread channel:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Previous unread channel:\t⌥|Shift|Up",
- "sidebar.channels": "PUBLIC CHANNELS",
- "sidebar.createChannel": "Create new public channel",
- "sidebar.createGroup": "Create new private channel",
- "sidebar.direct": "DIRECT MESSAGES",
- "sidebar.favorite": "FAVORITE CHANNELS",
- "sidebar.leave": "Leave channel",
- "sidebar.mainMenu": "Main Menu",
- "sidebar.more": "More",
- "sidebar.moreElips": "More...",
- "sidebar.otherMembers": "Outside this team",
- "sidebar.pg": "PRIVATE CHANNELS",
- "sidebar.removeList": "Remove from list",
- "sidebar.tutorialScreen1": "
Channels
Channels organize conversations across different topics. They’re open to everyone on your team. To send private communications use Direct Messages for a single person or Private Channel for multiple people.
",
- "sidebar.tutorialScreen2": "
\"{townsquare}\" and \"{offtopic}\" channels
Here are two public channels to start:
{townsquare} is a place for team-wide communication. Everyone in your team is a member of this channel.
{offtopic} is a place for fun and humor outside of work-related channels. You and your team can decide what other channels to create.
",
- "sidebar.tutorialScreen3": "
Creating and Joining Channels
Click \"More...\" to create a new channel or join an existing one.
You can also create a new channel by clicking the \"+\" symbol next to the public or private channel header.
The Main Menu is where you can Invite New Members, access your Account Settings and set your Theme Color.
Team administrators can also access their Team Settings from this menu.
System administrators will find a System Console option to administrate the entire system.
",
- "sidebar_right_menu.accountSettings": "Account Settings",
- "sidebar_right_menu.addMemberToTeam": "Add Members to Team",
- "sidebar_right_menu.console": "System Console",
- "sidebar_right_menu.flagged": "Flagged Posts",
- "sidebar_right_menu.help": "Help",
- "sidebar_right_menu.inviteNew": "Send Email Invite",
- "sidebar_right_menu.logout": "Logout",
- "sidebar_right_menu.manageMembers": "Manage Members",
- "sidebar_right_menu.nativeApps": "Download Apps",
- "sidebar_right_menu.recentMentions": "Recent Mentions",
- "sidebar_right_menu.report": "Report a Problem",
- "sidebar_right_menu.teamLink": "Get Team Invite Link",
- "sidebar_right_menu.teamSettings": "Team Settings",
- "sidebar_right_menu.viewMembers": "View Members",
- "signup.email": "Email and Password",
- "signup.gitlab": "GitLab Single Sign-On",
- "signup.google": "Google Account",
- "signup.ldap": "AD/LDAP Credentials",
- "signup.office365": "Office 365",
- "signup.title": "Create an account with:",
- "signup_team.createTeam": "Or Create a Team",
- "signup_team.disabled": "Team creation has been disabled. Please contact an administrator for access.",
- "signup_team.join_open": "Teams you can join: ",
- "signup_team.noTeams": "There are no teams included in the Team Directory and team creation has been disabled.",
- "signup_team.no_open_teams": "No teams are available to join. Please ask your administrator for an invite.",
- "signup_team.no_open_teams_canCreate": "No teams are available to join. Please create a new team or ask your administrator for an invite.",
- "signup_team.no_teams": "No teams have been created. Please contact your administrator.",
- "signup_team.no_teams_canCreate": "No teams have been created. You may create one by clicking \"Create a new team\".",
- "signup_team.none": "No team creation method has been enabled. Please contact an administrator for access.",
- "signup_team_complete.completed": "You've already completed the signup process for this invitation or this invitation has expired.",
- "signup_team_confirm.checkEmail": "Please check your email: {email} Your email contains a link to set up your team",
- "signup_team_confirm.title": "Sign up Complete",
- "signup_team_system_console": "Go to System Console",
- "signup_user_completed.choosePwd": "Choose your password",
- "signup_user_completed.chooseUser": "Choose your username",
- "signup_user_completed.create": "Create Account",
- "signup_user_completed.emailHelp": "Valid email required for sign-up",
- "signup_user_completed.emailIs": "Your email address is {email}. You'll use this address to sign in to {siteName}.",
- "signup_user_completed.expired": "You've already completed the signup process for this invitation or this invitation has expired.",
- "signup_user_completed.gitlab": "with GitLab",
- "signup_user_completed.google": "with Google",
- "signup_user_completed.haveAccount": "Already have an account?",
- "signup_user_completed.invalid_invite": "The invite link was invalid. Please speak with your Administrator to receive an invitation.",
- "signup_user_completed.lets": "Let's create your account",
- "signup_user_completed.no_open_server": "This server does not allow open signups. Please speak with your Administrator to receive an invitation.",
- "signup_user_completed.none": "No user creation method has been enabled. Please contact an administrator for access.",
- "signup_user_completed.office365": "with Office 365",
- "signup_user_completed.onSite": "on {siteName}",
- "signup_user_completed.or": "or",
- "signup_user_completed.passwordLength": "Please enter between {min} and {max} characters",
- "signup_user_completed.required": "This field is required",
- "signup_user_completed.reserved": "This username is reserved, please choose a new one.",
- "signup_user_completed.signIn": "Click here to sign in.",
- "signup_user_completed.userHelp": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-' and '_'",
- "signup_user_completed.usernameLength": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-' and '_'.",
- "signup_user_completed.validEmail": "Please enter a valid email address",
- "signup_user_completed.welcome": "Welcome to:",
- "signup_user_completed.whatis": "What's your email address?",
- "signup_user_completed.withLdap": "With your AD/LDAP credentials",
- "sso_signup.find": "Find my teams",
- "sso_signup.gitlab": "Create team with GitLab Account",
- "sso_signup.google": "Create team with Google Apps Account",
- "sso_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
- "sso_signup.teamName": "Enter name of new team",
- "sso_signup.team_error": "Please enter a team name",
- "status_dropdown.set_away": "Away",
- "status_dropdown.set_offline": "Offline",
- "status_dropdown.set_online": "Online",
- "suggestion.loading": "Loading...",
- "suggestion.mention.all": "CAUTION: This mentions everyone in channel",
- "suggestion.mention.channel": "Notifies everyone in the channel",
- "suggestion.mention.channels": "My Channels",
- "suggestion.mention.here": "Notifies everyone in the channel and online",
- "suggestion.mention.in_channel": "Channels",
- "suggestion.mention.members": "Channel Members",
- "suggestion.mention.morechannels": "Other Channels",
- "suggestion.mention.nonmembers": "Not in Channel",
- "suggestion.mention.not_in_channel": "Other Channels",
- "suggestion.mention.special": "Special Mentions",
- "suggestion.search.private": "Private Channels",
- "suggestion.search.public": "Public Channels",
- "system_users_list.count": "{count, number} {count, plural, one {user} other {users}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {user} other {users}} of {total, number} total",
- "system_users_list.countSearch": "{count, number} {count, plural, one {user} other {users}} of {total, number} total",
- "team_export_tab.download": "download",
- "team_export_tab.export": "Export",
- "team_export_tab.exportTeam": "Export your team",
- "team_export_tab.exporting": " Exporting...",
- "team_export_tab.ready": " Ready for ",
- "team_export_tab.unable": " Unable to export: {error}",
- "team_import_tab.failure": " Import failure: ",
- "team_import_tab.import": "Import",
- "team_import_tab.importHelpDocsLink": "documentation",
- "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
- "team_import_tab.importHelpExporterLink": "Slack Advanced Exporter",
- "team_import_tab.importHelpLine1": "Slack import to Mattermost supports importing of messages in your Slack team's public channels.",
- "team_import_tab.importHelpLine2": "To import a team from Slack, go to {exportInstructions}. See {uploadDocsLink} to learn more.",
- "team_import_tab.importHelpLine3": "To import posts with attached files, see {slackAdvancedExporterLink} for details.",
- "team_import_tab.importSlack": "Import from Slack (Beta)",
- "team_import_tab.importing": " Importing...",
- "team_import_tab.successful": " Import successful: ",
- "team_import_tab.summary": "View Summary",
- "team_member_modal.close": "Close",
- "team_member_modal.members": "{team} Members",
- "team_members_dropdown.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Confirm demotion from System Admin role",
- "team_members_dropdown.confirmDemotion": "Confirm Demotion",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "Inactive",
- "team_members_dropdown.leave_team": "Remove From Team",
- "team_members_dropdown.makeActive": "Activate",
- "team_members_dropdown.makeAdmin": "Make Team Admin",
- "team_members_dropdown.makeInactive": "Deactivate",
- "team_members_dropdown.makeMember": "Make Member",
- "team_members_dropdown.member": "Member",
- "team_members_dropdown.systemAdmin": "System Admin",
- "team_members_dropdown.teamAdmin": "Team Admin",
- "team_settings_modal.exportTab": "Export",
- "team_settings_modal.generalTab": "General",
- "team_settings_modal.importTab": "Import",
- "team_settings_modal.title": "Team Settings",
- "team_sidebar.join": "Other teams you can join.",
- "textbox.bold": "**bold**",
- "textbox.edit": "Edit message",
- "textbox.help": "Help",
- "textbox.inlinecode": "`inline code`",
- "textbox.italic": "_italic_",
- "textbox.preformatted": "```preformatted```",
- "textbox.preview": "Preview",
- "textbox.quote": ">quote",
- "textbox.strike": "strike",
- "tutorial_intro.allSet": "You’re all set",
- "tutorial_intro.end": "Click \"Next\" to enter {channel}. This is the first channel teammates see when they sign up. Use it for posting updates everyone needs to know.",
- "tutorial_intro.invite": "Invite teammates",
- "tutorial_intro.mobileApps": "Install the apps for {link} for easy access and notifications on the go.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS and Android",
- "tutorial_intro.next": "Next",
- "tutorial_intro.screenOne": "
Welcome to:
Mattermost
Your team communication all in one place, instantly searchable and available anywhere.
Keep your team connected to help them achieve what matters most.
",
- "tutorial_intro.screenTwo": "
How Mattermost works:
Communication happens in public discussion channels, private channels and direct messages.
Everything is archived and searchable from any web-enabled desktop, laptop or phone.
",
- "tutorial_intro.skip": "Skip tutorial",
- "tutorial_intro.support": "Need anything, just email us at ",
- "tutorial_intro.teamInvite": "Invite teammates",
- "tutorial_intro.whenReady": " when you’re ready.",
- "tutorial_tip.next": "Next",
- "tutorial_tip.ok": "Okay",
- "tutorial_tip.out": "Opt out of these tips.",
- "tutorial_tip.seen": "Seen this before? ",
- "update_command.cancel": "Cancel",
- "update_command.confirm": "Edit Slash Command",
- "update_command.question": "Your changes may break the existing slash command. Are you sure you would like to update it?",
- "update_command.update": "Update",
- "update_incoming_webhook.update": "Update",
- "update_outgoing_webhook.confirm": "Edit Outgoing Webhook",
- "update_outgoing_webhook.question": "Your changes may break the existing outgoing webhook. Are you sure you would like to update it?",
- "update_outgoing_webhook.update": "Update",
- "upload_overlay.info": "Drop a file to upload it.",
- "user.settings.advance.embed_preview": "For the first web link in a message, display a preview of website content below the message, if available",
- "user.settings.advance.embed_toggle": "Show toggle for all embed previews",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Feature} other {Features}} Enabled",
- "user.settings.advance.formattingDesc": "If enabled, posts will be formatted to create links, show emoji, style the text, and add line breaks. By default, this setting is enabled. Changing this setting requires the page to be refreshed.",
- "user.settings.advance.formattingTitle": "Enable Post Formatting",
- "user.settings.advance.joinLeaveDesc": "When \"On\", System Messages saying a user has joined or left a channel will be visible. When \"Off\", the System Messages about joining or leaving a channel will be hidden. A message will still show up when you are added to a channel, so you can receive a notification.",
- "user.settings.advance.joinLeaveTitle": "Enable Join/Leave Messages",
- "user.settings.advance.markdown_preview": "Show markdown preview option in message input box",
- "user.settings.advance.off": "Off",
- "user.settings.advance.on": "On",
- "user.settings.advance.preReleaseDesc": "Check any pre-released features you'd like to preview. You may also need to refresh the page before the setting will take effect.",
- "user.settings.advance.preReleaseTitle": "Preview pre-release features",
- "user.settings.advance.sendDesc": "If enabled ENTER inserts a new line and CTRL+ENTER submits the message.",
- "user.settings.advance.sendTitle": "Send messages on CTRL+ENTER",
- "user.settings.advance.slashCmd_autocmp": "Enable external application to offer slash command autocomplete",
- "user.settings.advance.title": "Advanced Settings",
- "user.settings.advance.webrtc_preview": "Enable the ability to make and receive one-on-one WebRTC calls",
- "user.settings.custom_theme.awayIndicator": "Away Indicator",
- "user.settings.custom_theme.buttonBg": "Button BG",
- "user.settings.custom_theme.buttonColor": "Button Text",
- "user.settings.custom_theme.centerChannelBg": "Center Channel BG",
- "user.settings.custom_theme.centerChannelColor": "Center Channel Text",
- "user.settings.custom_theme.centerChannelTitle": "Center Channel Styles",
- "user.settings.custom_theme.codeTheme": "Code Theme",
- "user.settings.custom_theme.copyPaste": "Copy and paste to share theme colors:",
- "user.settings.custom_theme.linkButtonTitle": "Link and Button Styles",
- "user.settings.custom_theme.linkColor": "Link Color",
- "user.settings.custom_theme.mentionBj": "Mention Jewel BG",
- "user.settings.custom_theme.mentionColor": "Mention Jewel Text",
- "user.settings.custom_theme.mentionHighlightBg": "Mention Highlight BG",
- "user.settings.custom_theme.mentionHighlightLink": "Mention Highlight Link",
- "user.settings.custom_theme.newMessageSeparator": "New Message Separator",
- "user.settings.custom_theme.onlineIndicator": "Online Indicator",
- "user.settings.custom_theme.sidebarBg": "Sidebar BG",
- "user.settings.custom_theme.sidebarHeaderBg": "Sidebar Header BG",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Sidebar Header Text",
- "user.settings.custom_theme.sidebarText": "Sidebar Text",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Sidebar Text Active Border",
- "user.settings.custom_theme.sidebarTextActiveColor": "Sidebar Text Active Color",
- "user.settings.custom_theme.sidebarTextHoverBg": "Sidebar Text Hover BG",
- "user.settings.custom_theme.sidebarTitle": "Sidebar Styles",
- "user.settings.custom_theme.sidebarUnreadText": "Sidebar Unread Text",
- "user.settings.display.channelDisplayTitle": "Channel Display Mode",
- "user.settings.display.channeldisplaymode": "Select the width of the center channel.",
- "user.settings.display.clockDisplay": "Clock Display",
- "user.settings.display.collapseDesc": "Set whether previews of image links show as expanded or collapsed by default. This setting can also be controlled using the slash commands /expand and /collapse.",
- "user.settings.display.collapseDisplay": "Default appearance of image link previews",
- "user.settings.display.collapseOff": "Collapsed",
- "user.settings.display.collapseOn": "Expanded",
- "user.settings.display.fixedWidthCentered": "Fixed width, centered",
- "user.settings.display.fullScreen": "Full width",
- "user.settings.display.language": "Language",
- "user.settings.display.messageDisplayClean": "Standard",
- "user.settings.display.messageDisplayCleanDes": "Easy to scan and read.",
- "user.settings.display.messageDisplayCompact": "Compact",
- "user.settings.display.messageDisplayCompactDes": "Fit as many messages on the screen as we can.",
- "user.settings.display.messageDisplayDescription": "Select how messages in a channel should be displayed.",
- "user.settings.display.messageDisplayTitle": "Message Display",
- "user.settings.display.militaryClock": "24-hour clock (example: 16:00)",
- "user.settings.display.nameOptsDesc": "Set how to display other user's names in posts and the Direct Messages list.",
- "user.settings.display.normalClock": "12-hour clock (example: 4:00 PM)",
- "user.settings.display.preferTime": "Select how you prefer time displayed.",
- "user.settings.display.theme.applyToAllTeams": "Apply new theme to all my teams",
- "user.settings.display.theme.customTheme": "Custom Theme",
- "user.settings.display.theme.describe": "Open to manage your theme",
- "user.settings.display.theme.import": "Import theme colors from Slack",
- "user.settings.display.theme.otherThemes": "See other themes",
- "user.settings.display.theme.themeColors": "Theme Colors",
- "user.settings.display.theme.title": "Theme",
- "user.settings.display.title": "Display Settings",
- "user.settings.general.checkEmail": "Check your email at {email} to verify the address.",
- "user.settings.general.checkEmailNoAddress": "Check your email to verify your new address",
- "user.settings.general.close": "Close",
- "user.settings.general.confirmEmail": "Confirm Email",
- "user.settings.general.currentEmail": "Current Email",
- "user.settings.general.email": "Email",
- "user.settings.general.emailGitlabCantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Login occurs through Google. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailHelp1": "Email is used for sign-in, notifications, and password reset. Email requires verification if changed.",
- "user.settings.general.emailHelp2": "Email has been disabled by your System Administrator. No notification emails will be sent until it is enabled.",
- "user.settings.general.emailHelp3": "Email is used for sign-in, notifications, and password reset.",
- "user.settings.general.emailHelp4": "A verification email was sent to {email}.",
- "user.settings.general.emailLdapCantUpdate": "Login occurs through AD/LDAP. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailMatch": "The new emails you entered do not match.",
- "user.settings.general.emailOffice365CantUpdate": "Login occurs through Office 365. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailSamlCantUpdate": "Login occurs through SAML. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailUnchanged": "Your new email address is the same as your old email address.",
- "user.settings.general.emptyName": "Click 'Edit' to add your full name",
- "user.settings.general.emptyNickname": "Click 'Edit' to add a nickname",
- "user.settings.general.emptyPosition": "Click 'Edit' to add your job title / position",
- "user.settings.general.field_handled_externally": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
- "user.settings.general.firstName": "First Name",
- "user.settings.general.fullName": "Full Name",
- "user.settings.general.imageTooLarge": "Unable to upload profile image. File is too large.",
- "user.settings.general.imageUpdated": "Image last updated {date}",
- "user.settings.general.lastName": "Last Name",
- "user.settings.general.loginGitlab": "Login done through GitLab ({email})",
- "user.settings.general.loginGoogle": "Login done through Google ({email})",
- "user.settings.general.loginLdap": "Login done through AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Login done through Office 365 ({email})",
- "user.settings.general.loginSaml": "Login done through SAML ({email})",
- "user.settings.general.mobile.emptyName": "Click to add your full name",
- "user.settings.general.mobile.emptyNickname": "Click to add a nickname",
- "user.settings.general.mobile.emptyPosition": "Click to add your job title / position",
- "user.settings.general.mobile.uploadImage": "Click to upload an image.",
- "user.settings.general.newAddress": "New Address: {email} Check your email to verify the above address.",
- "user.settings.general.newEmail": "New Email",
- "user.settings.general.nickname": "Nickname",
- "user.settings.general.nicknameExtra": "Use Nickname for a name you might be called that is different from your first name and username. This is most often used when two or more people have similar sounding names and usernames.",
- "user.settings.general.notificationsExtra": "By default, you will receive mention notifications when someone types your first name. Go to {notify} settings to change this default.",
- "user.settings.general.notificationsLink": "Notifications",
- "user.settings.general.position": "Position",
- "user.settings.general.positionExtra": "Use Position for your role or job title. This will be shown in your profile popover.",
- "user.settings.general.profilePicture": "Profile Picture",
- "user.settings.general.title": "General Settings",
- "user.settings.general.uploadImage": "Click 'Edit' to upload an image.",
- "user.settings.general.username": "Username",
- "user.settings.general.usernameInfo": "Pick something easy for teammates to recognize and recall.",
- "user.settings.general.usernameReserved": "This username is reserved, please choose a new one.",
- "user.settings.general.usernameRestrictions": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-', and '_'.",
- "user.settings.general.validEmail": "Please enter a valid email address",
- "user.settings.general.validImage": "Only JPG or PNG images may be used for profile pictures",
- "user.settings.import_theme.cancel": "Cancel",
- "user.settings.import_theme.importBody": "To import a theme, go to a Slack team and look for \"Preferences -> Sidebar Theme\". Open the custom theme option, copy the theme color values and paste them here:",
- "user.settings.import_theme.importHeader": "Import Slack Theme",
- "user.settings.import_theme.submit": "Submit",
- "user.settings.import_theme.submitError": "Invalid format, please try copying and pasting in again.",
- "user.settings.languages.change": "Change interface language",
- "user.settings.languages.promote": "Select which language Mattermost displays in the user interface.
Would like to help with translations? Join the Mattermost Translation Server to contribute.",
- "user.settings.mfa.add": "Add MFA to your account",
- "user.settings.mfa.addHelp": "Adding multi-factor authentication will make your account more secure by requiring a code from your mobile phone each time you sign in.",
- "user.settings.mfa.addHelpQr": "Please scan the QR code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app. If you are unable to scan the code, you can manually enter the secret provided.",
- "user.settings.mfa.enterToken": "Token (numbers only)",
- "user.settings.mfa.qrCode": "Bar Code",
- "user.settings.mfa.remove": "Remove MFA from your account",
- "user.settings.mfa.removeHelp": "Removing multi-factor authentication means you will no longer require a phone-based passcode to sign-in to your account.",
- "user.settings.mfa.requiredHelp": "Multi-factor authentication is required on this server. Resetting is only recommended when you need to switch code generation to a new mobile device. You will be required to set it up again immediately.",
- "user.settings.mfa.reset": "Reset MFA on your account",
- "user.settings.mfa.secret": "Secret",
- "user.settings.mfa.title": "Multi-factor Authentication",
- "user.settings.modal.advanced": "Advanced",
- "user.settings.modal.confirmBtns": "Yes, Discard",
- "user.settings.modal.confirmMsg": "You have unsaved changes, are you sure you want to discard them?",
- "user.settings.modal.confirmTitle": "Discard Changes?",
- "user.settings.modal.display": "Display",
- "user.settings.modal.general": "General",
- "user.settings.modal.notifications": "Notifications",
- "user.settings.modal.security": "Security",
- "user.settings.modal.title": "Account Settings",
- "user.settings.notifications.allActivity": "For all activity",
- "user.settings.notifications.channelWide": "Channel-wide mentions \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Close",
- "user.settings.notifications.comments": "Reply notifications",
- "user.settings.notifications.commentsAny": "Trigger notifications on messages in reply threads that I start or participate in",
- "user.settings.notifications.commentsInfo": "In addition to notifications for when you're mentioned, select if you would like to receive notifications on reply threads.",
- "user.settings.notifications.commentsNever": "Do not trigger notifications on messages in reply threads unless I'm mentioned",
- "user.settings.notifications.commentsRoot": "Trigger notifications on messages in threads that I start",
- "user.settings.notifications.desktop": "Send desktop notifications",
- "user.settings.notifications.desktop.allNoSoundForever": "For all activity, without sound, shown indefinitely",
- "user.settings.notifications.desktop.allNoSoundTimed": "For all activity, without sound, shown for {seconds} seconds",
- "user.settings.notifications.desktop.allSoundForever": "For all activity, with sound, shown indefinitely",
- "user.settings.notifications.desktop.allSoundHiddenForever": "For all activity, shown indefinitely",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "For all activity, shown for {seconds} seconds",
- "user.settings.notifications.desktop.allSoundTimed": "For all activity, with sound, shown for {seconds} seconds",
- "user.settings.notifications.desktop.duration": "Notification duration",
- "user.settings.notifications.desktop.durationInfo": "Sets how long desktop notifications will remain on screen when using Firefox or Chrome. Desktop notifications in Edge and Safari can only stay on screen for a maximum of 5 seconds.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "For mentions and direct messages, without sound, shown indefinitely",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "For mentions and direct messages, without sound, shown for {seconds} seconds",
- "user.settings.notifications.desktop.mentionsSoundForever": "For mentions and direct messages, with sound, shown indefinitely",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "For mentions and direct messages, shown indefinitely",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "For mentions and direct messages, shown for {seconds} seconds",
- "user.settings.notifications.desktop.mentionsSoundTimed": "For mentions and direct messages, with sound, shown for {seconds} seconds",
- "user.settings.notifications.desktop.seconds": "{seconds} seconds",
- "user.settings.notifications.desktop.sound": "Notification sound",
- "user.settings.notifications.desktop.title": "Desktop notifications",
- "user.settings.notifications.desktop.unlimited": "Unlimited",
- "user.settings.notifications.desktopSounds": "Desktop notification sounds",
- "user.settings.notifications.email.disabled": "Disabled by System Administrator",
- "user.settings.notifications.email.disabled_long": "Email notifications have been disabled by your System Administrator.",
- "user.settings.notifications.email.everyHour": "Every hour",
- "user.settings.notifications.email.everyXMinutes": "Every {count, plural, one {minute} other {{count, number} minutes}}",
- "user.settings.notifications.email.immediately": "Immediately",
- "user.settings.notifications.email.never": "Never",
- "user.settings.notifications.email.send": "Send email notifications",
- "user.settings.notifications.emailBatchingInfo": "Notifications received over the time period selected are combined and sent in a single email.",
- "user.settings.notifications.emailInfo": "Email notifications are sent for mentions and direct messages when you are offline or away from {siteName} for more than 5 minutes.",
- "user.settings.notifications.emailNotifications": "Email notifications",
- "user.settings.notifications.header": "Notifications",
- "user.settings.notifications.info": "Desktop notifications are available on Edge, Firefox, Safari, Chrome and Mattermost Desktop Apps.",
- "user.settings.notifications.mentionsInfo": "Mentions trigger when someone sends a message that includes your username (\"@{username}\") or any of the options selected above.",
- "user.settings.notifications.never": "Never",
- "user.settings.notifications.noWords": "No words configured",
- "user.settings.notifications.off": "Off",
- "user.settings.notifications.on": "On",
- "user.settings.notifications.onlyMentions": "Only for mentions and direct messages",
- "user.settings.notifications.push": "Mobile push notifications",
- "user.settings.notifications.push_notification.status": "Trigger push notifications when",
- "user.settings.notifications.sensitiveName": "Your case sensitive first name \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Your non-case sensitive username \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Other non-case sensitive words, separated by commas:",
- "user.settings.notifications.soundConfig": "Please configure notification sounds in your browser settings",
- "user.settings.notifications.sounds_info": "Notification sounds are available on IE11, Safari, Chrome and Mattermost Desktop Apps.",
- "user.settings.notifications.teamWide": "Team-wide mentions \"@all\"",
- "user.settings.notifications.title": "Notification Settings",
- "user.settings.notifications.wordsTrigger": "Words that trigger mentions",
- "user.settings.push_notification.allActivity": "For all activity",
- "user.settings.push_notification.allActivityAway": "For all activity when away or offline",
- "user.settings.push_notification.allActivityOffline": "For all activity when offline",
- "user.settings.push_notification.allActivityOnline": "For all activity when online, away or offline",
- "user.settings.push_notification.away": "Away or offline",
- "user.settings.push_notification.disabled": "Disabled by System Administrator",
- "user.settings.push_notification.disabled_long": "Push notifications for mobile devices have been disabled by your System Administrator.",
- "user.settings.push_notification.info": "Notification alerts are pushed to your mobile device when there is activity in Mattermost.",
- "user.settings.push_notification.off": "Off",
- "user.settings.push_notification.offline": "Offline",
- "user.settings.push_notification.online": "Online, away or offline",
- "user.settings.push_notification.onlyMentions": "For mentions and direct messages",
- "user.settings.push_notification.onlyMentionsAway": "For mentions and direct messages when away or offline",
- "user.settings.push_notification.onlyMentionsOffline": "For mentions and direct messages when offline",
- "user.settings.push_notification.onlyMentionsOnline": "For mentions and direct messages when online, away or offline",
- "user.settings.push_notification.send": "Send mobile push notifications",
- "user.settings.push_notification.status": "Trigger push notifications when",
- "user.settings.push_notification.status_info": "Notification alerts are only pushed to your mobile device when your online status matches the selection above.",
- "user.settings.security.active": "Active",
- "user.settings.security.close": "Close",
- "user.settings.security.currentPassword": "Current Password",
- "user.settings.security.currentPasswordError": "Please enter your current password.",
- "user.settings.security.deauthorize": "Deauthorize",
- "user.settings.security.emailPwd": "Email and Password",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inactive",
- "user.settings.security.lastUpdated": "Last updated {date} at {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Login done through GitLab",
- "user.settings.security.loginGoogle": "Login done through Google Apps",
- "user.settings.security.loginLdap": "Login done through AD/LDAP",
- "user.settings.security.loginOffice365": "Login done through Office 365",
- "user.settings.security.loginSaml": "Login done through SAML",
- "user.settings.security.logoutActiveSessions": "View and Logout of Active Sessions",
- "user.settings.security.method": "Sign-in Method",
- "user.settings.security.newPassword": "New Password",
- "user.settings.security.noApps": "No OAuth 2.0 Applications are authorized.",
- "user.settings.security.oauthApps": "OAuth 2.0 Applications",
- "user.settings.security.oauthAppsDescription": "Click 'Edit' to manage your OAuth 2.0 Applications",
- "user.settings.security.oauthAppsHelp": "Applications act on your behalf to access your data based on the permissions you grant them.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "You may only have one sign-in method at a time. Switching sign-in method will send an email notifying you if the change was successful.",
- "user.settings.security.password": "Password",
- "user.settings.security.passwordError": "Your password must contain between {min} and {max} characters.",
- "user.settings.security.passwordErrorLowercase": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter.",
- "user.settings.security.passwordErrorLowercaseNumber": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter and at least one number.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter and at least one uppercase letter.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter, at least one uppercase letter, and at least one number.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter, at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Your password must contain between {min} and {max} characters made up of at least one lowercase letter, at least one uppercase letter, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Your password must contain between {min} and {max} characters made up of at least one number.",
- "user.settings.security.passwordErrorNumberSymbol": "Your password must contain between {min} and {max} characters made up of at least one number and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Your password must contain between {min} and {max} characters made up of at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Your password must contain between {min} and {max} characters made up of at least one uppercase letter.",
- "user.settings.security.passwordErrorUppercaseNumber": "Your password must contain between {min} and {max} characters made up of at least one uppercase letter and at least one number.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Your password must contain between {min} and {max} characters made up of at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Your password must contain between {min} and {max} characters made up of at least one uppercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Login occurs through GitLab. Password cannot be updated.",
- "user.settings.security.passwordGoogleCantUpdate": "Login occurs through Google Apps. Password cannot be updated.",
- "user.settings.security.passwordLdapCantUpdate": "Login occurs through AD/LDAP. Password cannot be updated.",
- "user.settings.security.passwordMatchError": "The new passwords you entered do not match.",
- "user.settings.security.passwordMinLength": "Invalid minimum length, cannot show preview.",
- "user.settings.security.passwordOffice365CantUpdate": "Login occurs through Office 365. Password cannot be updated.",
- "user.settings.security.passwordSamlCantUpdate": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
- "user.settings.security.retypePassword": "Retype New Password",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Switch to using email and password",
- "user.settings.security.switchGitlab": "Switch to using GitLab SSO",
- "user.settings.security.switchGoogle": "Switch to using Google SSO",
- "user.settings.security.switchLdap": "Switch to using AD/LDAP",
- "user.settings.security.switchOffice365": "Switch to using Office 365 SSO",
- "user.settings.security.switchSaml": "Switch to using SAML SSO",
- "user.settings.security.title": "Security Settings",
- "user.settings.security.viewHistory": "View Access History",
- "user.settings.tokens.cancel": "Cancel",
- "user.settings.tokens.clickToEdit": "Click 'Edit' to manage your personal access tokens",
- "user.settings.tokens.confirmCreateButton": "Yes, Create",
- "user.settings.tokens.confirmCreateMessage": "You are generating a personal access token with System Admin permissions. Are you sure want to create this token?",
- "user.settings.tokens.confirmCreateTitle": "Create System Admin Personal Access Token",
- "user.settings.tokens.confirmDeleteButton": "Yes, Delete",
- "user.settings.tokens.confirmDeleteMessage": "Any integrations using this token will no longer be able to access the Mattermost API. You cannot undo this action.
Are you sure want to delete the {description} token?",
- "user.settings.tokens.confirmDeleteTitle": "Delete Token?",
- "user.settings.tokens.copy": "Please copy the access token below. You won't be able to see it again!",
- "user.settings.tokens.create": "Create New Token",
- "user.settings.tokens.delete": "Delete",
- "user.settings.tokens.description": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API.",
- "user.settings.tokens.description_mobile": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API. Create new tokens on your desktop.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "Token Description: ",
- "user.settings.tokens.nameHelp": "Enter a description for your token to remember what it does.",
- "user.settings.tokens.nameRequired": "Please enter a description.",
- "user.settings.tokens.save": "Save",
- "user.settings.tokens.title": "Personal Access Tokens",
- "user.settings.tokens.token": "Access Token: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
- "user_list.notFound": "No users found",
- "user_profile.send.dm": "Send Message",
- "user_profile.webrtc.call": "Start Video Call",
- "user_profile.webrtc.offline": "The user is offline",
- "user_profile.webrtc.unavailable": "New call unavailable until your existing call ends",
- "view_image.loading": "Loading ",
- "view_image_popover.download": "Download",
- "view_image_popover.file": "File {count, number} of {total, number}",
- "view_image_popover.publicLink": "Get Public Link",
- "web.footer.about": "About",
- "web.footer.help": "Help",
- "web.footer.privacy": "Privacy",
- "web.footer.terms": "Terms",
- "web.header.back": "Back",
- "web.header.logout": "Logout",
- "web.root.signup_info": "All team communication in one place, searchable and accessible anywhere",
- "webrtc.busy": "{username} is busy.",
- "webrtc.call": "Call",
- "webrtc.callEnded": "Call with {username} ended.",
- "webrtc.cancel": "Cancel call",
- "webrtc.cancelled": "{username} cancelled the call.",
- "webrtc.declined": "Your call has been declined by {username}.",
- "webrtc.disabled": "{username} has WebRTC disabled, and cannot receive calls. To enable the feature, they must go to Account Settings > Advanced > Preview pre-release features and turn on WebRTC.",
- "webrtc.failed": "There was a problem connecting the video call.",
- "webrtc.hangup": "Hang up",
- "webrtc.header": "Call with {username}",
- "webrtc.inProgress": "You have a call in progress. Please hang up first.",
- "webrtc.mediaError": "Unable to access camera or microphone.",
- "webrtc.mute_audio": "Mute microphone",
- "webrtc.noAnswer": "{username} is not answering the call.",
- "webrtc.notification.answer": "Answer",
- "webrtc.notification.decline": "Decline",
- "webrtc.notification.incoming_call": "{username} is calling you.",
- "webrtc.notification.returnToCall": "Return to ongoing call with {username}",
- "webrtc.offline": "{username} is offline.",
- "webrtc.pause_video": "Turn off camera",
- "webrtc.unmute_audio": "Unmute microphone",
- "webrtc.unpause_video": "Turn on camera",
- "webrtc.unsupported": "{username} client does not support video calls.",
- "youtube_video.notFound": "Video not found"
-}
diff --git a/webapp/i18n/es.json b/webapp/i18n/es.json
deleted file mode 100644
index a1bf9e768e3..00000000000
--- a/webapp/i18n/es.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Cerrar",
- "about.copyright": "Derechos de autor 2015 - {currentYear} Mattermost, Inc. Todos los derechos reservados",
- "about.database": "Base de Datos",
- "about.date": "Fecha de compilación:",
- "about.enterpriseEditionLearn": "Conoce más acerca de la edición para Empresas en ",
- "about.enterpriseEditionSt": "Comunicaciones modernas protegidas por tu cortafuegos.",
- "about.enterpriseEditione1": "Edición Empresarial E1",
- "about.hash": "Hash de compilación:",
- "about.hashee": "Hash de compilación de EE:",
- "about.licensed": "Licenciado a:",
- "about.notice": "Mattermost es hecho posible con software de código abierto utilizado en nuestra plataforma, aplicación de escritorio y aplicaciones móviles.",
- "about.number": "Número de compilación:",
- "about.teamEditionLearn": "Únete a la comunidad Mattermost en ",
- "about.teamEditionSt": "Todas las comunicaciones de tu equipo en un solo lugar, con búsquedas instantáneas y accesible de todas partes.",
- "about.teamEditiont0": "Edición Team T0",
- "about.teamEditiont1": "Edición Team T1",
- "about.title": "Acerca de Mattermost",
- "about.version": "Versión:",
- "access_history.title": "Historial de Acceso",
- "activity_log.activeSessions": "Sesiones Activas",
- "activity_log.browser": "Navegador: {browser}",
- "activity_log.firstTime": "Primera actividad: {date}, {time}",
- "activity_log.lastActivity": "Última actividad: {date}, {time}",
- "activity_log.logout": "Cerrar sesión",
- "activity_log.moreInfo": "Mas información",
- "activity_log.os": "Sistema Operativo: {os}",
- "activity_log.sessionId": "Sesión ID: {id}",
- "activity_log.sessionsDescription": "Las sesiones son creadas cuando inicias sesión desde un nuevo navegador en un dispositivo. Las Sesiones te permiten utilizar Mattermost sin tener que volver a iniciar sesión por un período de tiempo especificado por el Administrador de Sistema. Si deseas cerrar sesión antes de que se cumpla este tiempo, Utiliza el botón de 'Cerrar Sesión' en la parte de abajo.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Android App Nativa",
- "activity_log_modal.androidNativeClassicApp": "App Clásica Nativa de Android",
- "activity_log_modal.desktop": "App Nativa de Escritorio",
- "activity_log_modal.iphoneNativeApp": "iPhone App Nativa",
- "activity_log_modal.iphoneNativeClassicApp": "App Clásica Nativa de iPhone",
- "add_command.autocomplete": "Autocompletar",
- "add_command.autocomplete.help": "(Opcional) Mostrar el comando de barra en la lista de autocompletado.",
- "add_command.autocompleteDescription": "Descripción del Autocompletado",
- "add_command.autocompleteDescription.help": "(Opcional) Descripción corta del comando de barra en la lista de autocompletado.",
- "add_command.autocompleteDescription.placeholder": "Ejemplo: \"Retorna resultados de una búsqueda con los registros de un paciente\"",
- "add_command.autocompleteHint": "Pista del Autocompletado",
- "add_command.autocompleteHint.help": "(Opcional) Argumentos asociados al comando de barra, que serán mostrados como ayuda en la lista de autocompletado.",
- "add_command.autocompleteHint.placeholder": "Ejemplo: [Nombre del Paciente]",
- "add_command.cancel": "Cancelar",
- "add_command.description": "Descripción",
- "add_command.description.help": "Descripción del webhook de entrada.",
- "add_command.displayName": "Nombre a mostrar",
- "add_command.displayName.help": "Nombre a mostrar para el comando de barra el cual puede tener hasta 64 caracteres.",
- "add_command.doneHelp": "El comando de barra se ha establecido. El siguiente token se enviará con el mensaje saliente. Por favor utilízalo para verificar que la petición proviene de su equipo de Mattermost (ver la documentación para más detalles).",
- "add_command.iconUrl": "Icono de Respuesta",
- "add_command.iconUrl.help": "(Opcional) Escoge una imagen de perfil que reemplazara los mensajes publicados por este comando de barra. Ingresa el URL de un archivo .png o .jpg de al menos 128 pixels por 128 pixels.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "Método de Solicitud",
- "add_command.method.get": "GET",
- "add_command.method.help": "El tipo de comando que se utiliza al hacer una solicitud al URL.",
- "add_command.method.post": "POST",
- "add_command.save": "Guardar",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Palabra que desencadena el Comando",
- "add_command.trigger.help": "La palabra que desencadena el comando debe ser única y no puede comenzar con una barra así como no puede tener espacios.",
- "add_command.trigger.helpExamples": "Ejemplos: cliente, empleado, paciente, clima",
- "add_command.trigger.helpReserved": "Reservado: {link}",
- "add_command.trigger.helpReservedLinkText": "ver la lista de comandos de barra predefinidos",
- "add_command.trigger.placeholder": "Palabra que desencadena el comando ej. \"hola\"",
- "add_command.triggerInvalidLength": "La palabra que desencadena el comando debe tener entre {min} y {max} caracteres",
- "add_command.triggerInvalidSlash": "La palabra que desencadena el comando no puede comenzar con /",
- "add_command.triggerInvalidSpace": "La palabra que desencadena el comando no debe contener espacios",
- "add_command.triggerRequired": "Se requiere una palabra que desencadene el comando",
- "add_command.url": "URL de Solicitud",
- "add_command.url.help": "El URL para recibir el evento de la solicitud HTTP POST o GET cuando se ejecuta el comando de barra.",
- "add_command.url.placeholder": "Debe comenzar con http:// o https://",
- "add_command.urlRequired": "Se requiere un URL a donde llegará la solicitud",
- "add_command.username": "Nombre de usuario de Respuesta",
- "add_command.username.help": "(Opcional) Escoge un nombre de usuario que reemplazara los mensajes publicados por este comando de barra. Los nombres de usuario pueden tener hasta 22 caracteres en letras minúsculas, números y los siguientes símbolos \"-\", \"_\", y \".\" .",
- "add_command.username.placeholder": "Nombre de usuario",
- "add_emoji.cancel": "Cancelar",
- "add_emoji.header": "Agregar",
- "add_emoji.image": "Imagen",
- "add_emoji.image.button": "Seleccionar",
- "add_emoji.image.help": "Selecciona la imagen del emoticon. La imagen puede ser un archivo gif, png o jpeg con un tamaño máximo de 1 MB. Las dimensiones de se ajustarán automáticamente a 128 por 128 píxeles, pero manteniendo la relación de aspecto.",
- "add_emoji.imageRequired": "Se require una imagen para el emoticon",
- "add_emoji.name": "Nombre",
- "add_emoji.name.help": "Elige un nombre para tu emoticon hecho de hasta 64 caracteres que consisten en letras minúsculas, números y los símbolos '-' y '_'.",
- "add_emoji.nameInvalid": "El nombre de un emoticon sólo puede contener números, letras y los símbolos '-' y '_'.",
- "add_emoji.nameRequired": "Es necesario un nombre para el emoticon",
- "add_emoji.nameTaken": "Este nombre ya está en uso por un emoticon del sistema. Por favor, elija otro nombre.",
- "add_emoji.preview": "Vista previa",
- "add_emoji.preview.sentence": "Esta es una frase con una {image} en ella.",
- "add_emoji.save": "Guardar",
- "add_incoming_webhook.cancel": "Cancelar",
- "add_incoming_webhook.channel": "Canal",
- "add_incoming_webhook.channel.help": "Canal público o privado que recibe el mensaje del webhook. Debes pertenecer al canal privado para configurar el webhook.",
- "add_incoming_webhook.channelRequired": "Es obligatorio asignar un canal válido",
- "add_incoming_webhook.description": "Descripción",
- "add_incoming_webhook.description.help": "Descripción del webhook de entrada.",
- "add_incoming_webhook.displayName": "Nombre a mostrar",
- "add_incoming_webhook.displayName.help": "Nombre a mostrar para el webhook de entrada el cual puede tener hasta 64 caracteres.",
- "add_incoming_webhook.doneHelp": "El webhook de entrada se ha establecido. Por favor enviar los datos a la siguiente dirección URL (ver la documentación para más detalles).",
- "add_incoming_webhook.name": "Nombre",
- "add_incoming_webhook.save": "Guardar",
- "add_incoming_webhook.url": "Dirección URL: {url}",
- "add_oauth_app.callbackUrls.help": "Las URIs de redirección al cual el servicio redirigirá a los usuarios luego de permitir o denegar la autorización para tu aplicación, y el cual manejará los códigos de autorización o tokens de acceso.Debe ser una URL válida y comenzar con http:// o https://.",
- "add_oauth_app.callbackUrlsRequired": "Se require uno o más URLs para los callback",
- "add_oauth_app.clientId": "ID de Cliente: {id}",
- "add_oauth_app.clientSecret": "Secreto de Cliente: {secret}",
- "add_oauth_app.description.help": "Descripción para tu aplicación de OAuth 2.0.",
- "add_oauth_app.descriptionRequired": "La descripción para tu aplicación de OAuth 2.0 es obligatoria.",
- "add_oauth_app.doneHelp": "Tu aplicación de OAuth 2.0 se ha establecido. Por favor, utiliza el siguiente ID de Cliente y el Secreto de Cliente cuando se solicite autorización para tu aplicación (ver la documentación para más detalles).",
- "add_oauth_app.doneUrlHelp": "Los siguientes son los URL de redireccionamiento autorizado(s).",
- "add_oauth_app.header": "Agregar",
- "add_oauth_app.homepage.help": "La dirección URL de la página web de la aplicación OAuth 2.0. Asegúrese de utilizar HTTP o HTTPS en la dirección URL dependiendo de la configuración del servidor.",
- "add_oauth_app.homepageRequired": "La página web para la aplicación OAuth 2.0 es obligatoria.",
- "add_oauth_app.icon.help": "(Opcional) La URL de la imagen que se utiliza para la aplicación OAuth 2.0. Asegúrese de utilizar HTTP o HTTPS en la dirección URL.",
- "add_oauth_app.name.help": "Nombre a mostrar para la aplicación OAuth 2.0 el cual puede tener hasta 64 caracteres.",
- "add_oauth_app.nameRequired": "El nombre de la aplicación OAuth 2.0 es obligatorio.",
- "add_oauth_app.trusted.help": "Cuando es verdadero, la aplicación OAuth 2.0 es considerada de confianza para el servidor Mattermost y no requiere que el usuario otorgue autorización. Cuando es falso, aparecerá una pantalla adicional, preguntando al usuario si desea permitir o denegar la autorización.",
- "add_oauth_app.url": "Dirección URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "Callback URLs (Uno por Línea)",
- "add_outgoing_webhook.callbackUrls.help": "El URL a donde serán enviados los mensajes.",
- "add_outgoing_webhook.callbackUrlsRequired": "Se require uno o más URLs para los callback",
- "add_outgoing_webhook.cancel": "Cancelar",
- "add_outgoing_webhook.channel": "Canal",
- "add_outgoing_webhook.channel.help": "Canal público que recibe el mensaje del webhook. Opcional si al menos una Palabra que desencadena la acción es especificada.",
- "add_outgoing_webhook.contentType.help1": "Selecciona el tipo de contenido que será enviado con la respuesta.",
- "add_outgoing_webhook.contentType.help2": "Si se escoge applicatoin/x-www-form-urlencoded, el servidor asume que los parametros serán codificados en formato URL.",
- "add_outgoing_webhook.contentType.help3": "Si se escoge applicaton/json, el servidor asume que estarán enviando la data en formato JSON.",
- "add_outgoing_webhook.content_Type": "Tipo de contenido",
- "add_outgoing_webhook.description": "Descripción",
- "add_outgoing_webhook.description.help": "Descripción del webhook de salida.",
- "add_outgoing_webhook.displayName": "Nombre a mostrar",
- "add_outgoing_webhook.displayName.help": "Nombre a mostrar para el webhook de salida el cual puede tener hasta 64 caracteres.",
- "add_outgoing_webhook.doneHelp": "El webhook de salida ha sido establecido. El siguiente token se enviará con el mensaje saliente. Por favor utilízalo para verificar que la petición proviene de su equipo de Mattermost (ver la documentación para más detalles).",
- "add_outgoing_webhook.name": "Nombre",
- "add_outgoing_webhook.save": "Guardar",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Palabras que desencadenan acciones (Una por Línea)",
- "add_outgoing_webhook.triggerWords.help": "Los mensajes que comiencen con una de las palabras especificadas desencadenarán el webhook de salida. Opcional si se selecciona un Canal.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Se require al menos un canal válido o una lista de palabras que desencadenen la acción",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Desencadenar Cuando",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Escoge cuando se desencadenan los webhooks de salida; si la primera palabra del mensaje coincide exactamente con una Palabra que desencadena la acción o si comienza con una Palabra que desencadena la acción.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "La primera palabra coincide exactamente con una palabra que desencadena la acción",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "La primera palabra empieza con una palabra que desencadena la acción",
- "add_users_to_team.title": "Agregar Nuevos Miembros al Equipo {teamName}",
- "admin.advance.cluster": "Alta disponibilidad",
- "admin.advance.metrics": "Monitoreo de Desempeño",
- "admin.audits.reload": "Recargar",
- "admin.audits.title": "Auditorías del Servidor",
- "admin.authentication.email": "Autenticación con Correo electrónico",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Nota:",
- "admin.client_versions.androidLatestVersion": "Última Versión de Android",
- "admin.client_versions.androidLatestVersionHelp": "La última versión de Android liberada",
- "admin.client_versions.androidMinVersion": "Mínima versión de Android",
- "admin.client_versions.androidMinVersionHelp": "La mínima versión compatible de Android",
- "admin.client_versions.desktopLatestVersion": "Última versión de Escritorio",
- "admin.client_versions.desktopLatestVersionHelp": "La última versión de Escritorio liberada",
- "admin.client_versions.desktopMinVersion": "Mínima versión de Escritorio",
- "admin.client_versions.desktopMinVersionHelp": "La mínima version compatible de Escritorio",
- "admin.client_versions.iosLatestVersion": "Última versión de IOS",
- "admin.client_versions.iosLatestVersionHelp": "La última versión de IOS liberada",
- "admin.client_versions.iosMinVersion": "Mínima versión de IOS",
- "admin.client_versions.iosMinVersionHelp": "La mínima versión compatible de IOS",
- "admin.cluster.enableDescription": "Cuando es verdadero, Mattermost se ejecutará en modo de Alta Disponibilidad. Por favor, consulta la documentación para obtener más información acerca de la configuración de Alta Disponibilidad para Mattermost.",
- "admin.cluster.enableTitle": "Habilitar el Modo De Alta Disponibilidad:",
- "admin.cluster.interNodeListenAddressDesc": "La dirección en la que escuchará el servidor para comunicarse con otros servidores.",
- "admin.cluster.interNodeListenAddressEx": "Ej.: \"8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Dirección de Escucha del Inter-Nodo:",
- "admin.cluster.interNodeUrlsDesc": "Las direcciones Url interna/privada de todos los servidores Mattermost separados por comas.",
- "admin.cluster.interNodeUrlsEx": "Ej.: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Inter-Nodo URLs:",
- "admin.cluster.loadedFrom": "El archivo de configuración fue cargado desde el Nodo ID {clusterId}. Por favor consulta la Guía para resolver problemas en nuestra documentación si estás accesando la Consola de Sistema desde un balanceador de cargas y estás experimentando problemas.",
- "admin.cluster.noteDescription": "Al cambiar valores en esta sección es necesario reiniciar el servidor para que surjan efecto. Cuando el modo de Alta Disponibilidad está habilitado, la Consola del Sistema se establece como sólo lectura y sólo se pueden cambiar desde el archivo de configuración.",
- "admin.cluster.should_not_change": "ADVERTENCIA: Estos ajustes pueden no sincronizarse con los otros servidores del agrupamiento. La comunicación entre nodos en Alta Disponibilidad no se iniciará hasta que se realicen las modificaciones al config.json para que sean identicos en todos los servidores y se reinicie Mattermost. Por favor consulte la documentación sobre como agregar o remover un servidor del agrupamiento. Si estás accesando la Consola de Sistema desde un balanceador de cargas y estás experimentando problemas, por favor consulta la Guía para resolver problemas en nuestra documentación.",
- "admin.cluster.status_table.config_hash": "MD5 del Archivo de Configuración",
- "admin.cluster.status_table.hostname": "Nombre del servidor",
- "admin.cluster.status_table.id": "ID del Nodo",
- "admin.cluster.status_table.reload": " Volver a cargar el Estado del Agrupamiento",
- "admin.cluster.status_table.status": "Estado",
- "admin.cluster.status_table.url": "Dirección de murmuración",
- "admin.cluster.status_table.version": "Versión:",
- "admin.cluster.unknown": "desconocido",
- "admin.compliance.directoryDescription": "Directorio en el que se escriben los informes de cumplimiento. Si se deja en blanco, se utilizará ./data/.",
- "admin.compliance.directoryExample": "Ej.: \"./data/\"",
- "admin.compliance.directoryTitle": "Directorio del Informe De Cumplimiento:",
- "admin.compliance.enableDailyDesc": "Cuando es verdadero, Mattermost generará un reporte de cumplimiento diario.",
- "admin.compliance.enableDailyTitle": "Habilitar Informes Diarios:",
- "admin.compliance.enableDesc": "Cuando es verdadedo, Mattermost permite la creación de informes de cumplimiento desde la ficha Cumplimiento y Auditoría. Ver la documentación para obtener más información.",
- "admin.compliance.enableTitle": "Habilitar Los Informes De Cumplimiento:",
- "admin.compliance.false": "falso",
- "admin.compliance.noLicense": "
Nota:
El Cumplimiento es una característica de la edición enterprise. Tu licencia actual no soporta Cumplimiento. Haz clic aquí para información y precio de las licencias empresariales.
\"Enviar descripción genérica con el nombre de usuario y canal\" incluye en nombre de la persona que envió el mensaje y en que canal fue enviado, pero no incluye el texto del mensaje.
\"Enviar el mensaje completo\" incluye un extracto del mensaje en la notificación push, el cual puede contener información confidencial enviada en el mensaje. Si tu Servicio de Notificaciones Push está fuera de tu cortafuegos, es *Altamente recomendado* que está opción sea utilizada bajo el protocolo \"https\" para cifrar la conexión.",
- "admin.email.pushContentTitle": "Contenido de las Notificaciones:",
- "admin.email.pushDesc": "Normalmente se asigna como verdadero en producción. Cuando está en verdadero, Mattermost intenta enviar notificaciones a dispositivos iOS y Android a través del servidor de notificaciones.",
- "admin.email.pushOff": "No enviar notificaciones push",
- "admin.email.pushOffHelp": "Por favor revisa la documentación sobre notificaciones push para conocer sobre las opciones de configuración.",
- "admin.email.pushServerDesc": "Ubicación del servicio de notificaciones push de Mattermost, puedes ubicarlo detras de un cortafuego utilizando https://github.com/mattermost/push-proxy. Para realizar pruebas puedes utilizar https://push-test.mattermost.com, el cual conecta con la ap de ejemplo de Mattermost en iOS publicada en el Apple AppStore. Por favor no utilices este servicio en producción.",
- "admin.email.pushServerEx": "Ej.: \"https://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Servidor de Notificaciones:",
- "admin.email.pushTitle": "Habilitar las Notificaciones Push: ",
- "admin.email.requireVerificationDescription": "Normalmente asignado como verdadero en producción. Cuando es verdadero, Mattermost requiere una verificación del correo electrónico después de crear la cuenta y antes de iniciar sesión por primera vez. Los desarrolladores pude que quieran dejar esta opción en falso para evitar la necesidad de verificar correos y así desarrollar más rápido.",
- "admin.email.requireVerificationTitle": "Require verificación de correo electrónico: ",
- "admin.email.selfPush": "Ingresar manualmente la ubicación del Servicio de Notificaciones Push",
- "admin.email.skipServerCertificateVerification.description": "Cuando es verdadero, Mattermost no verificará el certificado del servidor de correos.",
- "admin.email.skipServerCertificateVerification.title": "Omitir la Verificación del Certificado del Servidor:",
- "admin.email.smtpPasswordDescription": "La contraseña asociada con el nombre de usuario SMTP.",
- "admin.email.smtpPasswordExample": "Ej: \"tucontraseña\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "Contraseña del Servidor SMTP:",
- "admin.email.smtpPortDescription": "Puerto de servidor SMTP",
- "admin.email.smtpPortExample": "Ej: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "Puerto del Servidor SMTP:",
- "admin.email.smtpServerDescription": "Ubicación de SMTP.",
- "admin.email.smtpServerExample": "Ej: \"smtp.tuempresa.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "Servidor SMTP:",
- "admin.email.smtpUsernameDescription": "El nombre de usuario para la autenticación con el servidor SMTP.",
- "admin.email.smtpUsernameExample": "Ej: \"admin@tuempresa.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "Nombre de usuario del Servidor SMTP:",
- "admin.email.testing": "Probando...",
- "admin.false": "falso",
- "admin.file.enableFileAttachments": "Permitir el Intercambio de Archivos:",
- "admin.file.enableFileAttachmentsDesc": "Cuando es falso, desactiva el intercambio de archivos en el servidor. Subir archivos o imágenes en los mensajes están prohibidas a través de los clientes y dispositivos, incluyendo móviles.",
- "admin.file.enableMobileDownloadDesc": "Cuando es falso, se deshabilita la descarga de archivos en las aplicaciones móviles. Los usuarios pueden descargar archivos desde un navegador web para móviles.",
- "admin.file.enableMobileDownloadTitle": "Permitir la descarga de Archivos en el Móvil:",
- "admin.file.enableMobileUploadDesc": "Cuando es falso, se deshabilita la carga de archivos en las aplicaciones móviles. Si Permitir el Intercambio de Archivos se establece en verdadero, los usuarios pueden cargar archivos desde un navegador web para móviles.",
- "admin.file.enableMobileUploadTitle": "Permitir la carga de Archivos en el Móvil:",
- "admin.file_upload.chooseFile": "Seleccionar Archivo",
- "admin.file_upload.noFile": "No se subió ningún archivo",
- "admin.file_upload.uploadFile": "Subir",
- "admin.files.images": "Imágenes",
- "admin.files.storage": "Almacenamiento",
- "admin.general.configuration": "Configuración",
- "admin.general.localization": "Idiomas",
- "admin.general.localization.availableLocalesDescription": "Asigna que idiomas están disponibles para los usuarios en Configuración de la Cuenta (al dejar este campo en blanco todos los idiomas estarán disponibles). Si está agregando un nuevo idioma manualmente, el Idioma predeterminado para el Cliente debe ser agregado antes de guardar estos ajustes.
Te gustaría ayudar con las traducciones? Únete al Servidor de Traducciones de Mattermost para contribuir.",
- "admin.general.localization.availableLocalesNoResults": "No se han encontrado resultados",
- "admin.general.localization.availableLocalesNotPresent": "El idioma predefinido para el cliente debe ser incluido en la lista de idiomas disponibles",
- "admin.general.localization.availableLocalesTitle": "Idiomas disponibles:",
- "admin.general.localization.clientLocaleDescription": "Idioma predeterminado para nuevos usuarios y páginas donde el usuario no ha iniciado sesión.",
- "admin.general.localization.clientLocaleTitle": "Idioma predeterminado para el Cliente:",
- "admin.general.localization.serverLocaleDescription": "Idioma predeterminado para los mensajes del sistema y los registros. Cambiar esto requerirá un reinicio del servidor antes de tomar efecto.",
- "admin.general.localization.serverLocaleTitle": "Idioma predeterminado para el Servidor:",
- "admin.general.log": "Registro de actividad",
- "admin.general.policy": "Política",
- "admin.general.policy.allowBannerDismissalDesc": "Cuando es verdadero, los usuarios pueden descartar el anuncio hasta su próxima actualización. Si es falso, el anuncio estará visible permanentemente hasta que sea apagada por el Administrador del Sistema.",
- "admin.general.policy.allowBannerDismissalTitle": "Permitir el Descarte del Anuncio:",
- "admin.general.policy.allowEditPostAlways": "Cualquier momento",
- "admin.general.policy.allowEditPostDescription": "Establecer la política sobre la cantidad de tiempo que los autores tienen para editar sus mensajes después de la publicación.",
- "admin.general.policy.allowEditPostNever": "Nunca",
- "admin.general.policy.allowEditPostTimeLimit": "segundos después de la publicación",
- "admin.general.policy.allowEditPostTitle": "Permitir a los siguientes usuarios editar sus mensajes:",
- "admin.general.policy.bannerColorTitle": "Color del Anuncio:",
- "admin.general.policy.bannerTextColorTitle": "Color del texto del Anuncio:",
- "admin.general.policy.bannerTextDesc": "El texto que aparece en el anuncio.",
- "admin.general.policy.bannerTextTitle": "Texto del Anuncio:",
- "admin.general.policy.enableBannerDesc": "Habilita un anuncio a través de todos los equipos.",
- "admin.general.policy.enableBannerTitle": "Habilitar Anuncio:",
- "admin.general.policy.permissionsAdmin": "Administradores de Equipo y Sistema",
- "admin.general.policy.permissionsAll": "Todos los miembros del equipo",
- "admin.general.policy.permissionsAllChannel": "Todos los miembros del canal",
- "admin.general.policy.permissionsChannelAdmin": "Administradores del Canal, Equipo y Sistema",
- "admin.general.policy.permissionsDeletePostAdmin": "Administradores de Equipo y Sistema",
- "admin.general.policy.permissionsDeletePostAll": "Los autores de los mensajes pueden borrar sus propios mensajes, y los Administradores pueden borrar cualquier mensaje",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Administradores de Sistema",
- "admin.general.policy.permissionsSystemAdmin": "Administradores de Sistema",
- "admin.general.policy.restrictPostDeleteDescription": "Establecer la política sobre quién tiene permiso para eliminar los mensajes.",
- "admin.general.policy.restrictPostDeleteTitle": "Permitir a los siguientes usuarios borrar los mensajes:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Establece la política de quién puede crear canales privados.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Habilitar creación de canales privados a:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "herramienta de línea de comandos",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Establece la política de quién puede eliminar canales privados. Los canales eliminados pueden ser recuperados desde la base de datos utilizando la {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Habilitar la eliminación de canales privados a:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Establecer la política sobre quién puede agregar y eliminar miembros de los canales privados.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Permitir la gestión de los miembros del canal privado a:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Establece la política de quién puede cambiar el nombre, y establecer el encabezado o el propósito de canales privados.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Habilitar el cambio de nombre a canales privados a:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Establece la política de quién puede crear canales públicos.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Habilitar creación de canales públicos a:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "herramienta de línea de comandos",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Establece la política de quién puede eliminar canales públicos. Los canales eliminados pueden ser recuperados desde la base de datos utilizando la {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Habilitar la eliminación de canales públicos a:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Establece la política de quién puede cambiar el nombre, y establecer el encabezado o el propósito de canales públicos.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Habilitar el cambio de nombre a canales públicos a:",
- "admin.general.policy.teamInviteDescription": "Establecer la política sobre quién puede invitar a otros utilizando las opciones del Menú Principal Enviar Correo de Invitación para invitar nuevos usuarios por correo electrónico, o con Enlace de invitación al equipo y Agregar Miembros al Equipo. Si se utiliza la opción de Enlace de invitación al equipo para compartir el enlace, puedes expirar el código de invitación en la Configuración de Equipo > Código de Invitación luego de que los usuarios deseados se hayan unido al equipo.",
- "admin.general.policy.teamInviteTitle": "Habilitar el envío de invitaciones a equipo por:",
- "admin.general.privacy": "Privacidad",
- "admin.general.usersAndTeams": "Usuarios y Equipos",
- "admin.gitab.clientSecretDescription": "Utilizar este valor vía instrucciones suministradas anteriormente para iniciar sesión en GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Inicia sesión con tu cuenta en GitLab y dirigete a Profile Settings -> Applications.
Ingresa los URIs \"/login/gitlab/complete\" (ejemplo: http://localhost:8065/login/gitlab/complete) y \"/signup/gitlab/complete\".
Luego utiliza los valores de los campos \"Secret\" e \"Id\" de GitLab y completa las opciones que abajo se presentan.
Completa las dirección URLs abajo.
",
- "admin.gitlab.authDescription": "Ingresar /oauth/authorize (example http://localhost:3000/oauth/authorize). Asegurate que si utilizas HTTPS o HTTPS tus URLS sean correctas.",
- "admin.gitlab.authExample": "Ej \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "URL para autentificación:",
- "admin.gitlab.clientIdDescription": "Utilizar este valor vía instrucciones suministradas anteriormente para iniciar sesión en GitLab.",
- "admin.gitlab.clientIdExample": "Ej.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "ID de la Aplicación:",
- "admin.gitlab.clientSecretExample": "Ej.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Clave Secreta de la Aplicación:",
- "admin.gitlab.enableDescription": "Cuando está asignado como verdadero, Mattermost permite la creación de equipos y cuentas utilizando el servicio de OAuth de GitLab.",
- "admin.gitlab.enableTitle": "Habilitar la autenticación con GitLab: ",
- "admin.gitlab.settingsTitle": "Configuración de GitLab",
- "admin.gitlab.tokenDescription": "Ingresar /oauth/token. Asegurate que si utilizas HTTPS o HTTPS tus URLS sean correctas.",
- "admin.gitlab.tokenExample": "Ej \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Url para obteción de Token:",
- "admin.gitlab.userDescription": "Ingresar /api/v3/user. Asegurate que si utilizas HTTPS o HTTPS tus URLS sean correctas.",
- "admin.gitlab.userExample": "Ej \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "URL para obtener datos de usuario:",
- "admin.google.EnableHtmlDesc": "
Dirigete a https://console.developers.google.com, haz clic en Credenciales en la barra lateral izquierda e ingresa \"Mattermost - el-nombre-de-tu-empresa\" como el Nombre del Proyecto, luego haz clic en Crear.
Haz clic en el encabezado de Pantalla de autorización de OAuth e ingresa \"Mattermost\" como el Nombre de producto mostrado a los usuarios, luego haz clic en Guardar.
En el encabezado de Credenciales, haz clic en Crear credenciales, escoge ID de cliente de OAuth y selecciona Web.
En Restricciones y URIs de redireccionamiento autorizados ingresa tu-url-de-mattermost/signup/google/complete (ejemplo: http://localhost:8065/signup/google/complete). Haz clic en Crear.
Pega el ID de Cliente y el Secreto de Cliente en los campos que se encuentran en la parte inferior, luego haz clic en Guardar.
Finalmente, dirigete a Google+ API y haz clic en Habilitar. Puede que esta acción tome unos minutos en propagarse por los sistemas de Google.
",
- "admin.google.authTitle": "URL para autentificación:",
- "admin.google.clientIdDescription": "El ID de Cliente que recibiste al registrar la aplicación con Google.",
- "admin.google.clientIdExample": "Ej.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "ID de Cliente:",
- "admin.google.clientSecretDescription": "El Secreto de Cliente que recibiste al registrar la aplicación con Google.",
- "admin.google.clientSecretExample": "Ej.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Secreto de Cliente",
- "admin.google.tokenTitle": "Url para obteción del Token:",
- "admin.google.userTitle": "URL para obtener datos del usuario:",
- "admin.image.amazonS3BucketDescription": "Nombre que ha seleccionado para el bucket S3 en AWS.",
- "admin.image.amazonS3BucketExample": "Ej.: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Nombre de host del proveedor de Almacenamiento compatible con S3. Por defecto `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Ej: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Extremo de Amazon S3:",
- "admin.image.amazonS3IdDescription": "Obetener esta credencial del administrador de tu Amazon EC2",
- "admin.image.amazonS3IdExample": "Ej.: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "ID de Llave de acceso Amazon S3:",
- "admin.image.amazonS3RegionDescription": "Región que ha seleccionado en AWS para la creación de tu bucket S3.",
- "admin.image.amazonS3RegionExample": "Ej.: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Región de Amazon S3:",
- "admin.image.amazonS3SSEDescription": "Cuando es verdadero, se cifran los archivos en Amazon S3, mediante la utilización del cifrado del lado del servidor con la administración de claves de Amazon S3 Ver la documentación para obtener más información.",
- "admin.image.amazonS3SSEExample": "Ej: \"false\"",
- "admin.image.amazonS3SSETitle": "Habilitar Cifrado del Lado del Servidor para Amazon S3:",
- "admin.image.amazonS3SSLDescription": "Si es falso, permitir conexiones inseguras a Amazon S3. Por defecto permite sólo conexiones seguras.",
- "admin.image.amazonS3SSLExample": "Ej: \"verdadero\"",
- "admin.image.amazonS3SSLTitle": "Habilitar Conexiones seguras a Amazon S3:",
- "admin.image.amazonS3SecretDescription": "Obetener esta credencial del administrador de tu Amazon EC2.",
- "admin.image.amazonS3SecretExample": "Ej.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Llave secreta de Amazon S3:",
- "admin.image.localDescription": "Directorio para los archivos e imágenes. Si se deja en blanco, el valor por defecto es ./data/.",
- "admin.image.localExample": "Ej.: \"./data/\"",
- "admin.image.localTitle": "Directorio de Almacenamiento Local:",
- "admin.image.maxFileSizeDescription": "Tamaño máximo de los archivos adjuntos a los mensajes en megabytes. Precaución: Compruebe que la memoria del servidor puede soportar la configuración seleccionada. Los archivos de gran tamaño, pueden aumentar el riesgo de que se bloquee el servidor o que ocurran fallos debido a interrupciones en la red.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Tamaño máximo de los Archivos:",
- "admin.image.publicLinkDescription": "Salt de 32-characteres agregado para firmar los enlaces para las imágenes públicas. Aleatoriamente generados en la instalación. Haz clic en \"Regenerar\" para crear un nuevo salt.",
- "admin.image.publicLinkExample": "Ej.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Título del enlace público:",
- "admin.image.shareDescription": "Permitir a los usuarios compartir enlaces públicos para archivos e imágenes.",
- "admin.image.shareTitle": "Habilitar los enlaces para Archivos Públicos: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Sistema de Almacenamiento donde los archivos e imagenes adjuntos serán guardados.
Al seleccionar \"Amazon S3\" habilita los campos para ingresar las credenciales de Amazon y los detalles de los bucket.
Al seleccionar \"Almacenamiento Local\" habilita los campos para especificar un directorio local.",
- "admin.image.storeLocal": "Sistema local de archivos",
- "admin.image.storeTitle": "Sistema de Almacenamiento de Archivos:",
- "admin.integrations.custom": "Integraciones Personalizadas",
- "admin.integrations.external": "Servicios Externos",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "El DN Base es el Nombre Distinguido de la ubicación donde Mattermost debe comenzar a buscar a los usuarios en el árbol del AD/LDAP.",
- "admin.ldap.baseEx": "Ej.: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "DN Base:",
- "admin.ldap.bindPwdDesc": "Contraseña del usuario asignado en \"Usuario de Enlace\".",
- "admin.ldap.bindPwdTitle": "Contraseña de Enlace:",
- "admin.ldap.bindUserDesc": "El usuario que realizará las búsquedas AD/LDAP. Normalmente este debería ser una cuenta específicamente creada para ser utilizada por Mattermost. Debería contar con acceso limitado para leer la porción del árbol AD/LDAP especificada en el campo DN Base.",
- "admin.ldap.bindUserTitle": "Usuario de Enlace:",
- "admin.ldap.emailAttrDesc": "El atributo en el servidor AD/LDAP que será utilizado para poblar la dirección de correo electrónico de los usuarios en Mattermost.",
- "admin.ldap.emailAttrEx": "Ej.: \"mail\" o \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Atributo de Correo Electrónico:",
- "admin.ldap.enableDesc": "Cuando es verdadero, Mattermost permite realizar inicio de sesión utilizando AD/LDAP",
- "admin.ldap.enableTitle": "Habilitar el inicio de sesión con AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Opcional) el atributo en el servidor AD/LDAP que se utilizará para rellenar el nombre de los usuarios en Mattermost. Cuando se establece, los usuarios no serán capaces de editar su nombre, ya que se sincroniza con el servidor AD/LDAP. Cuando se deja en blanco, los usuarios pueden establecer su propio nombre en la Configuración de la Cuenta.",
- "admin.ldap.firstnameAttrEx": "Ej.: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Atributo del Nombre",
- "admin.ldap.idAttrDesc": "El atributo en el servidor AD/LDAP que será utilizado para poblar el identificador único en Mattermost. Debe ser un atributo de AD/LDAP que no cambie, como el nombre de usuario o el uid. Si el atributo del identificador cambia, se creará una nueva cuenta en Mattermost que no está asociada a la anterior. Este valor es utilizado para iniciar sesión en Mattermost en el campo \"Usuario AD/LDAP\" en la página de inicio de sesión. Normalmente este atributo es el mismo que el campo “Atributo Usuario”. Si el equipo normalmente utiliza dominio\\\\usuario para iniciar sesión en otros servicios con AD/LDAP, puedes elegir llenar este campo como dominio\\\\usuario para mantener consistencia entre los sitios.",
- "admin.ldap.idAttrEx": "Ej.: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "Atributo ID: ",
- "admin.ldap.lastnameAttrDesc": "(Opcional) el atributo en el servidor AD/LDAP que se utilizará para rellenar el apellido de los usuarios en Mattermost. Cuando se establece, los usuarios no serán capaces de editar su apellido, ya que se sincroniza con el servidor AD/LDAP. Cuando se deja en blanco, los usuarios pueden establecer su propio apellido en la Configuración de la Cuenta.",
- "admin.ldap.lastnameAttrEx": "Ej.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Atributo Apellido:",
- "admin.ldap.ldap_test_button": "Probar AD/LDAP",
- "admin.ldap.loginNameDesc": "El texto que aparece en el campo de inicio de sesión en la página para iniciar sesión. Predeterminado a \"Nombre de usuario AD/LDAP\".",
- "admin.ldap.loginNameEx": "Ej.: \"Nombre de usuario AD/LDAP\"",
- "admin.ldap.loginNameTitle": "Nombre del campo de inicio de sesión:",
- "admin.ldap.maxPageSizeEx": "Ej.: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "El número máximo de usuarios que el servidor Mattermost solicitará al servidor AD/LDAP a la vez. 0 es sin límites.",
- "admin.ldap.maxPageSizeTitle": "Tamaño Máximo de Página",
- "admin.ldap.nicknameAttrDesc": "(Opcional) el atributo en el servidor AD/LDAP que se utilizará para rellenar el sobrenombre de los usuarios en Mattermost. Cuando se establece, los usuarios no podrán editar su apodo, ya que se sincroniza con el servidor AD/LDAP. Cuando se deja en blanco, los usuarios pueden establecer su propio apodo en la Configuración de la Cuenta.",
- "admin.ldap.nicknameAttrEx": "Ej.: \"sobrenombre\"",
- "admin.ldap.nicknameAttrTitle": "Atributo del Sobrenombre:",
- "admin.ldap.noLicense": "
Nota:
AD/LDAP es una característica de la edición empresarial. Tu licencia actual no soporta AD/LDAP. Haz clic aquí para obtener información y precios de las licencias empresariales.
",
- "admin.ldap.portDesc": "El puerto que Mattermost utilizará para conectarse al servidor AD/LDAP. El predeterminado es 389.",
- "admin.ldap.portEx": "Ej.: \"389\"",
- "admin.ldap.portTitle": "Puerto AD/LDAP:",
- "admin.ldap.positionAttrDesc": "(Opcional) El atributo en el servidor AD/LDAP que será utilizado para poblar el cargo de los usuarios en Mattermost.",
- "admin.ldap.positionAttrEx": "Ej: \"cargo\"",
- "admin.ldap.positionAttrTitle": "Atributo Cargo:",
- "admin.ldap.queryDesc": "El tiempo de espera para las consultas en el servidor AD/LDAP. Aumenta este valor si estás obteniendo errores por falta de tiempo debido a un servidor de AD/LDAP lento.",
- "admin.ldap.queryEx": "Ej.: \"60\"",
- "admin.ldap.queryTitle": "Tiempo de espera para las Consultas (segundos):",
- "admin.ldap.serverDesc": "El dominio o dirección IP del servidor AD/LDAP.",
- "admin.ldap.serverEx": "Ej.: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "Servidor AD/LDAP:",
- "admin.ldap.skipCertificateVerification": "Omitir la Verificación del Certificado:",
- "admin.ldap.skipCertificateVerificationDesc": "Omite la verificación del certificado para las conexiones TLS o STARTTLS. No recomendado para ambientes de producción donde TLS es requerido. Utilizalo sólamente para pruebas.",
- "admin.ldap.syncFailure": "Error de Sincronización: {error}",
- "admin.ldap.syncIntervalHelpText": "La Sincronización AD/LDAP actualiza la información de usuarios en Mattermost para reflejar las actualizaciones en el servidor AD/LDAP. Por ejemplo, cuando un el nombre de usuario cambia en el servidor AD/LDAP, el cambio es reflejado en Mattermost cuando se realiza la sincronización. Las cuentas eliminadas o inhabilitadas en el servidor AD/LDAP tendrán sus cuentas en Mattermost como \"Inactiva\" y las sesiones revocadas. Mattermost realiza la sincronización en el intervalo de ingresado. Por ejemplo, si se introduce 60, Mattermost sincroniza cada 60 minutos.",
- "admin.ldap.syncIntervalTitle": "Intervalo de Sincronización (minutos):",
- "admin.ldap.syncNowHelpText": "Inicia una sincronización AD/LDAP inmediatamente.",
- "admin.ldap.sync_button": "Sincronizar AD/LDAP Ahora",
- "admin.ldap.testFailure": "Falla de la Prueba AD/LDAP: {error}",
- "admin.ldap.testHelpText": "Comprueba si el servidor Mattermost puede conectar con el servidor AD/LDAP especificado. Consulta el archivo de registro de mensajes de error para más detalles.",
- "admin.ldap.testSuccess": "Prueba de AD/LDAP Satisfactoria",
- "admin.ldap.uernameAttrDesc": "El atributo en el servidor AD/LDAP que se utilizará para poblar el nombre de usuario en Mattermost. Este puede ser igual al Atributo Id.",
- "admin.ldap.userFilterDisc": "(Opcional) Introduce un Filtro AD/LDAP a utilizar para buscar los objetos de usuario. Sólo los usuarios seleccionados por la consulta será capaz de acceder a Mattermost. Para Active Directory, la consulta para filtrar a los usuarios con inhabilitados es (&(objectCategory=Persona)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Ej: \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Filtro de Usuario:",
- "admin.ldap.usernameAttrEx": "Ej.: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Atributo Usuario:",
- "admin.license.choose": "Seleccionar Archivo",
- "admin.license.chooseFile": "Escoger Archivo",
- "admin.license.edition": "Edición: ",
- "admin.license.key": "Licencia: ",
- "admin.license.keyRemove": "Remover la Licencia Empresarial y Degradar el Servidor",
- "admin.license.noFile": "No se subió ningún archivo",
- "admin.license.removing": "Removiendo Licencia...",
- "admin.license.title": "Edición y Licencia",
- "admin.license.type": "Licencia: ",
- "admin.license.upload": "Subir",
- "admin.license.uploadDesc": "Subir una llave de licencia de Mattermost Edición Empresarial para mejorar este servidor. Visítanos en líneapara conocer más acerca de los beneficios de la Edición Empresarial o para comprar una licencia.",
- "admin.license.uploading": "Subiendo Licencia...",
- "admin.log.consoleDescription": "Normalmente asignado en falso en producción. Los desarolladores pueden configurar este campo en verdadero para ver de mensajes de consola basado en las opciones de nivel configuradas. Si es verdadera, el servidor escribirá los mensajes en una salida estandar (stdout).",
- "admin.log.consoleTitle": "Imprimir registros en la consola: ",
- "admin.log.enableDiagnostics": "Habilitar Diagnósticos e Informes de error:",
- "admin.log.enableDiagnosticsDescription": "Activa esta función para mejorar la calidad y el rendimiento de Mattermost mediante el envío de informes de error y la información de diagnóstico a Mattermost, Inc. Lee nuestra política de privacidad para obtener más información.",
- "admin.log.enableWebhookDebugging": "Habilitar Depuración de Webhook",
- "admin.log.enableWebhookDebuggingDescription": "Puedes establecer a falso para desactivar el registro de depuración del cuerpo de todas las solicitudes de webhooks de entrada.",
- "admin.log.fileDescription": "Normalmente se asigna como verdadero en producción. Cuando es verdadero, los eventos son registrados en el archivo mattermost.log en el directorio especificado en el campo Directorio del Archivo de Registro. Los registros son rotados cada 10.000 líneas y archivados en el mismo directorio, y se les asigna como nombre de archivo una fecha y un número de serie. Por ejemplo, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "Esta configuración determina el nivel de detalle con el cual los eventos serán escritos en el archivo de registro. ERROR: Sólo salida de mensajes de error. INFO: Salida de mensaje de error y información acerca de la partida e inicialización. DEBUG: Muestra un alto detalle para que los desarolladores que trabajan con eventos de depuración.",
- "admin.log.fileLevelTitle": "Nivel registro:",
- "admin.log.fileTitle": "Escribir registros en un archivo: ",
- "admin.log.formatDateLong": "Fecha (2006/01/02)",
- "admin.log.formatDateShort": "Fecha (01/02/06)",
- "admin.log.formatDescription": "Formato del mensaje de registro de salida. Si es blanco se establecerá en \"[%D %T] [%L] %M\", donde:",
- "admin.log.formatLevel": "Nivel (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Mensaje",
- "admin.log.formatPlaceholder": "Ingresar tu formato de archivo",
- "admin.log.formatSource": "Fuente",
- "admin.log.formatTime": "Hora (15:04:05 MST)",
- "admin.log.formatTitle": "Formato del archivo de Registro:",
- "admin.log.levelDescription": "Esta configuración determina el nivel de detalle con el cual los eventos serán escritos en la consola. ERROR: Sólo salida de mensajes de error. INFO: Salida de mensaje de error y información acerca de la partida e inicialización. DEBUG: Muestra un alto detalle para que los desarolladores que trabajan con eventos de depuración.",
- "admin.log.levelTitle": "Nivel de log de consola:",
- "admin.log.locationDescription": "La ubicación para los archivos de registro. Si se deja en blanco, serán almacenados en el directorio ./logs. La ruta especificada debe existir y Mattermost debe tener permisos de escritura.",
- "admin.log.locationPlaceholder": "Ingresar locación de archivo",
- "admin.log.locationTitle": "Directorio del Archivo de Registro:",
- "admin.log.logSettings": "Configuración de registro",
- "admin.logs.bannerDesc": "Para buscar usuarios por ID del usuario o ID del Token, dirigete a Reportes > Usuarios y copia el ID en el filtro de búsqueda.",
- "admin.logs.reload": "Recargar",
- "admin.logs.title": "Servidor de registros",
- "admin.manage_roles.additionalRoles": "Selecciona permisos adicionales para la cuenta. Conoce más acerca de roles y permisos.",
- "admin.manage_roles.allowUserAccessTokens": "Permitir que esta cuenta genere tokens de acceso personales.",
- "admin.manage_roles.cancel": "Cancelar",
- "admin.manage_roles.manageRolesTitle": "Gestionar Roles",
- "admin.manage_roles.postAllPublicRole": "Acceso para publicar mensajes a todos los canales públicos de Mattermost.",
- "admin.manage_roles.postAllPublicRoleTitle": "mensajes:canales",
- "admin.manage_roles.postAllRole": "Acceso para publicar mensajes en todos los canales de Mattermost incluyendo mensajes directos.",
- "admin.manage_roles.postAllRoleTitle": "mensajes:todos",
- "admin.manage_roles.save": "Guardar",
- "admin.manage_roles.saveError": "No se puede guardar los roles.",
- "admin.manage_roles.systemAdmin": "Admin del Sistema",
- "admin.manage_roles.systemMember": "Miembro",
- "admin.manage_tokens.manageTokensTitle": "Gestionar Tokens de Acceso Personales",
- "admin.manage_tokens.userAccessTokensDescription": "Tokens de acceso personales funcionan similar a un token de sesión y pueden ser utilizado por integraciones para autenticarse con la REST API. Conoce más acerca de tokens de acceso personales.",
- "admin.manage_tokens.userAccessTokensNone": "No hay tokens de acceso personales.",
- "admin.metrics.enableDescription": "Cuando es verdadero, Mattermost habilitará el monitoreo de desempeño, la recolección y la elaboración de perfiles. Por favor, consulta la documentación para obtener más información acerca de la configuración del monitoreo del rendimiento para Mattermost.",
- "admin.metrics.enableTitle": "Habilitar el Monitoreo de Desempeño:",
- "admin.metrics.listenAddressDesc": "La dirección del servidor que escuchará para mostrar las métricas de rendimiento.",
- "admin.metrics.listenAddressEx": "Ej: \":8067\"",
- "admin.metrics.listenAddressTitle": "Dirección de escucha:",
- "admin.mfa.bannerDesc": "Autenticación de Múltiples factores está disponible para cuentas con inicio de sesión AD/LDAP o correo electrónico. Si se utilizan otros métodos de inicio de sesión, MFA debe ser configurado en el proveedor de autenticación.",
- "admin.mfa.cluster": "Alta",
- "admin.mfa.title": "Autenticación de Múltiples factores:",
- "admin.nav.administratorsGuide": "Guía del administrador",
- "admin.nav.commercialSupport": "Soporte comercial",
- "admin.nav.help": "Ayuda",
- "admin.nav.logout": "Cerrar sesión",
- "admin.nav.report": "Reportar problema",
- "admin.nav.switch": "Seleccionar Equipo",
- "admin.nav.troubleshootingForum": "Foro de resolución de problemas",
- "admin.notifications.email": "Correo electrónico",
- "admin.notifications.push": "Push a Móvil",
- "admin.notifications.title": "Configuracón de Notificaciones",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "No permitir el inicio de sesión por medio de un proveedor de OAuth 2.0",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Cuando es verdadero, Mattermost puede actuar como un proveedor de servicios de OAuth 2.0 permitiendo a que Mattermost autorice las solicitudes de API de aplicaciones externas. Ver la documentación para obtener más información.",
- "admin.oauth.providerTitle": "Habilitar el Proveedor de Servicios de OAuth 2.0: ",
- "admin.oauth.select": "Selecciona un proveedor de servicio de OAuth 2.0",
- "admin.office365.EnableHtmlDesc": "
Inicia sesión con tu cuenta de Microsoft u Office 365. Asegura que la cuenta sea un inquilino de Azure AD para que los usuarios puedan iniciar sesión.
Dirígete a https://apps.dev.microsoft.com. haz clic en Ir a la lista de aplicaciones > Agregar una aplicación y utiliza \"Mattermost - el-nombre-de-tu-empresa\" como el Nombre de la aplicación.
Bajo Secretos de aplicación, haz clic en Generar nueva contraseña y pegala en el campo inferior Contraseña Secreta de la Aplicación.
Bajo Plataformas, haz clic en Agregar plataforma, selecciona Web e ingresa url-de-tu-mattermost/signup/office365/complete (ejemplo: http://localhost:8065/signup/office365/complete) en URI de redireccionamiento. Tambíen desmarca Permitir flujo implícito.
Finalmente, haz clic en Guardar y pega el ID de aplicación en el campo inferior.
",
- "admin.office365.authTitle": "URL para autentificación:",
- "admin.office365.clientIdDescription": "El ID de Aplicación/Cliente que recibiste al registrar la aplicación con Microsoft.",
- "admin.office365.clientIdExample": "Ej.: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "ID de Aplicación:",
- "admin.office365.clientSecretDescription": "La Constraseña Secreta de la Aplicación que recibiste al registrar la aplicación con Microsoft.",
- "admin.office365.clientSecretExample": "Ej.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Constraseña Secreta de la Aplicación:",
- "admin.office365.tokenTitle": "Url para obteción de Token:",
- "admin.office365.userTitle": "URL para obtener datos de usuario:",
- "admin.password.lowercase": "Al menos una letra minúscula",
- "admin.password.minimumLength": "Longitud Mínima de la Contraseña:",
- "admin.password.minimumLengthDescription": "Número mínimo de caracteres necesarios para una contraseña válida. Debe ser un número entero mayor que o igual a {min} y menos que o igual a {max}.",
- "admin.password.minimumLengthExample": "Ej.: \"5\"",
- "admin.password.number": "Al menos un número",
- "admin.password.preview": "Vista previa del mensaje de error",
- "admin.password.requirements": "Requisitos de la Contraseña:",
- "admin.password.requirementsDescription": "Los tipos de caracteres que se requiere para una contraseña válida.",
- "admin.password.symbol": "Al menos un símbolo (por ejemplo,\"~!@#$%^&*()\")",
- "admin.password.uppercase": "Al menos una letra en mayúscula",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "URL del canal",
- "admin.plugins.jira.enabledDescription": "Cuando es verdadero, se puede configurar JIRA webhooks para publicar mensajes en Mattermost. Para ayudar a combatir los ataques de phishing, todos los mensajes están marcados por una etiqueta BOT.",
- "admin.plugins.jira.enabledLabel": "Habilitar JIRA:",
- "admin.plugins.jira.secretDescription": "Esta clave secreta se utiliza para autenticar a Mattermost.",
- "admin.plugins.jira.secretLabel": "Clave Secreta:",
- "admin.plugins.jira.secretParamPlaceholder": "clave secreta",
- "admin.plugins.jira.secretRegenerateDescription": "Regenera la clave secreta para la de dirección URL del webhook. La regeneración de la clave secreta invalida su actual integración de JIRA.",
- "admin.plugins.jira.setupDescription": "Utiliza esta URL del webhook para configurar la integración de JIRA. Ver {webhookDocsLink} para obtener más información.",
- "admin.plugins.jira.teamParamPlaceholder": "URL del equipo",
- "admin.plugins.jira.userDescription": "Seleccione el nombre de usuario que será utilizado por esta integración.",
- "admin.plugins.jira.userLabel": "Usuario:",
- "admin.plugins.jira.webhookDocsLink": "documentación",
- "admin.privacy.showEmailDescription": "Si es falso, se esconde la dirección de correo electrónico de los miembros para todos los usuarios, excepto a los Administradores del Sistema.",
- "admin.privacy.showEmailTitle": "Mostrar dirección de correo electrónico: ",
- "admin.privacy.showFullNameDescription": "Si es falso, se esconde el nombre completo de los miembros para todos los usuarios, excepto a los Administradores del Sistema. El nombre de usuario se muestra en lugar del nombre completo.",
- "admin.privacy.showFullNameTitle": "Mostrar nombre completo: ",
- "admin.purge.button": "Purgar Todos los Cachés",
- "admin.purge.loading": " Cargando...",
- "admin.purge.purgeDescription": "Esto eliminará toda la memoria caché para cosas como las sesiones, cuentas, canales, etc. Las Implementaciones que utilicen Alta Disponibilidad intentarán purgar todos los servidores en el agrupamiento de servidores. La purga de cachés pueden tener un impacto adverso en el rendimiento.",
- "admin.purge.purgeFail": "Purga sin éxito: {error}",
- "admin.rate.enableLimiterDescription": "Cuando es verdadero, La APIs son reguladas a tasas especificadas a continuación.",
- "admin.rate.enableLimiterTitle": "Habilitar el limitador de velocidad: ",
- "admin.rate.httpHeaderDescription": "Al llenar este campo, se limita la velocidad según el encabezado HTTP especificado (e.j. cuando se configura con NGINX asigna \"X-Real-IP\", cuando se configura con AmazonELB asigna \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Ej.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Variar el límite de velocidad según el encabezado HTTP:",
- "admin.rate.maxBurst": "Máximo Tamaño de la Ráfaga:",
- "admin.rate.maxBurstDescription": "Máximo número de solicitudes permitidas más allá del límite de consultas por segundo.",
- "admin.rate.maxBurstExample": "Ej.: \"100\"",
- "admin.rate.memoryDescription": "El número máximo de sesiones de usuarios conectados en el sistema es determinado por \"Variar el límite de velocidad por dirección remota\" y \"Variar el límite de velocidad según el encabezado HTTP\" en la configuración siguiente.",
- "admin.rate.memoryExample": "Ej.: \"10000\"",
- "admin.rate.memoryTitle": "Tamaño de memoria de almacenamiento:",
- "admin.rate.noteDescription": "Al cambiar otros valores diferentes al URL del sitio en esta sección necesitará reiniciar el servidor antes de que los cambios tomen efecto.",
- "admin.rate.noteTitle": "Nota:",
- "admin.rate.queriesDescription": "Regulador de solicitudes API por sgundos.",
- "admin.rate.queriesExample": "Ej.: \"10\"",
- "admin.rate.queriesTitle": "Máximo de Consultas por Segundo:",
- "admin.rate.remoteDescription": "Cuando es verdadero, límite de velocidad para el accedo a la API desde dirección IP.",
- "admin.rate.remoteTitle": "Variar el límite de velocidad por dirección remota: ",
- "admin.rate.title": "Configuración de velocidad",
- "admin.recycle.button": "Reciclar Conexiones de Base de Datos",
- "admin.recycle.loading": " Reciclando...",
- "admin.recycle.recycleDescription": "Implementaciones que utilizan varias bases de datos pueden cambiar de una base de datos maestra a otra sin necesidad de reiniciar el servidor Mattermost al actualizar \"config.json\" a la nueva configuración deseada utilizando la función {reloadConfiguration} para cargar la nueva configuración mientras se está ejecutando el servidor. El administrador deberá entonces utilizar la función {featureName} para reciclar las conexiones de base de datos basado en la nueva configuración.",
- "admin.recycle.recycleDescription.featureName": "Reciclar Conexiones de Base de Datos",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuración > Recargar Configuración desde el Disco",
- "admin.recycle.reloadFail": "Reciclaje fallido: {error}",
- "admin.regenerate": "Regenerar",
- "admin.reload.button": "Recargar Configuración desde el Disco",
- "admin.reload.loading": " Cargando...",
- "admin.reload.reloadDescription": "Implementaciones que utilizan varias bases de datos pueden cambiar de una base de datos maestra a otra sin necesidad de reiniciar el servidor Mattermost al actualizar \"config.json\" a la nueva configuración deseada utilizando la función {featureName} para cargar la nueva configuración mientras se está ejecutando el servidor. El administrador deberá entonces utilizar la función {recycleDatabaseConnections} para reciclar las conexiones de base de datos basado en la nueva configuración.",
- "admin.reload.reloadDescription.featureName": "Recargar Configuración desde el Disco",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Base de Datos > Reciclar Conexiones de Base de Datos",
- "admin.reload.reloadFail": "Recarga fallida: {error}",
- "admin.requestButton.loading": " Cargando...",
- "admin.requestButton.requestFailure": "Prueba Fallida: {error}",
- "admin.requestButton.requestSuccess": "Prueba realizada con éxito",
- "admin.reset_password.close": "Cerrar",
- "admin.reset_password.newPassword": "Nueva contraseña",
- "admin.reset_password.select": "Seleccionar",
- "admin.reset_password.submit": "Por favor, introducir como mínimo {chars} caracteres.",
- "admin.reset_password.titleReset": "Restablecer la contraseña",
- "admin.reset_password.titleSwitch": "Cambiar cuenta a Correo Electrónico/Contraseña",
- "admin.saml.assertionConsumerServiceURLDesc": "Ingresa https:///login/sso/saml. Asegurate de utilizar HTTP o HTTPS en el URL dependiendo de la configuración de tu servidor. Este campo también es conocido como Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "Ej \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "URL de inicio de sesión del Proveedor de Servicio:",
- "admin.saml.bannerDesc": "Los atributos de usuario del servidor SAML, incluyendo su desactivación o eliminación, es actualizado en Mattermost durante el inicio de sesión del usuario. Para conocer más: https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "El atributo de la Aserción SAML que se utilizará para rellenar las direcciones de correo electrónico de los usuarios en Mattermost.",
- "admin.saml.emailAttrEx": "Ej.: \"Email\" o \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "Atributo de Correo Electrónico:",
- "admin.saml.enableDescription": "Cuando es verdadero, Mattermost permite el inicio de sesión mediante SAML 2.0. Por favor, consulte la documentation para obtener más información acerca de la configuración de SAML para Mattermost.",
- "admin.saml.enableTitle": "Habilitar el inicio de Sesión con SAML 2.0:",
- "admin.saml.encryptDescription": "Si es falso, Mattermost no se descifrará las Aserciones SAML cifrados con su el Certificado Público del Proveedor de Servicio. No se recomienda para entornos de producción. Solo para probar.",
- "admin.saml.encryptTitle": "Habilitar el Cifrado:",
- "admin.saml.firstnameAttrDesc": "(Opcional) El atributo de la Aserción SAML que se utilizará para rellenar el nombre de los usuarios en Mattermost.",
- "admin.saml.firstnameAttrEx": "Ej.: \"FirstName\".",
- "admin.saml.firstnameAttrTitle": "Atributo del Nombre",
- "admin.saml.idpCertificateFileDesc": "El certificado de autentcación público expedido por el Proveedor de Identidad.",
- "admin.saml.idpCertificateFileRemoveDesc": "Remove el certificado de autentcación público expedido por el Proveedor de Identidad.",
- "admin.saml.idpCertificateFileTitle": "Certificado Público del Proveedor de Identidad:",
- "admin.saml.idpDescriptorUrlDesc": "El URL del emisor utilizado en las solicitudes SAML para el Proveedor de Identidad.",
- "admin.saml.idpDescriptorUrlEx": "Ej.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "URL del emisor del Proveedor de Identidad:",
- "admin.saml.idpUrlDesc": "El URL al cual Mattermost enviará las solicitudes de SAML para iniciar la secuencia de inicio de sesión.",
- "admin.saml.idpUrlEx": "Ej.: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Opcional) El atributo de la Aserción SAML que se utilizará para rellenar el apellido de los usuarios en Mattermost.",
- "admin.saml.lastnameAttrEx": "Ej.: \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Atributo Apellido:",
- "admin.saml.localeAttrDesc": "(Opcional) El atributo de La Aserción SAML que se utilizará para rellenar el idioma de los usuarios en Mattermost.",
- "admin.saml.localeAttrEx": "Ej.: \"Locale\" o \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Atributo del Idioma Preferido:",
- "admin.saml.loginButtonTextDesc": "(Opcional) El texto que aparece en el botón de inicio de sesión en la página de inicio de sesión. El valor por omisión es \"With SAML\".",
- "admin.saml.loginButtonTextEx": "Ej.: \"Con OKTA\"",
- "admin.saml.loginButtonTextTitle": "Texto del Botón de Inicio de Sesión:",
- "admin.saml.nicknameAttrDesc": "(Opcional) El atributo de La Aserción SAML que se utilizará para rellenar el sobrenombre de usuarios en Mattermost.",
- "admin.saml.nicknameAttrEx": "Ej.: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Atributo del Sobrenombre:",
- "admin.saml.positionAttrDesc": "(Opcional) El atributo de la Aserción SAML que se utilizará para rellenar el cargo de los usuarios en Mattermost.",
- "admin.saml.positionAttrEx": "Ej: \"Cargo\"",
- "admin.saml.positionAttrTitle": "Atributo del Cargo:",
- "admin.saml.privateKeyFileFileDesc": "La llave privada que se utiliza para descifrar Aserciones SAML provenientes del Proveedor de Identidad.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Remover la llave privada que se utiliza para descifrar Aserciones SAML provenientes del Proveedor de Identidad.",
- "admin.saml.privateKeyFileTitle": "Llave Privada del Proveedor de Servicio:",
- "admin.saml.publicCertificateFileDesc": "El certificado utilizado para generar la firma de una solicitud SAML para el Proveedor de Identidad para la secuencia de inicio de sesión iniciada desde el Proveedor de Servicio, cuando Mattermost es el Proveedor de Servicio.",
- "admin.saml.publicCertificateFileRemoveDesc": "Remover el certificado utilizado para generar la firma de una solicitud SAML para el Proveedor de Identidad para la secuencia de inicio de sesión iniciada desde el Proveedor de Servicio, cuando Mattermost es el Proveedor de Servicio.",
- "admin.saml.publicCertificateFileTitle": "Certificado Público del Proveedor de Servicio:",
- "admin.saml.remove.idp_certificate": "Remover el Certificado del Proveedor de Identidad",
- "admin.saml.remove.privKey": "Remover la Llave Privada del Proveedor de Servicio",
- "admin.saml.remove.sp_certificate": "Remover el Certificado del Proveedor de Servicio",
- "admin.saml.removing.certificate": "Removiendo Certificado...",
- "admin.saml.removing.privKey": "Removiendo Llave Privada...",
- "admin.saml.uploading.certificate": "Subiendo Certificado...",
- "admin.saml.uploading.privateKey": "Subiendo Llave Privada...",
- "admin.saml.usernameAttrDesc": "El atributo de la Aserción SAML que se utilizará para rellenar el campo nombre de usuario en Mattermost.",
- "admin.saml.usernameAttrEx": "Ej.: \"Username\"",
- "admin.saml.usernameAttrTitle": "Atributo Usuario:",
- "admin.saml.verifyDescription": "Si es falso, Mattermost no se comprueba que la firma que se envía con una Respuesta SAML coincide con el URL de inicio de Sesión del Proveedor de Servicios. No se recomienda para entornos de producción. Solo para probar.",
- "admin.saml.verifyTitle": "Verificar Firma:",
- "admin.save": "Guardar",
- "admin.saving": "Guardando...",
- "admin.security.connection": "Conexiones",
- "admin.security.inviteSalt.disabled": "El salt para invitaciones no puede ser cambiado, mientras que el envío de correos electrónicos está inhabilitado.",
- "admin.security.login": "Inicio de Sesión",
- "admin.security.password": "Contraseña",
- "admin.security.passwordResetSalt.disabled": "El salt para restablecer contraseñas no puede ser cambiado, mientras que el envío de correos electrónicos está inhabilitado.",
- "admin.security.public_links": "Enlaces Públicos",
- "admin.security.requireEmailVerification.disabled": "Verificación de correo electrónico no puede ser cambiado, mientras que el envío de correos electrónicos está inhabilitado.",
- "admin.security.session": "Sesiones",
- "admin.security.signup": "Registro",
- "admin.select_team.close": "Cerrar",
- "admin.select_team.select": "Seleccionar",
- "admin.select_team.selectTeam": "Seleccionar grupo",
- "admin.service.attemptDescription": "Número de intentos de inicio de sesión permitidos antes de que un usuario sea bloqueado y sea necesario restablecer su contraseña a través de correo electrónico.",
- "admin.service.attemptExample": "Ej.: \"10\"",
- "admin.service.attemptTitle": "Máximo de intentos de conexión:",
- "admin.service.cmdsDesc": "Cuando es verdadero, los comandos de barra serán permitidos. Revisa la documentación para obtener más información.",
- "admin.service.cmdsTitle": "Habilitar Comandos de Barra Personalizados: ",
- "admin.service.corsDescription": "Habilitar solicitudes HTTP de origen cruzado desde un dominio específico. Utiliza \"*\" si quieres permitir CORS desde cualquier dominio o déjalo en blanco para inhabilitarlo.",
- "admin.service.corsEx": "http://ejemplo.com",
- "admin.service.corsTitle": "Habilitar la procedencia de las solicitudes cruzadas de:",
- "admin.service.developerDesc": "Cuando es verdadero, los errores de JavaScript se muestran en una barra púrpura en la parte superior de la interfaz de usuario. No se recomienda su uso en producción. ",
- "admin.service.developerTitle": "Habilitar modo de Desarrollador: ",
- "admin.service.enableAPIv3": "Permitir el uso de la API v3:",
- "admin.service.enableAPIv3Description": "Establece en falso para deshabilitar todos los endpoints de la versión 3 de la API REST. Las integraciones que se basan en la API v3 fallarán y entonces pueden ser identificados para la migración a la API de v4. API v3 es obsoleto y será eliminado en el futuro cercano. Revisa https://api.mattermost.com para más detalles.",
- "admin.service.enforceMfaDesc": "Cuando es verdadero, la autenticación de múltiples factores es requerida para iniciar sesión. Nuevos usuarios tendrán que configurar MFA cuando se registran. Los usuarios con sesiones iniciadas sin MFA configurado serán enviados a la página de configuración de MFA hasta que la configuración haya sido completada.
Si su sistema tiene usuarios con sesiones iniciadas cuyo métodos son diferentes a AD/LDAP o correo electrónico, La imposición de MFA debe realizarse en el proveedor de autenticación fuera de Mattermost.",
- "admin.service.enforceMfaTitle": "Imponer la Autenticación de Múltiples factores:",
- "admin.service.forward80To443": "Redirigir el puerto 80 a 443:",
- "admin.service.forward80To443Description": "Redirige todo el trafico inseguro del puerto 80 al puerto seguro 443",
- "admin.service.googleDescription": "Establece esta clave para mostrar los títulos de los vídeos de YouTube incorporado en las previsualizaciones. Sin la clave, las previsualizaciones de YouTube igual serán creadas en base a los enlaces que aparecen en los mensajes o comentarios, pero no se mostrará el título de vídeo. Ve el Tutorial para Desarrolladores de Google para ver las instrucciones sobre cómo obtener una clave.",
- "admin.service.googleExample": "Ej.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Llave del API de Google:",
- "admin.service.iconDescription": "Cuando es verdadero, los webhooks, comandos de barra y otras integraciones, tales como Zapier, podrán cambiar la imagen de perfil del mensaje que generan. Nota: Al combinar con el permitir a las integraciones reescribir nombres de usuario, puede que los usuarios sean capaces de realizar ataques de phishing tratando de hacerse pasar por otros usuarios.",
- "admin.service.iconTitle": "Permitir a las integraciones reescribir imágenes de perfil:",
- "admin.service.insecureTlsDesc": "Cuando es verdadero, cualquier solicitud de salida por HTTPS será aceptada incluso si posee certificados no verificados o autofirmados. Por ejemplo, webhooks de salida a un servidor con un certificado TLS autofirmado, utilizando cualquier dominio, será permitido. Tenga en cuenta que esto hace que estas conexiones susceptibles a los ataques hombre-en-el-medio.",
- "admin.service.insecureTlsTitle": "Habilitar Conexiones de Salida Inseguras: ",
- "admin.service.integrationAdmin": "Restringir la gestión de las integraciones a los Administradores:",
- "admin.service.integrationAdminDesc": "Cuando es verdadero, los webhooks y comandos de barra sólo se pueden crear, editar y visualizar por los Administradores de Equipo y Sistema, y las aplicaciones de OAuth 2.0 por Administradores de sistemas. Las integraciones están disponibles para todos los usuarios después de haber sido creadas por el Administrador.",
- "admin.service.internalConnectionsDesc": "En los entornos de pruebas, tales como cuando se desarrolla integraciones localmente en un computador de desarrollo, utilice este ajuste para especificar los dominios, direcciones IP, o notaciones CIDR para permitir las conexiones internas. No se recomienda para su uso en producción, ya que esto puede permitir a un usuario extraer datos confidenciales de su servidor o de la red interna.
Por defecto, URLs suministradas por el usuario, tales como los utilizados por metadatos de Open Graph, webhooks, o comandos de barra no se podrán conectarse a direcciones IP reservadas incluyendo loopback o direcciones locales utilizadadas para las redes internas. Las direcciones URL para las notificaciones Push, OAuth 2.0 y WebRTC son de confianza y no se ven afectadas por este ajuste.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Permitir conexiones internas no son de confianza: ",
- "admin.service.letsEncryptCertificateCacheFile": "Archivo de Caché de Let's Encrypt:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Certificados recuperados y otros datos del servicio de Let's Encrypt serán almacenados en este archivo.",
- "admin.service.listenAddress": "Dirección de escucha:",
- "admin.service.listenDescription": "La dirección y el puerto al que se debe enlazar y escuchar. Si se especifica \":8065\" se enlaza a todas las interfaces de red. Al especificar \"127.0.0.1:8065\" sólo se enlaza a la interfaz de red que tiene esa dirección IP. Si eliges un puerto de un nivel inferior (llamado \"puertos de sistema\" o \"puertos conocidos\", en el rango de 0-1023), debes tener permisos para enlazar a ese puerto. En Linux puedes usar: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" para permitir que Mattermost sea enlazado a los puertos conocidos.",
- "admin.service.listenExample": "Ej.: \":8065\"",
- "admin.service.mfaDesc": "Cuando es verdadero, los usuarios con inicio de sesión AD/LDAP o correo electrónico podrán agregar la autenticación de múltiples factores a su cuenta utilizando Google Authenticator.",
- "admin.service.mfaTitle": "Habilitar Autenticación de Múltiples Factores:",
- "admin.service.mobileSessionDays": "Duración de la sesión para móviles (días):",
- "admin.service.mobileSessionDaysDesc": "El número de días desde la última vez que un usuario ingreso sus credenciales para que la sesión del usuario expire. Luego de cambiar esta configuración, la nueva duración de la sesión tendrá efecto luego de la próxima vez que el usuario ingrese sus credenciales.",
- "admin.service.outWebhooksDesc": "Cuando es verdadero, los webhooks de salida serán permitidos. Revisa la documentación para obtener más información.",
- "admin.service.outWebhooksTitle": "Habilitar Webhooks de Salida: ",
- "admin.service.overrideDescription": "Cuando es verdadero, los webhooks, comandos de barra y otras integraciones, tales como Zapier, podrán cambiar el nombre de usuario del mensaje que generan. Nota: Al combinar con el permitir a las integraciones reescribir imágenes de perfil, puede que los usuarios sean capaces de realizar ataques de phishing tratando de hacerse pasar por otros usuarios.",
- "admin.service.overrideTitle": "Permitir a las integraciones reescribir nombres de usuario:",
- "admin.service.readTimeout": "Tiempo de Espera de Lectura:",
- "admin.service.readTimeoutDescription": "Tiempo máximo permitido de cuando la conexión es aceptada en el momento de la solicitud hasta que el cuerpo de la solicitud es totalmente leída.",
- "admin.service.securityDesc": "Cuando es verdadero, Los Administradores del Sistema serán notificados por correo electrónico se han anunciado alertas de seguridad relevantes en las últimas 12 horas. Requiere que los correos estén habilitados.",
- "admin.service.securityTitle": "Habilitar Alertas de Seguridad: ",
- "admin.service.sessionCache": "La Caché de sesión (minutos):",
- "admin.service.sessionCacheDesc": "La cantidad de minutes que el cache de la sesión se guardará en memoria.",
- "admin.service.sessionDaysEx": "Ej.: \"30\"",
- "admin.service.siteURL": "URL del Sitio:",
- "admin.service.siteURLDescription": "La dirección URL que los usuarios utilizan para acceder a Mattermost. Puertos estándar, como el 80 y 443, pueden ser omitidos, pero los puertos no estándar son necesarios. Por ejemplo: http://mattermost.example.com:8065. Este ajuste es necesario.",
- "admin.service.siteURLExample": "Ej.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Duración de la sesión para SSO (días):",
- "admin.service.ssoSessionDaysDesc": "El número de días desde la última vez que un usuario ingreso sus credenciales para que la sesión del usuario expire. Si el método de autenticación es SAML o GitLab, el usuario puede iniciar su sesión automáticamente en Mattermost si ya cuenta con una sesión activa en SAML o GitLab. Luego de cambiar esta configuración, la nueva duración de la sesión tendrá efecto luego de la próxima vez que el usuario ingrese sus credenciales.",
- "admin.service.testingDescription": "Cuando es verdadero, el comando de barra /test es habilitado para cargar cuentas de prueba, datos y formato de texto. Al cambiar este parámetro se requiere un reinicio del servidor para que el cambio tengan efecto.",
- "admin.service.testingTitle": "Habilitar Comandos de Prueba: ",
- "admin.service.tlsCertFile": "Archivo de Certificado TLS:",
- "admin.service.tlsCertFileDescription": "El archivo del certificado a utilizar.",
- "admin.service.tlsKeyFile": "Archivo llave TLS:",
- "admin.service.tlsKeyFileDescription": "El archivo de la llave privada a utilizar.",
- "admin.service.useLetsEncrypt": "Utilizar Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Habilitar la recuperación automática de certificados del servicio Let's Encrypt. El certificado será recuperado cuando un cliente intenta conectarse desde un nuevo dominio. Esto permite que funcione con multiples dominios.",
- "admin.service.userAccessTokensDescLabel": "Nombre: ",
- "admin.service.userAccessTokensDescription": "Cuando es verdadero, los usuarios pueden crear tokens de acceso personales para integraciones en Configuración de la Cuenta > Seguridad. Pueden ser utilizados para autenticar contra la API, y dar acceso completo a la cuenta.
Para administrar quién puede crear tokens de acceso personales, dirígete a la página Consola del Sistema > Usuarios.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Habilitar Tokens de Acceso Personales: ",
- "admin.service.webSessionDays": "Duración de la sesión para AD/LDAP y correo electrónico (días):",
- "admin.service.webSessionDaysDesc": "El número de días desde la última vez que un usuario ingreso sus credenciales para que la sesión del usuario expire. Luego de cambiar esta configuración, la nueva duración de la sesión tendrá efecto luego de la próxima vez que el usuario ingrese sus credenciales.",
- "admin.service.webhooksDescription": "Cuando es verdadero, los webhooks de entrada serán permitidos. Para ayudar el combate contra los ataques de phishing, todos los mensajes provenientes de webhooks serán marcados con una etiqueta BOT. Revisa la documentación para obtener más información.",
- "admin.service.webhooksTitle": "Habilitar Webhooks de Entrada: ",
- "admin.service.writeTimeout": "Tiempo de Espera de Escritura:",
- "admin.service.writeTimeoutDescription": "Si se utiliza HTTP (inseguro), este es el tiempo máximo permitido desde que se termina de leer el encabezado de la solicitud hasta que la respuesta se escribe. Si se utiliza HTTPS, este el el tiempo total desde el momento en que se acepta la conexión hasta que la respuesta es escrita.",
- "admin.sidebar.advanced": "Avanzado",
- "admin.sidebar.audits": "Auditorías",
- "admin.sidebar.authentication": "Autenticación",
- "admin.sidebar.client_versions": "Versión de Clientes",
- "admin.sidebar.cluster": "Alta disponibilidad",
- "admin.sidebar.compliance": "Cumplimiento",
- "admin.sidebar.configuration": "Configuración",
- "admin.sidebar.connections": "Conexiones",
- "admin.sidebar.customBrand": "Marca Personalizada",
- "admin.sidebar.customIntegrations": "Integraciones Personalizadas",
- "admin.sidebar.customization": "Personalización",
- "admin.sidebar.database": "Base de Datos",
- "admin.sidebar.developer": "Desarrollo",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "Correo electrónico",
- "admin.sidebar.emoji": "Emoticon",
- "admin.sidebar.external": "Servicios Externos",
- "admin.sidebar.files": "Archivos",
- "admin.sidebar.general": "General",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integraciones",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Legal y Soporte",
- "admin.sidebar.license": "Edición y Licencia",
- "admin.sidebar.linkPreviews": "Vista previa del Enlace",
- "admin.sidebar.localization": "Idiomas",
- "admin.sidebar.logging": "Registros",
- "admin.sidebar.login": "Inicio de Sesión",
- "admin.sidebar.logs": "Registros",
- "admin.sidebar.metrics": "Monitoreo de Desempeño",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Enlaces de Mattermost App",
- "admin.sidebar.notifications": "Notificaciones",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "OTROS",
- "admin.sidebar.password": "Contraseña",
- "admin.sidebar.policy": "Política",
- "admin.sidebar.privacy": "Privacidad",
- "admin.sidebar.publicLinks": "Enlaces Públicos",
- "admin.sidebar.push": "Push a Móvil",
- "admin.sidebar.rateLimiting": "Límite de Velocidad",
- "admin.sidebar.reports": "INFORMES",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Seguridad",
- "admin.sidebar.sessions": "Sesiones",
- "admin.sidebar.settings": "CONFIGURACIONES",
- "admin.sidebar.signUp": "Registro",
- "admin.sidebar.sign_up": "Registro",
- "admin.sidebar.statistics": "Estadísticas de Equipo",
- "admin.sidebar.storage": "Almacenamiento",
- "admin.sidebar.support": "Legal y Soporte",
- "admin.sidebar.users": "Usuarios",
- "admin.sidebar.usersAndTeams": "Usuarios y Equipos",
- "admin.sidebar.view_statistics": "Estadísticas del Sitio",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Consola de sistema",
- "admin.sql.dataSource": "Origen de datos:",
- "admin.sql.driverName": "Nombre de controlador:",
- "admin.sql.keyDescription": "32-caracter disponible para encriptar y desincriptar campos sencible de la base de datos.",
- "admin.sql.keyExample": "Ej.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Encrypt Key:",
- "admin.sql.maxConnectionsDescription": "Número máximo de conecciones inactivas que mantiene abierta la base de datos.",
- "admin.sql.maxConnectionsExample": "Ej.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Maxímo de coneciones inactivas:",
- "admin.sql.maxOpenDescription": "Número máximo de conexiones abiertas y retenidas en la base de datos.",
- "admin.sql.maxOpenExample": "Ej.: \"10\"",
- "admin.sql.maxOpenTitle": "Máximo de conexiones abiertas:",
- "admin.sql.noteDescription": "Cambiando las propiedades de esta sección se requerirá reiniciar el servidor para que los cambios tomen efecto",
- "admin.sql.noteTitle": "Nota:",
- "admin.sql.queryTimeoutDescription": "El número de segundos a esperar por una respuesta de la base de datos después de la apertura de una conexión y envío de la consulta. Los errores que se ven en la interfaz de usuario o en los registros como resultado de que una consulta fallara por el tiempo de espera puede variar dependiendo del tipo de consulta.",
- "admin.sql.queryTimeoutExample": "Ej.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Tiempo de espera de la consulta:",
- "admin.sql.replicas": "Origen de datos de réplica:",
- "admin.sql.traceDescription": "(Modo desarrolador) Cuando es verdadero, la ejecución de sentencias SQL se escriben en el registro.",
- "admin.sql.traceTitle": "Traza: ",
- "admin.sql.warning": "Precaución: regenerando esto puede causar que algunas columnas de la base de datos retornen resultados vacíos.",
- "admin.support.aboutDesc": "La dirección URL para el enlace de Acerca en las páginas de inicio de sesión y registro de Mattermost. Si este campo está vacío, el enlace de Acerca se oculta a los usuarios.",
- "admin.support.aboutTitle": "Enlace de Acerca:",
- "admin.support.emailHelp": "Dirección de correo electrónico mostrado en las notificaciones de correo y durante el tutorial para que los usuarios puedan hacer preguntas referente a soporte.",
- "admin.support.emailTitle": "Correo electrónico de Soporte:",
- "admin.support.helpDesc": "La dirección URL para el enlace de Ayuda en las página de inicio de sesión, páginas de registro, y el Menú Principal de Mattermost. Si este campo está vacío, el enlace de Ayuda se oculta a los usuarios.",
- "admin.support.helpTitle": "Enlace de Ayuda:",
- "admin.support.noteDescription": "Si se enlaza a un sitio externo, las URLs deben comenzar con http:// o https://.",
- "admin.support.noteTitle": "Nota:",
- "admin.support.privacyDesc": "La dirección URL para el enlace de Privacidad en las páginas de inicio de sesión y registro. Si este campo está vacío, el enlace de Privacidad se oculta a los usuarios.",
- "admin.support.privacyTitle": "Enlace de políticas de Privacidad:",
- "admin.support.problemDesc": "La dirección URL para el enlace de Reportar un Problema en el Menú Principal. Si este campo está vacío, se quita el enlace en el Menú Principal.",
- "admin.support.problemTitle": "Enlace de Reportar un Problema:",
- "admin.support.termsDesc": "Enlace a los términos bajo los cuales los usuarios pueden utilizar el servicio online. De forma predeterminada, esto incluye las \"Condiciones de Uso de Mattermost (Usuarios Finales)\", donde se explican los términos bajo los cuales se proporciona el software de Mattermost a los usuarios finales. Si cambia el enlace por defecto para añadir sus propios términos de uso del servicio que prestan, deberá incluir un enlace a los términos predeterminados de modo que los usuarios estén conscientes de las Condiciones de Uso de Mattermost (Usuario Final) para el software de Mattermost.",
- "admin.support.termsTitle": "Enlace de Terminos y Condiciones:",
- "admin.system_analytics.activeUsers": "Usuarios Activos con Mensajes",
- "admin.system_analytics.title": "el Sistema",
- "admin.system_analytics.totalPosts": "Total de Mensajes",
- "admin.system_users.allUsers": "Todos los Usuarios",
- "admin.system_users.noTeams": "No hay equipos",
- "admin.system_users.title": "Usuarios de {siteName}",
- "admin.team.brandDesc": "Habilitar la marca personalizada para mostrar la imagen de tu preferencia, subida a continuación, y un mensaje de ayuda, que se escribirá a continuación, para ser mostrado en la página de inicio de sesión.",
- "admin.team.brandDescriptionExample": "Todas las comunicaciones del equipo en un sólo lugar, con búsquedas y accesible desde cualquier parte",
- "admin.team.brandDescriptionHelp": "Descripción del servicio se muestra en las pantallas de inicio de sesión y la interfaz de usuario. Cuando no se especifica, se mostrará \"Todas las comunicaciones de tu equipo en un solo lugar, con búsquedas instantáneas y accesible de todas partes.\".",
- "admin.team.brandDescriptionTitle": "Descripción del Sitio: ",
- "admin.team.brandImageTitle": "Imagen de marca personalizada:",
- "admin.team.brandTextDescription": "El texto que aparecerá debajo de la imagen de la marca personalizada en la pantalla de inicio de sesión. Soporta Markdown con formato de texto. Máximo 500 caracteres permitidos.",
- "admin.team.brandTextTitle": "Texto de la marca personalizada:",
- "admin.team.brandTitle": "Habilitar marca personalizada: ",
- "admin.team.chooseImage": "Selecciona una Imagen Nueva",
- "admin.team.dirDesc": "Cuando es verdadero, Los equipos que esten configurados para mostrarse en el directorio de equipos se mostrarán en vez de crear un nuevo equipo.",
- "admin.team.dirTitle": "Habilitar Directorio de Equipos: ",
- "admin.team.maxChannelsDescription": "Máximo número total de canales por equipo, incluyendo canales activos y borrados.",
- "admin.team.maxChannelsExample": "Ej: \"100\"",
- "admin.team.maxChannelsTitle": "Max Canales Por Equipo:",
- "admin.team.maxNotificationsPerChannelDescription": "Cantidad máxima de usuarios en un canal para que las notificaciones de \"escribiendo un mensaje\", @all, @here y @channel no sean enviadas para mejorar el rendimiento.",
- "admin.team.maxNotificationsPerChannelExample": "Ej: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Cantidad Max de Notificaciones por Canal:",
- "admin.team.maxUsersDescription": "Número máximo de usuarios por equipo, incluyendo usuarios activos e inactivos.",
- "admin.team.maxUsersExample": "Ej.: \"25\"",
- "admin.team.maxUsersTitle": "Máximo de usuarios por equipo:",
- "admin.team.noBrandImage": "No se ha subido una imagen de la marca",
- "admin.team.openServerDescription": "Cuando es verdadero, cualquiera puede registrar una cuenta de usuario en este servidor sin la necesidad de ser invitado.",
- "admin.team.openServerTitle": "Habilitar Servidor Abierto: ",
- "admin.team.restrictDescription": "Equipos y las cuentas de usuario sólo pueden ser creadas para dominios especificos (ej. \"mattermost.org\") o una lista de dominios separado por comas (ej. \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Habilitar a los usuarios tener canales de Mensajes Directos con:",
- "admin.team.restrictDirectMessageDesc": "'Cualquier usuario en el servidor de Mattermost' habilita a los usuarios a tener canales de Mensajes Directos con cualquier usuario en el servidor, incluso si no están en el mismo equipo. 'Cualquier miembro del equipo' limita la capacidad de tener canales de Mensajes Privados sólo con los usuarios que están en el mismo equipo.",
- "admin.team.restrictExample": "Ej.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Cuando es verdadero, No puedes crear equipos cuyo nombre tenga palabras reservadas como: www, admin, support, test, channel, etc",
- "admin.team.restrictNameTitle": "Restringir Nombre de los Equipos: ",
- "admin.team.restrictTitle": "Restringir la creación de cuentas a los dominios de correo electrónico especificados:",
- "admin.team.restrict_direct_message_any": "Cualquier usuario en el servidor de Mattermost",
- "admin.team.restrict_direct_message_team": "Cualquier miembro del equipo",
- "admin.team.showFullname": "Mostrar nombre y apellido",
- "admin.team.showNickname": "Mostrar el sobrenombre si existe, de lo contrario mostrar el nombre y apellido",
- "admin.team.showUsername": "Mostrar el nombre de usuario (predeterminado)",
- "admin.team.siteNameDescription": "Nombre de servicios mostrados en pantalla login y UI.",
- "admin.team.siteNameExample": "Ej.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Nombre de sitio:",
- "admin.team.teamCreationDescription": "Cuando es falso, sólo los Administradores del Sistema podrán crear equipos.",
- "admin.team.teamCreationTitle": "Habilitar Creación de Equipos: ",
- "admin.team.teammateNameDisplay": "Visualización del nombre de los compañeros:",
- "admin.team.teammateNameDisplayDesc": "Asigna como mostrar los nombres de los otros usuarios en los mensajes y en la lista de Mensajes Directos.",
- "admin.team.upload": "Subir",
- "admin.team.uploadDesc": "Personalizar la experiencia de usuario mediante la adición de una imagen personalizada en la pantalla de inicio de sesión. Se Recomienda que el tamaño máximo de la imagen sea menos de 2 MB.",
- "admin.team.uploaded": "Subida!",
- "admin.team.uploading": "Subiendo..",
- "admin.team.userCreationDescription": "Cuando es falso, a posibilidad de crear cuentas es inhabilitada. El botón crear cuentas arrojará error cuando sea presionado.",
- "admin.team.userCreationTitle": "Permitir la Creación de Cuentas: ",
- "admin.team_analytics.activeUsers": "Active Users With Posts",
- "admin.team_analytics.totalPosts": "Total de Mensajes",
- "admin.true": "verdadero",
- "admin.user_item.authServiceEmail": "Método de inicio de sesión: Correo electrónico",
- "admin.user_item.authServiceNotEmail": "Método de inicio de sesión: {service}",
- "admin.user_item.confirmDemoteDescription": "Si te degradas a ti mismo de la función de Administrador de Sistema y no hay otro usuario con privilegios de Administrador de Sistema, tendrás que volver a asignar un Administrador del Sistema accediendo al servidor de Mattermost a través de un terminal y ejecutar el siguiente comando.",
- "admin.user_item.confirmDemoteRoleTitle": "Confirmar el decenso del rol de Administrador de Sistema",
- "admin.user_item.confirmDemotion": "Confirmar decenso",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "Correo electrónico: {email}",
- "admin.user_item.inactive": "Inactivo",
- "admin.user_item.makeActive": "Activar",
- "admin.user_item.makeInactive": "Desactivar",
- "admin.user_item.makeMember": "Hacer Miembro",
- "admin.user_item.makeSysAdmin": "Hacer Admin del Sistema",
- "admin.user_item.makeTeamAdmin": "Hacer Admin de Equipo",
- "admin.user_item.manageRoles": "Gestionar Roles",
- "admin.user_item.manageTeams": "Gestionar Equipos",
- "admin.user_item.manageTokens": "Gestionar Tokens",
- "admin.user_item.member": "Miembro",
- "admin.user_item.mfaNo": "MFA: No",
- "admin.user_item.mfaYes": "MFA: Sí",
- "admin.user_item.resetMfa": "Remover MFA",
- "admin.user_item.resetPwd": "Reiniciar Contraseña",
- "admin.user_item.switchToEmail": "Cambiar a Correo Electrónico/Contraseña",
- "admin.user_item.sysAdmin": "Admin del Sistema",
- "admin.user_item.teamAdmin": "Admin de Equipo",
- "admin.user_item.userAccessTokenPostAll": "(con mensaje:todos tokens de acceso personales)",
- "admin.user_item.userAccessTokenPostAllPublic": "(con mensaje:canales tokens de acceso personales)",
- "admin.user_item.userAccessTokenYes": "(con tokens de acceso personales)",
- "admin.webrtc.enableDescription": "Cuando es verdadero, Mattermost permite hacer llamadas de vídeo uno-a-uno. Las llamadas con WebRTC están disponibles en Chrome, Firefox y la Aplicación de Escritorio de Mattermost.",
- "admin.webrtc.enableTitle": "Habilitar Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Ingresa la clave secreta para accesar a la Administración de la puerta de enlace.",
- "admin.webrtc.gatewayAdminSecretExample": "Ej.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Clave secreta de Administración de la Puerta de enlace:",
- "admin.webrtc.gatewayAdminUrlDescription": "Introduce https://:/admin. Asegúrate de utilizar HTTP o HTTPS en la dirección URL dependiendo de la configuración del servidor. Mattermost WebRTC utiliza esta dirección para obtener tokens válidos para que cada uno de los pares pueda establecer la conexión.",
- "admin.webrtc.gatewayAdminUrlExample": "Ej.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "URL de Administración de la puerta de enlace:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Introduce wss://:. Asegúrate de usar WS o WSS en la dirección URL dependiendo de la configuración del servidor. Este es el WebSocket utilizado para enviar señales y establecer la comunicación entre los compañeros.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Ej.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Dirección URL del WebSocket de la puerta de enlace:",
- "admin.webrtc.stunUriDescription": "Introduce el STUN URI como stun::. STUN es un estándar de protocolo de red que permite accesar la dirección IP pública de los dispositivos si se encuentran detrás de un NAT.",
- "admin.webrtc.stunUriExample": "Ej.: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI:",
- "admin.webrtc.turnSharedKeyDescription": "Introduce la Clave Compartida del Servidor TURN. Esta es usada para crear contraseñas dinámicas para establecer la conexión. Cada contraseña es válida por un período corto de tiempo.",
- "admin.webrtc.turnSharedKeyExample": "Ej.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "Clave compartida TURN:",
- "admin.webrtc.turnUriDescription": "Introduce el TURN URI como turn::. TURN es un protocolo estándar de red que permitir a los dispositivos establecer una conexión mediante un relé a una dirección IP pública si se encuentra detrás de un NAT simétrico.",
- "admin.webrtc.turnUriExample": "Ej.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI:",
- "admin.webrtc.turnUsernameDescription": "Introduce el Nombre de usuario del Servidor TURN.",
- "admin.webrtc.turnUsernameExample": "Ej.: \"miusuario\"",
- "admin.webrtc.turnUsernameTitle": "Nombre de usuario TURN:",
- "admin.webserverModeDisabled": "Desactivado",
- "admin.webserverModeDisabledDescription": "El servidor Mattermost no servirá archivos estáticos.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "El servidor Mattermost servirá los archivos estáticos comprimidos con gzip.",
- "admin.webserverModeHelpText": "La compresión gzip se aplica a archivos de contenido estático. Se recomienda habilitar la compresión gzip para mejorar el rendimiento, a menos que su entorno tenga restricciones específicas, tales como un proxy de web que distribuye mal archivos gzip.",
- "admin.webserverModeTitle": "Modo del Servidor Web:",
- "admin.webserverModeUncompressed": "Sin comprimir",
- "admin.webserverModeUncompressedDescription": "El servidor Mattermost servirá los archivos estáticos sin comprimir.",
- "analytics.chart.loading": "Cargando...",
- "analytics.chart.meaningful": "No hay suficiente data para tener una representación significativa.",
- "analytics.system.activeUsers": "Usuarios Activos con Mensajes",
- "analytics.system.channelTypes": "Tipos de Canales",
- "analytics.system.dailyActiveUsers": "Usuarios Activos Diarios",
- "analytics.system.monthlyActiveUsers": "Usuarios Activos Mensuales",
- "analytics.system.postTypes": "Mesajes, Archivos y Hashtags",
- "analytics.system.privateGroups": "Canales Privados",
- "analytics.system.publicChannels": "Canales Públicos",
- "analytics.system.skippedIntensiveQueries": "Para maximizar el rendimiento, algunas estadísticas están inhabilitadas. Puedes volver a activarlas en el archivo config.json. Ver: https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Mensajes de sólo Texto",
- "analytics.system.title": "Estadísticas del Sistema",
- "analytics.system.totalChannels": "Total de Canales",
- "analytics.system.totalCommands": "Total de Comandos",
- "analytics.system.totalFilePosts": "Mensajes con Archivos",
- "analytics.system.totalHashtagPosts": "Mensajes con Hashtags",
- "analytics.system.totalIncomingWebhooks": "Webhooks de Entrada",
- "analytics.system.totalMasterDbConnections": "Conexiones a BD Maestra",
- "analytics.system.totalOutgoingWebhooks": "Webhooks de Salida",
- "analytics.system.totalPosts": "Total de Mensajes",
- "analytics.system.totalReadDbConnections": "Conexiones a BD de Replica",
- "analytics.system.totalSessions": "Total de Sesiones",
- "analytics.system.totalTeams": "Total de Equipos",
- "analytics.system.totalUsers": "Total de Usuarios",
- "analytics.system.totalWebsockets": "Conexiones por WebSocket",
- "analytics.team.activeUsers": "Usuarios Activos con Mensajes",
- "analytics.team.newlyCreated": "Nuevos Usuarios Creados",
- "analytics.team.noTeams": "No hay equipos en este servidor para mostrar estadísticas.",
- "analytics.team.privateGroups": "Canales Privados",
- "analytics.team.publicChannels": "Canales Públicos",
- "analytics.team.recentActive": "Usuarios Recientemente Activos",
- "analytics.team.recentUsers": "Usuarios Recientemente Activos",
- "analytics.team.title": "Estádisticas del Equipo {team}",
- "analytics.team.totalPosts": "Total de Mensajes",
- "analytics.team.totalUsers": "Total de Usuarios",
- "api.channel.add_member.added": "{addedUsername} fue agregado al canal por {username}",
- "api.channel.delete_channel.archived": "{username} ha archivado el canal.",
- "api.channel.join_channel.post_and_forget": "{username} se ha unido al canal.",
- "api.channel.leave.left": "{username} ha abandonado el canal.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} ha actualizado el nombre del canal de: {old} a: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} removió el encabezado del canal (era: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} ha actualizado el encabezado del canal de: {old} a: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} ha actualizado el encabezado del canal a: {new}",
- "api.channel.remove_member.removed": "{removedUsername} ha sido removido del canal",
- "app.channel.post_update_channel_purpose_message.removed": "{username} removió el propósito del canal (era: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} ha actualizado el propósito del canal de: {old} a: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} ha actualizado el propósito del canal a: {new}",
- "audit_table.accountActive": "Cuenta activada",
- "audit_table.accountInactive": "Cuenta desactivada",
- "audit_table.action": "Acción",
- "audit_table.attemptedAllowOAuthAccess": "Intento de permitir acceso a un nuevo servicio OAuth",
- "audit_table.attemptedLicenseAdd": "Se ha intentado añadir nueva licencia",
- "audit_table.attemptedLogin": "Intento de inicio de sesión",
- "audit_table.attemptedOAuthToken": "Intento de obtener un token de acceso con OAuth",
- "audit_table.attemptedPassword": "Intento de cambio de contraseña",
- "audit_table.attemptedRegisterApp": "Intento de registrar una nueva aplicación OAuth con ID {id}",
- "audit_table.attemptedReset": "Intento de restablecer contraseña",
- "audit_table.attemptedWebhookCreate": "Intento de crear un webhook",
- "audit_table.attemptedWebhookDelete": "Intento de eliminar un webhook",
- "audit_table.by": " por {username}",
- "audit_table.byAdmin": " por un admin",
- "audit_table.channelCreated": "Creado el canal {channelName}",
- "audit_table.channelDeleted": "Borrado el canal con el URL {url}",
- "audit_table.establishedDM": "Establecido un canal de mensajes directos con {username}",
- "audit_table.failedExpiredLicenseAdd": "No se pudo agregar una nueva licencia, ya que ha caducado o aún no ha comenzado",
- "audit_table.failedInvalidLicenseAdd": "No se pudo agregar una licencia inválida",
- "audit_table.failedLogin": "intento de inicio de sesión FALLIDO",
- "audit_table.failedOAuthAccess": "Falla al permitir acceso al nuevo servicio de OAuth - El URI de redirección no coincide con el previamente registrado",
- "audit_table.failedPassword": "Falla al cambiar la contraseña - intento de actualizar la contraseña del usuario que está autenticado a través de OAuth",
- "audit_table.failedWebhookCreate": "Falla al crear un webhook - no tiene permisos en el canal",
- "audit_table.failedWebhookDelete": "Falla al borrar un webhook - condiciones inapropiadas",
- "audit_table.headerUpdated": "Actualizado el encabezado del canal {channelName}",
- "audit_table.ip": "Dirección IP",
- "audit_table.licenseRemoved": "Licencia eliminada con éxito",
- "audit_table.loginAttempt": " (intento de inicio de sesión)",
- "audit_table.loginFailure": " (inicio de sesión fallido)",
- "audit_table.logout": "Cerrada la sesión de tu cuenta",
- "audit_table.member": "miembro",
- "audit_table.nameUpdated": "Actualizado el nombre del canal {channelName}",
- "audit_table.oauthTokenFailed": "Falla al obtener un token de acceso de OAuth - {token}",
- "audit_table.revokedAll": "Revocadas todas las sesiones actuales del equipo",
- "audit_table.sentEmail": "Correo electrónico enviado a {email} para restablecer tu contraseña",
- "audit_table.session": "ID de sesión",
- "audit_table.sessionRevoked": "La sesión con id {sessionId} fue revocada",
- "audit_table.successfullLicenseAdd": "Licencia agregada con éxito",
- "audit_table.successfullLogin": "Inicio de sesión satisfactorio",
- "audit_table.successfullOAuthAccess": "Se entrego acceso al nuevo servicio de OAuth satisfactoriamente",
- "audit_table.successfullOAuthToken": "Se agregó el nuevo servicio de OAuth satisfactoriamente",
- "audit_table.successfullPassword": "Cambio de contraseña satisfactorio",
- "audit_table.successfullReset": "Contraseña restablecida satisfactoriamente",
- "audit_table.successfullWebhookCreate": "Creado un webhook satisfactoriamente",
- "audit_table.successfullWebhookDelete": "Borrado un webhook satisfactoriamente",
- "audit_table.timestamp": "Marca de tiempo",
- "audit_table.updateGeneral": "Actulizada la configuración general de tu cuenta",
- "audit_table.updateGlobalNotifications": "Actualizada la configuración global de tus notificaciones",
- "audit_table.updatePicture": "Actualizada tu imagen de perfil",
- "audit_table.updatedRol": "Rol(es) de usuario actualizado(s) a ",
- "audit_table.userAdded": "Agregado {username} al canal {channelName}",
- "audit_table.userId": "ID de Usuario",
- "audit_table.userRemoved": "Removido {username} del canal {channelName}",
- "audit_table.verified": "Verificada la dirección de correo electrónico satisfacoriamente",
- "authorize.access": "¿Permitir acceso a {appName}?",
- "authorize.allow": "Permitir",
- "authorize.app": "La app {appName} quiere tener la habilidad de accesar y modificar tu información básica.",
- "authorize.deny": "Denegar",
- "authorize.title": "{appName} quiere conectarse utilizando tu cuenta de usuario de Mattermost",
- "backstage_list.search": "Buscar",
- "backstage_navbar.backToMattermost": "Volver a {siteName}",
- "backstage_sidebar.emoji": "Emoticones Personalizados",
- "backstage_sidebar.integrations": "Integraciones",
- "backstage_sidebar.integrations.commands": "Comandos de Barra",
- "backstage_sidebar.integrations.incoming_webhooks": "Webhooks de Entrada",
- "backstage_sidebar.integrations.oauthApps": "Aplicaciones OAuth 2.0",
- "backstage_sidebar.integrations.outgoing_webhooks": "Webhooks de Salida",
- "calling_screen": "Llamando",
- "center_panel.recent": "Clic aquí para ir a los mensajes más recientes. ",
- "change_url.close": "Cerrar",
- "change_url.endWithLetter": "URL debe terminar con una letra o número",
- "change_url.invalidUrl": "URL Inválida",
- "change_url.longer": "URL debe ser de dos o más caracteres.",
- "change_url.noUnderscore": "URL no puede tener dos guíones bajos seguidos",
- "change_url.startWithLetter": "URL debe comenzar con una letra o número",
- "change_url.urlLabel": "URL del Canal:",
- "channelHeader.addToFavorites": "Agregar a favoritos",
- "channelHeader.removeFromFavorites": "Quitar de favoritos",
- "channel_flow.alreadyExist": "Un canal con este identificador ya existe",
- "channel_flow.changeUrlDescription": "Algunos caracteres no están permitidos en las URLs y pueden ser removidos.",
- "channel_flow.changeUrlTitle": "Cambiar URL del Canal",
- "channel_flow.create": "Crear Canal",
- "channel_flow.handleTooShort": "Dirección URL del canal debe ser de 2 o más caracteres alfanuméricos en minúsculas",
- "channel_flow.invalidName": "Nombre de Canal Inválido",
- "channel_flow.set_url_title": "Asignar URL del Canal",
- "channel_header.addChannelHeader": "Agregar una descripción del canal",
- "channel_header.addMembers": "Agregar Miembros",
- "channel_header.addToFavorites": "Añadir a favoritos",
- "channel_header.channelHeader": "Editar encabezado del canal",
- "channel_header.channelMembers": "Miembros",
- "channel_header.delete": "Borrar Canal",
- "channel_header.flagged": "Mensajes Marcados",
- "channel_header.leave": "Abandonar Canal",
- "channel_header.manageMembers": "Administrar Miembros",
- "channel_header.notificationPreferences": "Preferencias de Notificación",
- "channel_header.pinnedPosts": "Mensajes Anclados",
- "channel_header.recentMentions": "Menciones recientes",
- "channel_header.removeFromFavorites": "Quitar de favoritos",
- "channel_header.rename": "Renombrar Canal",
- "channel_header.setHeader": "Editar encabezado del canal",
- "channel_header.setPurpose": "Editar el propósito del canal",
- "channel_header.viewInfo": "Ver Info",
- "channel_header.viewMembers": "Ver Miembros",
- "channel_header.webrtc.call": "Iniciar llamada de vídeo",
- "channel_header.webrtc.offline": "El usuario está desconectado",
- "channel_header.webrtc.unavailable": "No se puede realizar una nueva llamada hasta que la llamada actual finalice",
- "channel_info.about": "Acerca",
- "channel_info.close": "Cerrar",
- "channel_info.header": "Encabezado:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Nombre:",
- "channel_info.notFound": "Canal no encontrado",
- "channel_info.purpose": "Propósito:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Agregar",
- "channel_invite.addNewMembers": "Agregar nuevos Miembros a ",
- "channel_invite.close": "Cerrar",
- "channel_loader.connection_error": "Parece haber un problema con tu conexión a internet.",
- "channel_loader.posted": "Publicó",
- "channel_loader.postedImage": " publicó una imagen",
- "channel_loader.socketError": "Por favor, revisa la conexión, Mattermost no puede contactarse. Si el problema persiste, solicite al administrador que revise el puerto del WebSocket",
- "channel_loader.someone": "Alguien",
- "channel_loader.something": " hizo algo nuevo",
- "channel_loader.unknown_error": "Hemos recibido un código de estado inesperado del servidor.",
- "channel_loader.uploadedFile": " subió un archivo",
- "channel_loader.uploadedImage": " subió una imagen",
- "channel_loader.wrote": " escribió: ",
- "channel_members_dropdown.channel_admin": "Admin del Canal",
- "channel_members_dropdown.channel_member": "Miembro del Canal",
- "channel_members_dropdown.make_channel_admin": "Hacer Admin de Canal",
- "channel_members_dropdown.make_channel_member": "Hacer Miembro del Canal",
- "channel_members_dropdown.remove_from_channel": "Remover del Canal",
- "channel_members_dropdown.remove_member": "Remover Miembro",
- "channel_members_modal.addNew": " Agregar nuevos Miembros",
- "channel_members_modal.members": " Miembros",
- "channel_modal.cancel": "Cancelar",
- "channel_modal.createNew": "Crear Nuevo Canal",
- "channel_modal.descriptionHelp": "Describe como este canal debería ser utilizado.",
- "channel_modal.displayNameError": "Nombre del canal debe ser de 2 o más caracteres",
- "channel_modal.edit": "Editar",
- "channel_modal.header": "Encabezado",
- "channel_modal.headerEx": "Ej: \"[Título del enlace](http://example.com)\"",
- "channel_modal.headerHelp": "Establece el texto que aparecerá en el encabezado del canal al lado del nombre del canal. Por ejemplo, incluye enlaces que se usan con frecuencia escribiendo [Título del Enlace](http://example.com).",
- "channel_modal.modalTitle": "Nuevo Canal",
- "channel_modal.name": "Nombre",
- "channel_modal.nameEx": "Ej: \"Errores\", \"Mercadeo\", \"客户支持\"",
- "channel_modal.optional": "(opcional)",
- "channel_modal.privateGroup1": "Crear un canal privado con acceso restringido. ",
- "channel_modal.privateGroup2": "Crear un canal privado",
- "channel_modal.publicChannel1": "Crear un canal público",
- "channel_modal.publicChannel2": "Crear un canal público al que cualquiera puede unirse. ",
- "channel_modal.purpose": "Propósito",
- "channel_modal.purposeEx": "Ej: \"Un canal para describir errores y mejoras\"",
- "channel_notifications.allActivity": "Para toda actividad",
- "channel_notifications.allUnread": "Para todos los mensajes sin leer",
- "channel_notifications.globalDefault": "Predeterminada ({notifyLevel})",
- "channel_notifications.markUnread": "Marcar Canal como No Leido",
- "channel_notifications.never": "Nunca",
- "channel_notifications.onlyMentions": "Sólo para menciones",
- "channel_notifications.override": "Seleccionar una opción diferente a \"Predeterminada\" anulará las configuraciones globales de notificación. Las notificaciones de Escritorio están disponibles para Firefox, Safari, y Chrome.",
- "channel_notifications.overridePush": "Seleccionando una opción diferente a \"Predeterminada\" sustituirá la configuración globar para las notitificaciones push a móviles fijados en la configuración de la cuenta.",
- "channel_notifications.preferences": "Preferencias de Notificación para ",
- "channel_notifications.push": "Enviar notificaciones push móviles",
- "channel_notifications.sendDesktop": "Enviar notificaciones de escritorio",
- "channel_notifications.unreadInfo": "El nombre del canal está en negritas en la barra lateral cuando hay mensajes sin leer. Al elegir \"Sólo para menciones\" sólo lo dejará en negritas cuando seas mencionado.",
- "channel_select.placeholder": "--- Selecciona un canal ---",
- "channel_switch_modal.dm": "(Mensaje Directo)",
- "channel_switch_modal.failed_to_open": "No se pudo abrir el canal.",
- "channel_switch_modal.not_found": "No se encontró ninguna coincidencia.",
- "channel_switch_modal.submit": "Cambiar",
- "channel_switch_modal.title": "Cambiar Canales",
- "claim.account.noEmail": "No se especifico un correo electrónico.",
- "claim.email_to_ldap.enterLdapPwd": "Ingresa el ID y la contraseña de tu cuenta AD/LDAP",
- "claim.email_to_ldap.enterPwd": "Ingresa la contraseña para tu cuenta de correo en {site}",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "Por favor ingresa tu ID de AD/LDAP.",
- "claim.email_to_ldap.ldapPasswordError": "Por favor ingresa tu contraseña de AD/LDAP.",
- "claim.email_to_ldap.ldapPwd": "Contraseña de AD/LDAP",
- "claim.email_to_ldap.pwd": "Contraseña",
- "claim.email_to_ldap.pwdError": "Por favor ingresa tu contraseña.",
- "claim.email_to_ldap.ssoNote": "Debes tener una cuenta de AD/LDAP válida",
- "claim.email_to_ldap.ssoType": "Al reclamar tu cuenta, sólo podrás iniciar sesión con AD/LDAP",
- "claim.email_to_ldap.switchTo": "Cambiar cuenta a AD/LDAP",
- "claim.email_to_ldap.title": "Cambiar Cuenta de Correo/Contraseña a AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Ingresa la contraseña para tu cuenta en {site}",
- "claim.email_to_oauth.pwd": "Contraseña",
- "claim.email_to_oauth.pwdError": "Por favor introduce tu contraseña.",
- "claim.email_to_oauth.ssoNote": "Debes tener una cuenta válida con {type}",
- "claim.email_to_oauth.ssoType": "Al reclamar tu cuenta, sólo podrás iniciar sesión con {type} SSO",
- "claim.email_to_oauth.switchTo": "Cambiar cuenta a {uiType}",
- "claim.email_to_oauth.title": "Cambiar Cuenta de Correo/Contraseña a {uiType}",
- "claim.ldap_to_email.confirm": "Confirmar Contraseña",
- "claim.ldap_to_email.email": "Después de cambiar el método de autenticación, utilizarás {email} para iniciar sesión. Tus credenciales de AD/LDAP ya no permitirán el acceso a Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "Nueva contraseña de inicio de sesión con correo electrónico:",
- "claim.ldap_to_email.ldapPasswordError": "Por favor ingresa tu contraseña de AD/LDAP.",
- "claim.ldap_to_email.ldapPwd": "Contraseña de AD/LDAP",
- "claim.ldap_to_email.pwd": "Contraseña",
- "claim.ldap_to_email.pwdError": "Por favor ingresa tu contraseña.",
- "claim.ldap_to_email.pwdNotMatch": "Las contraseñas no coinciden.",
- "claim.ldap_to_email.switchTo": "Cambiar cuenta a correo/contraseña",
- "claim.ldap_to_email.title": "Cambiar la cuenta de AD/LDAP a Correo/Contraseña",
- "claim.oauth_to_email.confirm": "Confirmar Contraseña",
- "claim.oauth_to_email.description": "Al cambiar el tipo de cuenta, sólo podrás iniciar sesión con tu correo electrónico y contraseña.",
- "claim.oauth_to_email.enterNewPwd": "Ingresa una nueva contraseña para tu cuenta de correo en {site}",
- "claim.oauth_to_email.enterPwd": "Por favor ingresa una contraseña.",
- "claim.oauth_to_email.newPwd": "Nueva Contraseña",
- "claim.oauth_to_email.pwdNotMatch": "Las contraseñas no coinciden.",
- "claim.oauth_to_email.switchTo": "Cambiar {type} a correo electrónico y contraseña",
- "claim.oauth_to_email.title": "Cambiar la cuenta de {type} a Correo Electrónico",
- "confirm_modal.cancel": "Cancelar",
- "connecting_screen": "Conectando",
- "create_comment.addComment": "Agregar un comentario...",
- "create_comment.comment": "Agregar Comentario",
- "create_comment.commentLength": "El largo del Comentario debe ser menor de {max} caracteres.",
- "create_comment.commentTitle": "Comentario",
- "create_comment.file": "Subiendo archivo",
- "create_comment.files": "Subiendo archivos",
- "create_post.comment": "Comentario",
- "create_post.error_message": "Tu mensaje es demasiado largo. Cantidad de caracteres: {length}/{limit}",
- "create_post.post": "Mensaje",
- "create_post.shortcutsNotSupported": "Los Accesos rápidos de teclado no son compatibles con su dispositivo.",
- "create_post.tutorialTip": "
Enviar Mensajes
Escribe aquí para redactar un mensaje y presiona RETORNO para enviarlo.
Haz clic en el botón de Adjuntar para subir una imagen o archivo.
",
- "create_post.write": "Escribe un mensaje...",
- "create_team.agreement": "Al proceder con la creación de tu cuenta y utilizar {siteName}, estás de acuerdo con nuestros Términos de Servicio y Políticas de Privacidad. Si no estás de acuerdo, no puedes utilizar {siteName}.",
- "create_team.display_name.charLength": "El nombre debe ser {min} o más caracteres hasta un máximo de {max}. Puedes agregar una descripción mas larga al equipo más adelante.",
- "create_team.display_name.nameHelp": "Nombre de tu equipo en cualquier idioma. El nombre del equipo se muestra en menús y encabezados.",
- "create_team.display_name.next": "Siguiente",
- "create_team.display_name.required": "Este campo es requerido",
- "create_team.display_name.teamName": "Nombre del Equipo",
- "create_team.team_url.back": "Volver al paso anterior",
- "create_team.team_url.charLength": "El nombre debe ser de {min} o más caracteres hasta un máximo de {max}",
- "create_team.team_url.creatingTeam": "Creando equipo...",
- "create_team.team_url.finish": "Finalizar",
- "create_team.team_url.hint": "
Corto y memorable es mejor
Utiliza letras en minúscula, números y guiones
Debe comenzar con una letra y no puede terminar en guión
",
- "create_team.team_url.regex": "Utiliza letras en minúscula, números y guiones. Debe comenzar con una letra y no puede terminar en guión.",
- "create_team.team_url.required": "Este campo es requerido",
- "create_team.team_url.taken": "Esta URL comienza con una palabra reservada o no está disponible. Por favor, pruebe con otra.",
- "create_team.team_url.teamUrl": "URL del Equipo",
- "create_team.team_url.unavailable": "Esta dirección URL ya está en uso ó no está disponible. Por favor, pruebe con otra.",
- "create_team.team_url.webAddress": "Escoge la dirección web para tu nuevo equipo:",
- "custom_emoji.empty": "No se encontraron emoticones personalizados",
- "custom_emoji.header": "Emoticones Personalizados",
- "custom_emoji.search": "Buscar Emoticon Personalizado",
- "deactivate_member_modal.cancel": "Cancelar",
- "deactivate_member_modal.deactivate": "Desactivar",
- "deactivate_member_modal.desc": "Esta acción desactiva a {username}. Se cerrará la sesión del usuario y no tendrá acceso a ningún equipo o canal en este sistema. ¿Estás seguro de querer desactivar a {username}?",
- "deactivate_member_modal.title": "Descativar a {username}",
- "default_channel.purpose": "Publica mensajes aquí que quieras que todos vean. Todo el mundo se convierte automáticamente en un miembro permanente de este canal cuando se unan al equipo.",
- "delete_channel.cancel": "Cancelar",
- "delete_channel.confirm": "Confirmar BORRAR Canal",
- "delete_channel.del": "Borrar",
- "delete_channel.question": "Se eliminará el canal del equipo y hará que su contenido sea inaccesible para todos los usuarios.
¿Estás seguro de que quieres eliminar el canal {display_name}?",
- "delete_post.cancel": "Cancelar",
- "delete_post.comment": "Comentario",
- "delete_post.confirm": "Confirmar Eliminación del {term}",
- "delete_post.del": "Borrar",
- "delete_post.post": "Mensaje",
- "delete_post.question": "¿Estás seguro(a) de querer borrar este {term}?",
- "delete_post.warning": "Este mensaje tiene {count, number} {count, plural, one {comentario} other {comentarios}}.",
- "edit_channel_header.editHeader": "Editar el Encabezado del Canal...",
- "edit_channel_header.previewHeader": "Editar Encabezado",
- "edit_channel_header_modal.cancel": "Cancelar",
- "edit_channel_header_modal.description": "Edita el texto que aparece al lado del nombre del canal en el encabezado del canal.",
- "edit_channel_header_modal.error": "Este encabezado es demasiado largo, por favor ingresa uno más corto",
- "edit_channel_header_modal.save": "Guardar",
- "edit_channel_header_modal.title": "Edita el Encabezado de {channel}",
- "edit_channel_header_modal.title_dm": "Editar Encabezado",
- "edit_channel_private_purpose_modal.body": "El texto que aparece en el cuadro de dialog \"Ver Info\" del canal privado.",
- "edit_channel_purpose_modal.body": "Describe como este canal debería ser usado. Este texto aparece en la lista de canales dentro del menú de \"Más...\" y ayuda a otros en decidir si deben unirse.",
- "edit_channel_purpose_modal.cancel": "Cancelar",
- "edit_channel_purpose_modal.error": "El propósito de este canal es muy largo, por favor ingresa uno más corto",
- "edit_channel_purpose_modal.save": "Guardar",
- "edit_channel_purpose_modal.title1": "Editar Propósito",
- "edit_channel_purpose_modal.title2": "Editar el Propósito de ",
- "edit_command.save": "Actualizar",
- "edit_post.cancel": "Cancelar",
- "edit_post.edit": "Editar {title}",
- "edit_post.editPost": "Editar el mensaje...",
- "edit_post.save": "Guardar",
- "email_signup.address": "Correo electrónico",
- "email_signup.createTeam": "Crear Equipo",
- "email_signup.emailError": "Por favor ingresa una dirección correo electrónico válida.",
- "email_signup.find": "Encontrar mi equipo",
- "email_verify.almost": "{siteName}: Ya casi estás listo",
- "email_verify.failed": " Falla al enviar el correo de verificación.",
- "email_verify.notVerifiedBody": "Por favor verifica tu correo electrónico. Revisa tu bandeja de entrada, hemos enviado un correo de verificación.",
- "email_verify.resend": "Reenviar Correo",
- "email_verify.sent": " Correo de verificación enviado.",
- "email_verify.verified": "{siteName} Correo electrónico verificado",
- "email_verify.verifiedBody": "
Tu correo electrónico ha sido verificado! Haz clic aquí para iniciar sesión.
",
- "email_verify.verifyFailed": "Falla al verificar tu correo electrónico.",
- "emoji_list.actions": "Acciones",
- "emoji_list.add": "Agregar Emoticon Personalizado",
- "emoji_list.creator": "Creado por",
- "emoji_list.delete": "Eliminar",
- "emoji_list.delete.confirm.button": "Eliminar",
- "emoji_list.delete.confirm.msg": "Esta acción elimina de forma permanente el emoticon personalizado. ¿Estás seguro de que desea eliminar?",
- "emoji_list.delete.confirm.title": "Eliminar Emoticon Personalizado",
- "emoji_list.empty": "No se encontraron Emoticones Personalizados",
- "emoji_list.header": "Emoticones Personalizados",
- "emoji_list.help": "Los emoticones personalizado están disponibles para todos los usuarios del servidor. Escribe ':' en el cuadro de mensaje para que aparezca el menú de selección de emoticones. Otros usuarios pueden necesitar refrescar la página antes de que los nuevos emoticones aparezcan.",
- "emoji_list.help2": "Sugerencia: Si agregas #, ##, ### como primer carácter en una nueva línea que contiene un emoticon, puede utilizar un mayor tamaño del emoticon. Para probarlo, enviar un mensaje, por ejemplo: '# :smile:'.",
- "emoji_list.image": "Imagen",
- "emoji_list.name": "Nombre",
- "emoji_list.search": "Buscar Emoticon Personalizado",
- "emoji_list.somebody": "Alguien en otro equipo",
- "emoji_picker.activity": "Actividad",
- "emoji_picker.custom": "Personalizado",
- "emoji_picker.emojiPicker": "Selector de Emoticones",
- "emoji_picker.flags": "Banderas",
- "emoji_picker.foods": "Alimentos",
- "emoji_picker.nature": "Naturaleza",
- "emoji_picker.objects": "Objetos",
- "emoji_picker.people": "Personas",
- "emoji_picker.places": "Lugares",
- "emoji_picker.recent": "Usados recientemente",
- "emoji_picker.search": "Buscar",
- "emoji_picker.symbols": "Símbolos",
- "error.local_storage.help1": "Habilitar las cookies",
- "error.local_storage.help2": "Desactivar la navegación privada",
- "error.local_storage.help3": "Utilizar un navegador compatible (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost fue incapaz de cargar debido a una configuración en el navegador impide el uso de la característica de almacenamiento local. Para permitir que Mattermost cargue, intenta las acciones siguientes:",
- "error.not_found.link_message": "Volver a Mattermost",
- "error.not_found.message": "La página que está intentando acceder no existe",
- "error.not_found.title": "Página no encontrada",
- "error_bar.expired": "La licencia para Empresas está vencida y algunas características pueden ser deshabilitadas. Favor renovar.",
- "error_bar.expiring": "La licencia para Empresas expira el {date}. Favor renovar.",
- "error_bar.past_grace": "La licencia para Empresas está vencida y algunas características pueden ser desbahilitadas. Por favor contacta a tu Adminstrador de Sistema para más detalles.",
- "error_bar.preview_mode": "Modo de prueba: Las notificaciones por correo electrónico no han sido configuradas",
- "error_bar.site_url": "Por favor configura tus {docsLink} en {link}.",
- "error_bar.site_url.docsLink": "URL del Sitio:",
- "error_bar.site_url.link": "Consola de sistema",
- "error_bar.site_url_gitlab": "Por favor configura tus {docsLink} en la Consola del sistema o en gitlab.rb si estás utilizando GitLab Mattermost.",
- "file_attachment.download": "Descargar",
- "file_info_preview.size": "Tamaño ",
- "file_info_preview.type": "Tipo de archivo ",
- "file_upload.disabled": "Los archivos adjuntos están deshabilitados.",
- "file_upload.fileAbove": "No se puede subir un archivo de más de {max}MB: {filename}",
- "file_upload.filesAbove": "No se pueden subir archivos de más de {max}MB: {filenames}",
- "file_upload.limited": "Se pueden subir un máximo de {count, number} archivos. Por favor envía otros mensajes para adjuntar más archivos.",
- "file_upload.pasted": "Imagen Pegada el ",
- "filtered_channels_list.search": "Buscar canales",
- "filtered_user_list.any_team": "Todos los Usuarios",
- "filtered_user_list.count": "{count, number} {count, plural, one {miembro} other {miembros}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {miembro} other {miembros}} de {total, number} total",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {miembro} other {miembros}} de {total, number} total",
- "filtered_user_list.member": "Miembro",
- "filtered_user_list.next": "Siguiente",
- "filtered_user_list.prev": "Anterior",
- "filtered_user_list.search": "Buscar usuarios",
- "filtered_user_list.searchButton": "Buscar",
- "filtered_user_list.show": "Filtro:",
- "filtered_user_list.team_only": "Miembros de este Equipo",
- "find_team.email": "Correo electrónico",
- "find_team.findDescription": "Enviamos un correo electrónico con los equipos a los que perteneces.",
- "find_team.findTitle": "Encuentra tu equipo",
- "find_team.getLinks": "Obtén un correo electrónico con los equipos a los que perteneces.",
- "find_team.placeholder": "tu@ejemplo.com",
- "find_team.send": "Enviar",
- "find_team.submitError": "Por favor ingresa una dirección válida",
- "flag_post.flag": "Indicador de seguimiento",
- "flag_post.unflag": "Desmarcar",
- "general_tab.chooseDescription": "Por favor escoge una nueva descripción para tu equipo",
- "general_tab.codeDesc": "Haz clic en 'Editar' para regenerar el código de Invitación.",
- "general_tab.codeLongDesc": "El Código de invitación se utiliza como parte de la URL en el enlace de invitación al equipo creado por {getTeamInviteLink} en el menú principal. La regeneración se crea un nuevo enlace de invitación al equipo e invalida el enlace anterior.",
- "general_tab.codeTitle": "Código de Invitación",
- "general_tab.emptyDescription": "Clic en 'Editar' para añadir una descripción del equipo.",
- "general_tab.getTeamInviteLink": "Enlace invitación al equipo",
- "general_tab.includeDirDesc": "Incluir este equipo mostrará el nombre del equipo en la sección de Directorio de Equipos en la página de inicio, y proveerá un enlace para la página de inicio de sesión.",
- "general_tab.no": "No",
- "general_tab.openInviteDesc": "Cuando está permitido, un enlace para este equipo será incluido en la página de inicio permitiendo a cualquier persona con una cuenta unirse a este equipo.",
- "general_tab.openInviteTitle": "Permitir que se una al equipo cualquier usuario con una cuenta en este servidor",
- "general_tab.regenerate": "Regenerar",
- "general_tab.required": "Este campo es obligatorio",
- "general_tab.teamDescription": "Descripción del Equipo",
- "general_tab.teamDescriptionInfo": "Descripción del equipo proporciona información adicional para ayudar a los usuarios a seleccionar el equipo adecuado. Máximo de 50 caracteres.",
- "general_tab.teamName": "Nombre del Equipo",
- "general_tab.teamNameInfo": "Asigna el nombre del equipo como aparecerá en la página de inicio de sesión y en la parte superior izquierda de la barra lateral.",
- "general_tab.title": "Configuración General",
- "general_tab.yes": "Sí",
- "get_app.alreadyHaveIt": "Ya la tienes?",
- "get_app.androidAppName": "Mattermost para Android",
- "get_app.androidHeader": "Mattermost funciona mejos si utilizas nuestra app para Android",
- "get_app.continue": "continuar",
- "get_app.continueWithBrowser": "o {link}",
- "get_app.continueWithBrowserLink": "continuar con el navegador",
- "get_app.iosHeader": "Mattermost funciona mejor si utilizas nuestra app para IPhone",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Abrir Mattermost",
- "get_link.clipboard": " Enlace copiado",
- "get_link.close": "Cerrar",
- "get_link.copy": "Copiar Enlace",
- "get_post_link_modal.help": "En enlace de abajo permite a los usuarios autorizados a ver tu mensaje.",
- "get_post_link_modal.title": "Copiar enlace Permanente",
- "get_public_link_modal.help": "El siguiente enlace permite a cualquier persona visualizar este archivo sin necesidad de estar registrado en este servidor.",
- "get_public_link_modal.title": "Copiar Enlace Público",
- "get_team_invite_link_modal.help": "Envía el siguiente enlace a tus compañeros para que se registren a este equipo. El enlace de invitación al equipo puede ser compartido con multiples compañeros y el mismo no cambiará a menos que sea regenerado en la Configuración del Equipo por un Administrador del Equipo.",
- "get_team_invite_link_modal.helpDisabled": "La creación de usuario ha sido desactivado para tu equipo. Por favor solicita más detalles a tu Administrador de Equipo.",
- "get_team_invite_link_modal.title": "Enlace de Invitación al Equipo",
- "help.attaching.downloading": "#### Descarga de Archivos\nDescargar un archivo adjunto haciendo clic en el icono de descarga junto a la miniatura del archivo o abriendo el archivo en vista previa y haciendo clic en **Descargar**.",
- "help.attaching.dragdrop": "#### Arrastrar y Soltar\nSubir un archivo o un conjunto de archivos arrastrando los archivos desde tu computadora en la barra lateral derecha o en el centro del panel. Arrastrar y soltar adjunta los archivos a los mensajes, adicionalmente puedes escribir un mensaje y pulse la tecla **RETORNO** para publicar.",
- "help.attaching.icon": "#### Icono para Adjuntar\nAlternativamente, subir archivos, haciendo clic en el icono gris en forma clip en el interior del campo de entrada del mensaje. Esto abre en su sistema un visor de archivos donde se puede navegar a los archivos que desee y, a continuación, haz clic en **Abrir** para subir los archivos del mensaje. Si lo desea, escriba un mensaje y, a continuación, pulse **RETORNO** para publicar.",
- "help.attaching.limitations": "## Limitaciones del Tamaño de Archivo\nMattermost admite un máximo de cinco archivos adjuntos por mensaje, cada uno con un tamaño máximo de archivo de 50 mb.",
- "help.attaching.methods": "## Métodos para Adjuntar\nAdjuntar un archivo mediante la función de arrastrar y soltar o haciendo clic en el icono de archivo adjunto en el campo de entrada del mensaje.",
- "help.attaching.notSupported": "Vista previa de documentos (Word, Excel, PPT) todavía no es compatible.",
- "help.attaching.pasting": "#### Pegar Imágenes\nEn los navegadores Chrome y Edge, también es posible subir archivos pegandolos desde el portapapeles. Esta función todavía no es compatible con otros navegadores.",
- "help.attaching.previewer": "## Vista Previa de Archivos\nMattermost tiene una función de previsualización de archivos que se utiliza para ver algunos medios, descarga de archivos y compartir enlaces públicos. Haga clic en la miniatura de un archivo adjunto para abrirlo en la vista previa.",
- "help.attaching.publicLinks": "#### Compartir Enlaces Públicos\nEnlaces públicos permiten compartir archivos adjuntos con personas fuera de su equipo de Mattermost. Abra el archivo en vista previa haciendo clic en la miniatura de un archivo adjunto, a continuación, haga clic en **Obtener Enlace Público**. Esto abre un cuadro de diálogo con un enlace a la copia. Cuando el enlace es compartido y abierto por otro usuario, el archivo se descargará automáticamente.",
- "help.attaching.publicLinks2": "Si **Obtener Enlace Público** no es visible en la vista previa y prefiere la función habilitada, usted puede solicitar a su Administrador de Sistema que habilite la característica de la Consola del Sistema bajo **Seguridad** > **Enlaces**.",
- "help.attaching.supported": "#### Tipos de Medios Admitidos\nSi estás tratando de previsualizar un tipo de medio que no es compatible, la vista previa del archivo se abrirá con un icono estándar del tipo de archivo. Los formatos de medios permitidos dependen en gran medida de su navegador y sistema operativo, pero los siguientes formatos son compatibles con Mattermost en la mayoría de los navegadores:",
- "help.attaching.supportedList": "- Imágenes: BMP, GIF, JPG, JPEG, PNG\n- Vídeo: MP4\n- Audio: MP3, M4A\n- Documentos: PDF",
- "help.attaching.title": "# Adjuntar Archivos\n_____",
- "help.commands.builtin": "## Comandos integrados\nLos siguientes comandos de barra están disponibles en todas las instalaciones de Mattermost:",
- "help.commands.builtin2": "Empezieza escribiendo `/ ` y una lista de opciones de comandos de barra aparecerá encima del campo de texto. Las sugerencias de autocompletado ayudan al proveer un ejemplo formateado en texto de color negro y una breve descripción del comando de barra en texto de color gris.",
- "help.commands.custom": "## Comandos Personalizados\nComandos de barra peronalizados se integran con aplicaciones externas. Por ejemplo, un equipo puede configurar comandos de barra personalizados para comprobar registros internos sobre la salud del `/paciente joe smith` o compruebe semanalmente el clima en una ciudad usando `/clima de toronto en la semana`. Consulte con su Administrador del Sistema o abra la lista de autocompletado escribiendo `/` para determinar si su equipo tiene configurado algunos comandos de barra personalizados.",
- "help.commands.custom2": "Los comandos de barra Personalizados están inhabilitados de forma predeterminada y pueden ser activados por el Administrador del Sistema en la **Consola del Sistema** > **Integraciones** > **Integraciones Personalizadas**. Aprende más acerca de la configuración personalizada de comandos de barra en la [documentación para desarrollar comandos de barra](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Los comandos de barra realizan operaciones en Mattermost escribiendo en el campo de texto. Introduzca un `/` seguido por un comando y algunos argumentos para realizar acciones.\n\nTodas las instalaciones de Mattermost vienen con comandos de barra integrados y los comandos de barra personalizados se pueden configurar para interactuar con aplicaciones externas. Aprende más acerca de la configuración personalizada de comandos de barra en la [documentación para desarrollar comandos de barra](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Ejecutar Comandos\n___",
- "help.composing.deleting": "## Eliminar un mensaje\nElimina un mensaje haciendo clic en el icono **[...]** junto a cualquier mensaje de texto que has compuesto, a continuación, haz clic en **Borrar**. Los Administradores de Sistema y Equipo pueden borrar cualquier mensaje en su sistema o equipo.",
- "help.composing.editing": "## Editar un Mensaje\nEdita un mensaje haciendo clic en el icono **[...]** junto a cualquier mensaje de texto que has compuesto, a continuación, haz clic en **Editar**. Después de realizar modificaciones en el texto del mensaje, pulse la tecla **RETORNO** para guardar las modificaciones. La edición del mensaje no desencadenan nuevas notificaciones a @menciones, notificaciones de escritorio o sonidos.",
- "help.composing.linking": "## Enlace a un mensaje\nLa característica de **Enlace Permanente** crea un vínculo de cualquier mensaje. Al compartir este enlace con otros usuarios en el canal les permite ver el mensaje vinculado en los Archivos de Mensajes. Los usuarios que no son miembros del canal de donde se envió el mensaje no podrán ver el enlace permanente. Obtén el enlace permanente a cualquier mensaje haciendo clic en el icono **[...]** al lado del mensaje de texto > **Enlace Permanente** > **Copiar Enlace**.",
- "help.composing.posting": "## Publicar un Mensaje\nPublica un mensaje escribiendo en el campo de texto, a continuación, pulsa **RETORNO** para enviarlo. Usa **MAYUS+RETORNO** para crear una nueva línea sin necesidad de enviar el mensaje. Para enviar mensajes pulsando CTRL+RETORNO ve al **Menú Principal > Configuración de la Cuenta > Enviar mensajes en CTRL+RETORNO**.",
- "help.composing.posts": "#### Mensajes\nLos mensajes pueden ser considerados mensajes padre. Son los mensajes que a menudo comienzan con un hilo de respuestas. Los mensajes son compuestos y enviados desde el campo de texto en la parte inferior del panel central.",
- "help.composing.replies": "#### Respuestas\nResponde a un mensaje haciendo clic en el icono responder junto a cualquier mensaje de texto. Esta acción abre la barra lateral derecha, donde se puede ver el hilo de mensajes, a continuación, redacta y envía tu respuesta. Las respuestas tienen una ligera sangría en el centro del panel para indicar que ellos son hijos de los mensajes de los padres.\n\nA la hora de componer una respuesta en la barra lateral derecha, haz clic en el icono de expandir/contraer el cual es dos flechas en la parte superior de la barra lateral para que sea más fácil de leer.",
- "help.composing.title": "# Enviar Mensajes\n_____",
- "help.composing.types": "## Tipos de Mensaje\nResponde a mensajes a fin de mantener conversaciones organizadas en hilos.",
- "help.formatting.checklist": "Haz una lista de tareas al incluir entre corchetes:",
- "help.formatting.checklistExample": "- [ ] Primer elemento\n- [ ] Segundo elemento\n- [x] Elemento completado",
- "help.formatting.code": "## Bloque de Código\n\nCrea un bloque de código al dejar una sangría de cuatro espacios en cada línea, o mediante la colocación de ``` en la línea de arriba y debajo del código.",
- "help.formatting.codeBlock": "Bloque de código",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emoticones\n\nAbra el autocompletado de emoticones escribiendo `:`. Una lista completa de los emoticones se puede encontrar [aquí](http://www.emoji-cheat-sheet.com/). También es posible crear tu propio [Emoticon Personalizado](http://docs.mattermost.com/help/settings/custom-emoji.html) si el emoticon que deseas utilizar no existe.",
- "help.formatting.example": "Ejemplo:",
- "help.formatting.githubTheme": "**Tema de GitHub**",
- "help.formatting.headings": "## Encabezados\n\nHaz una encabezado escribiendo # y un espacio antes de lo que será tu título. Para títulos más pequeños, utiliza más # pegados el uno del otro.",
- "help.formatting.headings2": "Alternativamente, se puede subrayar el texto usando `===` o `---` para crear encabezados.",
- "help.formatting.headings2Example": "Encabezado Grande\n-------------",
- "help.formatting.headingsExample": "## Encabezado Grande\n### Encabezado más pequeño\n#### Encabezado aún más pequeño",
- "help.formatting.images": "## Imágenes entre líneas\n\nCrear imágenes en línea con el uso de un `!` seguido por el texto alternativo en corchetes y el vínculo entre paréntesis. Agrega un pase de texto colocandondolo entre comillas después del enlace.",
- "help.formatting.imagesExample": "\n\ny\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Código entre líneas\n\nCrea código fuente entre líneas al rodear el texto con comillas simples inclinadas.",
- "help.formatting.intro": "Markdown hace que sea fácil para darle formato a los mensajes. Escribe un mensaje como lo harías normalmente, y el uso de estas reglas para hacerla con formato especial.",
- "help.formatting.lines": "## Líneas\n\nCrea una línea mediante el uso de tres `*`, `_`, o `-`.",
- "help.formatting.linkEx": "[Revisa Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Enlaces\n\nCrea enlaces etiquetados al poner el texto deseado entre corchetes y el enlace asociado entre paréntesis.",
- "help.formatting.listExample": "* primer elemento de la lista\n* segundo elemento de la lista\n * elemento de dos sub-puntos",
- "help.formatting.lists": "## Listas\n\nCrea una lista con `*` o `-` como viñetas. Agrega sangría a una viñeta al agregar dos espacios en frente de ella.",
- "help.formatting.monokaiTheme": "**Tema Monokai**",
- "help.formatting.ordered": "Haz una lista ordenada al usar números en su lugar:",
- "help.formatting.orderedExample": "1. Primer elemento\n2. Segundo elemento",
- "help.formatting.quotes": "## Bloque de citas\n\nCrea bloque de citas usando `>`.",
- "help.formatting.quotesExample": "`> bloque de citas` se representa como:",
- "help.formatting.quotesRender": "> bloque de citas",
- "help.formatting.renders": "Se representa como:",
- "help.formatting.solirizedDarkTheme": "**Tema Solarizar Oscuro**",
- "help.formatting.solirizedLightTheme": "**Tema Solarizar Claro**",
- "help.formatting.style": "## Estilo de Texto\n\nPuedes utilizar cualquiera `_` o `*` alrededor de una palabra para hacer cursiva. Uso dos para que aparezca en negrita.\n\n* `_cursiva_` se representa como _cursiva_\n* `**negrita**` se representa como **negrita**\n* `**_negrita en cursiva_**` se representa como **_negrita en cursiva_**\n* `~~tachado~~` se representa como ~~tachado~~",
- "help.formatting.supportedSyntax": "Los lenguages soportados son:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Resaltado de Sintaxis\n\nPara agregar el resaltado de sintaxis, escribe el lenguaje para ser destacado después del ``` en el comienzo del bloque de código. Mattermost también ofrece cuatro tipos diferentes de temas para códigos (GitHub, Solarizar Oscuro, Solarizar Claro, Monokai) que puede ser cambiado en **Configuración de la Cuenta** > **Visualización** > **Tema** > **Tema Personalizado** > **Estilos del Canal Central**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hola, 世界\")\n }",
- "help.formatting.tableExample": "| Alineado a la izquierda | Alineado al Centro | Alineado a la Derecha |\n| :------------ |:---------------:| -----:|\n| Columna izquierda 1 | este texto | $100 |\n| Columna izquierda 2 | es | $10 |\n| Columna izquierda 3 | centrado | $1 |",
- "help.formatting.tables": "## Tablas\n\nCrea una tabla mediante la colocación de una línea discontinua bajo la fila del encabezado y separando las columnas con un tubo `|`. (Las columnas no tienen que ser alineadas perfectamente para que funcione). Elija cómo alinear las columnas de la tabla mediante la inclusión de dos puntos `:` dentro de la fila de encabezado.",
- "help.formatting.title": "# Formato de Texto\n_____",
- "help.learnMore": "Aprende más acerca de:",
- "help.link.attaching": "Adjuntar Archivos",
- "help.link.commands": "Ejecutar Comandos",
- "help.link.composing": "Redactacción de Mensajes y Respuestas",
- "help.link.formatting": "Dar formato a los Mensajes usando Markdown",
- "help.link.mentioning": "Mencionar a los Compañeros de Equipo",
- "help.link.messaging": "Mensajería Básica",
- "help.mentioning.channel": "#### @Channel\nSe puede mencionar un canal completo escribiendo `@channel`. Todos los miembros del canal recibirán una notificación de mención que se comporta de la misma manera como si los miembros hubieran sido citados personalmente.",
- "help.mentioning.channelExample": "@channel gran trabajo en las entrevistas de esta semana. Creo que hemos encontrado algunos excelentes candidatos potenciales!",
- "help.mentioning.mentions": "## @Menciones\nUtiliza las @menciones para conseguir la atención de determinados miembros del equipo.",
- "help.mentioning.recent": "## Menciones Recientes\nHaz clic en el `@` junto al campo de búsqueda para consultar tus más recientes @menciones y las palabras que desencadenan menciones. Haz clic en **Ir** al lado de un resultado de búsqueda en el panel lateral derecho para ir en el panel central al canal y ubicación donde se encuentra el mensaje con la mención.",
- "help.mentioning.title": "# Mencionar a Compañeros de Equipo\n_____",
- "help.mentioning.triggers": "## Palabras que desencadenan Menciones\nAdemás de ser notificados por el nombre de usuario @usuario y @channel, podrás personalizar palabras que desencadenan notificaciones de menciones en **Configuración de la Cuenta** > **Notificaciones** > **Palabras que desencadenan menciones**. De forma predeterminada, recibirás las notificaciones de mención cuando tu nombre sea utilizado, y podrás agregar más palabras escribiéndolas en el cuadro de entrada separadas por comas. Esto es útil si deseas ser notificado de todos los mensajes en ciertos temas, por ejemplo, \"entrevista\" o \"marketing\".",
- "help.mentioning.username": "#### @Usuario\nSe pueden mencionar a un compañero de equipo mediante el símbolo `@`, además de su nombre de usuario para enviar una notificación de mención.\n\nEscribe `@` para que aparezca una lista de los miembros del equipo que pueden ser mencionados. Para filtrar la lista, escribe las primeras letras de cualquier nombre de usuario, nombre, apellido o apodo. Las flechas de **Arriba** y **Abajo** pueden ser utilizadas para desplazarse a través de las entradas en la lista y pulsando **RETORNO** seleccione el usuario a mencionar. Una vez seleccionado, el nombre de usuario reemplazará automáticamente el nombre completo o apodo.\nEn el ejemplo siguiente se envía una notificación de mención especial a **alice** la cual la alerta que sobre el canal y el mensaje en donde ella ha sido mencionado. Si **alice** está ausente de Mattermost y tiene las [notificaciones de correo electrónico](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) activadas, recibirá una alerta de correo electrónico de su mención, junto con el mensaje de texto.",
- "help.mentioning.usernameCont": "Si el usuario que estás mencionando no pertenece al canal, un Mensaje del Sistema te será enviado para hacértelo saber. Este es un mensaje temporal sólo visto por la persona que lo desencadenó. Para agregar el mencionado usuario al canal, ve al menú desplegable junto al nombre del canal y selecciona **Agregar Miembros**.",
- "help.mentioning.usernameExample": "@alice ¿cómo fue tu entrevista con el nuevo candidato?",
- "help.messaging.attach": "**Adjunta archivos** arrastrando y soltando en Mattermost o haciendo clic en el icono de archivo adjunto en el cuadro de entrada de texto.",
- "help.messaging.emoji": "**Añadir rápidamente emoticones** escribiendo \":\", que abrirá un lista de autocompletado de emoticones. Si los emoticones no cubren lo que quieres expresar, también puede crear el tuyo propio con [Emoticones Personalizados](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Dar formato a tus mensajes** usando Markdown que soporta estilos de texto, encabezados, enlaces, emoticones, bloques de código, citas de texto, tablas, listas e imágenes en línea.",
- "help.messaging.notify": "**Notificar a los compañeros de equipo** cuando es necesario escribiendo `@usuario`.",
- "help.messaging.reply": "**Responde a los mensajes** haciendo clic en la flecha que aparece junto al mensaje de texto.",
- "help.messaging.title": "# Mensajería Básica\n_____",
- "help.messaging.write": "**Escribe mensajes** usando la caja de entrada de texto en la parte inferior de Mattermost. Presiona RETORNO para enviar un mensaje. Usa MAYUS+RETORNO para crear una nueva línea sin enviar el mensaje.",
- "installed_command.header": "Comandos de Barra",
- "installed_commands.add": "Agregar Comandos de Barra",
- "installed_commands.delete.confirm": "Esta acción elimina permanentemente el comando de barras y rompe cualquier integración que lo esté utilizando. ¿Estás seguro de que deseas eliminarlo?",
- "installed_commands.empty": "No se encontraron comandos",
- "installed_commands.header": "Comandos de Barra",
- "installed_commands.help": "Utiliza comandos de barra para conectarse a herramientas externas a Mattermost. {buildYourOwn} o visita el {appDirectory} para encontrar aplicaciones e integraciones de terceros o que puedes alojar tu mismo.",
- "installed_commands.help.appDirectory": "Directorio de Aplicaciones",
- "installed_commands.help.buildYourOwn": "Construir uno propio",
- "installed_commands.search": "Buscar Comandos de Barra",
- "installed_commands.unnamed_command": "Comando de Barra sin nombre",
- "installed_incoming_webhooks.add": "Agregar Webhook de Entrada",
- "installed_incoming_webhooks.delete.confirm": "Esta acción elimina permanentemente el webhook entrante y rompe cualquier integración que lo esté utilizando. ¿Estás seguro de que deseas eliminarlo?",
- "installed_incoming_webhooks.empty": "No se encontraron webhooks de entrada",
- "installed_incoming_webhooks.header": "Webhooks de Entrada",
- "installed_incoming_webhooks.help": "Utiliza webhooks de entrada para conectar herramientas externas a Mattermost. {buildYourOwn} o visite el {appDirectory} para encontrar aplicaciones e integraciones de terceros o que puedes alojar tu mismo.",
- "installed_incoming_webhooks.help.appDirectory": "Directorio de Aplicaciones",
- "installed_incoming_webhooks.help.buildYourOwn": "Construir uno propio",
- "installed_incoming_webhooks.search": "Buscar Webhooks de Entrada",
- "installed_incoming_webhooks.unknown_channel": "Un Webhook Privado",
- "installed_integrations.callback_urls": "Callback URLs: {urls}",
- "installed_integrations.client_id": "ID de Cliente: {clientId}",
- "installed_integrations.client_secret": "Clave Secreta de Cliente: {clientSecret}",
- "installed_integrations.content_type": "Tipo de contenido: {contentType}",
- "installed_integrations.creation": "Creado por {creator} el {createAt, date, full}",
- "installed_integrations.delete": "Eliminar",
- "installed_integrations.edit": "Editar",
- "installed_integrations.hideSecret": "Ocultar Clave Secreta",
- "installed_integrations.regenSecret": "Regenerar Secreto",
- "installed_integrations.regenToken": "Regenerar Token",
- "installed_integrations.showSecret": "Mostrar Clave Secreta",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Desencadenar Cuando: {triggerWhen}",
- "installed_integrations.triggerWords": "Palabras que desencadenan acciones: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Aplicación OAuth 2.0 sin nombre",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "Agregar Aplicación OAuth 2.0",
- "installed_oauth_apps.callbackUrls": "Callback URLs (Uno por Línea)",
- "installed_oauth_apps.cancel": "Cancelar",
- "installed_oauth_apps.delete.confirm": "Esta acción elimina permanentemente la aplicación de OAuth 2.0 y rompe cualquier integración que lo esté utilizando. ¿Estás seguro de que deseas eliminarla?",
- "installed_oauth_apps.description": "Descripción",
- "installed_oauth_apps.empty": "No se encontraron Aplicaciones OAuth 2.0",
- "installed_oauth_apps.header": "Apliaciones OAuth 2.0",
- "installed_oauth_apps.help": "Crea {oauthApplications} para integrar de forma segura robots y aplicaciones de terceros con Mattermost. Visita el {appDirectory} para encontrar apps alojadas por ti.",
- "installed_oauth_apps.help.appDirectory": "Directorio de Aplicaciones",
- "installed_oauth_apps.help.oauthApplications": "Aplicaciones OAuth 2.0",
- "installed_oauth_apps.homepage": "Página web",
- "installed_oauth_apps.iconUrl": "URI del Icono",
- "installed_oauth_apps.is_trusted": "De confianza: {isTrusted}",
- "installed_oauth_apps.name": "Nombre a mostrar",
- "installed_oauth_apps.save": "Guardar",
- "installed_oauth_apps.search": "Buscar Aplicaciones OAuth 2.0",
- "installed_oauth_apps.trusted": "De confianza",
- "installed_oauth_apps.trusted.no": "No",
- "installed_oauth_apps.trusted.yes": "Sí",
- "installed_outgoing_webhooks.add": "Agregar Webhook de Salida",
- "installed_outgoing_webhooks.delete.confirm": "Esta acción elimina permanentemente el webhook saliente y rompe cualquier integración que lo esté utilizando. ¿Estás seguro de que deseas eliminarlo?",
- "installed_outgoing_webhooks.empty": "No se encontraron webhooks de salida",
- "installed_outgoing_webhooks.header": "Webhooks de Salida",
- "installed_outgoing_webhooks.help": "Utiliza webhooks de salida para conectar herramientas externas a Mattermost. {buildYourOwn} o visite el {appDirectory} para encontrar aplicaciones e integraciones de terceros o que puedes alojar tu mismo.",
- "installed_outgoing_webhooks.help.appDirectory": "Directorio de Aplicaciones",
- "installed_outgoing_webhooks.help.buildYourOwn": "Construir uno propio",
- "installed_outgoing_webhooks.search": "Buscar Webhooks de Salida",
- "installed_outgoing_webhooks.unknown_channel": "Un Webhook Privado",
- "integrations.add": "Agregar",
- "integrations.command.description": "Comandos de barra envían eventos a integraciones externar",
- "integrations.command.title": "Comando de Barra",
- "integrations.delete.confirm.button": "Eliminar",
- "integrations.delete.confirm.title": "Eliminar Integración",
- "integrations.done": "Hecho",
- "integrations.edit": "Editar",
- "integrations.header": "Integraciones",
- "integrations.help": "Visita el {appDirectory} para encontrar aplicaciones e integraciones propias o de terceros para Mattermost.",
- "integrations.help.appDirectory": "Directorio de Aplicaciones",
- "integrations.incomingWebhook.description": "Webhooks de entrada permiten a las integraciones externas enviar mensajes",
- "integrations.incomingWebhook.title": "Webhook de Entrada",
- "integrations.oauthApps.description": "OAuth 2.0 permite a aplicaciones externas realizar consultas autorizadas al API de Mattermost.",
- "integrations.oauthApps.title": "Aplicaciones OAuth 2.0",
- "integrations.outgoingWebhook.description": "Webhooks de salida permiten a las integraciones externas recibir mensajes y responder a ellos",
- "integrations.outgoingWebhook.title": "Webhook de Salida",
- "integrations.successful": "Integración creada con éxito",
- "intro_messages.DM": "Este es el inicio de tu historial de mensajes directos con {teammate}. Los mensajes directos y archivos que se comparten aquí no son mostrados a personas fuera de esta área.",
- "intro_messages.GM": "Este es el inicio de tu historial de mensajes directos con {names}. Los mensajes directos y archivos que se comparten aquí no son mostrados a personas fuera de esta área.",
- "intro_messages.anyMember": " Cualquier miembro se puede unir y leer este canal.",
- "intro_messages.beginning": "Inicio de {name}",
- "intro_messages.channel": "canal",
- "intro_messages.creator": "Este es el inicio del {type} {name}, creado por {creator} el {date}.",
- "intro_messages.default": "
Inicio de {display_name}
Bienvenido a {display_name}!
Publica mensajes aquí que quieras que todos vean. Todo el mundo se convierte automáticamente en un miembro permanente de este canal cuando se unan al equipo.
",
- "intro_messages.group": "canal privado",
- "intro_messages.group_message": "Este es el inicio de tu historial del grupo de mensajes con estos compañeros. Los mensajes y archivos que se comparten aquí no son mostrados a personas fuera de esta área.",
- "intro_messages.invite": "Invita a otros a este {type}",
- "intro_messages.inviteOthers": "Invita a otros a este equipo",
- "intro_messages.noCreator": "Este es el inicio del {type} {name}, creado el {date}.",
- "intro_messages.offTopic": "
Inicio de {display_name}
Este es el inicio de {display_name}, un canal para tener conversaciones no relacionadas trabajo.
",
- "intro_messages.onlyInvited": " Sólo miembros invitados pueden ver este canal privado.",
- "intro_messages.purpose": " El propósito de este {type} es: {purpose}.",
- "intro_messages.setHeader": "Asignar un Encabezado",
- "intro_messages.teammate": "Este es el inicio de tu historial de mensajes directos con este compañero. Los mensajes directos y archivos que se comparten aquí no son mostrados a personas fuera de esta área.",
- "invite_member.addAnother": "Agregar otro",
- "invite_member.autoJoin": "Las personas invitadas se unirán automáticamente al canal {channel}.",
- "invite_member.cancel": "Cancelar",
- "invite_member.content": "El envío de correos electrónicos está actualmente desactivado para tu equipo, por lo que no puedes enviar invitaciones. Contacta a tu Administrador de Sistema para que active los correos electrónicos y el envío de invitaciones.",
- "invite_member.disabled": "La creación de usuario ha sido desactivado para tu equipo. Por favor solicita más detalles a tu Administrador de Equipo.",
- "invite_member.emailError": "Por favor ingresa un correo electrónico válido",
- "invite_member.firstname": "Nombre",
- "invite_member.inviteLink": "Enlace de Invitación al Equipo",
- "invite_member.lastname": "Apellido",
- "invite_member.modalButton": "Sí, Borrar",
- "invite_member.modalMessage": "Tienes invitaciones sin usar, estás seguro que quieres borrarlas?",
- "invite_member.modalTitle": "¿Descartar Invitaciones?",
- "invite_member.newMember": "Enviar Correo de Invitación",
- "invite_member.send": "Enviar Invitaciones",
- "invite_member.send2": "Enviar Invitaciones",
- "invite_member.sending": " Enviando",
- "invite_member.teamInviteLink": "También puedes invitar personas usando el {link}.",
- "ldap_signup.find": "Encontrar mis equipos",
- "ldap_signup.ldap": "Crea un equipo con tu cuenta de AD/LDAP",
- "ldap_signup.length_error": "El nombre debe tener entre 3 y 15 caracteres",
- "ldap_signup.teamName": "Ingresa el nombre del nuevo equipo",
- "ldap_signup.team_error": "Por favor ingresa el nombre del equipo",
- "leave_private_channel_modal.leave": "Sí, abandonar el canal",
- "leave_private_channel_modal.message": "¿Estás seguro que quieres abandonar el canal privado {channel}? Necesitarás una nueva invitación para poder unirte nuevamente a este canal en el futuro.",
- "leave_private_channel_modal.title": "Abandonar Canal Privado {channel}",
- "leave_team_modal.desc": "Serás removido de todos los canales públicos y privados. si el equipo es privado no podrás unirte de nuevo al equipo. ¿Estás seguro?",
- "leave_team_modal.no": "No",
- "leave_team_modal.title": "¿Abandonar Equipo?",
- "leave_team_modal.yes": "Sí",
- "loading_screen.loading": "Cargando",
- "login.changed": " Cambiado el método de inicio de sesión satisfactoriamente",
- "login.create": "Crea una ahora",
- "login.createTeam": "Crear un nuevo equipo",
- "login.createTeamAdminOnly": "Esta opción sólo esta disponible para los Administradores del Sistema y no es visible para otros usuarios.",
- "login.email": "Correo electrónico",
- "login.find": "Encuentra tus otros equipos",
- "login.forgot": "Olvide mi contraseña",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "La Contraseña es incorrecta.",
- "login.ldapUsername": "Usuario AD/LDAP",
- "login.ldapUsernameLower": "Nombre de Usuario AD/LDAP",
- "login.noAccount": "¿No tienes una cuenta? ",
- "login.noEmail": "Por favor, introduzca su correo electrónico",
- "login.noEmailLdapUsername": "Por favor, introduzca su correo electrónico o {ldapUsername}",
- "login.noEmailUsername": "Por favor, introduzca su correo electrónico o nombre de usuario",
- "login.noEmailUsernameLdapUsername": "Por favor, introduzca su correo electrónico, nombre de usuario o {ldapUsername}",
- "login.noLdapUsername": "Por favor, introduzca su {ldapUsername}",
- "login.noMethods": "No hay métodos de inicio de sesión habilitados, por favor contacta a tu Administrador de Sistema.",
- "login.noPassword": "Por favor ingresa tu contraseña.",
- "login.noUsername": "Por favor, introduzca su nombre de usuario",
- "login.noUsernameLdapUsername": "Por favor, introduzca su nombre de usuario o {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "en {siteName}",
- "login.or": "o",
- "login.password": "Contraseña",
- "login.passwordChanged": " La contraseña ha sido actualizada",
- "login.placeholderOr": " o ",
- "login.session_expired": " Tu sesión ha expirado. Por favor inicia sesión nuevamente.",
- "login.signIn": "Entrar",
- "login.signInLoading": "Iniciando sesión…",
- "login.signInWith": "Iniciar sesión con:",
- "login.userNotFound": "No pudimos encontrar una cuenta que coincida con tus credenciales.",
- "login.username": "Nombre de usuario",
- "login.verified": " Correo electrónico Verificado",
- "login_mfa.enterToken": "Para completar el proceso de inicio de sesión, por favor ingresa el token provisto por el autenticador de tu teléfono inteligente",
- "login_mfa.submit": "Enviar",
- "login_mfa.token": "Token MFA",
- "login_mfa.tokenReq": "Por favor ingresa un token MFA",
- "member_item.makeAdmin": "Convertir en Admin de Equipo",
- "member_item.member": "Miembro",
- "member_list.noUsersAdd": "No hay usuarios que agregar.",
- "members_popover.manageMembers": "Administrar Miembros",
- "members_popover.msg": "Mensaje",
- "members_popover.title": "Miembros del Canal",
- "members_popover.viewMembers": "Ver Miembros",
- "mfa.confirm.complete": "¡Configuración completada!",
- "mfa.confirm.okay": "Aceptar",
- "mfa.confirm.secure": "Tu cuenta ahora está segura. La próxima vez que inicies sesión, se te solicitará que ingreses el código de la app de Google Authenticator de tu teléfono.",
- "mfa.setup.badCode": "Código no válido. Si este problema persiste, póngase en contacto con su Administrador del Sistema.",
- "mfa.setup.code": "Código MFA",
- "mfa.setup.codeError": "Por favor, introduce el código de Google Authenticator.",
- "mfa.setup.required": "La autenticación de múltiples factores es requerida en {siteName}.",
- "mfa.setup.save": "Guardar",
- "mfa.setup.secret": "Llave secreta: {secret}",
- "mfa.setup.step1": "Paso 1: En tu teléfono, descarga Google Authenticator desde iTuenes o Google Play",
- "mfa.setup.step2": "Paso 2: Utiliza Google Authenticator para escanear este código QR, o ingresar esta llave secreta manualmente",
- "mfa.setup.step3": "Paso 3: Ingresa el código generado por Google Authenticator",
- "mfa.setupTitle": "Configurar Autenticación de Múltiples Factores:",
- "mobile.about.appVersion": "Versión del App: {version} (Compilación {number})",
- "mobile.about.copyright": "Derechos de autor 2015-{currentYear} Mattermost, Inc. Todos los derechos reservados",
- "mobile.about.database": "Base de datos: {type}",
- "mobile.about.serverVersion": "Versión del Servidor: {version} (Compilación {number})",
- "mobile.about.serverVersionNoBuild": "Versión del Servidor: {version}",
- "mobile.account.notifications.email.footer": "Cuando esté desconectado o ausente por más de cinco minutos",
- "mobile.account_notifications.mentions_footer": "Tu nombre de usuario (\"@{username}\") siempre desencadenará menciones.",
- "mobile.account_notifications.non-case_sensitive_words": "Otras palabras no sensible a mayúsculas y minúsculas...",
- "mobile.account_notifications.reply.header": "Enviar notificaciones en respuestas para",
- "mobile.account_notifications.threads_mentions": "Menciones en hilos",
- "mobile.account_notifications.threads_start": "Hilos que yo comience",
- "mobile.account_notifications.threads_start_participate": "Hilos que yo comience o participe",
- "mobile.advanced_settings.reset_button": "Reiniciar",
- "mobile.advanced_settings.reset_message": "\nEsto borrará todos los datos sin conexión y reiniciará la aplicación. Tu sesión será iniciada automáticamente una vez que la aplicación se reinicie.\n",
- "mobile.advanced_settings.reset_title": "Borrar caché",
- "mobile.advanced_settings.title": "Configuración Avanzada",
- "mobile.channel_drawer.search": "Saltar a una conversación",
- "mobile.channel_info.alertMessageDeleteChannel": "¿Seguro quieres abandonar el {term} {name}?",
- "mobile.channel_info.alertMessageLeaveChannel": "¿Seguro quieres abandonar el {term} {name}?",
- "mobile.channel_info.alertNo": "No",
- "mobile.channel_info.alertTitleDeleteChannel": "Eliminar {term}",
- "mobile.channel_info.alertTitleLeaveChannel": "Abandonar {term}",
- "mobile.channel_info.alertYes": "Sí",
- "mobile.channel_info.delete_failed": "No pudimos eliminar el canal {displayName}. Por favor revisa tu conexión e intenta de nuevo.",
- "mobile.channel_info.privateChannel": "Canal Privado",
- "mobile.channel_info.publicChannel": "Canal Público",
- "mobile.channel_list.alertMessageLeaveChannel": "¿Seguro quieres abandonar el {term} {name}?",
- "mobile.channel_list.alertNo": "No",
- "mobile.channel_list.alertTitleLeaveChannel": "Abandonar {term}",
- "mobile.channel_list.alertYes": "Sí",
- "mobile.channel_list.closeDM": "Cerrar Mensaje Directo",
- "mobile.channel_list.closeGM": "Cerrar Mensaje de Grupo",
- "mobile.channel_list.dm": "Mensaje Directo",
- "mobile.channel_list.gm": "Mensaje de Grupo",
- "mobile.channel_list.not_member": "NO MIEMBRO DE",
- "mobile.channel_list.open": "Abrir {term}",
- "mobile.channel_list.openDM": "Abrir Mensaje Directo",
- "mobile.channel_list.openGM": "Abrir Mensaje de Grupo",
- "mobile.channel_list.privateChannel": "Canal Privado",
- "mobile.channel_list.publicChannel": "Canal Público",
- "mobile.channel_list.unreads": "SIN LEER",
- "mobile.components.channels_list_view.yourChannels": "Tus canales:",
- "mobile.components.error_list.dismiss_all": "Descartar todo",
- "mobile.components.select_server_view.continue": "Continuar",
- "mobile.components.select_server_view.enterServerUrl": "URL del servidor",
- "mobile.components.select_server_view.proceed": "Continuar",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Crear",
- "mobile.create_channel.private": "Nuevo Canal Privado",
- "mobile.create_channel.public": "Nuevo Canal Público",
- "mobile.custom_list.no_results": "Sin resultados",
- "mobile.drawer.teamsTitle": "Equipos",
- "mobile.edit_post.title": "Editando Mensaje",
- "mobile.emoji_picker.activity": "ACTIVIDAD",
- "mobile.emoji_picker.custom": "PERSONALIZADO",
- "mobile.emoji_picker.flags": "BANDERAS",
- "mobile.emoji_picker.foods": "COMIDA",
- "mobile.emoji_picker.nature": "NATURALEZA",
- "mobile.emoji_picker.objects": "OBJETOS",
- "mobile.emoji_picker.people": "PERSONAS",
- "mobile.emoji_picker.places": "LUGARES",
- "mobile.emoji_picker.symbols": "SIMBOLOS",
- "mobile.error_handler.button": "Reiniciar",
- "mobile.error_handler.description": "\nPresiona reiniciar para abrir la aplicación de nuevo. Después de reiniciar, puedes reportar el problema desde el menú de configuración.\n",
- "mobile.error_handler.title": "Ocurrió un error inesperado.",
- "mobile.file_upload.camera": "Sacar Foto o Vídeo",
- "mobile.file_upload.library": "Librería de Fotos",
- "mobile.file_upload.more": "Más",
- "mobile.file_upload.video": "Librería de Videos",
- "mobile.help.title": "Ayuda",
- "mobile.image_preview.save": "Guardar imagen",
- "mobile.intro_messages.DM": "Este es el inicio de tu historial de mensajes directos con {teammate}.Los mensajes directos y archivos que se comparten aquí no son mostrados a personas fuera de esta área.",
- "mobile.intro_messages.default_message": "Es es el primer canal que tus compañeros ven cuando se registran - puedes utilizarlo para enviar mensajes que todos deben leer.",
- "mobile.intro_messages.default_welcome": "¡Bienvenido a {name}!",
- "mobile.join_channel.error": "No pudimos unirnos al canal {displayName}. Por favor revisa tu conexión e intenta de nuevo.",
- "mobile.loading_channels": "Cargando Canales...",
- "mobile.loading_members": "Cargando Miembros...",
- "mobile.loading_posts": "Cargando Mensajes...",
- "mobile.login_options.choose_title": "Selecciona un método para iniciar sesión",
- "mobile.managed.blocked_by": "Bloqueado por {vendor}",
- "mobile.managed.exit": "Salir",
- "mobile.managed.jailbreak": "{vendor} no confía en los dispositivos con jailbreak, por favor, salga de la aplicación.",
- "mobile.managed.secured_by": "Asegurado por {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} más líneas",
- "mobile.more_dms.start": "Comenzar",
- "mobile.more_dms.title": "Nueva Conversación",
- "mobile.notice_mobile_link": "aplicaciones móviles",
- "mobile.notice_platform_link": "plataforma",
- "mobile.notice_text": "Mattermost es hecho posible con software de código abierto utilizado en nuestra {platform} y {mobile}.",
- "mobile.notification.in": " en ",
- "mobile.offlineIndicator.connected": "Conectado",
- "mobile.offlineIndicator.connecting": "Conectando...",
- "mobile.offlineIndicator.offline": "Sin conexión a Internet",
- "mobile.open_dm.error": "No pudimos abrir el canal de mensajes directos con {displayName}. Por favor revisa tu conexión e intenta de nuevo.",
- "mobile.open_gm.error": "No pudimos abrir el canal del grupo con esos usuarios. Por favor revisa tu conexión e intenta de nuevo.",
- "mobile.post.cancel": "Cancelar",
- "mobile.post.delete_question": "¿Estás seguro(a) de querer borrar este mensaje?",
- "mobile.post.delete_title": "Eliminar Mensaje",
- "mobile.post.failed_delete": "Borrar Mensaje",
- "mobile.post.failed_retry": "Intentar de nuevo",
- "mobile.post.failed_title": "No se pudo enviar el mensaje",
- "mobile.post.retry": "Actualizar",
- "mobile.post_info.add_reaction": "Reaccionar",
- "mobile.request.invalid_response": "Se recibió una respuesta no válida del servidor.",
- "mobile.routes.channelInfo": "Información",
- "mobile.routes.channelInfo.createdBy": "Creado por {creator} el ",
- "mobile.routes.channelInfo.delete_channel": "Borrar Canal",
- "mobile.routes.channelInfo.favorite": "Favorito",
- "mobile.routes.channel_members.action": "Remover Miembros",
- "mobile.routes.channel_members.action_message": "Debes seleccionar al menos un miembro a ser removido del canal.",
- "mobile.routes.channel_members.action_message_confirm": "¿Seguro quieres remover al miembro seleccionado del canal?",
- "mobile.routes.channels": "Canales",
- "mobile.routes.code": "Código {language}",
- "mobile.routes.code.noLanguage": "Código",
- "mobile.routes.enterServerUrl": "URL del servidor",
- "mobile.routes.login": "Inicio de Sesión",
- "mobile.routes.loginOptions": "Selector Inicio de Sesión",
- "mobile.routes.mfa": "Autenticación de Múltiples factores:",
- "mobile.routes.postsList": "Lista de Mensajes",
- "mobile.routes.saml": "Inicio de Sesión Único",
- "mobile.routes.selectTeam": "Seleccionar Equipo",
- "mobile.routes.settings": "Configuración",
- "mobile.routes.sso": "Inicio de Sesión Único",
- "mobile.routes.thread": "Hilo en {channelName}",
- "mobile.routes.thread_dm": "Hilo de Mensaje Directo",
- "mobile.routes.user_profile": "Perfil",
- "mobile.routes.user_profile.send_message": "Enviar Mensaje",
- "mobile.search.jump": "SALTAR",
- "mobile.search.no_results": "No se han encontrado resultados",
- "mobile.select_team.choose": "Tus equipos: ",
- "mobile.select_team.join_open": "Equipos a los que te puedes unir",
- "mobile.select_team.no_teams": "No hay equipos disponibles a los que te puedas unir.",
- "mobile.server_ping_failed": "No se puede conectar con el servidor. Por favor verifica el URL ingresado y que tengas conexión a internet.",
- "mobile.server_upgrade.button": "Aceptar",
- "mobile.server_upgrade.description": "\nEs necesaria una actualización del servidor para utilizar la aplicación de Mattermost. Por favor, preguntale a tu Administrador del Sistema para obtener más detalles.\n",
- "mobile.server_upgrade.title": "Es necesario actualizar el Servidor",
- "mobile.server_url.invalid_format": "URL debe comenzar con http:// o https://",
- "mobile.session_expired": "Sesión Caducada: Por favor, inicia sesión para seguir recibiendo notificaciones.",
- "mobile.settings.clear": "Limpiar Almacén sin Conexión",
- "mobile.settings.clear_button": "Limpiar",
- "mobile.settings.clear_message": "\nEsto borrará todos los datos sin conexión y reiniciará la aplicación. Tu sesión será iniciada automáticamente una vez que la aplicación se reinicie.\n",
- "mobile.settings.team_selection": "Seleccionar Equipo",
- "mobile.suggestion.members": "Miembros",
- "modal.manaul_status.ask": "No preguntarme de nuevo",
- "modal.manaul_status.button": "Sí, asigna mi estatus como \"En línea\"",
- "modal.manaul_status.cancel": "No, mantenerme como \"{status}\"",
- "modal.manaul_status.message": "¿Quiere cambiar tu estado a \"En línea\"?",
- "modal.manaul_status.title": "Tu estado es \"{status}\"",
- "more_channels.close": "Cerrar",
- "more_channels.create": "Crear Nuevo Canal",
- "more_channels.createClick": "Haz clic en 'Crear Nuevo Canal' para crear uno nuevo",
- "more_channels.join": "Unirme",
- "more_channels.next": "Siguiente",
- "more_channels.noMore": "No hay más canales para unirse",
- "more_channels.prev": "Anterior",
- "more_channels.title": "Más Canales",
- "more_direct_channels.close": "Cerrar",
- "more_direct_channels.message": "Mensaje",
- "more_direct_channels.new_convo_note": "Se iniciará una nueva conversación. Si estás agregando a mucha gente, considera crear un canal privado en su lugar.",
- "more_direct_channels.new_convo_note.full": "Haz alcanzado el número máximo de personas para esta conversación. Considera crear un canal privado en su lugar.",
- "more_direct_channels.title": "Mensajes Directos",
- "msg_typing.areTyping": "{users} y {last} están escribiendo...",
- "msg_typing.isTyping": "{user} está escribiendo...",
- "msg_typing.someone": "Alguien",
- "multiselect.add": "Agregar",
- "multiselect.go": "Ir",
- "multiselect.list.notFound": "No se encontraron elementos",
- "multiselect.numPeopleRemaining": "Utiliza ↑↓ para navegar, ↵ para seleccionar. Puedes agregar {num, number} {num, plural, one {persona} other {personas}} más. ",
- "multiselect.numRemaining": "Puedes agregar {num, number} más",
- "multiselect.placeholder": "Buscar y agregar miembros",
- "navbar.addMembers": "Agregar Miembros",
- "navbar.click": "Clic aquí",
- "navbar.delete": "Borrar Canal...",
- "navbar.leave": "Abandonar Canal",
- "navbar.manageMembers": "Administrar Miembros",
- "navbar.noHeader": "Todavía no hay un encabezado.{newline}{link} para agregar uno.",
- "navbar.preferences": "Preferencias de Notificación",
- "navbar.rename": "Renombrar Canal...",
- "navbar.setHeader": "Asignar Encabezado del Canal...",
- "navbar.setPurpose": "Asignar Propósito del Canal...",
- "navbar.toggle1": "Mostrar Barra",
- "navbar.toggle2": "Esconder Barra",
- "navbar.viewInfo": "Ver Info",
- "navbar.viewPinnedPosts": "Ver Mensajes Anclados",
- "navbar_dropdown.about": "Acerca de Mattermost",
- "navbar_dropdown.accountSettings": "Configurar Cuenta",
- "navbar_dropdown.addMemberToTeam": "Agregar Miembros al Equipo",
- "navbar_dropdown.console": "Consola de Sistema",
- "navbar_dropdown.create": "Crear nuevo Equipo",
- "navbar_dropdown.emoji": "Emoticones Personalizados",
- "navbar_dropdown.help": "Ayuda",
- "navbar_dropdown.integrations": "Integraciones",
- "navbar_dropdown.inviteMember": "Enviar Correo de Invitación",
- "navbar_dropdown.join": "Unirme a otro Equipo",
- "navbar_dropdown.keyboardShortcuts": "Atajos de teclado",
- "navbar_dropdown.leave": "Abandonar Equipo",
- "navbar_dropdown.logout": "Cerrar sesión",
- "navbar_dropdown.manageMembers": "Administrar Miembros",
- "navbar_dropdown.nativeApps": "Descargar Apps",
- "navbar_dropdown.report": "Reportar un Problema",
- "navbar_dropdown.switchTeam": "Cambiar a {team}",
- "navbar_dropdown.switchTo": "Cambiar a ",
- "navbar_dropdown.teamLink": "Enlace invitación al equipo",
- "navbar_dropdown.teamSettings": "Configurar Equipo",
- "navbar_dropdown.viewMembers": "Ver Miembros",
- "notification.dm": "Mensaje Directo",
- "notify_all.confirm": "Confirmar",
- "notify_all.question": "Al utilizar @all o @channel estás a punto de enviar una notificación a {totalMembers} personas. ¿Estás seguro que quieres hacerlo?",
- "notify_all.title.confirm": "Confirma el envío de notificaciones a todo el canal",
- "passwordRequirements": "Requisitos de la Contraseña:",
- "password_form.change": "Cambiar mi contraseña",
- "password_form.click": " Clic aquí para iniciar sesión.",
- "password_form.enter": "Ingresa una nueva contraseña para tu cuenta en {siteName}.",
- "password_form.error": "Por favor ingresa al menos {chars} caracteres.",
- "password_form.pwd": "Contraseña",
- "password_form.title": "Restablecer Contraseña",
- "password_form.update": "Tu contraseña ha sido actualizada satisfactoriamente.",
- "password_send.checkInbox": "Por favor revisa tu bandeja de entrada.",
- "password_send.description": "Para reiniciar tu contraseña, ingresa la dirección de correo que utilizaste en el registro",
- "password_send.email": "Correo electrónico",
- "password_send.error": "Por favor ingresa una dirección correo electrónico válida.",
- "password_send.link": "Si la cuenta existe, un correo electrónico para restablecer la contraseña será enviado a: {email}
",
- "password_send.reset": "Restablecer mi contraseña",
- "password_send.title": "Restablecer Contraseña",
- "pdf_preview.max_pages": "Descargar para leer más páginas",
- "pending_post_actions.cancel": "Cancelar",
- "pending_post_actions.retry": "Reintentar",
- "permalink.error.access": "El Enlace permanente pertenece a un mensaje eliminado o a un canal al cual no tienes acceso.",
- "permalink.error.title": "Mensaje no encontrado",
- "post_attachment.collapse": "Mostrar menos...",
- "post_attachment.more": "Mostrar más... ",
- "post_body.commentedOn": "Comentó el mensaje de {name}{apostrophe}: ",
- "post_body.deleted": "(mensaje eliminado)",
- "post_body.plusMore": " más {count, number} {count, plural, one {archivo} other {archivos}}",
- "post_delete.notPosted": "No se pudo enviar el comentario",
- "post_delete.okay": "Ok",
- "post_delete.someone": "Alguien borró el mensaje que querías comentar.",
- "post_focus_view.beginning": "Inicio de los Archivos del Canal",
- "post_info.del": "Borrar",
- "post_info.edit": "Editar",
- "post_info.message.visible": "(Visible sólo por ti)",
- "post_info.message.visible.compact": " (Visible sólo por ti)",
- "post_info.mobile.flag": "Marcar",
- "post_info.mobile.unflag": "Desmarcar",
- "post_info.permalink": "Enlace permanente",
- "post_info.pin": "Anclar al canal",
- "post_info.pinned": "Anclado",
- "post_info.reply": "Responder",
- "post_info.system": "Sistema",
- "post_info.unpin": "Desprender del canal",
- "post_message_view.edited": "(editado)",
- "posts_view.loadMore": "Cargar más mensajes",
- "posts_view.loadingMore": "Cargar más mensajes...",
- "posts_view.newMsg": "Nuevos Mensajes",
- "posts_view.newMsgBelow": "{count, plural, one {Nuevo mensaje} other {Nuevos mensajes}}",
- "quick_switch_modal.channels": "Canales",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Comienza a escribir, a continuación, usa la tecla TAB para cambiar de canales/equipos, ↑↓ para navegar, ↵ para seleccionar, y ESC para descartar.",
- "quick_switch_modal.help_mobile": "Escribe para encontrar un canal.",
- "quick_switch_modal.help_no_team": "Escribe para encontrar un canal. Utiliza ↑↓ para navegar, ↵ para seleccionar, ESC para descartar.",
- "quick_switch_modal.teams": "Equipos",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(clic para agregar)",
- "reaction.clickToRemove": "(clic para quitar)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {usuario} other {usuarios}}",
- "reaction.reacted": "{users} {reactionVerb} con {emoji}",
- "reaction.reactionVerb.user": "reaccionó",
- "reaction.reactionVerb.users": "reaccionaron",
- "reaction.reactionVerb.you": "reaccionaste",
- "reaction.reactionVerb.youAndUsers": "reaccionaron",
- "reaction.usersAndOthersReacted": "{users} y {otherUsers, number} {otherUsers, plural, one {otro usuario} other {otros usuarios}}",
- "reaction.usersReacted": "{users} y {lastUser}",
- "reaction.you": "Tú",
- "removed_channel.channelName": "el canal",
- "removed_channel.from": "Removido de ",
- "removed_channel.okay": "OK",
- "removed_channel.remover": "{remover} te removió de {channel}",
- "removed_channel.someone": "Alguien",
- "rename_channel.cancel": "Cancelar",
- "rename_channel.defaultError": " - No se puede cambiar el del canal predeterminado",
- "rename_channel.displayName": "Nombre a Mostrar",
- "rename_channel.displayNameHolder": "Ingresa el nombre a mostrar",
- "rename_channel.handleHolder": "Debe tener caracteres alfanuméricos y en minúscula",
- "rename_channel.lowercase": "Debe tener caracteres alfanumericos y minúscula",
- "rename_channel.maxLength": "Este campo debe tener menos de {maxLength, number} caracteres",
- "rename_channel.minLength": "Nombre del canal debe ser de {minLength, number} o más caracteres",
- "rename_channel.required": "Este campo es obligatorio",
- "rename_channel.save": "Guardar",
- "rename_channel.title": "Renombrar Canal",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Comentario",
- "rhs_comment.del": "Borrar",
- "rhs_comment.edit": "Editar",
- "rhs_comment.mobile.flag": "Marcar",
- "rhs_comment.mobile.unflag": "Desmarcar",
- "rhs_comment.permalink": "Enlace permanente",
- "rhs_header.backToCallTooltip": "Volver a la llamada",
- "rhs_header.backToFlaggedTooltip": "Volver a los Mensajes Marcados",
- "rhs_header.backToPinnedTooltip": "Volver a los Mensajes Anclados",
- "rhs_header.backToResultsTooltip": "Volver a los Resultados de la Búsqueda",
- "rhs_header.closeSidebarTooltip": "Cerrar barra lateral",
- "rhs_header.closeTooltip": "Cerrar barra lateral",
- "rhs_header.details": "Detalles del Mensaje",
- "rhs_header.expandSidebarTooltip": "Expandir barra lateral",
- "rhs_header.expandTooltip": "Reducir barra lateral",
- "rhs_header.shrinkSidebarTooltip": "Reducir barra lateral",
- "rhs_root.del": "Borrar",
- "rhs_root.direct": "Mensaje Directo",
- "rhs_root.edit": "Editar",
- "rhs_root.mobile.flag": "Marcar",
- "rhs_root.mobile.unflag": "Desmarcar",
- "rhs_root.permalink": "Enlace permanente",
- "rhs_root.pin": "Anclar al canal",
- "rhs_root.unpin": "Desprender del canal",
- "search_bar.search": "Buscar",
- "search_bar.usage": "
Opciones de Búsqueda
Utiliza \"comillas\" para buscar frases
Utiliza from: para encontrar mensajes de usuarios en específico e in: para encontrar mensajes de canales específicos
Si estás buscando un frase parcial (ej. buscando \"aud\", tratando de encontrar \"audible\" o \"audifonos\"), agrega un * a la palabra que estás buscando
Debido a la cantidad de resultados, la búsqueda con dos letras y palabras comunes como \"this\", \"a\" and \"es\" no aparecerán en los resultados debido a la cantidad excesiva de resultados retornados.
",
- "search_results.noResults": "No se encontraron resultados. ¿Inténtalo de nuevo?",
- "search_results.searching": "Buscando…",
- "search_results.usage": "
Utiliza \"comillas\" para buscar frases
Utiliza from: para encontrar mensajes de usuarios en específico e in: para encontrar mensajes de canales específicos
",
- "search_results.usageFlag1": "Todavía no haz marcado ningún mensaje.",
- "search_results.usageFlag2": "Puedes marcar los mensajes y comentarios haciendo clic en el icono ",
- "search_results.usageFlag3": " junto a la marca de hora.",
- "search_results.usageFlag4": "Las banderas son una forma de marcar los mensajes para hacerles seguimiento. Tus banderas son personales, y no puede ser vistas por otros usuarios.",
- "search_results.usagePin1": "Todavía no hay mensajes anclados.",
- "search_results.usagePin2": "Todos los miembros de este canal puede anclar mensajes importante o útiles.",
- "search_results.usagePin3": "Los mensajes anclados son visibles por todos los miembros del canal.",
- "search_results.usagePin4": "Para anclar un mensaje: Ve al mensaje que deseas anclar y haz clic en [...] > \"Anclar al canal\".",
- "setting_item_max.cancel": "Cancelar",
- "setting_item_max.save": "Guardar",
- "setting_item_min.edit": "Editar",
- "setting_picture.cancel": "Cancelar",
- "setting_picture.help": "Sube una imagen de tu perfil en formato BMP, JPG, JPEG o PNG de al menos {width}px de ancho y {height}px de alto.",
- "setting_picture.save": "Guardar",
- "setting_picture.select": "Selecciona",
- "setting_upload.import": "Importar",
- "setting_upload.noFile": "No ha seleccionado un archivo",
- "setting_upload.select": "Selecciona un archivo",
- "shortcuts.browser.channel_next": "Adelante en la historia:\tAlt|Derecha",
- "shortcuts.browser.channel_next.mac": "Adelante en la historia::\t⌘|]",
- "shortcuts.browser.channel_prev": "Atrás en la historia:\tAlt|Izquierda",
- "shortcuts.browser.channel_prev.mac": "Atrás en la historia:\t⌘|[",
- "shortcuts.browser.font_decrease": "Alejar zoom:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Alejar zoom:\t⌘|-",
- "shortcuts.browser.font_increase": "Acercar zoom:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Acercar zoom:\t⌘|+",
- "shortcuts.browser.header": "Comandos del navegador Incorporados",
- "shortcuts.browser.highlight_next": "Resaltar el texto en la línea siguiente:\tShift|Abajo",
- "shortcuts.browser.highlight_prev": "Resaltar el texto en la línea anterior:\tShift|Hasta",
- "shortcuts.browser.input.header": "Funcionan en el interior de un campo de entrada",
- "shortcuts.browser.newline": "Crea una nueva linea:\tShift|Retorno",
- "shortcuts.files.header": "Archivos",
- "shortcuts.files.upload": "Subir archivos:\tCtrl|U",
- "shortcuts.files.upload.mac": "Subir archivos:\t⌘|U",
- "shortcuts.header": "Atajos de teclado",
- "shortcuts.info": "Comienza un mensaje con / para una lista de comandos a tu disposición.",
- "shortcuts.msgs.comp.channel": "Canal:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoticon:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Autocompletar",
- "shortcuts.msgs.comp.username": "Nombre de usuario:\t@|[a-z]|tab",
- "shortcuts.msgs.edit": "Editar el ultimo mensaje en el canal:\tArriba",
- "shortcuts.msgs.header": "Mensajes",
- "shortcuts.msgs.input.header": "Funciona dentro de un campo de entrada vacío",
- "shortcuts.msgs.mark_as_read": "Marca el canal actual como leído:\tEsc",
- "shortcuts.msgs.reply": "Responder al último mensaje en el canal:\tShift|Arriba",
- "shortcuts.msgs.reprint_next": "Vuelve a imprimir el siguiente mensaje:\tCtrl|Abajo",
- "shortcuts.msgs.reprint_next.mac": "Vuelve a imprimir el siguiente mensaje:\t⌘|Abajo",
- "shortcuts.msgs.reprint_prev": "Vuelve a imprimir el mensaje anterior:\tCtrl|Arriba",
- "shortcuts.msgs.reprint_prev.mac": "Vuelve a imprimir el mensaje anterior:\t⌘|Arriba",
- "shortcuts.nav.direct_messages_menu": "Menú de mensajes directos:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Menú de mensajes directos:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navegación",
- "shortcuts.nav.next": "Canal siguiente:\tAlt|Abajo",
- "shortcuts.nav.next.mac": "Canal siguiente:\t⌥|Abajo",
- "shortcuts.nav.prev": "Canal anterior:\tAlt|Arriba",
- "shortcuts.nav.prev.mac": "Canal anterior:\t⌥|Arriba",
- "shortcuts.nav.recent_mentions": "Menciones recientes:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Menciones recientes:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Configuración de la cuenta:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Configuración de la cuenta:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Cambio rápido de canal:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Cambio rápido de canal:\t⌘|K",
- "shortcuts.nav.unread_next": "Próximo canal no leído:\tAlt|Shit|Abajo",
- "shortcuts.nav.unread_next.mac": "Próximo canal no leído:\t⌥|Shift|Abajo",
- "shortcuts.nav.unread_prev": "Canal no leído anterior:\tAlt|Shift|Arriba",
- "shortcuts.nav.unread_prev.mac": "Canal no leído anterior:\t⌥|Shift|Arriba",
- "sidebar.channels": "CANALES PÚBLICOS",
- "sidebar.createChannel": "Crear nuevo canal público",
- "sidebar.createGroup": "Crear nuevo canal privado",
- "sidebar.direct": "MENSAJES DIRECTOS",
- "sidebar.favorite": "FAVORITOS",
- "sidebar.leave": "Abandonar Canal",
- "sidebar.mainMenu": "Menú principal",
- "sidebar.more": "Más",
- "sidebar.moreElips": "Más...",
- "sidebar.otherMembers": "Fuera de este equipo",
- "sidebar.pg": "CANALES PRIVADOS",
- "sidebar.removeList": "Remover de la lista",
- "sidebar.tutorialScreen1": "
Canales
Canales organizan las conversaciones en diferentes tópicos. Son abiertos para cualquier persona de tu equipo. Para enviar comunicaciones privadas con una sola persona utiliza Mensajes Directos o con multiples personas utilizando Canales Privados.
",
- "sidebar.tutorialScreen2": "
Los canal \"{townsquare}\" y \"{offtopic}\"
Estos son dos canales para comenzar:
{townsquare} es el lugar para tener comunicación con todo el equipo. Todos los integrantes de tu equipo son miembros de este canal.
{offtopic} es un lugar para diversión y humor fuera de los canales relacionados con el trabajo. Tu y tu equipo pueden decidir que otros canales crear.
",
- "sidebar.tutorialScreen3": "
Creando y Uniéndose a Canales
Haz clic en \"Más...\" para crear un nuevo canal o unirte a uno existente.
También puedes crear un nuevo canal al hacer clic en el símbolo de \"+\" que se encuentra al lado del encabezado de canales públicos o privados.
",
- "sidebar.unreads": "Más sin leer",
- "sidebar_header.tutorial": "
Menú Principal
El Menú Principal es donde puedes Invitar a nuevos miembros, podrás Configurar tu Cuenta y seleccionar un Tema para personalizar la apariencia.
Los administradores del Equipo podrán Configurar el Equipo desde este menú.
Los administradores del Sistema encontrarán una opción para ir a la Consola de Sistema para administrar el sistema completo.
",
- "sidebar_right_menu.accountSettings": "Configurar tu Cuenta",
- "sidebar_right_menu.addMemberToTeam": "Agregar Miembros al Equipo",
- "sidebar_right_menu.console": "Consola del Sistema",
- "sidebar_right_menu.flagged": "Mensajes Marcados",
- "sidebar_right_menu.help": "Ayuda",
- "sidebar_right_menu.inviteNew": "Enviar Correo de Invitación",
- "sidebar_right_menu.logout": "Cerrar sesión",
- "sidebar_right_menu.manageMembers": "Adminisrar Miembros",
- "sidebar_right_menu.nativeApps": "Descargar Apps",
- "sidebar_right_menu.recentMentions": "Menciones recientes",
- "sidebar_right_menu.report": "Reporta un Problema",
- "sidebar_right_menu.teamLink": "Enlace Invitación al Equipo",
- "sidebar_right_menu.teamSettings": "Configurar Equipo",
- "sidebar_right_menu.viewMembers": "Ver Miembros",
- "signup.email": "Correo electrónico y Contraseña",
- "signup.gitlab": "GitLab Single Sign-On",
- "signup.google": "Cuenta de Google",
- "signup.ldap": "Credenciales AD/LDAP",
- "signup.office365": "Office 365",
- "signup.title": "Crea una cuenta con:",
- "signup_team.createTeam": "O Crea un Equipo",
- "signup_team.disabled": "La creación de Equipos ha sido inhabilitada.",
- "signup_team.join_open": "Equipos a los que te puedes unir: ",
- "signup_team.noTeams": "No hay equipos en el Directorio de Equipos y la creación de equipos ha sido inhabilitada.",
- "signup_team.no_open_teams": "No hay equipos están disponibles para unirse. Por favor, solicita una invitación a tu administrador.",
- "signup_team.no_open_teams_canCreate": "No hay equipos están disponibles para unirse. Por favor, crear un nuevo equipo, o solicita una invitación a tu administrador.",
- "signup_team.no_teams": "No se han creado equipos. Por favor contacta a tu administrador.",
- "signup_team.no_teams_canCreate": "No se han creado equipos. Puedes crear uno al hacer clic en \"Crear nuevo equipo\".",
- "signup_team.none": "No se ha habilitado ningún método para creación de equipos. Por favor contacta a un administrador de sistema para solicitar acceso.",
- "signup_team_complete.completed": "Ya haz completado el proceso de entrada para esta invitación, o esta invitación ya ha expirado.",
- "signup_team_confirm.checkEmail": "Por favor revisa tu correo electrónico: {email} Se ha enviado un correo con un enlace para configurar tu equipo",
- "signup_team_confirm.title": "Registro Completado",
- "signup_team_system_console": "Ir a la Consola del Sistema",
- "signup_user_completed.choosePwd": "Escoge tu contraseña",
- "signup_user_completed.chooseUser": "Escoge tu nombre de usuario",
- "signup_user_completed.create": "Crea una Cuenta",
- "signup_user_completed.emailHelp": "Para registrarte es necesario un correo electrónico válido",
- "signup_user_completed.emailIs": "Tu dirección de correo electrónico es {email}. Utiliza está dirección para ingresar a {siteName}.",
- "signup_user_completed.expired": "Ya haz completado el proceso de registro para esta invitación, o esta invitación ya ha expirado.",
- "signup_user_completed.gitlab": "con GitLab",
- "signup_user_completed.google": "con Google",
- "signup_user_completed.haveAccount": "Ya tienes una cuenta?",
- "signup_user_completed.invalid_invite": "El enlace de invitación es inválido. Por favor habla con tu administrador para recibir una invitación.",
- "signup_user_completed.lets": "Vamos a crear tu cuenta",
- "signup_user_completed.no_open_server": "Este servidor no acepta registros abiertos. Por favor habla con tu administrador para recibir una invitación.",
- "signup_user_completed.none": "No está habilitado ningún método para crear usuarios. Por favor contacta a un administrador para obtener acceso.",
- "signup_user_completed.office365": "con Office 365",
- "signup_user_completed.onSite": "en {siteName}",
- "signup_user_completed.or": "o",
- "signup_user_completed.passwordLength": "Por favor, introduce entre {min} y {max} caracteres",
- "signup_user_completed.required": "Este campo es obligatorio",
- "signup_user_completed.reserved": "Este nombre de usuario está reservado, por favor escoge uno nuevo.",
- "signup_user_completed.signIn": "Haz clic aquí para iniciar sesión.",
- "signup_user_completed.userHelp": "El nombre de usuario debe empezar con una letra, y contener entre {min} a {max} caracteres en minúscula con números, letras, y los símbolos '.', '-' y '_'.",
- "signup_user_completed.usernameLength": "El nombre de usuario debe comenzar con una letra, y debe contener entre {min} y {max} caracteres en minúscula y confeccionado por numeros, letras y los simbolos '.', '-' and '_'.",
- "signup_user_completed.validEmail": "Por favor ingresa una dirección de correo electrónico válida",
- "signup_user_completed.welcome": "Bienvenido a:",
- "signup_user_completed.whatis": "¿Cuál es tu dirección de correo electrónico?",
- "signup_user_completed.withLdap": "Con tus credenciales de AD/LDAP",
- "sso_signup.find": "Encontrar mi equipo",
- "sso_signup.gitlab": "Crea un equipo con una cuenta de GitLab",
- "sso_signup.google": "Crea un equipo con una cuenta de Google Apps",
- "sso_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
- "sso_signup.teamName": "Ingresa el nombre del nuevo equipo",
- "sso_signup.team_error": "Please enter a team name",
- "status_dropdown.set_away": "Ausente",
- "status_dropdown.set_offline": "Desconectado",
- "status_dropdown.set_online": "En línea",
- "suggestion.loading": "Cargando...",
- "suggestion.mention.all": "PRECAUCIÓN: Esto menciona a todos los usuarios en el canal",
- "suggestion.mention.channel": "Notifica a todas las personas en el canal",
- "suggestion.mention.channels": "Mis Canales",
- "suggestion.mention.here": "Notifica a todos en el canal que estén en línea",
- "suggestion.mention.in_channel": "Canales",
- "suggestion.mention.members": "Miembros del Canal",
- "suggestion.mention.morechannels": "Otros Canales",
- "suggestion.mention.nonmembers": "No en el Canal",
- "suggestion.mention.not_in_channel": "Otros Canales",
- "suggestion.mention.special": "Menciones especiales",
- "suggestion.search.private": "Canales Privados",
- "suggestion.search.public": "Canales Públicos",
- "system_users_list.count": "{count, number} {count, plural, one {usuario} other {usuarios}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {usuario} other {usuarios}} de {total, number} total",
- "system_users_list.countSearch": "{count, number} {count, plural, one {usuario} other {usuarios}} de {total, number} total",
- "team_export_tab.download": "descargar",
- "team_export_tab.export": "Exportar",
- "team_export_tab.exportTeam": "Exportar tu equipo",
- "team_export_tab.exporting": " Exportando...",
- "team_export_tab.ready": " Listo para ",
- "team_export_tab.unable": " No se pudo exportar: {error}",
- "team_import_tab.failure": " Fallo al importar: ",
- "team_import_tab.import": "Importar",
- "team_import_tab.importHelpDocsLink": "documentación",
- "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
- "team_import_tab.importHelpExporterLink": "Exportador Avanzado de Slack",
- "team_import_tab.importHelpLine1": "Importar de Slack a Mattermost admite la importación de los mensajes en los canales públicos del equipo de Slack.",
- "team_import_tab.importHelpLine2": "Para importar un equipo desde Slack, ve a {exportInstructions}. Revisa la {uploadDocsLink} para conocer más.",
- "team_import_tab.importHelpLine3": "Para importar mensajes con archivos adjuntos, revisa {slackAdvancedExporterLink} para más detalles.",
- "team_import_tab.importSlack": "Importar desde Slack (Beta)",
- "team_import_tab.importing": " Importando...",
- "team_import_tab.successful": " Importado con éxito: ",
- "team_import_tab.summary": "Ver Resumen",
- "team_member_modal.close": "Cerrar",
- "team_member_modal.members": "{team} Miembros",
- "team_members_dropdown.confirmDemoteDescription": "Si te degradas a ti mismo de la función de Administrador de Sistema y no hay otro usuario con privilegios de Administrador de Sistema, tendrás que volver a asignar un Administrador del Sistema accediendo al servidor de Mattermost a través de un terminal y ejecutar el siguiente comando.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Confirmar el decenso del rol de Administrador de Sistema",
- "team_members_dropdown.confirmDemotion": "Confirmar decenso",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "Inactivo",
- "team_members_dropdown.leave_team": "Quitar del equipo",
- "team_members_dropdown.makeActive": "Activar",
- "team_members_dropdown.makeAdmin": "Hacer Admin de Equipo",
- "team_members_dropdown.makeInactive": "Desactivar",
- "team_members_dropdown.makeMember": "Hacer Miembro",
- "team_members_dropdown.member": "Miembro",
- "team_members_dropdown.systemAdmin": "Admin del Sistema",
- "team_members_dropdown.teamAdmin": "Admin del Equipo",
- "team_settings_modal.exportTab": "Exportar",
- "team_settings_modal.generalTab": "General",
- "team_settings_modal.importTab": "Importar",
- "team_settings_modal.title": "Configuración del Equipo",
- "team_sidebar.join": "Otros equipos a los que te puedes unir.",
- "textbox.bold": "**negritas**",
- "textbox.edit": "Editar mensaje",
- "textbox.help": "Ayuda",
- "textbox.inlinecode": "`código`",
- "textbox.italic": "_italica_",
- "textbox.preformatted": "```preformateado```",
- "textbox.preview": "Previsualizar",
- "textbox.quote": ">cita",
- "textbox.strike": "tachado",
- "tutorial_intro.allSet": "Ya estás listo para comenzar",
- "tutorial_intro.end": "Clic en “Siguiente” para entrar al {channel}. Este es el primer canal que ven tus compañeros cuando se registran. Utilízalo para mandar mensajes que todos deben leer.",
- "tutorial_intro.invite": "Invitar compañeros",
- "tutorial_intro.mobileApps": "Instalar las apps para {link} para un fácil acceso y notificaciones sobre la marcha.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS y Android",
- "tutorial_intro.next": "Siguiente",
- "tutorial_intro.screenOne": "
Bienvenido a:
Mattermost
Las comunicaciones de tu equipo en un sólo lugar, con búsquedas instantáneas y disponible desde donde sea.
Mantén a tu equipo conectado para ayudarlos a conseguir lo que realmente importa.
",
- "tutorial_intro.screenTwo": "
Cómo funciona Mattermost:
Las comunicaciones ocurren en los canales de discusión públicos, privados e incluso con mensajes directos.
Todo lo que ocurre es archivado y se puede buscar en cualquier momento desde cualquier dispositivo con acceso a Mattermost.
",
- "tutorial_intro.skip": "Saltar el tutorial",
- "tutorial_intro.support": "Necesitas algo, escribemos a ",
- "tutorial_intro.teamInvite": "Invitar compañeros",
- "tutorial_intro.whenReady": " cuando estés listo(a).",
- "tutorial_tip.next": "Siguiente",
- "tutorial_tip.ok": "Aceptar",
- "tutorial_tip.out": "No optar por estos consejos.",
- "tutorial_tip.seen": "¿Haz visto esto antes? ",
- "update_command.cancel": "Cancelar",
- "update_command.confirm": "Editar Comando de Barra",
- "update_command.question": "Tus cambios puede que rompan el comando de barra existente. ¿Estás seguro de que deseas actualizar?",
- "update_command.update": "Actualizar",
- "update_incoming_webhook.update": "Actualizar",
- "update_outgoing_webhook.confirm": "Editar Webhook de Salida",
- "update_outgoing_webhook.question": "Tus cambios puede que rompan el webhook de salida existente. ¿Estás seguro de que deseas actualizarlo?",
- "update_outgoing_webhook.update": "Actualizar",
- "upload_overlay.info": "Arrastra un archivo para subirlo.",
- "user.settings.advance.embed_preview": "Para lel primer enlace web en un mensaje, se mostrará una vista previa del contenido del sitio web a continuación del mensaje, si está disponible",
- "user.settings.advance.embed_toggle": "Capacidad de Mostrar/Esconder las previsualizaciones",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Característica} other {Caracteristicas}} Habilitadas",
- "user.settings.advance.formattingDesc": "Si está activada, se dará formato a los mensajes, creando enlaces, mostrando emoticones, el estilo del texto, y añadir saltos de línea. De forma predeterminada, esta opción está habilitada. El cambio de esta configuración requiere que la página se actualice.",
- "user.settings.advance.formattingTitle": "Habilitar el Formato de Mensajes",
- "user.settings.advance.joinLeaveDesc": "Cuando está \"Encendido\", un Mensaje del Sistema diciendo que un usuario se ha unido o abandonado el canal será visible. Cuando está \"Apagado\", los Mensajes de Sistema sobre los usuarios que se unen o abandonan el canal estarán ocultos. Un mensaje se seguirá mostrando cuando eres agregado a un canal, por lo que puedes recibir una notificación.",
- "user.settings.advance.joinLeaveTitle": "Habilitar Menajes de Union/Abandono",
- "user.settings.advance.markdown_preview": "Mostrar la vista previa de mensajes escritos con markdown",
- "user.settings.advance.off": "Apagado",
- "user.settings.advance.on": "Encendido",
- "user.settings.advance.preReleaseDesc": "Marca las características de pre-lanzamiento que quieras previsualizar. Es posible que necesites refrescar la página antes de que los cambios se vean reflejados.",
- "user.settings.advance.preReleaseTitle": "Previsualizar características de pre-lanzamiento",
- "user.settings.advance.sendDesc": "Si está habilitado RETORNO inserta una nueva linea y CTRL+RETORNO envía el mensaje.",
- "user.settings.advance.sendTitle": "Enviar mensajes con CTRL+RETORNO",
- "user.settings.advance.slashCmd_autocmp": "Habilitar que una aplicación externa ofrezca el autocompletado de los comandos de barra",
- "user.settings.advance.title": "Configuración Avanzada",
- "user.settings.advance.webrtc_preview": "Habilitar la capacidad para hacer y recibir llamadas WebRTC uno-a-uno",
- "user.settings.custom_theme.awayIndicator": "Indicador Ausente",
- "user.settings.custom_theme.buttonBg": "Fondo Botón",
- "user.settings.custom_theme.buttonColor": "Texto Botón",
- "user.settings.custom_theme.centerChannelBg": "Fondo Centro Canal",
- "user.settings.custom_theme.centerChannelColor": "Texto Centro Canal",
- "user.settings.custom_theme.centerChannelTitle": "Estilos del Canal Central",
- "user.settings.custom_theme.codeTheme": "Tema para Código",
- "user.settings.custom_theme.copyPaste": "Copia y pega para compartir los colores del tema:",
- "user.settings.custom_theme.linkButtonTitle": "Estilos de Enlaces y Botones",
- "user.settings.custom_theme.linkColor": "Color Enclaces",
- "user.settings.custom_theme.mentionBj": "Fondo Joya Mención",
- "user.settings.custom_theme.mentionColor": "Texto Joya Mención",
- "user.settings.custom_theme.mentionHighlightBg": "Fondo resaltado Mención",
- "user.settings.custom_theme.mentionHighlightLink": "Enlace resaltado Mención",
- "user.settings.custom_theme.newMessageSeparator": "Sep. Nuevos Mensajes",
- "user.settings.custom_theme.onlineIndicator": "Inicador En Linea",
- "user.settings.custom_theme.sidebarBg": "Fondo Barra lateral",
- "user.settings.custom_theme.sidebarHeaderBg": "Fondo Encab. Barra lateral",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Texto Encabezado Barra lateral",
- "user.settings.custom_theme.sidebarText": "Texto Barra lateral",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Borde Activo Barra lateral",
- "user.settings.custom_theme.sidebarTextActiveColor": "Color Activo Barra lateral",
- "user.settings.custom_theme.sidebarTextHoverBg": "Fondo Texto pasada Barra lateral",
- "user.settings.custom_theme.sidebarTitle": "Estilos de la barra lateral",
- "user.settings.custom_theme.sidebarUnreadText": "Texto No Leidos Barra Lateral",
- "user.settings.display.channelDisplayTitle": "Modo en que se muestra el Canal",
- "user.settings.display.channeldisplaymode": "Selecciona el ancho de la vista central.",
- "user.settings.display.clockDisplay": "Visualización del Reloj",
- "user.settings.display.collapseDesc": "Establecer si las vistas previas de los enlaces con imagen se deben mostrar como expandidos o contraídos de forma predeterminada. Este ajuste también puede ser controlado mediante el uso del los comandos de barra /expand y /collapse.",
- "user.settings.display.collapseDisplay": "Apariencia predeterminada de lasa vistas previas de los enlaces con imagenes",
- "user.settings.display.collapseOff": "Colapsado",
- "user.settings.display.collapseOn": "Expandido",
- "user.settings.display.fixedWidthCentered": "De ancho fijo, centrado",
- "user.settings.display.fullScreen": "De ancho total",
- "user.settings.display.language": "Idioma",
- "user.settings.display.messageDisplayClean": "Estándar",
- "user.settings.display.messageDisplayCleanDes": "Fácil de escanear y leer.",
- "user.settings.display.messageDisplayCompact": "Compacto",
- "user.settings.display.messageDisplayCompactDes": "Ajustar en la pantalla tantos mensajes como se pueda.",
- "user.settings.display.messageDisplayDescription": "Selecciona la forma en como se deben mostrar los mensajes en el canal.",
- "user.settings.display.messageDisplayTitle": "Mostrar Mensaje",
- "user.settings.display.militaryClock": "Reloj de 24 horas (ejemplo: 16:00)",
- "user.settings.display.nameOptsDesc": "Asigna como mostrar los nombres de los otros usuarios en los mensajes y en la lista de Mensajes Directos.",
- "user.settings.display.normalClock": "Reloj de 12 horas (ejemplo: 4:00 pm)",
- "user.settings.display.preferTime": "Selecciona como prefieres mostrar la hora.",
- "user.settings.display.theme.applyToAllTeams": "Aplicar el nuevo tema para todos mis equipos",
- "user.settings.display.theme.customTheme": "Tema Personalizado",
- "user.settings.display.theme.describe": "Abrir para administrar tu tema",
- "user.settings.display.theme.import": "Importar colores del tema desde Slack",
- "user.settings.display.theme.otherThemes": "Ver otros temas",
- "user.settings.display.theme.themeColors": "Colores del Tema",
- "user.settings.display.theme.title": "Tema",
- "user.settings.display.title": "Configuración de Visualización",
- "user.settings.general.checkEmail": "Revisa tu correo electrónico {email} para verificar la dirección.",
- "user.settings.general.checkEmailNoAddress": "Revisa tu correo electrónico para verificar la dirección",
- "user.settings.general.close": "Cerrar",
- "user.settings.general.confirmEmail": "Confirmar Correo electrónico",
- "user.settings.general.currentEmail": "Correo electrónico actual",
- "user.settings.general.email": "Correo electrónico",
- "user.settings.general.emailGitlabCantUpdate": "El inicio de sesión ocurre a través GitLab. El correo electrónico no puede ser actualizado. La dirección de correo electrónico utilizada para las notificaciones es {email}.",
- "user.settings.general.emailGoogleCantUpdate": "El inicio de sesión ocurre a través Google. El correo electrónico no puede ser actualizado. La dirección de correo electrónico utilizada para las notificaciones es {email}.",
- "user.settings.general.emailHelp1": "El correo electrónico es utilizado para iniciar sesión, recibir notificaciones y para restablecer la contraseña. Si se cambia el correo electrónico deberás verificarlo nuevamente.",
- "user.settings.general.emailHelp2": "El correo ha sido desactivado por el Administrador de Sistema. No llegarán correos de notificación hasta que se vuelva a habilitar.",
- "user.settings.general.emailHelp3": "El correo electrónico es utilizado para iniciar sesión, recibir notificaciones y para restablecer la contraseña.",
- "user.settings.general.emailHelp4": "Un correo de verificación ha sido enviado a {email}.",
- "user.settings.general.emailLdapCantUpdate": "El inicio de sesión ocurre a través AD/LDAP. El correo electrónico no puede ser actualizado. La dirección de correo electrónico utilizada para las notificaciones es {email}.",
- "user.settings.general.emailMatch": "El nuevo correo electrónico introducido no coincide.",
- "user.settings.general.emailOffice365CantUpdate": "El inicio de sesión ocurre a través Office 365. El correo electrónico no puede ser actualizado. La dirección de correo electrónico utilizada para las notificaciones es {email}.",
- "user.settings.general.emailSamlCantUpdate": "El Inicio de sesión se produce a través de SAML. El correo electrónico no puede ser actualizado. La dirección de correo electrónico utilizado para las notificaciones es {email}.",
- "user.settings.general.emailUnchanged": "Tu nueva dirección de correo electrónico es la misma que la dirección anterior.",
- "user.settings.general.emptyName": "Clic en 'Editar' para agregar tu nombre completo",
- "user.settings.general.emptyNickname": "Clic en 'Editar' para agregar un sobrenombre",
- "user.settings.general.emptyPosition": "Clic en 'Editar' para agregar su título de trabajo / cargo",
- "user.settings.general.field_handled_externally": "Este campo es manejado a través del proveedor de inicio de sesión. Si deseas cambiarlo, deberás hacerlo a través del proveedor.",
- "user.settings.general.firstName": "Nombre",
- "user.settings.general.fullName": "Nombre completo",
- "user.settings.general.imageTooLarge": "No se puede subir la imagen del perfil. El archivo es muy grande.",
- "user.settings.general.imageUpdated": "Última actualizacón de la imagen {date}",
- "user.settings.general.lastName": "Apellido",
- "user.settings.general.loginGitlab": "Inicio de sesión realizado a través de GitLab ({email})",
- "user.settings.general.loginGoogle": "Inicio de sesión realizado a través de Google ({email})",
- "user.settings.general.loginLdap": "Inicio de sesión realizado a través de AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Inicio de sesión realizado a través de Office 365 ({email})",
- "user.settings.general.loginSaml": "Inicio de sesión realizado a través de SAML ({email})",
- "user.settings.general.mobile.emptyName": "Clic para agregar tu nombre completo",
- "user.settings.general.mobile.emptyNickname": "Clic para agregar un sobrenombre",
- "user.settings.general.mobile.emptyPosition": "Clic para agregar su título de trabajo / cargo",
- "user.settings.general.mobile.uploadImage": "Clic para subir una imagen.",
- "user.settings.general.newAddress": "Nueva dirección: {email} Revisa tu correo electrónico para verificar tu nueva dirección.",
- "user.settings.general.newEmail": "Nuevo correo electrónico",
- "user.settings.general.nickname": "Sobrenombre",
- "user.settings.general.nicknameExtra": "Utiliza un Sobrenombre por el cual te conocen que sea diferente de tu nombre y del nombre de tu usuario. Esto se utiliza con mayor frecuencia cuando dos o más personas tienen nombres y nombres de usuario que suenan similares.",
- "user.settings.general.notificationsExtra": "De forma predeterminada, recibirás notificaciones cuando alguien escribe tu nombre. Ve a la configuración de {notify} para cambiar este comportamiento.",
- "user.settings.general.notificationsLink": "Notificaciones",
- "user.settings.general.position": "Cargo",
- "user.settings.general.positionExtra": "Utiliza Cargo para definir tu rol o título del trabajo. Esto se muestra en la ventana emergente de tu perfil.",
- "user.settings.general.profilePicture": "Foto del Perfil",
- "user.settings.general.title": "Configuración General",
- "user.settings.general.uploadImage": "Clic en 'Editar' para subir una imagen.",
- "user.settings.general.username": "Nombre de usuario",
- "user.settings.general.usernameInfo": "Escoge algo que sea fácil de reconocer y recordar para tus compañeros.",
- "user.settings.general.usernameReserved": "Este nombre de usuario está reservado, por favor escoge otro",
- "user.settings.general.usernameRestrictions": "El nombre de usuario debe comenzar con una letra y debe contener entre {min} y {max} caracteres en minúscula creado con numeros, letras y los símbolos '.', '-', y '_'.",
- "user.settings.general.validEmail": "Por favor ingresa una dirección de correo electrónico válida",
- "user.settings.general.validImage": "Sólo pueden ser utilizadas imágenes JPG o PNG en el perfil",
- "user.settings.import_theme.cancel": "Cancelar",
- "user.settings.import_theme.importBody": "Para importar un tema, anda al equipo Slack y busca en \"Preferences -> Sidebar Theme\". Abre las opciones del tema, copia los valores de color del tema y pégalo aquí:",
- "user.settings.import_theme.importHeader": "Importar Tema de Slack",
- "user.settings.import_theme.submit": "Enviar",
- "user.settings.import_theme.submitError": "Formato inválido, por favor intenta copiando y pegando nuevamente.",
- "user.settings.languages.change": "Cambia el idioma con el que se muestra la intefaz de usuario",
- "user.settings.languages.promote": "Selecciona en que idioma se mostrará la interfaz de usuario de Mattermost.
¿Te gustaría ayudar con las traducciones? Únete al Servidor de Traducciones de Mattermost para contribuir.",
- "user.settings.mfa.add": "Agrega MFA a tu cuenta",
- "user.settings.mfa.addHelp": "Agregar la autenticación de múltiples factores hará que la cuenta sea más segura al requerir un código desde el teléfono móvil cada vez para iniciar sesión.",
- "user.settings.mfa.addHelpQr": "Por favor escanea el código QR con la aplicación Google Authenticator en tu teléfono inteligente e ingresa el token proporcionado por la aplicación. Si no puede escanear el código, puedes ingresar manualmente la clave secreta suministrada.",
- "user.settings.mfa.enterToken": "Token",
- "user.settings.mfa.qrCode": "Código QR",
- "user.settings.mfa.remove": "Remover MFA de tu cuenta",
- "user.settings.mfa.removeHelp": "Al remover la autenticación de múltiples factores hará que no necesites del código generado por el teléfono móvil para iniciar sesión.",
- "user.settings.mfa.requiredHelp": "La autenticación de múltiples factores es requerida en este servidor. Reiniciarla es sólo recomendado cuando necesitas cambiar la generación del código a un nuevo dispositivo móvil. Se solicitará que la configures inmediatamente.",
- "user.settings.mfa.reset": "Reiniciar el MFA de tu cuenta",
- "user.settings.mfa.secret": "Clave Secreta:",
- "user.settings.mfa.title": "Autenticación de Múltiples Factores:",
- "user.settings.modal.advanced": "Avanzada",
- "user.settings.modal.confirmBtns": "Sí, Descartar",
- "user.settings.modal.confirmMsg": "Tienes cambios sin guardar, ¿Estás seguro que los quieres descartar?",
- "user.settings.modal.confirmTitle": "¿Descartar Cambios?",
- "user.settings.modal.display": "Visualización",
- "user.settings.modal.general": "General",
- "user.settings.modal.notifications": "Notificaciones",
- "user.settings.modal.security": "Seguridad",
- "user.settings.modal.title": "Configuración de la Cuenta",
- "user.settings.notifications.allActivity": "Para toda actividad",
- "user.settings.notifications.channelWide": "Menciones a todo el canal \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Cerrar",
- "user.settings.notifications.comments": "Notificaciones para respuestas",
- "user.settings.notifications.commentsAny": "Activa notificaciones para mensajes en respuesta a los hilos de conversaciones que inicie o en los cuales participe",
- "user.settings.notifications.commentsInfo": "Además de las notificaciones para las cuales eres mencionado(a), selecciona si quieres recibir notificaciones a las respuestas en los hilos de conversaciones.",
- "user.settings.notifications.commentsNever": "No activar notificaciones de mensajes en respuesta hilos a menos que yo esté mencionado",
- "user.settings.notifications.commentsRoot": "Activar notificaciones para mensajes en los hilos de conversación iniciados por mi",
- "user.settings.notifications.desktop": "Enviar notifiaciones de escritorio",
- "user.settings.notifications.desktop.allNoSoundForever": "Para toda actividad, sin sonido, que se muestran de forma permanente",
- "user.settings.notifications.desktop.allNoSoundTimed": "Para toda actividad, sin sonido, que se muestran por {seconds} segundos",
- "user.settings.notifications.desktop.allSoundForever": "Para toda actividad, con sonido, que se muestran de forma permanente",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Para toda actividad, que se muestran de forma permanente",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Para toda actividad, que se muestran por {seconds} segundos",
- "user.settings.notifications.desktop.allSoundTimed": "Para toda actividad, con sonido, que se muestran por {seconds} segundos",
- "user.settings.notifications.desktop.duration": "Duración de la notificación:",
- "user.settings.notifications.desktop.durationInfo": "Determina el tiempo que las notificaciones de escritorio permanecerá en la pantalla cuando se utiliza Firefox o Chrome. Las notificaciones de escritorio en Edge y Safari sólo puede permanecer en la pantalla por un máximo de 5 segundos.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Para las menciones y mensajes directos, sin sonido, que se muestran de forma permanente",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Para las menciones y mensajes directos, sin sonido, que se muestran por {seconds} segundos",
- "user.settings.notifications.desktop.mentionsSoundForever": "Para las menciones y mensajes directos, con sonido, que se muestran de forma permanente",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Para las menciones y mensajes directos, que se muestran de forma permanente",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Para las menciones y mensajes directos, que se muestran por {seconds} segundos",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Para las menciones y mensajes directos, con sonido, que se muestran por {seconds} segundos",
- "user.settings.notifications.desktop.seconds": "{seconds} segundos",
- "user.settings.notifications.desktop.sound": "Sonido de la notificación",
- "user.settings.notifications.desktop.title": "Notificaciones de escritorio",
- "user.settings.notifications.desktop.unlimited": "Ilimitada",
- "user.settings.notifications.desktopSounds": "Sonidos de notificación de escritorio",
- "user.settings.notifications.email.disabled": "Deshabilitado por el Administrador de Sistema",
- "user.settings.notifications.email.disabled_long": "Las notificaciones por correo electrónico han sido deshabilitadas por tu Administrador del Sistema.",
- "user.settings.notifications.email.everyHour": "Cada hora",
- "user.settings.notifications.email.everyXMinutes": "Cada {count, plural, one {minuto} other {{count, number} minutos}}",
- "user.settings.notifications.email.immediately": "Inmediatamente",
- "user.settings.notifications.email.never": "Nunca",
- "user.settings.notifications.email.send": "Enviar notificaciones de correo electrónico",
- "user.settings.notifications.emailBatchingInfo": "Las notificaciones recibidas durante el período de tiempo seleccionado se combinan y enviar en un solo correo electrónico.",
- "user.settings.notifications.emailInfo": "El correo electrónico que se envía para notificaciones de menciones y mensajes directos cuando estás ausente o desconectado de {siteName} por más de 5 minutos.",
- "user.settings.notifications.emailNotifications": "Notificaciones de correo",
- "user.settings.notifications.header": "Notificaciones",
- "user.settings.notifications.info": "Las notificaciones de escritorio están disponibles en Edge, Firefox, Safari, Chrome y Aplicaciones de Escritorio de Mattermost.",
- "user.settings.notifications.mentionsInfo": "Menciones se desencadenan cuando alguien envía un mensaje que incluye su nombre de usuario (\"@{username}\") o cualquiera de las opciones seleccionadas anteriormente.",
- "user.settings.notifications.never": "Nunca",
- "user.settings.notifications.noWords": "No hay palabras configuradas",
- "user.settings.notifications.off": "Apagado",
- "user.settings.notifications.on": "Encendido",
- "user.settings.notifications.onlyMentions": "Sólo para menciones y mensajes directos",
- "user.settings.notifications.push": "Notificaciones push móvil",
- "user.settings.notifications.push_notification.status": "Activa las notificaciones push cuando",
- "user.settings.notifications.sensitiveName": "Tu nombre con distinción de mayúsculas \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Tu nombre de usuario sin distinción de mayúsculas \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Otras palabras sin distinción de mayúsculas, separadas por comas:",
- "user.settings.notifications.soundConfig": "Por favor configura los sonidos de notificación en los ajustes de tu navegador",
- "user.settings.notifications.sounds_info": "Los sonidos de notificación están disponibles en IE11, Edge, Safari, Chrome y Aplicaciones de Escritorio de Mattermost.",
- "user.settings.notifications.teamWide": "Menciones para todo el equipo \"@all\"",
- "user.settings.notifications.title": "Configuracón de Notificaciones",
- "user.settings.notifications.wordsTrigger": "Palabras que desencadenan menciones",
- "user.settings.push_notification.allActivity": "Para toda actividad",
- "user.settings.push_notification.allActivityAway": "Para toda la actividad cuando esté ausente o desconectado",
- "user.settings.push_notification.allActivityOffline": "Para toda la actividad cuando esté desconectado",
- "user.settings.push_notification.allActivityOnline": "De toda la actividad cuando esté en línea, ausente o desconectado",
- "user.settings.push_notification.away": "Ausente o desconectado",
- "user.settings.push_notification.disabled": "Inhabilitado por el Administrador de Sistema",
- "user.settings.push_notification.disabled_long": "Las Notificaciones Push para dispositivos móviles han sido inhabilitadas por el Administrador del Sistema.",
- "user.settings.push_notification.info": "Se enviarán notificaciones a tu dispositivo móvil cuando haya actividad en Mattermost.",
- "user.settings.push_notification.off": "Apagado",
- "user.settings.push_notification.offline": "Desconectado",
- "user.settings.push_notification.online": "En línea, ausente o desconectado",
- "user.settings.push_notification.onlyMentions": "Sólo para menciones y mensajes directos",
- "user.settings.push_notification.onlyMentionsAway": "Para las menciones y mensajes directos cuando esté ausente o desconectado",
- "user.settings.push_notification.onlyMentionsOffline": "Para las menciones y mensajes directos cuando esté desconectado",
- "user.settings.push_notification.onlyMentionsOnline": "Para las menciones y mensajes directos cuando esté en línea, ausente o desconectado",
- "user.settings.push_notification.send": "Enviar notificaciones push móvil",
- "user.settings.push_notification.status": "Activa las notificaciones push cuando",
- "user.settings.push_notification.status_info": "Las alertas de notificación sólo son enviadas a tu dispositivo móvil cuando tu estatus coincide con la selección anterior.",
- "user.settings.security.active": "Activo",
- "user.settings.security.close": "Cerrar",
- "user.settings.security.currentPassword": "Contraseña Actual",
- "user.settings.security.currentPasswordError": "Por favor ingresa tu contraseña actual.",
- "user.settings.security.deauthorize": "Desautorizar",
- "user.settings.security.emailPwd": "Correo electrónico y Contraseña",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inactivo",
- "user.settings.security.lastUpdated": "Última actualización {date} a las {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Inicio de sesión realizado a través de GitLab",
- "user.settings.security.loginGoogle": "Inicio de sesión realizado a través de Google Apps",
- "user.settings.security.loginLdap": "Inicio de sesión realizado a través de AD/LDAP",
- "user.settings.security.loginOffice365": "Inicio de sesión realizado a través de Office 365",
- "user.settings.security.loginSaml": "Inicio de sesión realizado a través de SAML",
- "user.settings.security.logoutActiveSessions": "Visualizar y cerrar las sesiones activas",
- "user.settings.security.method": "Método de inicio de sesión",
- "user.settings.security.newPassword": "Nueva Contraseña",
- "user.settings.security.noApps": "No hay Aplicaciones OAuth 2.0 autorizadas.",
- "user.settings.security.oauthApps": "Aplicaciones OAuth 2.0",
- "user.settings.security.oauthAppsDescription": "Haz clic en 'Editar' para gestionar tus Aplicaciones OAuth 2.0",
- "user.settings.security.oauthAppsHelp": "Aplicaciones actuán en su nombre para acceder a tus datos según los permisos que concedas.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Sólo puedes tener un método de inicio de sesión a la vez. El cambio del método de inicio de sesión te enviará un correo notificandote que el cambio se realizó con éxito.",
- "user.settings.security.password": "Contraseña",
- "user.settings.security.passwordError": "La contraseña debe tener entre {min} y {max} caracteres",
- "user.settings.security.passwordErrorLowercase": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula.",
- "user.settings.security.passwordErrorLowercaseNumber": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula y al menos un número.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula, al menos un número, y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula, y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula, y al menos una letra en mayúscula.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula, al menos una letra mayúscula y al menos un número.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula, al menos una letra mayúscula, al menos un número, y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra minúscula, al menos una letra mayúscula y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos un número.",
- "user.settings.security.passwordErrorNumberSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos un número y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra mayúscula.",
- "user.settings.security.passwordErrorUppercaseNumber": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra mayúscula y al menos un número.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra mayúscula, al menos un número, y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "La contraseña debe contener entre {min} y {max} caracteres compuesta de al menos una letra mayúscula y al menos un símbolo (por ejemplo,\"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "El inicio de sesión ocurre a través GitLab. La contraseña no se puede actualizar.",
- "user.settings.security.passwordGoogleCantUpdate": "El inicio de sesión ocurre a través Google Apps. La contraseña no se puede actualizar.",
- "user.settings.security.passwordLdapCantUpdate": "El inicio de sesión ocurre a través AD/LDAP. La contraseña no se puede actualizar.",
- "user.settings.security.passwordMatchError": "La nuevas contraseñas que ingresaste no coinciden.",
- "user.settings.security.passwordMinLength": "Longitud mínima no válida, no se puede mostrar la vista previa.",
- "user.settings.security.passwordOffice365CantUpdate": "El inicio de sesión ocurre a través Office 365. La contraseña no se puede actualizar.",
- "user.settings.security.passwordSamlCantUpdate": "La contraseña es manejada a través del proveedor de inicio de sesión. Si deseas cambiarla, deberás hacerlo a través del proveedor de identidad.",
- "user.settings.security.retypePassword": "Reescribe la Nueva Contraseña",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Cambiar para utilizar correo electrónico y contraseña",
- "user.settings.security.switchGitlab": "Cambiar para utilizar GitLab SSO",
- "user.settings.security.switchGoogle": "Cambiar para utilizar Google SSO",
- "user.settings.security.switchLdap": "Cambiar para utilizar AD/LDAP",
- "user.settings.security.switchOffice365": "Cambiar para utilizar Office 365 SSO",
- "user.settings.security.switchSaml": "Cambiar para utilizar SAML SSO",
- "user.settings.security.title": "Configuración de Seguridad",
- "user.settings.security.viewHistory": "Visualizar historial de acceso",
- "user.settings.tokens.cancel": "Cancelar",
- "user.settings.tokens.clickToEdit": "Haga clic en 'Editar' para gestionar sus tokens de acceso personales",
- "user.settings.tokens.confirmCreateButton": "Sí, Crear",
- "user.settings.tokens.confirmCreateMessage": "Estás generando un token de acceso personal con permisos de Admin del Sistema. ¿Estás seguro de querer crear este token?",
- "user.settings.tokens.confirmCreateTitle": "Creación de Token de Acceso Personal como Admin del Sistema",
- "user.settings.tokens.confirmDeleteButton": "Sí, Eliminar",
- "user.settings.tokens.confirmDeleteMessage": "Cualquier integración que este utilizando este token no podrá seguir accesando la API de Mattermost. No puedes deshacer está acción.
¿Estás seguro de querer eliminar el token {description}?",
- "user.settings.tokens.confirmDeleteTitle": "¿Eliminar Token?",
- "user.settings.tokens.copy": "Por favor, copie el token de acceso a continuación. No podrás volver a verlo!",
- "user.settings.tokens.create": "Crear Nuevo Token",
- "user.settings.tokens.delete": "Eliminar",
- "user.settings.tokens.description": "Tokens de acceso personales funciona similar a un token de sesión y puede ser utilizado por integraciones para autenticar contra la REST API.",
- "user.settings.tokens.description_mobile": "Tokens de acceso personales funciona similar a un token de sesión y puede ser utilizado por integraciones para autenticar contra la REST API. Crea un nuevo token desde tu computador.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "Descripción del Token: ",
- "user.settings.tokens.nameHelp": "Ingresa una descripción para to token para que recuerdes que hace.",
- "user.settings.tokens.nameRequired": "Por favor ingresa una descripción.",
- "user.settings.tokens.save": "Guardar",
- "user.settings.tokens.title": "Tokens de Acceso Personales",
- "user.settings.tokens.token": "Token de Acceso: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "No hay tokens de acceso personales.",
- "user_list.notFound": "No se encontraron usuarios",
- "user_profile.send.dm": "Enviar Mensaje",
- "user_profile.webrtc.call": "Iniciar llamada de vídeo",
- "user_profile.webrtc.offline": "El usuario está desconectado",
- "user_profile.webrtc.unavailable": "No se puede realizar una nueva llamada hasta que la llamada actual finalice",
- "view_image.loading": "Cargando ",
- "view_image_popover.download": "Descargar",
- "view_image_popover.file": "Archivo {count, number} de {total, number}",
- "view_image_popover.publicLink": "Obtener Enlace Público",
- "web.footer.about": "Acerca",
- "web.footer.help": "Ayuda",
- "web.footer.privacy": "Privacidad",
- "web.footer.terms": "Términos",
- "web.header.back": "Atrás",
- "web.header.logout": "Cerrar sesión",
- "web.root.signup_info": "Todas las comunicaciones del equipo en un sólo lugar, con búsquedas y accesible desde cualquier parte",
- "webrtc.busy": "{username} está ocupado.",
- "webrtc.call": "Llamar",
- "webrtc.callEnded": "Llamada con {username} terminó.",
- "webrtc.cancel": "Cancelar la llamada",
- "webrtc.cancelled": "{username} canceló la llamada.",
- "webrtc.declined": "La llamada ha sido rechazada por {username}.",
- "webrtc.disabled": "{username} tiene desactivado WebRTC y no puede recibir llamadas. Para habilitar la función, se debe ir a Configuración de la Cuenta > Avanzada > Previsualizar características de pre-lanzamiento y activar WebRTC.",
- "webrtc.failed": "Hubo un problema al conectar la llamada de vídeo.",
- "webrtc.hangup": "Colgar",
- "webrtc.header": "Llamada con {username}",
- "webrtc.inProgress": "Tienes una llamada en curso. Debes colgar para realizar la acción.",
- "webrtc.mediaError": "No puede acceder a la cámara o el micrófono.",
- "webrtc.mute_audio": "Silenciar micrófono",
- "webrtc.noAnswer": "{username} no contesta.",
- "webrtc.notification.answer": "Contestar",
- "webrtc.notification.decline": "Rechazar",
- "webrtc.notification.incoming_call": "{username} está llamando.",
- "webrtc.notification.returnToCall": "Volver a la llamada en curso con {username}",
- "webrtc.offline": "{username} está fuera de línea.",
- "webrtc.pause_video": "Apagar la cámara",
- "webrtc.unmute_audio": "Activar micrófono",
- "webrtc.unpause_video": "Encender la cámara",
- "webrtc.unsupported": "El cliente de {username} no admite llamadas de vídeo.",
- "youtube_video.notFound": "Video no encontrado"
-}
diff --git a/webapp/i18n/fr.json b/webapp/i18n/fr.json
deleted file mode 100644
index 1402cb53e4d..00000000000
--- a/webapp/i18n/fr.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Quitter",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. Tous droits réservés",
- "about.database": "Base de données :",
- "about.date": "Date de compilation :",
- "about.enterpriseEditionLearn": "Pour en savoir davantage sur l’Édition Entreprise : ",
- "about.enterpriseEditionSt": "Communication moderne derrière votre pare-feu.",
- "about.enterpriseEditione1": "Édition Entreprise",
- "about.hash": "Hash de version :",
- "about.hashee": "Hash de version EE :",
- "about.licensed": "Licence accordée à :",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Numéro de compilation :",
- "about.teamEditionLearn": "Rejoignez la communauté Mattermost sur ",
- "about.teamEditionSt": "Toute la communication de votre équipe en un seul endroit, consultable instantanément et accessible de partout.",
- "about.teamEditiont0": "Édition Team",
- "about.teamEditiont1": "Édition Entreprise",
- "about.title": "À propos de Mattermost",
- "about.version": "Version :",
- "access_history.title": "Accéder à l'historique",
- "activity_log.activeSessions": "Sessions actives",
- "activity_log.browser": "Navigateur : {browser}",
- "activity_log.firstTime": "Première activité : {date}, {time}",
- "activity_log.lastActivity": "Dernière activité : {date}, {time}",
- "activity_log.logout": "Se déconnecter",
- "activity_log.moreInfo": "Plus d'informations",
- "activity_log.os": "OS : {os}",
- "activity_log.sessionId": "Identifiant de session : {id}",
- "activity_log.sessionsDescription": "Les sessions sont créées lorsque vous vous connectez depuis un nouveau navigateur. Les sessions vous permettent d'utiliser Mattermost sans devoir vous connecter à nouveau durant un temps défini par l'administrateur système. Si vous souhaitez vous déconnecter plus tôt, utilisez le bouton \"Se déconnecter\" ci-dessous pour mettre fin à votre session.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Application Android",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Application de bureau native",
- "activity_log_modal.iphoneNativeApp": "Application pour iPhone",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "Auto-complétion",
- "add_command.autocomplete.help": "(Facultatif) Afficher les commandes slash dans la liste d'auto-complétion.",
- "add_command.autocompleteDescription": "Description de l'auto-complétion",
- "add_command.autocompleteDescription.help": "(facultatif) Description de la commande slash pour la liste d'auto-complétion.",
- "add_command.autocompleteDescription.placeholder": "Exemple : \"Retourne les résultats de recherche de dossiers médicaux\"",
- "add_command.autocompleteHint": "Indice de l’auto-complétion",
- "add_command.autocompleteHint.help": "(Facultatif) Arguments associés à votre commande slash, affichés dans l'aide de la liste d'auto-complétion.",
- "add_command.autocompleteHint.placeholder": "Exemple : [Nom du patient]",
- "add_command.cancel": "Annuler",
- "add_command.description": "Description",
- "add_command.description.help": "Description de votre webhook entrant.",
- "add_command.displayName": "Nom affiché",
- "add_command.displayName.help": "Nom d'affichage pour votre commande slash, avec un maximum de 64 caractères.",
- "add_command.doneHelp": "Votre commande slash est en place. Le token suivant sera envoyé dans le payload sortant. Utilisez-le pour vérifier que la requête provienne bien de votre équipe Mattermost (voir la documentation pour plus de détails).",
- "add_command.iconUrl": "Icône de la réponse",
- "add_command.iconUrl.help": "(Facultatif) Choisissez une photo de profil alternative pour les réponses publiées à l'aide de cette commande slash. Spécifiez l'URL d'un fichier .png ou .jpg d'au moins 128x128 pixels.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "Méthode de requête",
- "add_command.method.get": "GET",
- "add_command.method.help": "Le type de méthode de requête HTTP envoyé à cette URL.",
- "add_command.method.post": "POST",
- "add_command.save": "Enregistrer",
- "add_command.token": "Token : {token}",
- "add_command.trigger": "Mot-clé de déclenchement",
- "add_command.trigger.help": "Un mot déclencheur doit être unique, ne peut commencer par un slash ni contenir d'espaces.",
- "add_command.trigger.helpExamples": "Exemples : client, employé, patient, météo",
- "add_command.trigger.helpReserved": "Réservé : {link}",
- "add_command.trigger.helpReservedLinkText": "voir la liste des commandes slash incluses",
- "add_command.trigger.placeholder": "Mot-clé de déclenchement par exemple \"hello\"",
- "add_command.triggerInvalidLength": "Un mot-clé déclencheur doit contenir de {min} à {max} caractères",
- "add_command.triggerInvalidSlash": "Un mot-clé déclencheur ne peut commencer par un /",
- "add_command.triggerInvalidSpace": "Un mot-clé ne doit pas contenir d’espaces",
- "add_command.triggerRequired": "Un mot-clé est requis",
- "add_command.url": "URL de requête",
- "add_command.url.help": "L'URL de callback qui recevra la requête POST ou GET quand cette commande Slash est exécutée.",
- "add_command.url.placeholder": "Doit commencer par http:// ou https://",
- "add_command.urlRequired": "Une requête URL est demandée",
- "add_command.username": "Utilisateur affiché dans la réponse",
- "add_command.username.help": "(Facultatif) Spécifiez un nom d'utilisateur qui sera affiché dans la réponse de la commande slash. Les noms d'utilisateurs peuvent contenir jusqu'à 22 caractères comprenant chiffres, lettres minuscules et symboles \"-\", \"_\" et \".\" .",
- "add_command.username.placeholder": "Nom d'utilisateur",
- "add_emoji.cancel": "Annuler",
- "add_emoji.header": "Ajouter",
- "add_emoji.image": "Image",
- "add_emoji.image.button": "Sélectionner",
- "add_emoji.image.help": "Choisissez l'image pour votre émoticône. L'image peut être au format gif, png ou jpeg, d'une taille maximale de 1 Mio. Les dimensions seront automatiquement réduites pour une taille 128x128 pixels, le tout, en conservant les proportions d'origine.",
- "add_emoji.imageRequired": "Une image est requise pour l'émoticône",
- "add_emoji.name": "Nom",
- "add_emoji.name.help": "Choisissez un nom d'émoticône de maximum 64 caractères constitué de lettres minuscules, nombres et des caractères '-' ou '_'.",
- "add_emoji.nameInvalid": "Un nom d'émoticône ne peut contenir que des lettres minuscules, nombres et les caractères '-' ou '_'.",
- "add_emoji.nameRequired": "Un nom est requis pour l'émoticône",
- "add_emoji.nameTaken": "Ce nom est déjà utilisé pour une émoticône système. Veuillez spécifier un autre nom.",
- "add_emoji.preview": "Aperçu",
- "add_emoji.preview.sentence": "Ceci est une phrase avec {image}.",
- "add_emoji.save": "Enregistrer",
- "add_incoming_webhook.cancel": "Annuler",
- "add_incoming_webhook.channel": "Canal",
- "add_incoming_webhook.channel.help": "Canal public ou privé qui reçoit les charges utiles du webhook. Vous devez appartenir au groupe privé pendant la mise en place du webhook.",
- "add_incoming_webhook.channelRequired": "Un canal valide est demandé",
- "add_incoming_webhook.description": "Description",
- "add_incoming_webhook.description.help": "Description pour votre webhook entrant.",
- "add_incoming_webhook.displayName": "Nom à afficher",
- "add_incoming_webhook.displayName.help": "Nom d'affichage pour votre webhook entrant, avec un maximum de 64 caractères.",
- "add_incoming_webhook.doneHelp": "Votre webhook entrant est installé. Vous pouvez envoyer des données a l'URL suivante (voir la documentation pour plus de détails).",
- "add_incoming_webhook.name": "Nom",
- "add_incoming_webhook.save": "Enregistrer",
- "add_incoming_webhook.url": "URL : {url}",
- "add_oauth_app.callbackUrls.help": "Les URIs de redirection vers lesquelles le service dirigera les utilisateurs après avoir accepté ou refusé l'autorisation de votre application, et qui géreront les codes d'autorisation ou les jeton d'accès. Doit être une URL valide commençant par http:// ou https://.",
- "add_oauth_app.callbackUrlsRequired": "Une ou plusieurs URLs de callback sont requises",
- "add_oauth_app.clientId": "Identifiant Client : {id}",
- "add_oauth_app.clientSecret": "Clé secrète du client : {secret}",
- "add_oauth_app.description.help": "Description pour votre application OAuth 2.0.",
- "add_oauth_app.descriptionRequired": "Une description pour votre application OAuth 2.0 est requise.",
- "add_oauth_app.doneHelp": "Votre application OAuth 2.0 a été mise en place. Veuillez utiliser l'identifiant et la clé secrète client lors de la demande d'autorisation pour votre application (voir la documentation pour plus de détails).",
- "add_oauth_app.doneUrlHelp": "Liste des URLs de redirection autorisées.",
- "add_oauth_app.header": "Ajouter",
- "add_oauth_app.homepage.help": "L'URL de la page d'accueil de votre application OAuth 2.0. Spécifiez HTTP ou HTTPS dans l'URL en fonction de la configuration de votre serveur.",
- "add_oauth_app.homepageRequired": "La page d'accueil pour l'application OAuth 2.0 est requise.",
- "add_oauth_app.icon.help": "(Facultatif) L'URL de l'image utilisée pour votre application OAuth 2.0. Spécifiez HTTP ou HTTPS dans l'URL.",
- "add_oauth_app.name.help": "Nom d'affichage pour votre application OAuth 2.0, avec un maximum de 64 caractères.",
- "add_oauth_app.nameRequired": "Le nom pour l'application OAuth 2.0 est requis.",
- "add_oauth_app.trusted.help": "Lorsqu'activé, l'application OAuth 2.0 est considérée comme étant de confiance par le serveur Mattermost et ne nécessite pas l'approbation de l'utilisateur. Lorsque désactivé, une fenêtre additionnelle apparaît et demande à l'utilisateur d'accepter ou de refuser son autorisation.",
- "add_oauth_app.url": "URL(s) : {url}",
- "add_outgoing_webhook.callbackUrls": "URLs de rappel (une par ligne)",
- "add_outgoing_webhook.callbackUrls.help": "L'URL à laquelle les messages seront envoyés.",
- "add_outgoing_webhook.callbackUrlsRequired": "Une ou plusieurs URLs de rappel sont requises",
- "add_outgoing_webhook.cancel": "Annuler",
- "add_outgoing_webhook.channel": "Canal",
- "add_outgoing_webhook.channel.help": "Canal public qui recevra les payloads des webhooks. Facultatif si au moins un mot déclencheur est spécifié.",
- "add_outgoing_webhook.contentType.help1": "Spécifiez le type de contenu par lequel la réponse sera envoyée.",
- "add_outgoing_webhook.contentType.help2": "Si application/x-www-form-urlencoded est choisi, le serveur suppose que vous allez encoder les paramètres dans un format URL.",
- "add_outgoing_webhook.contentType.help3": "Si application/json est choisi, le serveur suppose que vous allez envoyer des données JSON.",
- "add_outgoing_webhook.content_Type": "Type de contenu",
- "add_outgoing_webhook.description": "Description",
- "add_outgoing_webhook.description.help": "Description pour votre webhook sortant.",
- "add_outgoing_webhook.displayName": "Nom à afficher",
- "add_outgoing_webhook.displayName.help": "Nom d'affichage pour votre webhook sortant, avec un maximum de 64 caractères.",
- "add_outgoing_webhook.doneHelp": "Votre webhook sortant est en place. Le token suivant sera envoyé dans le payload sortant. Utilisez-le pour vérifier que la requête provienne bien de votre équipe Mattermost (voir la docuementation pour plus de détails).",
- "add_outgoing_webhook.name": "Nom",
- "add_outgoing_webhook.save": "Enregistrer",
- "add_outgoing_webhook.token": "Token : {token}",
- "add_outgoing_webhook.triggerWords": "Mot-clé (Un par ligne)",
- "add_outgoing_webhook.triggerWords.help": "Les messages qui débutent par un des mots spécifiés vont déclencher le webhook sortant. Optionnel si Canal est sélectionné.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Un canal valide ou une liste de mot-clés est requise",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Déclencher lorsque",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Choisissez quand déclencher le webhook sortant; si le premier mot d'un message correspond exactement à un mot déclencheur, ou si il commence par un mot déclencheur.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "Premier mot correspond exactement à un mot déclencheur",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "Le premier mot commence avec un mot déclencheur",
- "add_users_to_team.title": "Ajouter des nouveaux membres à l'équipe {teamName}",
- "admin.advance.cluster": "Haute disponibilité",
- "admin.advance.metrics": "Suivi des performances",
- "admin.audits.reload": "Recharger les logs de l'activité utilisateur",
- "admin.audits.title": "Activité de l'utilisateur",
- "admin.authentication.email": "Authentification par e-mail",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Remarque :",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "Lorsqu'activé, Mattermost est lancé en mode haute disponibilité. Consultez la documentation pour en savoir davantage sur la configuration de la haute disponibilité pour Mattermost.",
- "admin.cluster.enableTitle": "Activer le mode haute disponibilité",
- "admin.cluster.interNodeListenAddressDesc": "L'adresse écoutée par le serveur pour communiquer avec d'autres serveurs.",
- "admin.cluster.interNodeListenAddressEx": "Ex. : \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Adresse d'écoute de la communication entre noeuds :",
- "admin.cluster.interNodeUrlsDesc": "Les URLs internes/privées de tous les serveurs Mattermost, séparés par des virgules",
- "admin.cluster.interNodeUrlsEx": "Ex. : \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "URLs de communication entre noeuds :",
- "admin.cluster.loadedFrom": "Le fichier de configuration a été chargé par le noeud ID {clusterId}. Veuillez vous référer au guide de résolution des problèmes de notre documentation si vous accédez à la console système à partir d'un répartiteur de charge et que vous rencontrez des problèmes.",
- "admin.cluster.noteDescription": "Changer les propriétés de cette section requiert un redémarrage du serveur avant de prendre effet. Lorsque le mode haute disponibilité est activé, la console système est mise en lecture-seule et ne peut être changée que par le fichier de configuration à moins que ReadOnlyConfig ne soit désactivé dans le fichier de configuration.",
- "admin.cluster.should_not_change": "ATTENTION : Ces paramètres ne se synchroniseront pas avec les autres serveurs du cluster. La communication entre nœuds en mode haute disponibilité ne démarrera pas tant que le fichier config.json n'est pas identique sur chacun des serveurs et que Mattermost n'a pas été redémarré. Veuillez vous référer à la documentation pour savoir comment ajouter ou supprimer un serveur d'un cluster. Si vous accédez à la console système à partir d'un répartiteur de charges et que vous rencontrez des problèmes, veuillez vous référer au guide de résolution des problèmes de notre documentation.",
- "admin.cluster.status_table.config_hash": "MD5 du fichier de configuration",
- "admin.cluster.status_table.hostname": "Nom d'hôte",
- "admin.cluster.status_table.id": "ID du nœud",
- "admin.cluster.status_table.reload": " Recharger l'état du cluster",
- "admin.cluster.status_table.status": "État",
- "admin.cluster.status_table.url": "Adresse de bavardage (échange d'infos de nœuds de cluster)",
- "admin.cluster.status_table.version": "Version",
- "admin.cluster.unknown": "inconnu",
- "admin.compliance.directoryDescription": "Répertoire des rapports de conformité. Si non spécifié : ./data/ .",
- "admin.compliance.directoryExample": "Ex. : \"./data/\"",
- "admin.compliance.directoryTitle": "Répertoire du rapport de conformité :",
- "admin.compliance.enableDailyDesc": "Lorsqu'activé, Mattermost génère un rapport quotidien de conformité.",
- "admin.compliance.enableDailyTitle": "Activer le rapport quotidien :",
- "admin.compliance.enableDesc": "Lorsqu'activé, Mattermost autorise les rapports de conformité depuis l'onglet Conformité et vérification. Consultez la documentation pour en savoir davantage.",
- "admin.compliance.enableTitle": "Activer le rapport de conformité :",
- "admin.compliance.false": "non",
- "admin.compliance.noLicense": "
Note :
La conformité est une option disponible sur l'édition Entreprise. Votre licence ne permet pas d'utiliser cette fonction. Veuillez cliquer ici pour des informations sur la licence Entreprise et connaître son prix.
\"Envoyer une description générique avec l'expéditeur et les noms des canaux\" comprend le nom de la personne qui a envoyé le message et le canal dans lequel il a été envoyé, mais pas le texte du message.
\"Envoyer le contenu intégral de l'extrait du message\" comprend un message extrait des notifications push, qui peut contenir des informations confidentielles envoyées dans les messages. Si votre service de notification push est à l'extérieur de votre pare-feu, il est *hautement recommandé* de n'utiliser cette option qu'avec le protocole \"https\" pour chiffrer la connexion.",
- "admin.email.pushContentTitle": "Contenu des notifications push :",
- "admin.email.pushDesc": "En général activé en production. Lorsqu'activé, Mattermost essaye d'envoyer à iOS et Android des notifications push.",
- "admin.email.pushOff": "Ne pas envoyer de notifications push",
- "admin.email.pushOffHelp": "Veuillez vous référer à la documentation sur les notifications push pour en savoir davantage sur les options de configuration.",
- "admin.email.pushServerDesc": "Service de notification push utilisé par Mattermost. Vous pouvez l'utilisez derrière votre firewall avec https://github.com/mattermost/push-proxy. Pour vos tests, vous pouvez utiliser http://push-test.mattermost.com, qui se connecte à l'application iOS Mattermost de l'AppStore public. N'utilisez pas ce serveur de test pour vos déploiements en production !",
- "admin.email.pushServerEx": "Exemple : \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Serveur de notifications push :",
- "admin.email.pushTitle": "Envoyer des notifications push : ",
- "admin.email.requireVerificationDescription": "En général, activé en production. Lorsqu'activé, Mattermost impose une vérification de l'adresse e-mail avant d'autoriser la connexion. Vous pouvez désactiver cette option en développement.",
- "admin.email.requireVerificationTitle": "Imposer la vérification de l'adresse e‑mail : ",
- "admin.email.selfPush": "Spécifier manuellement la configuration du service de notifications push",
- "admin.email.skipServerCertificateVerification.description": "Lorsqu'activé, Mattermost ne vérifie pas le certificat du serveur e-mail.",
- "admin.email.skipServerCertificateVerification.title": "Passer la vérification du certificat du serveur: ",
- "admin.email.smtpPasswordDescription": "Le mot de passe associé au nom d'utilisateur SMTP.",
- "admin.email.smtpPasswordExample": "Ex. : \"votremotdepasse\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "Mot de passe du serveur SMTP :",
- "admin.email.smtpPortDescription": "Le port de votre serveur SMTP.",
- "admin.email.smtpPortExample": "Ex. : \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "Port du serveur SMTP :",
- "admin.email.smtpServerDescription": "L'adresse de votre serveur SMTP.",
- "admin.email.smtpServerExample": "Ex. : \"smtp.votreentreprise.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "Serveur SMTP :",
- "admin.email.smtpUsernameDescription": "Le nom d'utilisateur pour s'authentifier sur le serveur SMTP.",
- "admin.email.smtpUsernameExample": "Ex. : \"admin@votreentreprise.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "Nom d'utilisateur du serveur SMTP :",
- "admin.email.testing": "Essai en cours...",
- "admin.false": "non",
- "admin.file.enableFileAttachments": "Autoriser le partage de fichiers :",
- "admin.file.enableFileAttachmentsDesc": "Lorsque désactivé, le partage de fichiers sur le serveur est désactivé. Tout ajout de fichiers et d'images aux messages est interdit sur l'ensemble des clients et des périphériques, et ce, y compris les clients mobiles.",
- "admin.file.enableMobileDownloadDesc": "Lorsque désactivé, les téléchargements de fichiers sur des applications mobiles sont désactivés. Les utilisateurs peuvent toujours télécharger des fichiers à partir d'un navigateur web mobile.",
- "admin.file.enableMobileDownloadTitle": "Autoriser les téléchargements de fichiers sur mobile :",
- "admin.file.enableMobileUploadDesc": "Lorsque désactivé, les envois de fichiers à partir des applications mobiles sont désactivés. Si \"Autoriser les téléchargements de fichiers\" est activé, les utilisateurs peuvent télécharger des fichiers à partir d'un navigateur web mobile.",
- "admin.file.enableMobileUploadTitle": "Autoriser l'envoi de fichiers sur mobile :",
- "admin.file_upload.chooseFile": "Parcourir",
- "admin.file_upload.noFile": "Aucun fichier téléchargé",
- "admin.file_upload.uploadFile": "Télécharger",
- "admin.files.images": "Images",
- "admin.files.storage": "Stockage",
- "admin.general.configuration": "Configuration",
- "admin.general.localization": "Paramètres linguistiques",
- "admin.general.localization.availableLocalesDescription": "Définit quelles langues sont disponibles pour les utilisateurs dans Paramètres du compte (laissez ce champ vide pour avoir toutes les langues supportées disponibles). Si vous ajoutez des langues manuellement, la Langue par défaut du client doit être ajoutée avant de sauver ce paramètre.
Vous souhaitez apporter votre aide pour traduire ? Rejoignez le Serveur de Traduction Mattermost pour contribuer.",
- "admin.general.localization.availableLocalesNoResults": "Aucun résultat trouvé",
- "admin.general.localization.availableLocalesNotPresent": "La langue par défaut du client doit être inclue dans la liste des langues disponibles",
- "admin.general.localization.availableLocalesTitle": "Langues disponibles :",
- "admin.general.localization.clientLocaleDescription": "La langue par défaut utilisée pour les utilisateurs nouvellement créés et les pages où l'utilisateur ne s'est pas encore connecté.",
- "admin.general.localization.clientLocaleTitle": "Langue par défaut du client :",
- "admin.general.localization.serverLocaleDescription": "La langue par défaut utilisée pour les messages et journaux systèmes. Modifier la langue nécessite un redémarrage du serveur avant de prendre effet.",
- "admin.general.localization.serverLocaleTitle": "Langue par défaut du serveur :",
- "admin.general.log": "Journalisation",
- "admin.general.policy": "Règles",
- "admin.general.policy.allowBannerDismissalDesc": "Lorsqu'activé, les utilisateurs peuvent cacher la bannière jusqu'à la prochaine modification apportée à celle-ci. Lorsque désactivé, la bannière reste visible de façon permanente tant qu'elle n'est pas désactivée par l'administrateur système.",
- "admin.general.policy.allowBannerDismissalTitle": "Autoriser la fermeture de la bannière :",
- "admin.general.policy.allowEditPostAlways": "N'importe quand",
- "admin.general.policy.allowEditPostDescription": "Définit la durée durant laquelle l'auteur pourra modifier son message après l'avoir publié.",
- "admin.general.policy.allowEditPostNever": "Jamais",
- "admin.general.policy.allowEditPostTimeLimit": "secondes après envoi",
- "admin.general.policy.allowEditPostTitle": "Autoriser des utilisateurs à éditer leurs messages :",
- "admin.general.policy.bannerColorTitle": "Couleur de la bannière :",
- "admin.general.policy.bannerTextColorTitle": "Couleur du texte de la bannière :",
- "admin.general.policy.bannerTextDesc": "Le texte qui apparaîtra comme bannière d'annonce.",
- "admin.general.policy.bannerTextTitle": "Texte de la bannière :",
- "admin.general.policy.enableBannerDesc": "Activer une bannière d'annonce dans toutes les équipes.",
- "admin.general.policy.enableBannerTitle": "Activer la bannière d'annonce :",
- "admin.general.policy.permissionsAdmin": "Administrateurs d'équipe et administrateurs système",
- "admin.general.policy.permissionsAll": "Tous les membres de l'équipe",
- "admin.general.policy.permissionsAllChannel": "Tous les membres du canal",
- "admin.general.policy.permissionsChannelAdmin": "Canal, équipe et administrateurs système",
- "admin.general.policy.permissionsDeletePostAdmin": "Administrateurs d'équipe et administrateurs système",
- "admin.general.policy.permissionsDeletePostAll": "Les auteurs peuvent supprimer leurs propres messages. Les administrateurs peuvent supprimer n'importe quel message.",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Administrateurs système",
- "admin.general.policy.permissionsSystemAdmin": "Administrateurs système",
- "admin.general.policy.restrictPostDeleteDescription": "Définit quels sont les utilisateurs autorisés à supprimer des messages.",
- "admin.general.policy.restrictPostDeleteTitle": "Autorise quels utilisateurs peuvent supprimer des messages :",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Spécifie la politique définissant quel utilisateur peut créer des canaux privés.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Activer la création de canaux privés pour :",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "outil en ligne de commande",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Spécifie la politique définissant quel utilisateur peut supprimer des canaux privés. Les canaux supprimés peuvent être récupérés de la base de données en utilisant {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Activer la suppression de canaux privés pour :",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Spécifie la politique définissant quel utilisateur peut ajouter ou supprimer des membres de canaux privés.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Active la gestion des membres de canaux privés pour :",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Spécifie la politique définissant quel utilisateur peut renommer et définir l'entête ou la description des canaux privés.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Activer le renommage de canaux privés pour :",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Choisit qui peut créer des canaux publics.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Activer la création de canaux publics pour :",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "outil en ligne de commande",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Choisit qui peut supprimer des canaux publics. Les canaux supprimés peuvent être récupérés de la base de données en utilisant {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Activer la suppression de canaux publics pour :",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Choisit qui peut renommer et définir l'entête ou la description des canaux publics.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Activer le renommage de canaux publics pour :",
- "admin.general.policy.teamInviteDescription": "Choisir qui peut inviter d'autres personnes à une équipe en utilisant Inviter un nouveau membre pour inviter des nouveaux utilisateurs par e-mail, ou l'option Obtenir un lien d'invitation d'équipe du menu principal. Si l'option Obtenir un lien d'invitation d'équipe est utilisée pour partager un lien, vous pouvez faire expirer le code d'invitation depuis Configuration de l'équipe > Code d'invitation une fois que les utilisateurs désirés ont rejoint l'équipe.",
- "admin.general.policy.teamInviteTitle": "Autoriser l'envoi d'invitation depuis :",
- "admin.general.privacy": "Confidentialité",
- "admin.general.usersAndTeams": "Utilisateurs et équipes",
- "admin.gitab.clientSecretDescription": "Récupérez cette information depuis les instructions décrites ci-dessus de façon à pouvoir vous connecter via GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Connectez vous à votre compte GitLab et allez dans les paramètres de votre profil, puis dans \"Applications\".
Spécifiez les URLs de redirection \"/login/gitlab/complete\" (exemple: http://localhost:8065/login/gitlab/complete) et \"/signup/gitlab/complete\".
Utilisez les champs \"Clé secrète de l'application\" et \"ID d'application\" de GitLab pour compléter les options ci-dessous.
Complétez les URLs des nœuds de terminaison ci-dessous.
",
- "admin.gitlab.authDescription": "Spécifiez https:///oauth/authorize (par exemple https://exemple.com:3000/oauth/authorize). Spécifiez HTTP ou HTTPS dans l'URL en fonction de la configuration de votre serveur.",
- "admin.gitlab.authExample": "Ex. : \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Nœud d'authentification (auth endpoint) :",
- "admin.gitlab.clientIdDescription": "Récupérez cette information depuis les instructions décrites ci-dessus de façon à pouvoir vous connecter via GitLab.",
- "admin.gitlab.clientIdExample": "Ex. : \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "ID d'application :",
- "admin.gitlab.clientSecretExample": "Ex. : \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Clé secrète de l'application :",
- "admin.gitlab.enableDescription": "Lorsqu'activé, Mattermost autorise la création d'une équipe et l'inscription avec le service OAuth de GitLab.",
- "admin.gitlab.enableTitle": "Activer l'authentification par GitLab : ",
- "admin.gitlab.settingsTitle": "Paramètres de GitLab",
- "admin.gitlab.tokenDescription": "Spécifiez https:///oauth/token. Spécifiez HTTP ou HTTPS dans l'URL en fonction de la configuration de votre serveur.",
- "admin.gitlab.tokenExample": "Ex. : \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Nœud du jeton (token endpoint) :",
- "admin.gitlab.userDescription": "Spécifiez https:///api/v3/user. Spécifiez HTTP ou HTTPS dans l'URL en fonction de votre configuration.",
- "admin.gitlab.userExample": "Ex. : \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "Nœud de l'API utilisateur (user api endpoint) :",
- "admin.google.EnableHtmlDesc": "
Allez à https://console.developers.google.com, cliquez sur Credentials dans la barre latérale de gauche et spécifiez \"Mattermost - votre-nom-d-entreprise\" comme Project Name, puis cliquez sur Create.
Cliquez sur l'entête OAuth consent screen et spécifiez \"Mattermost\" comme Product name shown to users, puis cliquez sur Save.
Sous l'entête Credentials, cliquez Create credentials, choisissez OAuth client ID et sélectionnez Web Application.
Dans Restrictions et Authorized redirect URIs spécifiez votre-url-mattermost/signup/google/complete (exemple: http://localhost:8065/signup/google/complete). Cliquez sur Create.
Collez le Client ID et le Client Secret dans les champs ci-dessous, puis cliquez sur Save.
Enfin, allez dans Google+ API et cliquez sur Enable. Ceci peut prendre plusieurs minutes pour se propager dans les systèmes de Google.
",
- "admin.google.authTitle": "Nœud d'authentification (auth endpoint) :",
- "admin.google.clientIdDescription": "Le Client ID que vous avez reçu lorsque vous avez enregistré l'application avec Google.",
- "admin.google.clientIdExample": "Ex. : \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "ID Client :",
- "admin.google.clientSecretDescription": "Le Client Secret que vous avez reçu lorsque vous avez enregistré l'application avec Google.",
- "admin.google.clientSecretExample": "Ex. : \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Secret client :",
- "admin.google.tokenTitle": "Nœud du jeton (token endpoint) :",
- "admin.google.userTitle": "Nœud de l'API utilisateur (user api endpoint) :",
- "admin.image.amazonS3BucketDescription": "Le nom de votre bucket S3 dans AWS.",
- "admin.image.amazonS3BucketExample": "Ex. : \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Bucket S3 Amazon :",
- "admin.image.amazonS3EndpointDescription": "Le nom d'hôte de votre fournisseur de stockage compatible S3. Par défaut : 's3.amazonaws.com'.",
- "admin.image.amazonS3EndpointExample": "Ex. : \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Nœud d'Amazon S3 :",
- "admin.image.amazonS3IdDescription": "Demandez cette information à votre administrateur AWS.",
- "admin.image.amazonS3IdExample": "Ex. : \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Access Key ID d'Amazon S3 :",
- "admin.image.amazonS3RegionDescription": "Région AWS dans laquelle votre bucket S3 est hébergé.",
- "admin.image.amazonS3RegionExample": "Ex. : \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Région AWS S3 :",
- "admin.image.amazonS3SSEDescription": "Lorsqu'activé, les fichiers dans Amazon S3 sont chiffrés en utilisant le chiffrement côté serveur avec les clés gérées par Amazon S3. Rendez-vous dans la documentation pour en savoir davantage.",
- "admin.image.amazonS3SSEExample": "Ex. : \"false\"",
- "admin.image.amazonS3SSETitle": "Activer le chiffrement coté serveur pour Amazon S3 :",
- "admin.image.amazonS3SSLDescription": "Lorsque désactivé, les connexions non sécurisées à Amazon S3 sont autorisées. Par défaut, seules les connexions sécurisées sont acceptées.",
- "admin.image.amazonS3SSLExample": "Ex. : \"vrai\"",
- "admin.image.amazonS3SSLTitle": "Activer les connexions sécurisées à Amazon S3 :",
- "admin.image.amazonS3SecretDescription": "Demandez cette information à votre administrateur AWS.",
- "admin.image.amazonS3SecretExample": "Ex. : \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Secret Access Key d'Amazon S3 :",
- "admin.image.localDescription": "Répertoire où écrire les fichiers et les images. Si vide : \"./data/\".",
- "admin.image.localExample": "Ex. : \"./data/\"",
- "admin.image.localTitle": "Répertoire de stockage local :",
- "admin.image.maxFileSizeDescription": "Taille maximum des pièces jointes en Mio. Attention : vérifiez que la mémoire du serveur supporte la taille que vous avez spécifié. Les gros fichiers augmentent les risques de crash serveur et d'échecs d'envoi causés par des interruptions de réseau.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Taille de fichier maximum :",
- "admin.image.publicLinkDescription": "Clé de salage de 32 caractères ajoutée aux e-mails d'invitation. Générée aléatoirement lors de l'installation. Veuillez cliquer sur \"Regénérer\" pour créer une nouvelle clé de salage.",
- "admin.image.publicLinkExample": "Ex. : \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Clé de salage publique :",
- "admin.image.shareDescription": "Permettre aux utilisateurs de partager des liens et images publics.",
- "admin.image.shareTitle": "Activer les liens publics pour les fichiers : ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Système de stockage où les fichiers, images et pièces jointes sont enregistrés.
Sélectionnez \"Amazon S3\" pour spécifier vos accès à Amazon et le bucket où stocker vos fichiers.
Sélectionnez \"Stockage local\" pour choisir le répertoire du serveur où enregistrer les fichiers.",
- "admin.image.storeLocal": "Stockage local",
- "admin.image.storeTitle": "Système de stockage des fichiers :",
- "admin.integrations.custom": "Intégrations personnalisées",
- "admin.integrations.external": "Services externes",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "Le DN de base est le Distinguished Name à partir duquel Mattermost doit rechercher les utilisateurs dans l'arborescence AD/LDAP.",
- "admin.ldap.baseEx": "Ex. : \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "DN de base :",
- "admin.ldap.bindPwdDesc": "Mot de passe de l'utilisateur déterminé par le champ \"Bind Username\"",
- "admin.ldap.bindPwdTitle": "Bind Password : ",
- "admin.ldap.bindUserDesc": "Nom de l'utilisateur utilisé pour effectuer la recherche AD/LDAP. Il s'agit typiquement d'un compte utilisateur créé spécifiquement pour Mattermost. Il doit disposer de droits restreints pour lire la partie de l'arborescence AD/LDAP spécifiée par le champ BaseDN.",
- "admin.ldap.bindUserTitle": "Bind Username :",
- "admin.ldap.emailAttrDesc": "L'attribut du serveur AD/LDAP utilisé pour remplir les adresses e-mail des utilisateurs de Mattermost.",
- "admin.ldap.emailAttrEx": "Ex. : \"mail\" ou \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Attribut \"adresse e-mail\" :",
- "admin.ldap.enableDesc": "Lorsqu'activé, Mattermost permet l'authentification à l'aide d'un serveur AD/LDAP",
- "admin.ldap.enableTitle": "Activer la connexion avec AD/LDAP :",
- "admin.ldap.firstnameAttrDesc": "(Optionnel) L'attribut du serveur AD/LDAP qui est utilisé pour les prénoms des utilisateurs de Mattermost. Lorsque défini, les utilisateurs ne peuvent pas éditer leur prénom étant donné qu'il est alors synchronisé avec le serveur LDAP. Lorsque laissé vide, les utilisateurs peuvent définir leur propre prénom dans les paramètres du compte.",
- "admin.ldap.firstnameAttrEx": "Ex. : \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Attribut prénom",
- "admin.ldap.idAttrDesc": "L'attribut du serveur AD/LDAP utilisé comme identifiant unique d'utilisateur dans Mattermost. Il doit être un attribut AD/LDAP dont la valeur ne change pas, tel que le nom d'utilisateur ou l'uid. Si l'attribut ID de l'utilisateur change, cela créera un nouveau compte Mattermost sans lien avec l'ancien utilisateur. Il s'agit de la valeur à spécifier dans le champ \"Nom d'utilisateur AD/LDAP\" sur la page de connexion. Normalement cet attribut est le même que celui du \"Attribut nom d'utilisateur\" ci-dessus. Si votre équipe utilise le format domaine\\\\nom utilisateur pour se connecter à d'autres services avec AD/LDAP, vous pouvez utiliser domaine\\\\nom utilisateur dans ce champ pour garder la cohérence entre vos différents sites.",
- "admin.ldap.idAttrEx": "Ex. : \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "Attribut id : ",
- "admin.ldap.lastnameAttrDesc": "(Optionnel) L'attribut du serveur AD/LDAP qui est utilisé pour les noms de famille des utilisateurs de Mattermost. Lorsque défini, les utilisateurs ne peuvent pas éditer leur nom de famille étant donné qu'il est alors synchronisé avec le serveur LDAP. Lorsque laissé vide, les utilisateurs peuvent définir leur propre nom de famille dans les paramètres du compte.",
- "admin.ldap.lastnameAttrEx": "Ex. : \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Last Name Attribute :",
- "admin.ldap.ldap_test_button": "Test d'AD/LDAP",
- "admin.ldap.loginNameDesc": "L’espace texte réservé apparaît dans le champ de connexion sur la page de connexion. Par défaut \"AD/LDAP Nom d'utilisateur\".",
- "admin.ldap.loginNameEx": "Ex. : \"AD/LDAP nom d’utilisateur\"",
- "admin.ldap.loginNameTitle": "Champ de connexion :",
- "admin.ldap.maxPageSizeEx": "Ex. : \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Le nombre maximum d'utilisateurs que le serveur Mattermost va récupérer du serveur AD/LDAP en une seule demande. 0 pour illimité.",
- "admin.ldap.maxPageSizeTitle": "Taille de page maximum",
- "admin.ldap.nicknameAttrDesc": "(Optionnel) L'attribut du serveur AD/LDAP qui est utilisé pour les pseudo des utilisateurs de Mattermost. Lorsque défini, les utilisateurs ne peuvent pas éditer leur pseudo étant donné qu'il est alors synchronisé avec le serveur LDAP. Lorsque laissé vide, les utilisateurs peuvent définir leur propre pseudo dans les paramètres du compte.",
- "admin.ldap.nicknameAttrEx": "Ex. : \"pseudo\"",
- "admin.ldap.nicknameAttrTitle": "Attribut \"nom d'utilisateur\" :",
- "admin.ldap.noLicense": "
Note :
AD/LDAP est une fonctionnalité de l'Edition Entreprise. Votre licence actuelle ne permet pas d'utiliser AD/LDAP. Veuillez cliquer ici pour plus d'informations et connaître les tarifs de l'Edition Entreprise.
",
- "admin.ldap.portDesc": "Le port utilisé par Mattermost pour vous connecter au serveur LDAP. Par défaut : 389.",
- "admin.ldap.portEx": "Ex. : \"389\"",
- "admin.ldap.portTitle": "Port du serveur LDAP :",
- "admin.ldap.positionAttrDesc": "(Optionnel) L'attribut du serveur AD/LDAP qui est utilisé pour le champ \"rôle\" de Mattermost.",
- "admin.ldap.positionAttrEx": "Ex. : \"titre\"",
- "admin.ldap.positionAttrTitle": "Attribut de rôle :",
- "admin.ldap.queryDesc": "Valeur du délai d'attente pour les requêtes au serveur AD/LDAP. Augmentez cette valeur si vous rencontrez des erreurs liées à un serveur AD/LDAP trop lent.",
- "admin.ldap.queryEx": "Ex. : \"60\"",
- "admin.ldap.queryTitle": "Délai d'attente (en secondes) :",
- "admin.ldap.serverDesc": "Nom DNS ou adresse IP du serveur AD/LDAP.",
- "admin.ldap.serverEx": "Ex. : \"10.0.0.23\"",
- "admin.ldap.serverTitle": "Serveur AD/LDAP :",
- "admin.ldap.skipCertificateVerification": "Passer la vérification du certificat :",
- "admin.ldap.skipCertificateVerificationDesc": "Passe l'étape de vérification des certificats pour les connexions TLS ou STARTTLS. Non recommandé pour les environnements de production où TLS est requis. A des fins de test uniquement.",
- "admin.ldap.syncFailure": "Erreur de synchronisation : {error}",
- "admin.ldap.syncIntervalHelpText": "La synchronisation AD/LDAP met à jour les informations utilisateurs de Mattermost pour refléter les changements du serveur AD/LDAP. Par exemple, lorsque le nom d'un utilisateur change sur le serveur AD/LDAP, le changement est appliqué sur Mattermost lors de la synchronisation. Les comptes supprimés ou désactivés du serveur AD/LDAP auront leur compte Mattermost défini comme \"Inactif\" et auront leur session révoquée. Mattermost réalise la synchronisation selon l'intervalle spécifié. Par exemple, si 60 est spécifié, Mattermost se synchronisera toutes les 60 minutes.",
- "admin.ldap.syncIntervalTitle": "Intervalle de synchronisation (en minutes)",
- "admin.ldap.syncNowHelpText": "Initie une synchronisation AD/LDAP immédiate.",
- "admin.ldap.sync_button": "Synchroniser maintenant l'annuaire AD/LDAP",
- "admin.ldap.testFailure": "Echec du test AD/LDAP : {error}",
- "admin.ldap.testHelpText": "Teste si le serveur Mattermost peut se connecter au serveur AD/LDAP spécifié. Veuillez vous référer au fichier journal pour davantage de messages d'erreur détaillés.",
- "admin.ldap.testSuccess": "Test d'AD/LDAP réussi avec succès",
- "admin.ldap.uernameAttrDesc": "L'attribut du serveur AD/LDAP utilisé pour remplir le champ du nom d'utilisateur des utilisateurs de Mattermost. Il se peut qu'il s'agisse du même champ que l'ID Attribute.",
- "admin.ldap.userFilterDisc": "(Optionel) Spécifiez un filtre AD/LDAP à utiliser lors de la recherche d'objets utilisateur. Seuls les utilisateurs sélectionnés par la requête seront en mesure d'accéder à Mattermost . Pour Active Directory, la requête pour filtrer les utilisateurs désactivés est (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Ex. : \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Filtre utilisateur :",
- "admin.ldap.usernameAttrEx": "Ex. : \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Attribut \"nom d'utilisateur\" :",
- "admin.license.choose": "Parcourir",
- "admin.license.chooseFile": "Parcourir",
- "admin.license.edition": "Edition : ",
- "admin.license.key": "Clé de licence : ",
- "admin.license.keyRemove": "Supprimer la licence Entreprise et rétrograder le serveur",
- "admin.license.noFile": "Aucun fichier chargé",
- "admin.license.removing": "Suppression de la licence...",
- "admin.license.title": "Édition et licence",
- "admin.license.type": "Licence : ",
- "admin.license.upload": "Télécharger",
- "admin.license.uploadDesc": "Téléchargez une licence de Mattermost pour mettre à niveau ce serveur vers l'Edition Entreprise. Consultez Mattermost pour en apprendre plus au sujet des avantages de l'Edition Entreprise ou pour savoir comment acheter une clé.",
- "admin.license.uploading": "Téléchargement de la licence…",
- "admin.log.consoleDescription": "En principe désactivé en production. Les développeurs peuvent activer cette option pour afficher les messages de journal sur la console selon le niveau de verbosité de la console. Lorsqu'activé, le serveur écrit les messages dans le flux de sortie standard (stdout).",
- "admin.log.consoleTitle": "Affiche les journaux sur la console : ",
- "admin.log.enableDiagnostics": "Activer les diagnostics et le rapport d'erreurs :",
- "admin.log.enableDiagnosticsDescription": "Activez cette fonctionnalité pour améliorer la qualité et les performances de Mattermost en envoyant des rapports d'erreur et des informations de diagnostics à Mattermost, Inc. Lisez notre politique de confidentialité pour en savoir davantage.",
- "admin.log.enableWebhookDebugging": "Activer le débogage des webhooks :",
- "admin.log.enableWebhookDebuggingDescription": "Active la journalisation de toutes les requêtes webhook entrantes.",
- "admin.log.fileDescription": "Typiquement activé en production. Lorsqu'activé, les événements sont écrits dans le fichier mattermost.log dans le répertoire spécifié dans le champ 'Répertoire des fichiers journaux'. La rotation des journaux s'effectue toutes les 10 000 lignes. A chaque rotation, les fichiers sont archivés dans un fichier situé dans le même répertoire, mais avec un nom de fichier portant un horodatage et un numéro de série différents, par exemple, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "Ce paramètre indique le niveau de verbosité des journaux. ERROR : N'enregistre que les messages d'erreur. INFO : Affiche les erreurs et des informations sur le démarrage et l'initialisation du serveur. DEBUG : Affiche des informations utiles aux développeurs.",
- "admin.log.fileLevelTitle": "Niveau de verbosité des journaux :",
- "admin.log.fileTitle": "Enregistrer les journaux dans un fichier : ",
- "admin.log.formatDateLong": "Date (2006/01/02)",
- "admin.log.formatDateShort": "Date (21/02/06)",
- "admin.log.formatDescription": "Format des journaux d'erreur. Si laissé vide, le format sera \"[%D %T] [%L] %M\", où :",
- "admin.log.formatLevel": "Niveau (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Message",
- "admin.log.formatPlaceholder": "Entrez le format du fichier",
- "admin.log.formatSource": "Source",
- "admin.log.formatTime": "Heure (15:04:05 MST)",
- "admin.log.formatTitle": "Format de fichier : ",
- "admin.log.levelDescription": "Ce paramètre détermine le niveau de verbosité des événements du journal affichés sur la console. ERROR : Affiche seulement les erreurs. INFO : Affiche les messages d'erreur ainsi que des informations sur le démarrage et l'initialisation du serveur. DEBUG : Affiche un niveau de détail élevé, utile pour les développeurs.",
- "admin.log.levelTitle": "Niveau de détail affiché sur la console :",
- "admin.log.locationDescription": "L'emplacement des fichiers journaux. Si laissé vide, les journaux sont sauvegardés dans le répertoire ./logs. Le chemin vers ce répertoire doit exister et Mattermost doit disposer des permissions pour écrire dedans.",
- "admin.log.locationPlaceholder": "Spécifiez l'emplacement de votre fichier",
- "admin.log.locationTitle": "Répertoire des fichiers journaux :",
- "admin.log.logSettings": "Paramètres de journalisation (logs)",
- "admin.logs.bannerDesc": "Pour rechercher des utilisateurs sur base de leur identifiant, allez dans Rapports > Utilisateurs et collez l'identifiant dans la barre de recherche.",
- "admin.logs.reload": "Recharger",
- "admin.logs.title": "Journaux du serveur",
- "admin.manage_roles.additionalRoles": "Sélectionner des autorisations supplémentaires pour le compte. En savoir plus sur les rôles et autorisations.",
- "admin.manage_roles.allowUserAccessTokens": "Autoriser ce compte à générer des jetons d'accès personnel.",
- "admin.manage_roles.cancel": "Annuler",
- "admin.manage_roles.manageRolesTitle": "Gérer les rôles",
- "admin.manage_roles.postAllPublicRole": "Accède aux messages de tous les canaux publics de Mattermost.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Accède à tous les canaux de Mattermost, et ce compris les messages privés.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Enregistrer",
- "admin.manage_roles.saveError": "Impossible d'enregistrer les rôles.",
- "admin.manage_roles.systemAdmin": "Administrateur système",
- "admin.manage_roles.systemMember": "Membre",
- "admin.manage_tokens.manageTokensTitle": "Gérer les jetons d'accès personnel",
- "admin.manage_tokens.userAccessTokensDescription": "La fonction des jetons d'accès personnel est similaire aux jetons de sessions et peut être utilisé par les intégrations pour interagir avec ce serveur Mattermost. En savoir plus sur les jetons d'accès personnel.",
- "admin.manage_tokens.userAccessTokensNone": "Aucun jeton d'accès personnel.",
- "admin.metrics.enableDescription": "Lorsqu'activé, Mattermost active la collecte des rapports de performance et de profilage. Veuillez vous référer à la documentation pour en savoir davantage sur la configuration du suivi des performances de Mattermost.",
- "admin.metrics.enableTitle": "Activer le suivi des performances :",
- "admin.metrics.listenAddressDesc": "L'adresse d'écoute du serveur pour publier les mesures de performances.",
- "admin.metrics.listenAddressEx": "Ex. : \":8067\"",
- "admin.metrics.listenAddressTitle": "Adresse IP du serveur :",
- "admin.mfa.bannerDesc": "L'authentification multi-facteurs (MFA) est disponible pour les comptes se connectant à l'aide de AD/LDAP ou d'une adresse e-mail. Si d'autres méthodes d'authentification sont utilisées, MFA doit être configuré avec le fournisseur d'authentification.",
- "admin.mfa.cluster": "Haute",
- "admin.mfa.title": "Authentification multi-facteurs",
- "admin.nav.administratorsGuide": "Guide d'administrateur",
- "admin.nav.commercialSupport": "Support commercial",
- "admin.nav.help": "Aide",
- "admin.nav.logout": "Se déconnecter",
- "admin.nav.report": "Signaler un problème",
- "admin.nav.switch": "Sélection de l'équipe",
- "admin.nav.troubleshootingForum": "Forum de dépannage",
- "admin.notifications.email": "Adresse e-mail",
- "admin.notifications.push": "Notifications push sur mobile",
- "admin.notifications.title": "Paramètres de notification",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Ne pas autoriser la connexion à travers un fournisseur OAuth 2.0",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Lorsqu'activé, Mattermost peut se comporter comme un fournisseur de service OAuth 2.0 permettant à Mattermost d'autoriser les requêtes d'API provenant des applications tierces. Voir la documentation pour en savoir davantage.",
- "admin.oauth.providerTitle": "Activer le fournisseur de service OAuth 2.0 :",
- "admin.oauth.select": "Choisissez un fournisseur de service OAuth 2.0 :",
- "admin.office365.EnableHtmlDesc": "
Connectez-vous à votre compte Microsoft ou Office 365. Veuillez vous assurer que le compte est sur le même tenant que celui avec lequel vous voulez connecter vos utilisateurs.
Rendez-vous sur https://apps.dev.microsoft.com, cliquez sur Go to app list > Add an app et spécifiez \"Mattermost - votre-nom-d-entreprise\" comme Application Name.
Dans Application Secrets, cliquez sur Generate New Password et collez-le en-dessous dans le champ Application Secret Password.
Sous Platforms, cliquez sur Add Platform, choisissez Web et spécifiez votre-url-mattermost/signup/office365/complete (exemple: http://localhost:8065/signup/office365/complete) sous Redirect URIs. Décochez aussi Allow Implicit Flow.
Enfin, cliquez sur Save et collez l'Application ID ci-dessous.
",
- "admin.office365.authTitle": "Nœud d'authentification (auth endpoint) :",
- "admin.office365.clientIdDescription": "L'Application/Client ID que vous avez reçu lorsque vous avez enregistré l'application avec Microsoft.",
- "admin.office365.clientIdExample": "Ex. : \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "ID d'application :",
- "admin.office365.clientSecretDescription": "Le mot de passe d'application que vous avez reçu lorsque vous avez enregistré l'application avec Microsoft.",
- "admin.office365.clientSecretExample": "Ex. : \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Mot de passe secret de l'application :",
- "admin.office365.tokenTitle": "Nœud du jeton (token endpoint) :",
- "admin.office365.userTitle": "Nœud de l'API utilisateur (user api endpoint) :",
- "admin.password.lowercase": "Au moins une lettre minuscule",
- "admin.password.minimumLength": "Longueur minimale du mot de passe :",
- "admin.password.minimumLengthDescription": "Nombre minimum de caractères acceptés pour un mot de passe. Doit être un nombre entier supérieur ou égal à {min} et inférieur ou égal à {max}.",
- "admin.password.minimumLengthExample": "Ex. : \"5\"",
- "admin.password.number": "Au moins un nombre",
- "admin.password.preview": "Aperçu du message d'erreur",
- "admin.password.requirements": "Gestion des mots de passe :",
- "admin.password.requirementsDescription": "Lettres obligatoires pour un mot de passe valide.",
- "admin.password.symbol": "Au moins un symbole (ex : \"~!@#$%^&*()\")",
- "admin.password.uppercase": "Au moins une majuscule",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "Lorsqu'activé, vous pouvez configurer les webhooks de JIRA à publier un message dans Mattermost. Pour aider à lutter contre les attaques de phishing, tous les messages sont étiquetées par l'indicateur BOT.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "Cette clé secrète est utilisée pour s'authentifier à Mattermost.",
- "admin.plugins.jira.secretLabel": "Clé secrète :",
- "admin.plugins.jira.secretParamPlaceholder": "secret",
- "admin.plugins.jira.secretRegenerateDescription": "Régénère la clé secrète pour l'URL du nœud du webhook. La régénération de la clé secrète invalide vos intégrations JIRA existantes.",
- "admin.plugins.jira.setupDescription": "Utilisez cette URL de webhook pour configurer l'intégration JIRA. Rendez-vous dans la {webhookDocsLink} pour en savoir davantage.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Spécifiez le nom d'utilisateur auquel cette intégration est liée.",
- "admin.plugins.jira.userLabel": "Utilisateur :",
- "admin.plugins.jira.webhookDocsLink": "documentation",
- "admin.privacy.showEmailDescription": "Lorsque désactivé, l'adresse e-mail des membres est cachée de tout le monde sauf des administrateurs système.",
- "admin.privacy.showEmailTitle": "Afficher l'adresse e-mail : ",
- "admin.privacy.showFullNameDescription": "Lorsque désactivé, le nom complet des membres est caché de tout le monde sauf des administrateurs système. Le nom d'utilisateur s'affiche alors à la place du nom complet.",
- "admin.privacy.showFullNameTitle": "Afficher le nom complet : ",
- "admin.purge.button": "Purger tous les caches",
- "admin.purge.loading": " Chargement…",
- "admin.purge.purgeDescription": "Purge tous les caches en mémoire pour des éléments tels que les sessions, comptes, canaux, etc. Les déploiements qui utilisent la haute disponibilité tenteront de purger tous les serveurs du cluster. Purger les caches peut affecter les performances.",
- "admin.purge.purgeFail": "Impossible de purger : {error}",
- "admin.rate.enableLimiterDescription": "Lorsqu'activé, les APIs sont limitées selon les paramètres définis ci-dessous.",
- "admin.rate.enableLimiterTitle": "Limiter l'accès aux API : ",
- "admin.rate.httpHeaderDescription": "Lorsque rempli, les limites de fréquence par l'entête HTTP spécifié varient (par exemple lorsque NGINX est configuré avec \"X-Real-IP\", lorsque AmazonELB est configuré avec \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Ex. : \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Faire varier les limites de fréquence par l'entête HTTP :",
- "admin.rate.maxBurst": "Limite maximale de dépassement :",
- "admin.rate.maxBurstDescription": "Le nombre maximum de requêtes autorisées à dépasser le seuil limite de requêtes par seconde.",
- "admin.rate.maxBurstExample": "Ex. : \"100\"",
- "admin.rate.memoryDescription": "Le nombre maximum de sessions utilisateur connectées au système, comme indiqué dans les paramètres \"Adapter la limite de fréquence en fonction de l'adresse distante\" et \"Faire varier les limites de fréquence par l'entête HTTP\" ci-dessous.",
- "admin.rate.memoryExample": "Ex. : \"10000\"",
- "admin.rate.memoryTitle": "Taille du stockage en mémoire :",
- "admin.rate.noteDescription": "Changer les paramètres autres que l'URL de site dans cette section requiert un redémarrage du serveur avant de prendre effet.",
- "admin.rate.noteTitle": "Remarque :",
- "admin.rate.queriesDescription": "Limite l'API à ce nombre de requêtes par seconde.",
- "admin.rate.queriesExample": "Ex. : \"10\"",
- "admin.rate.queriesTitle": "Nombre maximum de requêtes par seconde :",
- "admin.rate.remoteDescription": "Lorsqu'activé, l'API est limitée par l'adresse IP du client.",
- "admin.rate.remoteTitle": "Adapter la limite de fréquence en fonction de l'adresse distante : ",
- "admin.rate.title": "Paramètres des limites de débit",
- "admin.recycle.button": "Recycler les connexions à la base de données",
- "admin.recycle.loading": " Recyclage...",
- "admin.recycle.recycleDescription": "Les déploiements utilisant plusieurs bases de données peuvent basculer d'une base de donnée principale à une autre sans redémarrer le serveur Mattermost en définissant le fichier \"config.json\" sur la nouvelle configuration désirée, et en utilisant la fonctionnalité {reloadConfiguration} pour charger les nouveaux paramètres pendant que le serveur est en activité. L'administrateur devra donc ensuite utiliser la fonctionnalité {featureName} pour recycler les connexions aux bases de données en se basant sur les nouveaux paramètres.",
- "admin.recycle.recycleDescription.featureName": "Recycler les connexions des bases de données",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuration > Recharger la configuration à partir du disque",
- "admin.recycle.reloadFail": "Echec du recyclage : {error}",
- "admin.regenerate": "Regénérer",
- "admin.reload.button": "Recharger le fichier de configuration",
- "admin.reload.loading": " Chargement…",
- "admin.reload.reloadDescription": "Les déploiements utilisant plusieurs bases de données peuvent basculer d'une base de donnée principale à une autre sans redémarrer le serveur Mattermost en définissant le fichier \"config.json\" sur la nouvelle configuration désirée, et en utilisant la fonctionnalité {featureName} pour charger les nouveaux paramètres pendant que le serveur est en activité. L'administrateur devra donc ensuite utiliser la fonctionnalité {recycleDatabaseConnections} pour recycler les connexions aux bases de données en se basant sur les nouveaux paramètres.",
- "admin.reload.reloadDescription.featureName": "Recharger la configuration à partir du disque",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Bases de données > Recycler les connexions des bases de données",
- "admin.reload.reloadFail": "Échec de la connexion : {error}",
- "admin.requestButton.loading": " Chargement…",
- "admin.requestButton.requestFailure": "Erreur de test : {error}",
- "admin.requestButton.requestSuccess": "Test effectué avec succès",
- "admin.reset_password.close": "Quitter",
- "admin.reset_password.newPassword": "Nouveau mot de passe",
- "admin.reset_password.select": "Confirmer",
- "admin.reset_password.submit": "Veuillez spécifier au moins {chars} caractères.",
- "admin.reset_password.titleReset": "Réinitialiser le mot de passe",
- "admin.reset_password.titleSwitch": "Basculez le type d'authentification sur le couple l’adresse e-mail / mot de passe",
- "admin.saml.assertionConsumerServiceURLDesc": "Spécifiez https:///login/sso/saml. Spécifiez HTTP ou HTTPS dans l'URL en fonction la configuration de votre serveur. Ce champ est aussi connu sous le nom d'Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "Ex. : \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "URL du service d'identification :",
- "admin.saml.bannerDesc": "Les attributs de l'utilisateur spécifiés dans le serveur SAML, y compris la désactivation ou la suppression d'utilisateurs, sont mis à jour dans Mattermost lorsque l'utilisateur tente de se connecter. Pour en savoir davantage, rendez-vous sur : https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "L'attribut SAML Assertion utilisé pour remplir les adresses e-mail dans Mattermost.",
- "admin.saml.emailAttrEx": "Ex. : \"Email\" ou \"EmailPrincipal\"",
- "admin.saml.emailAttrTitle": "Attribut \"adresse e-mail\" :",
- "admin.saml.enableDescription": "Lorsqu'activé, Mattermost autorise la connexion en utilisant SAML. Consultez la documentation pour en savoir davantage sur la configuration de SAML pour Mattermost.",
- "admin.saml.enableTitle": "Activer la connexion avec SAML :",
- "admin.saml.encryptDescription": "Lorsque désactivé, Mattermost ne déchiffre pas les Assertions SAML chiffrées avec votre clé publique provenant du certificat de votre fournisseur de services. Ceci n'est pas recommandé pour les environnements de production. Option réservée à des fins de test uniquement.",
- "admin.saml.encryptTitle": "Activer le chiffrement :",
- "admin.saml.firstnameAttrDesc": "(Optionnel) L'attribut SAML Assertion utilisé pour remplir les prénoms des utilisateurs dans Mattermost.",
- "admin.saml.firstnameAttrEx": "Ex. : \"Prénom\"",
- "admin.saml.firstnameAttrTitle": "Attribut prénom :",
- "admin.saml.idpCertificateFileDesc": "Le certificat public fourni par votre serveur d'authentification.",
- "admin.saml.idpCertificateFileRemoveDesc": "Retirer le certificat public fourni par votre serveur d'authentification.",
- "admin.saml.idpCertificateFileTitle": "Certificat public du service d'identification :",
- "admin.saml.idpDescriptorUrlDesc": "L'URL d'émetteur pour le fournisseur d'identité utilisé pour les requêtes SAML.",
- "admin.saml.idpDescriptorUrlEx": "Ex. : \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "URL du serveur d'identité :",
- "admin.saml.idpUrlDesc": "L'URL où Mattermost enverra une requête SAML pour démarrer la séquence de connexion.",
- "admin.saml.idpUrlEx": "Ex. : \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "URL d'authentification unique (SSO) SAML :",
- "admin.saml.lastnameAttrDesc": "(Optionnel) L'attribut SAML Assertion utilisé pour remplir le nom de famille des utilisateurs dans Mattermost.",
- "admin.saml.lastnameAttrEx": "Ex. : \"NomDeFamille\"",
- "admin.saml.lastnameAttrTitle": "Attribut \"nom de famille\" :",
- "admin.saml.localeAttrDesc": "(Optionnel) L'attribut SAML Assertion utilisé pour remplir la langue des utilisateurs dans Mattermost.",
- "admin.saml.localeAttrEx": "Ex. : \"Langue\" ou \"LanguePrincipale\"",
- "admin.saml.localeAttrTitle": "Attribut language préféré :",
- "admin.saml.loginButtonTextDesc": "(Facultatif) Le texte qui apparait sur le bouton de \"se connecter\" de la page de connection. Par défaut, \"Avec SAML\".",
- "admin.saml.loginButtonTextEx": "Ex. : \"Avec OKTA\"",
- "admin.saml.loginButtonTextTitle": "Texte du bouton de connexion :",
- "admin.saml.nicknameAttrDesc": "(Optionnel) L'attribut SAML Assertion utilisé pour remplir les pseudos des utilisateurs dans Mattermost.",
- "admin.saml.nicknameAttrEx": "Ex. : \"Surnom\"",
- "admin.saml.nicknameAttrTitle": "Attribut de pseudo : ",
- "admin.saml.positionAttrDesc": "(Optionnel) L'attribut SAML Assertion utilisé pour remplir la fonction des utilisateurs dans Mattermost.",
- "admin.saml.positionAttrEx": "Ex. : \"Rôle\"",
- "admin.saml.positionAttrTitle": "Attribut de rôle :",
- "admin.saml.privateKeyFileFileDesc": "La clé privée utilisée pour déchiffrer le SAML de votre serveur d'identité.",
- "admin.saml.privateKeyFileFileRemoveDesc": "La clé privée utilisée pour déchiffrer le SAML de votre serveur d'identité.",
- "admin.saml.privateKeyFileTitle": "Clé privée du service d'identité :",
- "admin.saml.publicCertificateFileDesc": "Le certificat utilisé pour générer la signature d'une requête SAML au fournisseur d'identité pour une connexion SAML initiée par un fournisseur de service, lorsque Mattermost est le fournisseur de service.",
- "admin.saml.publicCertificateFileRemoveDesc": "Supprimer le certificat utilisé pour générer la signature d'une requête SAML au fournisseur d'identité pour une connexion SAML initiée par un fournisseur de service, lorsque Mattermost est le fournisseur de service.",
- "admin.saml.publicCertificateFileTitle": "Certificat public du service d'identification :",
- "admin.saml.remove.idp_certificate": "Retirer le certificat du service d'identification",
- "admin.saml.remove.privKey": "Clé privée du service d'identité :",
- "admin.saml.remove.sp_certificate": "Retirer le certificat du service d'identification",
- "admin.saml.removing.certificate": "Retrait du certificat...",
- "admin.saml.removing.privKey": "Retrait de la clé privée...",
- "admin.saml.uploading.certificate": "Téléchargement du certificat...",
- "admin.saml.uploading.privateKey": "Téléchargement de la clé privée...",
- "admin.saml.usernameAttrDesc": "L'attribut SAML Assertion utilisé pour remplir les noms d'utilisateur dans Mattermost.",
- "admin.saml.usernameAttrEx": "Ex. : \"NomDUtilisateur\"",
- "admin.saml.usernameAttrTitle": "Attribut \"nom d'utilisateur\" :",
- "admin.saml.verifyDescription": "Lorsque désactivé, Mattermost ne vérifie pas que la signature envoyée d'une réponse SAML correspond à l'URL de login du fournisseur de services. Ceci n'est pas recommandé pour les environnements de production. Option réservée à des fins de test uniquement.",
- "admin.saml.verifyTitle": "Vérifier la signature :",
- "admin.save": "Enregistrer",
- "admin.saving": "Enregistrement des paramètres...",
- "admin.security.connection": "Connexions",
- "admin.security.inviteSalt.disabled": "La clé de salage d'invitation ne peut être modifiée lorsque l'envoi d'e-mails est désactivé.",
- "admin.security.login": "S’identifier",
- "admin.security.password": "Mot de passe",
- "admin.security.passwordResetSalt.disabled": "La clé de salage de réinitialisation du mot de passe ne peut être modifiée lorsque l'envoi d'e-mails est désactivé.",
- "admin.security.public_links": "Liens publics",
- "admin.security.requireEmailVerification.disabled": "La vérification par e-mail ne peut être activée lorsque l'envoi d'e-mails est désactivé.",
- "admin.security.session": "Sessions",
- "admin.security.signup": "Inscription",
- "admin.select_team.close": "Quitter",
- "admin.select_team.select": "Sélectionner",
- "admin.select_team.selectTeam": "Choisir une équipe",
- "admin.service.attemptDescription": "Nombre de tentatives de connexion autorisées avant que l'utilisateur ne soit bloqué et qu'une réinitialisation du mot de passe par e-mail ne soit obligatoire.",
- "admin.service.attemptExample": "Ex. : \"10\"",
- "admin.service.attemptTitle": "Nombre maximum de tentatives de connexion :",
- "admin.service.cmdsDesc": "Lorsqu'activé, les commandes slash personnalisées sont autorisées. Consultez la documentation pour en savoir davantage.",
- "admin.service.cmdsTitle": "Activer les commandes slash : ",
- "admin.service.corsDescription": "Autoriser les requêtes HTTP cross-origin depuis un domaine spécifique. Utilisez \"*\" pour autoriser le partage de ressource de différentes origines (CORS pour cross-origin resource sharing, en anglais) de n'importe quel domaine ou laissez vide pour désactiver.",
- "admin.service.corsEx": "http://exemple.com ou https://exemple.com",
- "admin.service.corsTitle": "Autoriser les requêtes cross-origin depuis :",
- "admin.service.developerDesc": "Lorsqu'activé, les erreurs Javascript sont affichées dans une barre violette en haut de l'interface utilisateur. Ceci n'est pas recommandé dans un environnement de production.",
- "admin.service.developerTitle": "Activer le mode développeur : ",
- "admin.service.enableAPIv3": "Autoriser l'utilisation des nœuds de la version 3 de l'API :",
- "admin.service.enableAPIv3Description": "Lorsque désactivé, tous les nœuds de la version de 3 de l'API REST sont désactivés. Les intégrations s'appuyant sur l'API v3 ne fonctionnent plus et doivent alors être identifiées pour être migrées vers l'API v4. L'API v3 est obsolète et sera supprimée dans une prochaine version de Mattermost. Rendez-vous sur https://api.mattermost.com pour plus de détails.",
- "admin.service.enforceMfaDesc": "Lorsqu'activé, l'authentification multi-facteurs (MFA) est requise pour la connexion. Les nouveaux utilisateurs doivent configurer MFA lors de leur inscription. Les utilisateurs connectés sans MFA configuré sont redirigés vers la page de configuration MFA jusqu'à ce que la configuration soit terminée.
Si votre système dispose d'utilisateurs se connectant autrement que par AD/LDAP ou une adresse e-mail, MFA doit être appliqué avec un fournisseur d'authentification extérieur à Mattermost.",
- "admin.service.enforceMfaTitle": "Imposer l'authentification multi-facteurs :",
- "admin.service.forward80To443": "Rediriger le port 80 sur le port 443 :",
- "admin.service.forward80To443Description": "Redirige le trafic non chiffré du port 80 sur le port sécurisé 443",
- "admin.service.googleDescription": "Définissez cette clé pour activer l'affichage des titres pour les aperçus de vidéos YouTube. Sans la clé, les aperçus YouTube sont créés à partir des liens apparaissant des messages ou commentaires, mais ils ne montrent pas le titre de la vidéo. Regardez un tutoriel de Google Developers pour savoir comment obtenir une clé.",
- "admin.service.googleExample": "Ex. : \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Clé API Google :",
- "admin.service.iconDescription": "Lorsqu'activé, les webhooks, commandes slash et autres intégrations, telles que Zapier, sont autorisées à changer la photo de profil à partir duquel elles émettent des messages. Note : Si les intégrations sont également autorisées à redéfinir les noms d'utilisateur, des utilisateurs pourraient effectuer des attaques de phishing en se faisant passer pour d'autres utilisateurs.",
- "admin.service.iconTitle": "Permettre aux intégrations de redéfinir les images de profil utilisateur :",
- "admin.service.insecureTlsDesc": "Lorsqu'activé, toute requête sortante HTTPS accepte les certificats non-vérifiés et auto-signés. Par exemple, les requêtes webhook sortantes avec un certificat TLS auto-signé, vers n'importe quel domaine, sont alors autorisées. Attention, cela rend votre serveur vulnérable aux attaques de type \"man in the middle\".",
- "admin.service.insecureTlsTitle": "Autoriser les connexions sortantes non-sécurisées : ",
- "admin.service.integrationAdmin": "Restreindre la gestion des intégrations aux administrateurs :",
- "admin.service.integrationAdminDesc": "Lorsqu'activé, les webhooks et commandes slash peuvent seulement être créées, éditées et vues par les administrateurs systèmes et d'équipe, et par les applications OAuth 2.0 des administrateurs systèmes. Les intégrations sont disponibles à tous les utilisateurs après qu'elles aient été créées par l'administrateur.",
- "admin.service.internalConnectionsDesc": "In testing environments, such as when developing integrations locally on a development machine, use this setting to specify domains, IP addresses, or CIDR notations to allow internal connections. Not recommended for use in production, since this can allow a user to extract confidential data from your server or internal network.
By default, user-supplied URLs such as those used for Open Graph metadata, webhooks, or slash commands will not be allowed to connect to reserved IP addresses including loopback or link-local addresses used for internal networks. Push notification, OAuth 2.0 and WebRTC server URLs are trusted and not affected by this setting.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Allow untrusted internal connections to: ",
- "admin.service.letsEncryptCertificateCacheFile": "Fichier de cache du certificat \"Let's Encrypt\"",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Les certificats reçus et les autres données en rapport avec le service Let's Encrypt seront enregistrés dans ce fichier.",
- "admin.service.listenAddress": "Adresse IP du serveur :",
- "admin.service.listenDescription": "L'adresse et le port sur laquelle se lier et écouter. Spécifier \":8065\" se lie sur toutes les interfaces réseau. Spécifier \"127.0.0.1:8065\" se lie uniquement sur l'interface réseau disposant de cette adresse IP. Si vous choisissez un port de bas niveau (également appelés \"ports systèmes\" ou \"ports bien connus\", dans l'intervalle 0-1023), vous devez disposer des permissions pour vous lier sur ces ports. Sous Linux, vous pouvez utiliser : \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" pour autoriser Mattermost à se lier sur ces ports bien connus.",
- "admin.service.listenExample": "Ex. : \":8065\"",
- "admin.service.mfaDesc": "Lorsqu'activé, les utilisateurs se connectant à l'aide de AD/LDAP ou d'une adresse e-mail peuvent ajouter l'authentification multi-facteurs (MFA) à leur compte en utilisant Google Authenticator.",
- "admin.service.mfaTitle": "Activité l’authentification multi-facteurs :",
- "admin.service.mobileSessionDays": "Durée de la session des applications mobiles (en jours) :",
- "admin.service.mobileSessionDaysDesc": "Le nombre de jours entre la dernière fois qu'un utilisateur a spécifié ses identifiants et l'expiration de la session de l'utilisateur. Après le changement de ce paramètre, la nouvelle durée de session prend effet la prochaine fois que les utilisateurs spécifieront leurs identifiants.",
- "admin.service.outWebhooksDesc": "Lorsqu'activé, les webhooks sortants sont autorisés. Consultez la documentation pour en savoir davantage.",
- "admin.service.outWebhooksTitle": "Activer les webhooks sortants : ",
- "admin.service.overrideDescription": "Lorsqu'activé, les webhooks, commandes slash et autres intégrations, telles que Zapier, sont autorisées à changer le nom d'utilisateur à partir duquel elles émettent des messages. Note : Si les intégrations sont également autorisées à redéfinir les photos de profil utilisateur, des utilisateurs pourraient effectuer des attaques de phishing en se faisant passer pour d'autres utilisateurs.",
- "admin.service.overrideTitle": "Permettre aux intégrations de remplacer les noms d'utilisateur :",
- "admin.service.readTimeout": "Délai d'attente de lecture :",
- "admin.service.readTimeoutDescription": "Délai d'attente maximum autorisé à partir du moment où la connexion est acceptée jusqu'au moment où le corps de la requête est entièrement lu.",
- "admin.service.securityDesc": "Lorsqu'activé, les administrateurs système sont notifiés par e-mail si une alerte de sécurité a été annoncée dans les dernières 12 heures. L'envoi d'e-mails doit être activé.",
- "admin.service.securityTitle": "Activer les alertes de sécurité : ",
- "admin.service.sessionCache": "Cache de session en minutes :",
- "admin.service.sessionCacheDesc": "Nombre de minutes qu'une session est gardée en cache.",
- "admin.service.sessionDaysEx": "Ex. : \"30\"",
- "admin.service.siteURL": "URL de site :",
- "admin.service.siteURLDescription": "L'URL que les utilisateurs vont utiliser pour accéder à Mattermost. Les ports standards comme 80 ou 443 peuvent être omis, mais les ports non standards sont requis. Par exemple : http://mattermost.example.com:8065. Ce paramètre est requis.",
- "admin.service.siteURLExample": "Ex. : \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Durée de la session d'authentification unique (SSO) (en jours) :",
- "admin.service.ssoSessionDaysDesc": "Le nombre de jours entre la dernière fois qu'un utilisateur a spécifié ses identifiants et l'expiration de la session de l'utilisateur. Si la méthode d'authentification est SAML ou GitLab, l'utilisateur pourra être automatiquement reconnecté à Mattermost pour autant qu'il se soit déjà connecté en utilisant SAML ou GitLab. Le changement de ce paramètre ne prend effet qu'à la prochaine connexion de l'utilisateur.",
- "admin.service.testingDescription": "Lorsqu'activé, la commande slash /test peut charger des comptes de tests, des données et des textes formatés. Changer ce paramètre nécessite un redémarrage le serveur pour prendre effet.",
- "admin.service.testingTitle": "Activer les commandes de test : ",
- "admin.service.tlsCertFile": "Fichier du certificat TLS :",
- "admin.service.tlsCertFileDescription": "Le fichier de certificat à utiliser.",
- "admin.service.tlsKeyFile": "Fichier de la clé TLS :",
- "admin.service.tlsKeyFileDescription": "Le fichier contenant la clé privée à utiliser.",
- "admin.service.useLetsEncrypt": "Utiliser Let's Encrypt :",
- "admin.service.useLetsEncryptDescription": "Active la récupération automatique des certificats de Let's Encrypt. Le certificat sera récupéré lorsqu'un client tentera de se connecter à partir d'un nouveau domaine. Ceci fonctionne également avec des domaines multiples.",
- "admin.service.userAccessTokensDescLabel": "Nom : ",
- "admin.service.userAccessTokensDescription": "Lorsqu'activé, les utilisateurs peuvent créer des jetons d'accès personnel pour les intégrations dans Paramètres du Compte > Sécurité. Ils peuvent être utilisés pour s'authentifier sur l'API et donner pleinement accès au compte.
Pour gérer qui peut créer des jetons d'accès, rendez-vous dans la page Console Système > Utilisateurs.",
- "admin.service.userAccessTokensIdLabel": "ID du jeton : ",
- "admin.service.userAccessTokensTitle": "Activer les jetons d'accès personnel : ",
- "admin.service.webSessionDays": "Durée de la session AD/LDAP et e-mail (en jours) :",
- "admin.service.webSessionDaysDesc": "Le nombre de jours entre la dernière fois qu'un utilisateur a entré ses identifiants et l'expiration de la session de l'utilisateur. Après le changement de ce paramètre, la nouvelle durée de session prend effet la prochaine fois que les utilisateurs entreront leurs identifiants.",
- "admin.service.webhooksDescription": "Lorsqu'activé, les webhooks entrants sont autorisés. Pour aider à combattre les attaques d'hameçonnage, tous les messages de webhooks seront étiquetées par un label BOT. Consultez la documentation pour en savoir davantage.",
- "admin.service.webhooksTitle": "Activer les webhooks entrants : ",
- "admin.service.writeTimeout": "Délai d'attente d'écriture :",
- "admin.service.writeTimeoutDescription": "Si vous utilisez HTTP (non sécurisé), il s'agit du délai d'attente maximum autorisé à partir du moment où les entêtes sont lus jusqu'au moment où la réponse est écrite. Si vous utilisez le protocole HTTPS, c'est le temps total à partir du moment où la connexion est acceptée jusqu'au moment où la réponse est écrite.",
- "admin.sidebar.advanced": "Options avancées",
- "admin.sidebar.audits": "Conformité et vérification",
- "admin.sidebar.authentication": "authentification",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "Haute disponibilité",
- "admin.sidebar.compliance": "Conformité",
- "admin.sidebar.configuration": "Configuration",
- "admin.sidebar.connections": "Connexions",
- "admin.sidebar.customBrand": "Image de marque personnalisée",
- "admin.sidebar.customIntegrations": "Intégrations personnalisées",
- "admin.sidebar.customization": "Personnalisation",
- "admin.sidebar.database": "Base de données",
- "admin.sidebar.developer": "Développeur",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "E-mail",
- "admin.sidebar.emoji": "Emoticônes",
- "admin.sidebar.external": "Services externes",
- "admin.sidebar.files": "Fichiers",
- "admin.sidebar.general": "Général",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Intégrations",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Mentions légales",
- "admin.sidebar.license": "Édition et licence",
- "admin.sidebar.linkPreviews": "Aperçu des liens",
- "admin.sidebar.localization": "Paramètres linguistiques",
- "admin.sidebar.logging": "Journalisation",
- "admin.sidebar.login": "S’identifier",
- "admin.sidebar.logs": "Journaux",
- "admin.sidebar.metrics": "Suivi des performances",
- "admin.sidebar.mfa": "Authentification multi-facteurs (MFA)",
- "admin.sidebar.nativeAppLinks": "Liens des applications Mattermost",
- "admin.sidebar.notifications": "Notifications",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "AUTRES",
- "admin.sidebar.password": "Mot de passe",
- "admin.sidebar.policy": "Règles",
- "admin.sidebar.privacy": "Confidentialité",
- "admin.sidebar.publicLinks": "Liens publics",
- "admin.sidebar.push": "Push mobile",
- "admin.sidebar.rateLimiting": "Limitation de débit",
- "admin.sidebar.reports": "RAPPORTS",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Sécurité",
- "admin.sidebar.sessions": "Sessions",
- "admin.sidebar.settings": "REGLAGES",
- "admin.sidebar.signUp": "S’inscrire",
- "admin.sidebar.sign_up": "S’inscrire",
- "admin.sidebar.statistics": "Statistiques de l'équipe",
- "admin.sidebar.storage": "Stockage",
- "admin.sidebar.support": "Juridique et de soutien",
- "admin.sidebar.users": "Utilisateurs",
- "admin.sidebar.usersAndTeams": "Utilisateurs et équipes",
- "admin.sidebar.view_statistics": "Statistiques du serveur",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Console système",
- "admin.sql.dataSource": "Source de données :",
- "admin.sql.driverName": "Nom du pilote :",
- "admin.sql.keyDescription": "Clé de salage de 32 caractères utilisée pour chiffrer et déchiffrer les champs en base de données.",
- "admin.sql.keyExample": "Ex. : \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "Clé de chiffrement des données au repos :",
- "admin.sql.maxConnectionsDescription": "Le nombre maximum de connexions inactives gardées ouvertes à la base de données.",
- "admin.sql.maxConnectionsExample": "Ex. : \"10\"",
- "admin.sql.maxConnectionsTitle": "Nombre maximum de connexions inactives :",
- "admin.sql.maxOpenDescription": "Nombre maximum de connexions ouvertes à la base de données.",
- "admin.sql.maxOpenExample": "Ex. : \"10\"",
- "admin.sql.maxOpenTitle": "Nombre maximum de connexions ouvertes :",
- "admin.sql.noteDescription": "Modifier ces paramètres nécessite le redémarrage du serveur pour prendre effet.",
- "admin.sql.noteTitle": "Remarque :",
- "admin.sql.queryTimeoutDescription": "Le nombre de secondes à attendre une réponse de la base de données après avoir ouvert la connexion et avoir envoyé la requête. Les erreurs que vous pouvez voir dans l'interface graphique ou dans les fichiers journaux à la suite du dépassement du délai d'attente peuvent varier selon le type de quête.",
- "admin.sql.queryTimeoutExample": "Ex. : \"30\"",
- "admin.sql.queryTimeoutTitle": "Délai d'attente de la requête :",
- "admin.sql.replicas": "Replicas de la base de données :",
- "admin.sql.traceDescription": "(Mode développeur) Lorsqu'activé, toutes les commandes SQL sont enregistrées dans le journal.",
- "admin.sql.traceTitle": "Journalisation : ",
- "admin.sql.warning": "Attention : Ré-générer cette clé de salage peut provoquer des valeurs vides dans certaines colonnes de la base de données.",
- "admin.support.aboutDesc": "L'URL vers la page À propos apparaissant sur les pages de connexion et d'enregistrement de Mattermost. Si ce champ est laissé vide, le lien est masqué pour les utilisateurs.",
- "admin.support.aboutTitle": "Lien vers la page À propos :",
- "admin.support.emailHelp": "L'adresse e-mail apparaissant dans les notifications par e-mail mais également au cours du tutoriel pour permettre aux utilisateurs de poser des questions.",
- "admin.support.emailTitle": "Adresse e-mail de support :",
- "admin.support.helpDesc": "L'URL vers la page d'aide sur les pages de connexion et d'enregistrement ainsi que sur le menu principal de Mattermost. Si ce champ est laissé vide, le lien est masqué pour les utilisateurs.",
- "admin.support.helpTitle": "Lien vers la page d'aide :",
- "admin.support.noteDescription": "Si vous faites un lien vers un site externe, les URLs doivent commencer par http:// ou https://.",
- "admin.support.noteTitle": "Remarque :",
- "admin.support.privacyDesc": "L'URL vers la page de politique de confidentialité apparaissant sur les pages de connexion et d'enregistrement. Si ce champ est laissé vide, le lien est masqué pour les utilisateurs.",
- "admin.support.privacyTitle": "Lien vers la page de politique de confidentialité :",
- "admin.support.problemDesc": "L'URL vers la page de signalement de problèmes apparaissant dans le menu principal. Si ce champ est laissé vide, le lien est masqué pour les utilisateurs.",
- "admin.support.problemTitle": "Lien vers la page de signalement de problèmes :",
- "admin.support.termsDesc": "L'URL vers la page des conditions sous lesquelles les utilisateurs utilisent votre service. Par défaut, cela inclut les \"Conditions d'Utilisation Mattermost (Utilisateurs Finaux)\" expliquant les termes selon lesquels l'application Mattermost est proposée aux utilisateurs finaux. Si vous changez le lien par défaut pour ajouter vos propres conditions d'utilisation du service que vous proposez, elles devront inclure un lien vers les conditions par défaut pour que les utilisateurs finaux aient connaissance des Conditions d'Utilisation Mattermost (Utilisateurs Finaux) pour l'application Mattermost.",
- "admin.support.termsTitle": "Lien vers la page des conditions d'utilisation :",
- "admin.system_analytics.activeUsers": "Utilisateurs actifs avec messages",
- "admin.system_analytics.title": "le Système",
- "admin.system_analytics.totalPosts": "Nombre total de messages",
- "admin.system_users.allUsers": "Tous les utilisateurs",
- "admin.system_users.noTeams": "Aucune équipe",
- "admin.system_users.title": "Utilisateurs de {siteName}",
- "admin.team.brandDesc": "Active la personnalisation de l'interface de façon à spécifier ci-dessous une image et un texte de support, tous deux apparaissant sur la page de connexion .",
- "admin.team.brandDescriptionExample": "Toute votre communication d'équipe en un seul endroit, consultable et accessible de partout",
- "admin.team.brandDescriptionHelp": "Description du service affiché dans les écrans de connexion et dans l'interface utilisateur. Lorsque non défini, \"Toute votre communication d'équipe en un seul endroit, consultable et accessible de partout\" est affiché.",
- "admin.team.brandDescriptionTitle": "Description du site :",
- "admin.team.brandImageTitle": "Nouvelle image personnalisée :",
- "admin.team.brandTextDescription": "Le texte apparaissant en-dessous de votre image personnalisée sur l'écran de connexion. Supporte le formatage de texte Markdown. 500 caractères maximum autorisés.",
- "admin.team.brandTextTitle": "Nouveau texte personnalisé",
- "admin.team.brandTitle": "activer une image personnalisée : ",
- "admin.team.chooseImage": "Choisit une nouvelle image",
- "admin.team.dirDesc": "Lorsqu'activé, les équipes configurées pour apparaître dans l'annuaire des équipes apparaissent sur la page d'accueil à la place de la création d'une nouvelle équipe.",
- "admin.team.dirTitle": "Active l'annuaire des équipes : ",
- "admin.team.maxChannelsDescription": "Le nombre maximum de canaux par équipe, incluant les canaux actifs et supprimés.",
- "admin.team.maxChannelsExample": "Ex. : \"100\"",
- "admin.team.maxChannelsTitle": "Nombre maximum de canaux par équipe :",
- "admin.team.maxNotificationsPerChannelDescription": "Le nombre maximum d'utilisateurs au-delà duquel les messages comprenant des mentions @all, @here, et @channel n'engendreront plus l'envoi de notifications pour des raisons de performances.",
- "admin.team.maxNotificationsPerChannelExample": "Ex. : \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Nombre maximum de notifications par canal :",
- "admin.team.maxUsersDescription": "Le nombre maximum d'utilisateurs par équipe, incluant à la fois les utilisateurs actifs et inactifs.",
- "admin.team.maxUsersExample": "Ex. : \"25\"",
- "admin.team.maxUsersTitle": "Nombre maximum d'utilisateurs par équipe :",
- "admin.team.noBrandImage": "Pas de nouvelle image a télécharger",
- "admin.team.openServerDescription": "Lorsqu'activé, tout le monde peut enregistrer un compte d'utilisateur sur ce serveur sans qu'il soit nécessaire d'être invité.",
- "admin.team.openServerTitle": "Activer le mode serveur ouvert : ",
- "admin.team.restrictDescription": "Les équipes et comptes utilisateur ne peuvent être créés que depuis un domaine spécifique (par ex. \"mattermost.org\") ou une liste de domaines séparés par des virgules (ex \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Permettre aux utilisateurs d'ouvrir des canaux de message privés avec :",
- "admin.team.restrictDirectMessageDesc": "‘Tout utilisateur sur le serveur Mattermost' permet aux utilisateurs d'ouvrir un canal de message privé avec un autre utilisateur du serveur, même s'ils ne sont pas dans la même équipe. ‘Tous les membres de l'équipe’ limite la capacité d'ouvrir des canaux de messages privés uniquement aux utilisateurs qui sont dans la même équipe.",
- "admin.team.restrictExample": "Ex. : \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Lorsqu'activé, une équipe portant un nom réservé comme www, admin, support, test, channel, etc. ne peut être créée.",
- "admin.team.restrictNameTitle": "Noms d'équipes restreints : ",
- "admin.team.restrictTitle": "Restreindre la création de compte à ces domaines :",
- "admin.team.restrict_direct_message_any": "Tout utilisateur sur le serveur Mattermost",
- "admin.team.restrict_direct_message_team": "Tous les membres de l’équipe",
- "admin.team.showFullname": "Afficher les prénom et nom",
- "admin.team.showNickname": "Afficher le pseudo s'il existe, sinon afficher le prénom d'abord puis le nom",
- "admin.team.showUsername": "Afficher le nom d'utilisateur (défaut)",
- "admin.team.siteNameDescription": "Nom du service affiché dans les écrans de connexion et l'interface.",
- "admin.team.siteNameExample": "Ex. : \"Mattermost\"",
- "admin.team.siteNameTitle": "Nom du site :",
- "admin.team.teamCreationDescription": "Lorsque désactivé, seuls les administrateurs système peuvent créer des équipes.",
- "admin.team.teamCreationTitle": "Autoriser la création d'équipes : ",
- "admin.team.teammateNameDisplay": "Affichage des noms des membres de l'équipe :",
- "admin.team.teammateNameDisplayDesc": "Définit la façon dont les noms des utilisateurs dans les messages et les listes de messages privés sont affichés.",
- "admin.team.upload": "Télécharger",
- "admin.team.uploadDesc": "Personnalisez votre expérience utilisateur en ajoutant une image personnalisée sur votre écran de connexion. Taille d'image recommandée inférieure à 2Mio.",
- "admin.team.uploaded": "téléchargement terminé!",
- "admin.team.uploading": "téléchargement..",
- "admin.team.userCreationDescription": "Lorsque désactivé, la possibilité de créer des comptes est désactivée. Le bouton de création de compte affiche une erreur lorsqu'il est utilisé.",
- "admin.team.userCreationTitle": "Activer la création de comptes : ",
- "admin.team_analytics.activeUsers": "Utilisateurs actifs avec messages",
- "admin.team_analytics.totalPosts": "Nombre total de messages",
- "admin.true": "oui",
- "admin.user_item.authServiceEmail": "Méthode de connexion : Adresse e-mail",
- "admin.user_item.authServiceNotEmail": "Méthode de connexion : {service}",
- "admin.user_item.confirmDemoteDescription": "Si vous vous retirez le rôle d'administrateur et qu'il n'y a aucun autre administrateur désigné, vous devrez en désigner un en accédant au serveur Mattermost via un terminal et en exécutant la commande suivante.",
- "admin.user_item.confirmDemoteRoleTitle": "Confirmez le retrait de votre rôle d'administrateur",
- "admin.user_item.confirmDemotion": "Confirmer le retrait",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "E-mail : {email}",
- "admin.user_item.inactive": "Inactif",
- "admin.user_item.makeActive": "Activer",
- "admin.user_item.makeInactive": "Désactiver",
- "admin.user_item.makeMember": "Assigner le rôle Membre",
- "admin.user_item.makeSysAdmin": "Assigner le rôle administrateur système",
- "admin.user_item.makeTeamAdmin": "Assigner le rôle \"Administrateur d'équipe\"",
- "admin.user_item.manageRoles": "Gérer les rôles",
- "admin.user_item.manageTeams": "Gérer les équipes",
- "admin.user_item.manageTokens": "Gérer les jetons",
- "admin.user_item.member": "Membre",
- "admin.user_item.mfaNo": "MFA : Non",
- "admin.user_item.mfaYes": "MFA : Oui",
- "admin.user_item.resetMfa": "supprimer l’identification à facteurs-multiples",
- "admin.user_item.resetPwd": "Réinitialiser le mot de passe",
- "admin.user_item.switchToEmail": "Basculer le type de connexion sur le couple adresse e-mail / mot de passe",
- "admin.user_item.sysAdmin": "Administrateur système",
- "admin.user_item.teamAdmin": "Administrateur d'équipe",
- "admin.user_item.userAccessTokenPostAll": "(avec des jetons d'accès personnel ayant comme droit post:all)",
- "admin.user_item.userAccessTokenPostAllPublic": "(avec des jetons d'accès personnel ayant comme droit post:channels)",
- "admin.user_item.userAccessTokenYes": "(avec les jetons d'accès personnel)",
- "admin.webrtc.enableDescription": "Lorsqu'activé, Mattermost autorise les appels vidéo en tête-à-tête. Les appels par WebRTC sont disponibles sur Chrome, Firefox et les applications Mattermost de bureau.",
- "admin.webrtc.enableTitle": "Activer Mattermost WebRTC :",
- "admin.webrtc.gatewayAdminSecretDescription": "Spécifiez votre mot de passe pour accéder à l'URL de la passerelle administrateur.",
- "admin.webrtc.gatewayAdminSecretExample": "Ex. : \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Mot de passe administrateur de la passerelle :",
- "admin.webrtc.gatewayAdminUrlDescription": "Spécifiez https://:/admin. Spécifiez HTTP ou HTTPS dans l'URL en fonction de la configuration de votre serveur. Mattermost WebRTC utilise cette URL pour obtenir des jetons valides pour chaque pair afin d'établir la connexion.",
- "admin.webrtc.gatewayAdminUrlExample": "Ex. : \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "URL de la passerelle administrateur :",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Spécifiez wss://:. Spécifiez WS ou WSS dans l'URL en fonction de la configuration de votre serveur. Il s'agit du websocket utilisé pour signaler et établir une communication entre les pairs.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Ex. : \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "URL de la passerelle WebSocket :",
- "admin.webrtc.stunUriDescription": "Spécifiez votre URI STUN sous la forme stun::. STUN est un protocole réseau standardisé permettant aux clients finaux de déterminer leur adresse IP publique lorsqu'ils sont situés derrière un NAT.",
- "admin.webrtc.stunUriExample": "Ex. : \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "URI STUN :",
- "admin.webrtc.turnSharedKeyDescription": "Spécifiez votre clé partagée pour le serveur TURN. Elle est utilisée pour créer des mots de passe dynamiques pour établir la connexion. Chaque mot de passe est valide pendant une période de temps assez courte.",
- "admin.webrtc.turnSharedKeyExample": "Ex. : \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "Clé partagée TURN :",
- "admin.webrtc.turnUriDescription": "Spécifiez votre URI TURN sous la forme turn::. TURN est un protocole réseau standardisé permettant aux clients finaux d'établir une connexion en utilisant une adresse IP publique comme relai lorsque ces clients sont situés derrière un NAT symétrique.",
- "admin.webrtc.turnUriExample": "Ex. : \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "URI TURN :",
- "admin.webrtc.turnUsernameDescription": "Spécifiez votre nom d'utilisateur pour le serveur TURN.",
- "admin.webrtc.turnUsernameExample": "Ex. : \"monnomdutilisateur\"",
- "admin.webrtc.turnUsernameTitle": "Nom d'utilisateur TURN :",
- "admin.webserverModeDisabled": "Désactivé",
- "admin.webserverModeDisabledDescription": "Le serveur Mattermost ne sert pas les fichiers statiques.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Le serveur Mattermost sert les fichiers statiques en les compressant avec gzip.",
- "admin.webserverModeHelpText": "La compression gzip s'applique aux fichiers statiques. Il est recommandé de l'activer pour améliorer les performances, sauf si votre environnement dispose de restrictions spécifiques, comme un proxy web qui distribue mal des fichiers compressés en gzip.",
- "admin.webserverModeTitle": "Mode du serveur web :",
- "admin.webserverModeUncompressed": "Non compressé",
- "admin.webserverModeUncompressedDescription": "Le serveur Mattermost sert les fichiers statiques sans compression.",
- "analytics.chart.loading": "Chargement…",
- "analytics.chart.meaningful": "Pas assez de données pour afficher une représentation pertinente.",
- "analytics.system.activeUsers": "Utilisateurs actifs avec messages",
- "analytics.system.channelTypes": "Types de canaux",
- "analytics.system.dailyActiveUsers": "Utilisateurs actifs quotidiens",
- "analytics.system.monthlyActiveUsers": "Utilisateurs actifs mensuels",
- "analytics.system.postTypes": "Messages, fichiers et hashtags",
- "analytics.system.privateGroups": "Canaux privés",
- "analytics.system.publicChannels": "Canaux publics",
- "analytics.system.skippedIntensiveQueries": "Pour optimiser les performances, certaines statistiques ont été désactivées. Vous pouvez les réactiver dans la config.json. Voir : https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Messages avec texte uniquement",
- "analytics.system.title": "Statistiques du serveur",
- "analytics.system.totalChannels": "Nombre de canaux",
- "analytics.system.totalCommands": "Nombre total de commandes",
- "analytics.system.totalFilePosts": "Messages avec fichiers",
- "analytics.system.totalHashtagPosts": "Messages avec hashtags",
- "analytics.system.totalIncomingWebhooks": "Webhooks entrants",
- "analytics.system.totalMasterDbConnections": "Connexions bases de données maîtres",
- "analytics.system.totalOutgoingWebhooks": "Webhooks sortants",
- "analytics.system.totalPosts": "Nombre de messages",
- "analytics.system.totalReadDbConnections": "Connexions bases de données de réplication",
- "analytics.system.totalSessions": "Nombre de sessions",
- "analytics.system.totalTeams": "Nombre d'équipes",
- "analytics.system.totalUsers": "Nombre d'utilisateurs",
- "analytics.system.totalWebsockets": "Connexions WebSocket",
- "analytics.team.activeUsers": "Nombre d'utilisateurs actifs avec messages",
- "analytics.team.newlyCreated": "Nouveaux utilisateurs",
- "analytics.team.noTeams": "Il n'existe aucune équipe disposant de statistiques.",
- "analytics.team.privateGroups": "Canaux privés",
- "analytics.team.publicChannels": "Canaux publics",
- "analytics.team.recentActive": "Utilisateurs récemment actifs",
- "analytics.team.recentUsers": "Utilisateurs récemment actifs",
- "analytics.team.title": "Statistiques d'équipe pour {team}",
- "analytics.team.totalPosts": "Nombre de messages",
- "analytics.team.totalUsers": "Nombre d'utilisateurs",
- "api.channel.add_member.added": "{addedUsername} a été ajouté au canal par {username}",
- "api.channel.delete_channel.archived": "{username} a archivé le canal.",
- "api.channel.join_channel.post_and_forget": "{username} a rejoint le canal.",
- "api.channel.leave.left": "{username} a quitté le canal.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} a mis à jour le nom d'affichage du canal de: {old} à: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} a supprimé l'entête du canal (précédemment: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} a mis à jour l'entête du canal de : {old} en : {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} a mis à jour l'entête du canal en : {new}",
- "api.channel.remove_member.removed": "{removedUsername} a été retiré du canal",
- "app.channel.post_update_channel_purpose_message.removed": "{username} a supprimé la description du canal (précédemment: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} a mis à jour la description du canal de: {old} en: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} a mis à jour la description du canal en: {new}",
- "audit_table.accountActive": "Compte activé",
- "audit_table.accountInactive": "Compte désactivé",
- "audit_table.action": "Action",
- "audit_table.attemptedAllowOAuthAccess": "Tentative d'autoriser un nouvel accès à un service OAuth",
- "audit_table.attemptedLicenseAdd": "Tentative d'ajouter une licence",
- "audit_table.attemptedLogin": "Tentative de connexion",
- "audit_table.attemptedOAuthToken": "Tentative d'obtenir un jeton d'accès OAuth",
- "audit_table.attemptedPassword": "Tentative de changer le mot de passe",
- "audit_table.attemptedRegisterApp": "Tentative de référencer une nouvelle application OAuth avec l'identifiant {id}",
- "audit_table.attemptedReset": "Tentative de réinitialiser le mot de passe",
- "audit_table.attemptedWebhookCreate": "Tentative de créer un webhook",
- "audit_table.attemptedWebhookDelete": "Tentative de supprimer un webhook",
- "audit_table.by": " par {username}",
- "audit_table.byAdmin": " par un administrateur",
- "audit_table.channelCreated": "Le canal {channelName} a été créé",
- "audit_table.channelDeleted": "Le canal portant l'URL {url} a été supprimé",
- "audit_table.establishedDM": "Envoyé un message privé avec {username}",
- "audit_table.failedExpiredLicenseAdd": "Echec d'ajout d'une licence (elle a déjà expiré ou pas encore démarré)",
- "audit_table.failedInvalidLicenseAdd": "Échec de l'ajout d'une licence",
- "audit_table.failedLogin": "ÉCHEC de la connexion",
- "audit_table.failedOAuthAccess": "Impossible d'autoriser un nouvel accès à un service OAuth - L'URI de redirection ne correspond pas à l'URI de callback déjà enregistrée",
- "audit_table.failedPassword": "Impossible de modifier le mot de passe pour un utilisateur connecté via OAuth",
- "audit_table.failedWebhookCreate": "Impossible de créer le webhook - permissions insuffisantes pour ce canal",
- "audit_table.failedWebhookDelete": "Impossible de supprimer un webhook - conditions non remplies",
- "audit_table.headerUpdated": "L'entête du canal {channelName} a été mis à jour",
- "audit_table.ip": "Adresse IP",
- "audit_table.licenseRemoved": "Licence supprimée avec succès",
- "audit_table.loginAttempt": " (Tentative de connexion)",
- "audit_table.loginFailure": " (Échec de la connexion)",
- "audit_table.logout": "Déconnecté de votre compte",
- "audit_table.member": "membre",
- "audit_table.nameUpdated": "Le nom du canal {channelName} a été mis à jour",
- "audit_table.oauthTokenFailed": "Échec lors de la récupération du jeton d'accès OAuth - {token}",
- "audit_table.revokedAll": "Toutes les sessions actives de l'équipe ont été révoquées",
- "audit_table.sentEmail": "Un e-mail a été envoyé à {email} pour réinitialiser votre mot de passe",
- "audit_table.session": "ID de la session",
- "audit_table.sessionRevoked": "La session id={sessionId} a été révoquée",
- "audit_table.successfullLicenseAdd": "Ajout de licence réussi",
- "audit_table.successfullLogin": "Connexion réussie",
- "audit_table.successfullOAuthAccess": "L'accès à un service OAuth a réussi",
- "audit_table.successfullOAuthToken": "Nouveau service OAuth ajouté",
- "audit_table.successfullPassword": "Mot de passe changé",
- "audit_table.successfullReset": "Mot de passe réinitialisé",
- "audit_table.successfullWebhookCreate": "Webhook créé",
- "audit_table.successfullWebhookDelete": "Webhook supprimé",
- "audit_table.timestamp": "Horodatage",
- "audit_table.updateGeneral": "Les paramètres de votre compte ont été mis à jour",
- "audit_table.updateGlobalNotifications": "Vos paramètres de notification ont été mis à jour",
- "audit_table.updatePicture": "Mettre à jour votre photo de profil",
- "audit_table.updatedRol": "Les rôles de l'utilisateur ont été définis sur ",
- "audit_table.userAdded": "{username} a été ajouté au canal {channelName}",
- "audit_table.userId": "Identifiant de l'utilisateur",
- "audit_table.userRemoved": "{username} a été retiré du canal {channelName}",
- "audit_table.verified": "Votre adresse e-mail est maintenant vérifiée",
- "authorize.access": "Autoriser l'accès à {appName} ?",
- "authorize.allow": "Autoriser",
- "authorize.app": "L'application {appName} souhaite accéder et modifier vos informations de base.",
- "authorize.deny": "Refuser",
- "authorize.title": "{appName} voudrait se connecter à votre compte utilisateur Mattermost",
- "backstage_list.search": "Rechercher",
- "backstage_navbar.backToMattermost": "Retour à {siteName}",
- "backstage_sidebar.emoji": "Emoticônes personnalisées",
- "backstage_sidebar.integrations": "Intégrations",
- "backstage_sidebar.integrations.commands": "Commande slash",
- "backstage_sidebar.integrations.incoming_webhooks": "Webhooks entrants",
- "backstage_sidebar.integrations.oauthApps": "Applications OAuth 2.0",
- "backstage_sidebar.integrations.outgoing_webhooks": "Webhooks sortants",
- "calling_screen": "Appel",
- "center_panel.recent": "Veuillez cliquer ici pour voir les messages récents. ",
- "change_url.close": "Fermer",
- "change_url.endWithLetter": "l'URL doit se terminer par une lettre ou un nombre.",
- "change_url.invalidUrl": "URL non valide",
- "change_url.longer": "L'URL doit comporter 2 caractères ou plus.",
- "change_url.noUnderscore": "L'URL ne peut pas contenir deux tirets de suite.",
- "change_url.startWithLetter": "L'URL doit commencer par une lettre ou un nombre.",
- "change_url.urlLabel": "URL du canal",
- "channelHeader.addToFavorites": "Ajouter aux favoris",
- "channelHeader.removeFromFavorites": "Retirer des favoris",
- "channel_flow.alreadyExist": "Il existe déjà un canal avec cette URL",
- "channel_flow.changeUrlDescription": "Certains caractères ne sont pas autorisés dans les URL et doivent être retirés.",
- "channel_flow.changeUrlTitle": "Changer l'URL du canal",
- "channel_flow.create": "Créer un canal",
- "channel_flow.handleTooShort": "L'URL du canal doit comporter au moins 2 caractères alphanumériques minuscules",
- "channel_flow.invalidName": "Nom du canal incorrect",
- "channel_flow.set_url_title": "Définir l'URL du canal",
- "channel_header.addChannelHeader": "Ajouter une description au canal",
- "channel_header.addMembers": "Ajouter des membres",
- "channel_header.addToFavorites": "Ajouter aux favoris",
- "channel_header.channelHeader": "Éditer l'entête du canal",
- "channel_header.channelMembers": "Membres",
- "channel_header.delete": "Supprimer le canal",
- "channel_header.flagged": "Messages marqués d'un indicateur",
- "channel_header.leave": "Quitter le canal",
- "channel_header.manageMembers": "Gérer les membres",
- "channel_header.notificationPreferences": "Préférences de notification",
- "channel_header.pinnedPosts": "Messages épinglés",
- "channel_header.recentMentions": "Mentions récentes",
- "channel_header.removeFromFavorites": "Retirer des favoris",
- "channel_header.rename": "Renommer le canal",
- "channel_header.setHeader": "Éditer l'entête du canal",
- "channel_header.setPurpose": "Éditer la description du canal",
- "channel_header.viewInfo": "Informations",
- "channel_header.viewMembers": "Voir les membres",
- "channel_header.webrtc.call": "Démarrer un appel vidéo",
- "channel_header.webrtc.offline": "L'utilisateur est hors ligne",
- "channel_header.webrtc.unavailable": "Passer un nouvel appel n'est pas possible tant que l'appel en cours n'a pas été terminé",
- "channel_info.about": "À propos de",
- "channel_info.close": "Fermer",
- "channel_info.header": "Entête :",
- "channel_info.id": "ID : ",
- "channel_info.name": "Nom",
- "channel_info.notFound": "Aucun canal",
- "channel_info.purpose": "Description :",
- "channel_info.url": "URL :",
- "channel_invite.add": " Ajouter",
- "channel_invite.addNewMembers": "Ajouter des nouveaux membres à ",
- "channel_invite.close": "Fermer",
- "channel_loader.connection_error": "Oups... Il semble que votre connexion internet ait un problème...",
- "channel_loader.posted": "Publié",
- "channel_loader.postedImage": " a publié une image",
- "channel_loader.socketError": "Veuillez vérifier votre connexion, Mattermost est inaccessible. Si le problème persiste, demandez à l'administrateur de vérifier le port du WebSocket.",
- "channel_loader.someone": "Quelqu'un",
- "channel_loader.something": " a fait quelque chose",
- "channel_loader.unknown_error": "Réponse incorrecte de la part du serveur.",
- "channel_loader.uploadedFile": " téléchargé un fichier",
- "channel_loader.uploadedImage": " téléchargé une image",
- "channel_loader.wrote": " a écrit : ",
- "channel_members_dropdown.channel_admin": "Administrateur du canal",
- "channel_members_dropdown.channel_member": "Membre du canal",
- "channel_members_dropdown.make_channel_admin": "Définir comme administrateur du canal",
- "channel_members_dropdown.make_channel_member": "Définir comme membre du canal",
- "channel_members_dropdown.remove_from_channel": "Supprimer du canal",
- "channel_members_dropdown.remove_member": "Supprimer un membre",
- "channel_members_modal.addNew": " Ajouter des nouveaux membres",
- "channel_members_modal.members": " Membres",
- "channel_modal.cancel": "Annuler",
- "channel_modal.createNew": "Créer un nouveau canal",
- "channel_modal.descriptionHelp": "Décrit comment ce canal doit être utilisé.",
- "channel_modal.displayNameError": "Le nom du canal doit avoir au moins 2 caractères",
- "channel_modal.edit": "Modifier",
- "channel_modal.header": "Entête",
- "channel_modal.headerEx": "Ex. : \"[Titre du lien](http://exemple.com)\"",
- "channel_modal.headerHelp": "Définit le texte qui apparaîtra comme entête du canal en regard du nom du canal. Par exemple, spécifiez des liens fréquemment utilisés en tapant [Lien de titre](http://exemple.com).",
- "channel_modal.modalTitle": "Nouveau canal",
- "channel_modal.name": "Nom",
- "channel_modal.nameEx": "Exemple : \"Problèmes\", \"Marketing\", \"Éducation\"",
- "channel_modal.optional": "(facultatif)",
- "channel_modal.privateGroup1": "Crée un nouveau canal privé avec des membres restreints. ",
- "channel_modal.privateGroup2": "Créer un canal privé",
- "channel_modal.publicChannel1": "Créer un canal public",
- "channel_modal.publicChannel2": "Crée un canal public que tout le monde peut rejoindre. ",
- "channel_modal.purpose": "Description",
- "channel_modal.purposeEx": "Ex. : \"Un canal pour rapporter des bogues ou des améliorations\"",
- "channel_notifications.allActivity": "Pour toute activité",
- "channel_notifications.allUnread": "Pour les messages non-lus",
- "channel_notifications.globalDefault": "Par défaut ({notifyLevel})",
- "channel_notifications.markUnread": "Marquer le canal comme non-lu",
- "channel_notifications.never": "Jamais",
- "channel_notifications.onlyMentions": "Seulement pour les mentions",
- "channel_notifications.override": "Choisir une autre option que \"Par défaut\" remplacera le réglage par défaut. Les notifications de bureau sont disponibles sur Firefox, Safari et Chrome.",
- "channel_notifications.overridePush": "La sélection d'une option autre que \"par défaut\" remplacera les paramètres de notification pour les notifications push mobiles dans les paramètres du compte. Les notifications push doit être activées par l'administrateur système.",
- "channel_notifications.preferences": "Préférences de notification pour ",
- "channel_notifications.push": "Envoyer des notifications push mobiles",
- "channel_notifications.sendDesktop": "Envoyer des notifications de bureau",
- "channel_notifications.unreadInfo": "Le nom du canal est en gras dans la barre latérale lorsqu'il y a des messages non-plus. Choisir \"Seulement pour les mentions\" met en gras le canal seulement si vous être mentionné.",
- "channel_select.placeholder": "--- Sélectionnez un canal ---",
- "channel_switch_modal.dm": "(Message privé)",
- "channel_switch_modal.failed_to_open": "Impossible d'ouvrir le canal.",
- "channel_switch_modal.not_found": "Aucune correspondance trouvée.",
- "channel_switch_modal.submit": "Basculer",
- "channel_switch_modal.title": "Changer de canal",
- "claim.account.noEmail": "Aucune adresse e-mail spécifiée",
- "claim.email_to_ldap.enterLdapPwd": "Spécifiez l'identifiant et le mot de passe de votre compte AD/LDAP",
- "claim.email_to_ldap.enterPwd": "Spécifiez le mot de passe pour votre compte e-mail {site}",
- "claim.email_to_ldap.ldapId": "Identifiant AD/LDAP",
- "claim.email_to_ldap.ldapIdError": "Veuillez spécifier votre identifiant AD/LDAP.",
- "claim.email_to_ldap.ldapPasswordError": "Veuillez spécifier votre mot de passe AD/LDAP.",
- "claim.email_to_ldap.ldapPwd": "Mot de passe AD/LDAP",
- "claim.email_to_ldap.pwd": "Mot de passe",
- "claim.email_to_ldap.pwdError": "Veuillez spécifier votre mot de passe.",
- "claim.email_to_ldap.ssoNote": "Vous devez déjà avoir un compte AD/LDAP valide",
- "claim.email_to_ldap.ssoType": "Une fois votre compte configuré, vous ne pourrez vous connectez qu'avec AD/LDAP",
- "claim.email_to_ldap.switchTo": "Basculer le compte vers AD/LDAP",
- "claim.email_to_ldap.title": "Passer d'une connexion par e-mail/mot de passe à une connexion par AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Veuillez spécifier le mot de passe pour votre compte {site}",
- "claim.email_to_oauth.pwd": "Mot de passe",
- "claim.email_to_oauth.pwdError": "Veuillez spécifier votre mot de passe.",
- "claim.email_to_oauth.ssoNote": "Vous devez déjà avoir un compte {type} valide",
- "claim.email_to_oauth.ssoType": "Une fois votre compte associé, vous ne pourrez vous connectez que via l'authentification unique (SSO) {type}",
- "claim.email_to_oauth.switchTo": "Changer de compte pour {uiType}",
- "claim.email_to_oauth.title": "Changer l'adresse e-mail/mot de passe pour {uiType}",
- "claim.ldap_to_email.confirm": "Confirmer le mot de passe",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "Veuillez spécifier votre mot de passe AD/LDAP.",
- "claim.ldap_to_email.ldapPwd": "Mot de passe AD/LDAP",
- "claim.ldap_to_email.pwd": "Mot de passe",
- "claim.ldap_to_email.pwdError": "Veuillez spécifier votre mot de passe.",
- "claim.ldap_to_email.pwdNotMatch": "Les mots de passe ne correspondent pas.",
- "claim.ldap_to_email.switchTo": "Basculez le type de connexion de votre compte sur le couple adresse e-mail / mot de passe",
- "claim.ldap_to_email.title": "Basculer le type de connexion de votre compte de AD/LDAP vers le couple adresse e-mail / mot de passe",
- "claim.oauth_to_email.confirm": "Confirmez le mot de passe",
- "claim.oauth_to_email.description": "Une fois votre compte modifié, vous ne pourrez plus vous connecter qu'à l'aide de votre adresse e-mail et votre mot de passe.",
- "claim.oauth_to_email.enterNewPwd": "Veuillez spécifier le mot de passe pour votre compte {site}",
- "claim.oauth_to_email.enterPwd": "Veuillez spécifier un mot de passe.",
- "claim.oauth_to_email.newPwd": "Nouveau mot de passe",
- "claim.oauth_to_email.pwdNotMatch": "Le mot de passe ne correspond pas.",
- "claim.oauth_to_email.switchTo": "Basculer le type de connexion de {type} vers le couple adresse e-mail et mot de passe",
- "claim.oauth_to_email.title": "Basculer la connexion de type {type} vers l'utilisation d'une adresse e-mail",
- "confirm_modal.cancel": "Annuler",
- "connecting_screen": "Connexion en cours",
- "create_comment.addComment": "Commenter...",
- "create_comment.comment": "Ajouter un commentaire",
- "create_comment.commentLength": "Le commentaire doit faire moins de {max} caractères.",
- "create_comment.commentTitle": "Commentaire",
- "create_comment.file": "Téléchargement en cours",
- "create_comment.files": "Téléchargements en cours",
- "create_post.comment": "Commentaire",
- "create_post.error_message": "Votre message est trop long. Nombre de caractères : {length}/{limit}",
- "create_post.post": "Message",
- "create_post.shortcutsNotSupported": "Les raccourcis clavier ne sont pas pris en charge sur votre appareil.",
- "create_post.tutorialTip": "
Envoyer des messages
Veuillez composer votre message ici et tapez Entrée pour le publier.
Cliquez sur le bouton pièce-jointe pour envoyer une image ou un fichier.
",
- "create_post.write": "Écrire un message...",
- "create_team.agreement": "En créant votre compte et en utilisant {siteName}, vous acceptez nos conditions générales d'utilisation et notre politique de confidentialité. Si vous ne les acceptez pas, vous ne pouvez pas utiliser {siteName}.",
- "create_team.display_name.charLength": "Le nom doit être de {min} caractères ou plus, jusqu'à un maximum de {max}. Vous pourrez ajouter une description d'équipe plus longue par la suite.",
- "create_team.display_name.nameHelp": "Spécifiez un nom pour votre équipe. Ce nom reste identique peu importe la langue utilisée et est affiché dans les menus et entêtes.",
- "create_team.display_name.next": "Suivant",
- "create_team.display_name.required": "Ce champ est obligatoire",
- "create_team.display_name.teamName": "Nom de l'équipe",
- "create_team.team_url.back": "Retourner à l’étape précédente",
- "create_team.team_url.charLength": "Le nom doit comporter entre {min} et {max} caractères",
- "create_team.team_url.creatingTeam": "Création de l'équipe...",
- "create_team.team_url.finish": "Terminer",
- "create_team.team_url.hint": "
Courte et facile à retenir est le mieux
Utilisez des lettres minuscules, des chiffres et des tirets
Un nom d'équipe doit commencer par une lettre et ne peut pas se terminer par un tiret
",
- "create_team.team_url.regex": "Utilisez uniquement des lettres minuscules , des chiffres et des tirets. Doit commencer par une lettre et ne peut pas se terminer par un tiret.",
- "create_team.team_url.required": "Ce champ est obligatoire",
- "create_team.team_url.taken": "Cette URL commence par un mot réservé ou est indisponible. Veuillez en spécifier une autre.",
- "create_team.team_url.teamUrl": "URL d’équipe",
- "create_team.team_url.unavailable": "Cette URL est déjà prise ou est indisponible. Veuillez en spécifier une autre.",
- "create_team.team_url.webAddress": "Spécifiez l'URL que vous souhaitez pour votre nouvelle équipe :",
- "custom_emoji.empty": "Aucune émoticône personnalisée n'a été trouvée",
- "custom_emoji.header": "Émoticônes personnalisées",
- "custom_emoji.search": "Rechercher des émoticônes personnalisées",
- "deactivate_member_modal.cancel": "Annuler",
- "deactivate_member_modal.deactivate": "Désactiver",
- "deactivate_member_modal.desc": "Cette action désactive {username}. Cet utilisateur sera déconnecté et n'aura plus accès aux équipes et canaux de ce système. Voulez-vous vraiment désactiver {username} ?",
- "deactivate_member_modal.title": "Désactiver {username}",
- "default_channel.purpose": "Publiez ici les messages que vous souhaitez que tout le monde voie. Chaque utilisateur devient un membre permanent de ce canal lorsqu'il rejoint l'équipe.",
- "delete_channel.cancel": "Annuler",
- "delete_channel.confirm": "Confirmez la SUPPRESSION du canal",
- "delete_channel.del": "Supprimer",
- "delete_channel.question": "Ceci va supprimer le canal de l'équipe et rendre son contenu inaccessible de tous les utilisateurs.
Voulez-vous vraiment supprimer le canal {display_name} ?",
- "delete_post.cancel": "Annuler",
- "delete_post.comment": "Commentaire",
- "delete_post.confirm": "Confirmer la suppression de {term}",
- "delete_post.del": "Supprimer",
- "delete_post.post": "Message",
- "delete_post.question": "Voulez-vous vraiment supprimer ce {term} ?",
- "delete_post.warning": "Ce message a {count, number} {count, plural, one {commentaire} other {commentaires}}.",
- "edit_channel_header.editHeader": "Modifier l'entête du canal...",
- "edit_channel_header.previewHeader": "Modifier l'entête",
- "edit_channel_header_modal.cancel": "Annuler",
- "edit_channel_header_modal.description": "Modifiez le texte affiché à côté du nom du canal dans l'entête du canal.",
- "edit_channel_header_modal.error": "L'entête du canal est trop long, veuillez spécifier un texte plus court",
- "edit_channel_header_modal.save": "Enregistrer",
- "edit_channel_header_modal.title": "Modifier l'entête de {channel}",
- "edit_channel_header_modal.title_dm": "Modifier l'entête",
- "edit_channel_private_purpose_modal.body": "Ce texte apparaît dans la vue \"Informations\" des canaux privés.",
- "edit_channel_purpose_modal.body": "Décrit de quelle manière ce canal devrait être utilisé. Ce texte apparaît dans la liste des canaux dans le menu \"Plus...\" et donne une indication aux utilisateurs pour savoir s'ils doivent rejoindre le canal ou non.",
- "edit_channel_purpose_modal.cancel": "Annuler",
- "edit_channel_purpose_modal.error": "La description de ce canal est trop longue, veuillez en indiquer une plus courte.",
- "edit_channel_purpose_modal.save": "Enregistrer",
- "edit_channel_purpose_modal.title1": "Modifier la description",
- "edit_channel_purpose_modal.title2": "Modifier la description de ",
- "edit_command.save": "Mettre à jour",
- "edit_post.cancel": "Annuler",
- "edit_post.edit": "Modifier {title}",
- "edit_post.editPost": "Modifier le message...",
- "edit_post.save": "Enregistrer",
- "email_signup.address": "Adresse e-mail",
- "email_signup.createTeam": "Créer une équipe",
- "email_signup.emailError": "Veuillez spécifier une adresse e-mail valide.",
- "email_signup.find": "Rechercher mes équipes",
- "email_verify.almost": "{siteName} : Vous avez pratiquement terminé",
- "email_verify.failed": " Échec de l'envoi de l'e-mail de vérification.",
- "email_verify.notVerifiedBody": "Veuillez vérifier votre adresse e-mail dans l'attente de la réception d'un e-mail de vérification.",
- "email_verify.resend": "Renvoyer l'e-mail",
- "email_verify.sent": "L'e-mail de vérification a été envoyé.",
- "email_verify.verified": "L'adresse e-mail de {siteName} a été vérifiée",
- "email_verify.verifiedBody": "
Votre adresse e-mail a été vérifiée ! Veuillez cliquer ici pour vous connecter.
",
- "email_verify.verifyFailed": "Impossible de vérifier votre adresse e-mail.",
- "emoji_list.actions": "Actions",
- "emoji_list.add": "Ajouter une émoticône personnalisée",
- "emoji_list.creator": "Auteur",
- "emoji_list.delete": "Supprimer",
- "emoji_list.delete.confirm.button": "Supprimer",
- "emoji_list.delete.confirm.msg": "Cette action supprime de façon permanente l'émoticône personnalisée. Voulez-vous vraiment la supprimer ?",
- "emoji_list.delete.confirm.title": "Supprimer l'émoticône personnalisée",
- "emoji_list.empty": "Aucune émoticône personnalisée n'a été trouvée",
- "emoji_list.header": "Emoticônes personnalisées",
- "emoji_list.help": "Les émoticônes personnalisées sont disponibles pour tous les utilisateurs sur le serveur. Tapez ':' dans la barre de saisie de message pour faire apparaître le menu de sélection d'émoticônes. Il se peut que les autres utilisateurs doivent rafraîchir la page pour que les nouvelles émoticônes apparaissent.",
- "emoji_list.help2": "Astuce : si vous ajoutez #, ## ou ### comme premier caractère d'une nouvelle ligne contenant une émoticône, vous pourrez utiliser une émoticône plus grande. Pour essayer, envoyez un message tel que '# :smile:'.",
- "emoji_list.image": "Image",
- "emoji_list.name": "Nom",
- "emoji_list.search": "Rechercher des émoticônes personnalisées",
- "emoji_list.somebody": "Un membre d'une autre équipe",
- "emoji_picker.activity": "Activité",
- "emoji_picker.custom": "Personnalisée",
- "emoji_picker.emojiPicker": "Sélection d'émoticônes",
- "emoji_picker.flags": "Indicateurs",
- "emoji_picker.foods": "Nourriture",
- "emoji_picker.nature": "Nature",
- "emoji_picker.objects": "Objets",
- "emoji_picker.people": "Personnes",
- "emoji_picker.places": "Lieux",
- "emoji_picker.recent": "Récemment utilisées",
- "emoji_picker.search": "Rechercher",
- "emoji_picker.symbols": "Symboles",
- "error.local_storage.help1": "Activer les cookies",
- "error.local_storage.help2": "Veuillez désactiver la navigation privée",
- "error.local_storage.help3": "Veuillez utiliser un navigateur web supporté (IE11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Impossible de charger Mattermost à cause d'un paramètre de votre navigateur qui empêche l'utilisation du stockage local. Pour permettre à Mattermost de se charger, veuillez effectuer les actions suivantes :",
- "error.not_found.link_message": "Retour à Mattermost",
- "error.not_found.message": "La page que vous essayer d'atteindre n'existe pas",
- "error.not_found.title": "Page non trouvée",
- "error_bar.expired": "La licence entreprise a expiré et certaines fonctionnalités peuvent être désactivées. Veuillez renouveler.",
- "error_bar.expiring": "La licence entreprise expire le {date}. Veuillez renouveler.",
- "error_bar.past_grace": "La licence entreprise a expiré et certaines fonctionnalités peuvent être désactivées. Veuillez contacter votre administrateur système pour plus d'informations.",
- "error_bar.preview_mode": "Mode découverte : les e-mails de notification ne sont pas configurés",
- "error_bar.site_url": "Veuillez configurer votre {docsLink} dans la {link}.",
- "error_bar.site_url.docsLink": "URL de site",
- "error_bar.site_url.link": "Console système",
- "error_bar.site_url_gitlab": "Veuillez configurer votre {docsLink} dans la console système ou dans le fichier gitlab.rb si vous utilisez GitLab Mattermost.",
- "file_attachment.download": "Télécharger",
- "file_info_preview.size": "Taille ",
- "file_info_preview.type": "Type de fichier ",
- "file_upload.disabled": "Les fichiers de pièces jointes sont désactivés.",
- "file_upload.fileAbove": "Le fichier plus grand que {max}Mo ne peut pas être téléchargé : {filename}",
- "file_upload.filesAbove": "Les fichiers plus grands que {max}Mo ne peuvent pas être téléchargés : {filenames}",
- "file_upload.limited": "Les téléchargements sont limités à {count, number} fichiers par message. Utilisez d'autres messages pour envoyer d'autres fichiers.",
- "file_upload.pasted": "Image collée à ",
- "filtered_channels_list.search": "Rechercher des canaux",
- "filtered_user_list.any_team": "Tous les utilisateurs",
- "filtered_user_list.count": "{count, number} {count, plural, one {membre} other {membres}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {membre} other {membres}} d'un total de {total, number}",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {membre} other {membres}} d'un total de {total, number}",
- "filtered_user_list.member": "Membre",
- "filtered_user_list.next": "Suivant",
- "filtered_user_list.prev": "Précédent",
- "filtered_user_list.search": "Rechercher des utilisateurs",
- "filtered_user_list.searchButton": "Rechercher",
- "filtered_user_list.show": "Filtre :",
- "filtered_user_list.team_only": "Membre de l’équipe",
- "find_team.email": "Adresse e-mail",
- "find_team.findDescription": "Un e-mail a été envoyé avec les liens vers les équipes dont vous êtes membre.",
- "find_team.findTitle": "Trouvez votre équipe",
- "find_team.getLinks": "Obtenez par e-mail des liens vers les équipes dont vous êtes membre.",
- "find_team.placeholder": "vous@domaine.com",
- "find_team.send": "Envoyer",
- "find_team.submitError": "Veuillez spécifier une adresse e-mail valide",
- "flag_post.flag": "Marquez le message d'un indicateur pour le suivi",
- "flag_post.unflag": "Supprimer l'indicateur",
- "general_tab.chooseDescription": "Veuillez choisir une nouvelle description pour votre équipe",
- "general_tab.codeDesc": "Veuillez cliquer sur 'Modifier' pour réinitialiser le code d'invitation",
- "general_tab.codeLongDesc": "Le code d'invitation est utilisé dans l'URL du lien d'invitation à l'équipe. Ce lien est créé par {getTeamInviteLink} depuis le menu principal. Regénérer un nouveau lien d'invitation invalide les invitations déjà envoyées.",
- "general_tab.codeTitle": "Code d'invitation",
- "general_tab.emptyDescription": "Veuillez cliquer sur 'Modifier' pour ajouter une description d'équipe.",
- "general_tab.getTeamInviteLink": "Créer une invitation",
- "general_tab.includeDirDesc": "Inclure cette équipe affichera le nom de l'équipe dans l'annuaire sur la page d'accueil, ainsi qu'un lien pour rejoindre cette équipe.",
- "general_tab.no": "Non",
- "general_tab.openInviteDesc": "Lorsqu'autorisé, un lien vers cette équipe est inclus sur la page d'accueil permettant à quiconque disposant d'un compte de rejoindre cette équipe.",
- "general_tab.openInviteTitle": "Permettre à n'importe quel utilisateur disposant d'un compte de rejoindre cette équipe",
- "general_tab.regenerate": "Regénérer",
- "general_tab.required": "Ce champ est obligatoire",
- "general_tab.teamDescription": "Description de l'équipe",
- "general_tab.teamDescriptionInfo": "La description de l'équipe fournit des informations supplémentaires pour aider les utilisateurs à choisir la bonne équipe. Maximum 50 caractères.",
- "general_tab.teamName": "Nom de l'équipe",
- "general_tab.teamNameInfo": "Spécifiez le nom de l'équipe tel qu'il apparaîtra sur la page de connexion et en haut de la barre latérale de gauche.",
- "general_tab.title": "Paramètres généraux",
- "general_tab.yes": "Oui",
- "get_app.alreadyHaveIt": "Vous l'avez déjà ?",
- "get_app.androidAppName": "Mattermost pour Android",
- "get_app.androidHeader": "Mattermost fonctionne mieux si vous utilisez notre application Android",
- "get_app.continue": "continuer",
- "get_app.continueWithBrowser": "Ou {link}",
- "get_app.continueWithBrowserLink": "continuer avec le navigateur",
- "get_app.iosHeader": "Mattermost fonctionne mieux si vous utilisez notre application iPhone",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Ouvrir Mattermost",
- "get_link.clipboard": " Lien copié",
- "get_link.close": "Fermer",
- "get_link.copy": "Copier l'URL",
- "get_post_link_modal.help": "Le lien ci-dessous permet aux utilisateurs autorisés de voir votre message.",
- "get_post_link_modal.title": "Copier le lien permanent",
- "get_public_link_modal.help": "Le lien ci-dessous permet à quiconque de voir ce fichier, sans être inscrit sur ce serveur.",
- "get_public_link_modal.title": "Obtenir le lien public",
- "get_team_invite_link_modal.help": "Envoyez à vos collègues le lien ci-dessous pour leur permettre de s'inscrire à votre équipe. Le lien d'invitation peut être partagé par plusieurs personnes et ne change pas tant qu'il n'a pas été regénéré dans les paramètres de l'équipe par un responsable d'équipe.",
- "get_team_invite_link_modal.helpDisabled": "La création d'utilisateurs est désactivée pour votre équipe. Veuillez contacter votre administrateur système.",
- "get_team_invite_link_modal.title": "Lien d'invitation à l'équipe",
- "help.attaching.downloading": "#### Téléchargement de fichiers\nTéléchargez un fichier joint en cliquant sur l'icône de téléchargement à côté de la miniature de fichier ou en ouvrant l'aperçu du fichier et en cliquant sur **Télécharger**.",
- "help.attaching.dragdrop": "#### Glisser-déposer\nEnvoyez un fichier ou une sélection de fichiers en glissant les fichiers de votre ordinateur vers la barre latérale à droite ou dans le panneau central. Glisser-déposer un fichier le joint à la zone de saisie. Vous pouvez alors optionnellement tapper un message et appuyer sur **ENTREE** pour le publier.",
- "help.attaching.icon": "#### Icône de pièce jointe\nVous pouvez également envoyer des fichiers en cliquant sur l'icône grise représentant une trombone dans la zone de saisie du message. Une boîte de dialogue affichant vos fichiers locaux s'ouvrira alors, vous permettant de sélectionner les fichiers que vous souhaitez envoyer. Cliquez ensuite sur **Ouvrir** pour envoyer les fichiers dans la zone de saisie. Veuillez spécifier facultativement un message et appuyez sur **Entrée** pour le publier.",
- "help.attaching.limitations": "## Limitations de taille de fichier\nMattermost prend en charge un maximum de cinq fichiers joints par message, chacun avec une taille maximale de 50Mio.",
- "help.attaching.methods": "## Méthodes d'envoi de pièces jointes\nEnvoyez un fichier joint en effectuant un glisser-déposer ou en cliquant sur l'icône de pièce jointe dans la zone de saisie du message.",
- "help.attaching.notSupported": "L'aperçu de document (Word, Excel, PPT) n'est pas encore pris en charge.",
- "help.attaching.pasting": "#### Coller des images\nAvec les navigateurs Chrome et Edge, il est également possible d'envoyer des fichiers en les collant à partir du presse-papier. Cette fonctionnalité n'est pas encore implémentée dans les autres navigateurs.",
- "help.attaching.previewer": "## Aperçu de fichiers\nMattermost dispose d'une fonctionnalité de prévisualisation de fichiers qui est utilisée pour visionner les média, télécharger des fichiers et partager des liens publics. Cliquez sur la miniature du fichier joint pour l'ouvrir dans l'aperçu de fichier.",
- "help.attaching.publicLinks": "#### Partager des liens publics\nLes liens publics vous permettent de partager des fichiers joints avec des personnes situées à l'extérieur de votre équipe Mattermost. Ouvrez l'aperçu de fichier en cliquant sur la miniature d'un fichier joint, et cliquez sur **Obtenir le lien public**. Ceci ouvre une boîte de dialogue avec un lien à copier. Lorsque le lien est partagé et est ouvert par un autre utilisateur, le fichier se télécharge automatiquement.",
- "help.attaching.publicLinks2": "Si **Obtenir le lien public** n'est pas visible dans l'aperçu de fichier et que vous préférez avoir cette fonctionnalité active, vous pouvez demander à ce que votre administrateur système active cette fonctionnalité à partir de la console système dans **Sécurité** > **Liens publics**.",
- "help.attaching.supported": "#### Types de média supportés\nSi vous essayez de prévisualiser un type de média qui n'est pas supporté, l'aperçu de fichier va représenter le fichier joint sous forme d'une icône standard. Les formats de fichier supportés dépendent fortement de votre navigateur et de votre système d'exploitation, mais les formats de fichier suivants sont supportés par Mattermost sur la plupart des navigateurs :",
- "help.attaching.supportedList": "- Images : BMP, GIF, JPG, JPEG, PNG\n- Video : MP4\n- Audio : MP3, M4A\n- Documents : PDF",
- "help.attaching.title": "# Joindre des fichiers\n_____",
- "help.commands.builtin": "## Commandes intégrées\nLes commandes slash suivantes sont disponibles sur toutes les installations de Mattermost :",
- "help.commands.builtin2": "Commencez par taper `/` et une liste de commandes slash vont apparaître au-dessus de la zone de saisie. Les suggestions de saisie semi-automatique vous aident en fournissant un exemple de format en noir et une courte description de la commande slash en gris.",
- "help.commands.custom": "## Commandes personnalisées\nLes commandes slash personnalisées s'intègrent avec les applications tierces. Par exemple, une équipe pourrait configurer une commande slash pour vérifier les fichiers internes de santé d'un patient avec `/patient joe smith`ou vérifier les prévisions hebdomadaires du temps pour une ville spécifiée avec `/weather toronto week`. Demandez à votre administrateur système ou ouvrez la liste de suggestions de commandes en tapant `/` pour savoir si votre équipe a configuré des commandes slash personnalisées.",
- "help.commands.custom2": "Les commandes slash personnalisées sont désactivées par défaut et peuvent être activées par l'administrateur système dans la **Console système** > **Intégrations** > **Webhooks et commandes**. Apprenez à configurer des commandes personnalisées sur la [page de documentation de développement de commandes slash](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Les commandes slash effectuent des opérations dans Mattermost en tapant dans la zone de saisie de texte. Veuillez spécifier `/` suivi d'une commande et de quelques arguments pour effectuer une action.\n\nLes commandes slash intégrées dans toutes les installations de Mattermost et les commandes slash personnalisées sont configurables pour interagir avec des applications tierces. Apprenez à configurer des commandes personnalisées sur la [page de documentation de développement de commandes slash](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Exécuter des commandes\n",
- "help.composing.deleting": "## Suppression d'un message\nSupprimez un message en cliquant sur l'icône **[...]** située à côté de chaque message que vous avez composé, puis cliquez sur **Supprimer**. Les administrateurs système et d'équipe peuvent supprimer n'importe quel message du système ou de l'équipe.",
- "help.composing.editing": "## Édition d'un message\nÉditez un message en cliquant sur l'icône **[...]** située à côté de chaque message que vous avez composé, puis cliquez sur **Éditer**. Après avoir effectué des modifications au message, appuyez sur **ENTREE** pour sauvegarder les modifications. Les éditions de messages ne déclenchent pas de nouvelles notifications de @mention, ni de notifications de bureau ni de sons de notifications.",
- "help.composing.linking": "## Lien vers un message\nLa fonctionnalité de lien permanent permet de créer un lien vers n'importe quel message. Partager ce lien avec d'autres utilisateurs du canal permet à ces utilisateurs du canal de voir le message lié dans les Messages Archivés. Les utilisateurs qui ne sont pas membres du canal à partir duquel le message a été envoyé ne peuvent pas voir le lien permanent. Obtenez le lien vers un message en cliquant sur l'icône **[...]** située à côté de chaque message, > **Lien permanent** > **Copier le lien**.",
- "help.composing.posting": "## Envoi d'un message\nÉcrivez un message en tapant dans la zone de saisie de texte, puis appuyez sur ENTREE pour l'envoyer. Utilisez la combinaison MAJ+ENTREE pour insérer une nouvelle ligne sans envoyer le message. Pour envoyer des messages en utilisant sur CTRL+ENTREE, allez dans **Menu principal > Paramètres du compte > Envoi de messages avec CTRL+ENTREE**.",
- "help.composing.posts": "#### Publications\nLes publications sont souvent considérées comme des messages parents. Ce sont les messages qui commencent souvent un fil de réponses. Les publications sont composées et envoyées à partir de la zone de saisie de texte en bas du panneau central.",
- "help.composing.replies": "#### Réponses\nRépondez à un message en cliquant sur l'icône de réponse à côté de n'importe quel message de texte. Cette action ouvre la barre latérale de droite où vous pouvez voir le fil de messages, puis composer et envoyer votre réponse. Les réponses sont décalées légèrement dans le panneau central pour indiquer qu'elles sont les messages enfants d'une publication parente.\n\nLorsque vous composez une réponse dans la barre latérale de droite, cliquez sur l'icône agrandir/réduire avec deux flèches, au-dessus de la barre latérale, de façon à rendre la vue plus facile à lire.",
- "help.composing.title": "# Envoi de messages\n_____",
- "help.composing.types": "## Types de message\nRépondez aux publications pour conserver les conversations organisées en fil de messages.",
- "help.formatting.checklist": "Faire une liste de tâches en incluant des crochets :",
- "help.formatting.checklistExample": "- [ ] Element un\n- [ ] Element deux\n- [x] Element terminé",
- "help.formatting.code": "## Bloc de code\n\nCréez un bloc de code en décalant chaque ligne par quatre espaces, ou en utilisant ``` sur la ligne du dessus et celle du dessous de votre code.",
- "help.formatting.codeBlock": "Bloc de code",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emoticônes\n\nOuvrez les suggestions d'émoticônes en tapant `:`. Une liste complète d'émoticônes peut être trouvée [ici](http://www.emoji-cheat-sheet.com/). Il est également possible de créer votre propre [émoticône personnalisée](http://docs.mattermost.com/help/settings/custom-emoji.html) si l'émoticône que vous souhaitez utiliser n'existe pas.",
- "help.formatting.example": "Exemple :",
- "help.formatting.githubTheme": "**Thèmes GitHub**",
- "help.formatting.headings": "## Titres\n\nCréez un titre en ajoutant # et un espace avant votre titre. Pour des titres de plus bas niveau, ajoutez plus de #.",
- "help.formatting.headings2": "Alternativement, vous pouvez souligner le texte à l'aide de `===` ou `---` pour créer des entêtes.",
- "help.formatting.headings2Example": "Grand en tête\n-------------",
- "help.formatting.headingsExample": "## Grand en tête\n### Plus petit en tête\n#### Encore plus petit en tête",
- "help.formatting.images": "## Images intégrées au message\n\nCréez des images intégrées au message en utilisant `!`suivi par le texte alternatif placé entre crochets et le lien placé entre parenthèses. Pour ajouter un texte apparaissant au survol de la souris, placez-le entre guillemets après le lien.",
- "help.formatting.imagesExample": "\n\net\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Code intégré au message\n\nCréez un message formaté en police monospace en l'entourant d'apostrophes inversées.",
- "help.formatting.intro": "Le Markdown rend plus simple la mise en forme des messages. Écrivez normalement votre message et utilisez ces règles pour créer une mise en forme spéciale.",
- "help.formatting.lines": "## Lignes\n\nCréez une ligne à l'aide de `*`, `_`, ou `-`.",
- "help.formatting.linkEx": "[Découvrez Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Liens\n\nCréer des liens étiquetés en mettant le texte désiré entre crochets et le lien associé entre parenthèses.",
- "help.formatting.listExample": "* élément un\n* élément deux\n * sous-point élément deux",
- "help.formatting.lists": "## Les listes\n\nCréer une liste en utilisant `*` ou `-` comme points. Retirez un point en ajoutant deux espaces en face de celui-ci.",
- "help.formatting.monokaiTheme": "**Thème Monokai**",
- "help.formatting.ordered": "Faire une liste ordonnée en utilisant des nombres à la place :",
- "help.formatting.orderedExample": "1. Element un\n2. Element deux",
- "help.formatting.quotes": "## Bloc de citations\n\nCréez des blocs de citation en utilisant `>`.",
- "help.formatting.quotesExample": "`> bloc de citations` est rendu comme tel :",
- "help.formatting.quotesRender": "> bloc de citations",
- "help.formatting.renders": "Rendu sous la forme :",
- "help.formatting.solirizedDarkTheme": "**Thème Solarized Dark**",
- "help.formatting.solirizedLightTheme": "**Thème Solarized Light**",
- "help.formatting.style": "## Style de texte\n\nVous pouvez utiliser `_` ou `*` autour d'un mot pour le mettre en italique. Utilisez deux de ces caractères consécutivement pour le mettre en gras.\n\n* `_italique_` est rendu _italique_\n* `**gras**` est rendu **gras**\n* `**_gras-italique_**` est rendu **_gras-italiques_**\n* `~~barré~~` est rendu ~~barré~~",
- "help.formatting.supportedSyntax": "Langues prises en charge sont :\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Coloration syntaxique\n\nPour ajouter la coloration syntaxique, tapez le nom du langage à colorier après ``` au début du bloc de code. Mattermost fournit également quatre thèmes de code différents (GitHub, Solarized Dark, Solarized Light, Monokai) qui peuvent être définis dans **Paramètres du compte** > **Affichage** > **Thème** > **Thème personnalisé** > **Styles du canal central**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| Aligné à gauche | Centré | Aligné à droite |\n| :------------ |:---------------:| -----:|\n| Colonne de gauche 1 | ce texte | $100 |\n| Colonne de gauche 2 | est | 10 $|\n| Colonne de gauche 3 | centré | $1 |",
- "help.formatting.tables": "## Tableaux\n\nCréez un tableau en plaçant une ligne en pointillés sous la ligne d'entête et en séparant les colonnes par une barre verticale `|`. (Les colonnes ne doivent pas nécessairement s'aligner correctement pour que ça fonctionne). Choisissez comment aligner les colonnes du tableau en utilisant deux-points `:` dans la ligne d'entête.",
- "help.formatting.title": "# Mise en forme du texte\n",
- "help.learnMore": "En savoir plus sur :",
- "help.link.attaching": "Joindre des fichiers",
- "help.link.commands": "Exécuter des commandes",
- "help.link.composing": "Composition de messages et réponses",
- "help.link.formatting": "Utiliser Markdown pour la mise en forme des messages",
- "help.link.mentioning": "Mentionner les membres de l'équipe",
- "help.link.messaging": "Messagerie de base",
- "help.mentioning.channel": "#### @Channel\nVous pouvez mentionner tout un canal en écrivant `@channel`. Tous les membres du canal recevront une notification de mention qui se comporte de la même manière que si chacun avait été mentionné directement.",
- "help.mentioning.channelExample": "@canal bon travail sur les entretiens cette semaine. Je pense que nous avons trouvé quelques excellents candidats potentiels !",
- "help.mentioning.mentions": "## @Mentions\nUtiliser les @mentions pour attirer l'attention de certains membres de l'équipe.",
- "help.mentioning.recent": "## Mentions récentes\nCliquez sur `@` à côté de la barre de recherche pour rechercher vos @mentions récentes et les mots qui déclenchent les mentions. Cliquez sur **Aller à** à côté d'un résultat de recherche dans la barre latérale de droite pour faire positionner le panneau central sur le canal et l'endroit du message contenant la mention.",
- "help.mentioning.title": "# Mentionnant Coéquipiers\n_____",
- "help.mentioning.triggers": "## Mots qui déclenchent des mentions\nEn plus d'être notifié par @nom d'utilisateur et @channel, vous pouvez personnaliser des mots qui déclenchent des notifications de mention dans **Paramètres du compte** > **Notifications** > **Mots qui déclenchent des mentions**. Par défaut, vous recevrez des notifications de mention sur base de votre prénom, mais vous pouvez ajouter davantage de mots en les spécifiant, séparés par des virgules, dans la zone de saisie. Ceci est utile si vous souhaitez être notifié de tous les messages qui concernent un sujet en particulier, par exemple, “interview” ou “marketing”.",
- "help.mentioning.username": "#### @Nom d'utilisateur\nVous pouvez mentionner un coéquipier en utilisant le symbole `@` suivi de son nom d'utilisateur pour lui envoyer une notification de mention.\n\nTapez `@` pour afficher une liste des membres de l'équipe qui peuvent être mentionnés. Pour filtrer la liste, tapez les premières lettres de n'importe quel nom d'utilisateur, prénom, nom de famille, ou pseudo. Les flèches du clavier **Haut** et **Bas** peuvent être utilisées pour faire défiler les différentes entrées dans la liste; la touche **Entrée** une fois appuyée sélectionnera l'utilisateur à mentionner. Une fois sélectionné, le nom d'utilisateur va automatiquement remplacer le nom et prénom ou le pseudo.\nL'exemple suivant envoie une notification spéciale de mention à **alice** qui l'alerte du canal et du message dans laquelle elle a été citée. Si **alice** est absente de Mattermost et qu'elle a activé les [notifications par e-mail](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications), alors elle recevra une alerte par e-mail de sa mention accompagnée du message texte concerné par cette mention.",
- "help.mentioning.usernameCont": "Si l'utilisateur que vous avez mentionné n'appartient pas au canal, un message système sera envoyé pour vous le faire savoir. Il s'agit d'un message temporaire seulement visible par la personne qui l'a déclenché. Pour ajouter la personne mentionnée au canal, rendez-vous dans le menu déroulant en-dessous du nom du canal et sélectionnez **Ajouter Membres**.",
- "help.mentioning.usernameExample": "@alice comment s'est déroulé votre entretien avec le nouveau candidat ?",
- "help.messaging.attach": "**Ajoutez des fichiers** en les glissant-déposant dans Mattermost ou en cliquant sur l'icône de pièce jointe dans la barre de composition des messages.",
- "help.messaging.emoji": "**Ajoutez rapidement des émoticônes** en tapant \":\", ce qui ouvrira une liste de suggestions d'émoticônes. Si l'émoticône existante ne couvre pas ce que vous souhaitez exprimer, vous pouvez également créer [votre propre émoticône](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Formatez vos messages** en utilisant Markdown qui supporte les styles de texte, titres, émoticônes, blocs de code, blocs de citation, tableaux, listes et images intégrées au texte.",
- "help.messaging.notify": "**Avertissez vos coéquipiers** lorsque nécessaire en tapant `@nom d'utilisateur`.",
- "help.messaging.reply": "**Répondez aux messages** en cliquant sur la flèche de réponse à côté du texte du message.",
- "help.messaging.title": "# Messagerie de base\n_____",
- "help.messaging.write": "**Ecrivez des messages** en utilisant la zone de saisie en bas de l'interface de Mattermost. Appuyez sur ENTREE pour envoyer un message. Utilisez MAJ + ENTREE pour effectuer un retour à la ligne sans envoyer le message.",
- "installed_command.header": "Commandes Slash",
- "installed_commands.add": "Ajouter une commande slash",
- "installed_commands.delete.confirm": "Cette action supprime définitivement la commande slash et casse toutes les intégrations qui l'utilisent. Voulez-vous vraiment la supprimer ?",
- "installed_commands.empty": "Aucune commande trouvée",
- "installed_commands.header": "Commande slash",
- "installed_commands.help": "Utiliser les commandes slash pour connecter Mattermost à des outils externes. {buildYourOwn} ou visitez le {appDirectory} pour trouver des applications et intégrations auto-hébergées ou tierces.",
- "installed_commands.help.appDirectory": "Répertoire des commandes slash",
- "installed_commands.help.buildYourOwn": "Construisez votre propre extension",
- "installed_commands.search": "Rechercher les commandes slash",
- "installed_commands.unnamed_command": "Commande slash sans nom",
- "installed_incoming_webhooks.add": "Ajouter des Webhooks entrants",
- "installed_incoming_webhooks.delete.confirm": "Cette action supprime définitivement le webhook entrant et casse toutes les intégrations qui l'utilisent. Voulez-vous vraiment le supprimer ?",
- "installed_incoming_webhooks.empty": "Aucun webhook entrant trouvé",
- "installed_incoming_webhooks.header": "Webhooks entrants",
- "installed_incoming_webhooks.help": "Utilisez des webhooks entrants pour connecter Mattermost à des outils externes. {buildYourOwn} ou visitez le {appDirectory} pour trouver des applications et intégrations auto-hébergées ou tierces.",
- "installed_incoming_webhooks.help.appDirectory": "Répertoire de webhooks entrants",
- "installed_incoming_webhooks.help.buildYourOwn": "Construisez votre propre webhook entrant",
- "installed_incoming_webhooks.search": "Rechercher les webhooks entrants",
- "installed_incoming_webhooks.unknown_channel": "Webhook privé",
- "installed_integrations.callback_urls": "URLs de callback : {urls}",
- "installed_integrations.client_id": "ID Client : {clientId}",
- "installed_integrations.client_secret": "Secret client : {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Créé par {creator} le {createAt, date, full}",
- "installed_integrations.delete": "Supprimer",
- "installed_integrations.edit": "Modifier",
- "installed_integrations.hideSecret": "Cacher le secret",
- "installed_integrations.regenSecret": "Générer une nouvelle clé secrète",
- "installed_integrations.regenToken": "Re-générer le jeton",
- "installed_integrations.showSecret": "Afficher le secret",
- "installed_integrations.token": "Token : {token}",
- "installed_integrations.triggerWhen": "Déclencher quand : {triggerWhen}",
- "installed_integrations.triggerWords": "Mots de déclenchement : {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Application OAuth 2.0 sans nom",
- "installed_integrations.url": "URL : {url}",
- "installed_oauth_apps.add": "Ajouter une application OAuth 2.0",
- "installed_oauth_apps.callbackUrls": "URLs de callback (une par ligne)",
- "installed_oauth_apps.cancel": "Annuler",
- "installed_oauth_apps.delete.confirm": "Cette action supprime définitivement l'application OAuth 2.0 et casse toutes les intégrations qui l'utilisent. Voulez-vous vraiment le supprimer ?",
- "installed_oauth_apps.description": "Description",
- "installed_oauth_apps.empty": "Pas d'applications OAuth 2.0 trouvées",
- "installed_oauth_apps.header": "Applications OAuth 2.0",
- "installed_oauth_apps.help": "Créez {oauthApplications} pour intégrer en toute sécurité les robots et les applications tierces avec Mattermost. Visitez le {appDirectory} pour trouver les applications auto-hébergées disponibles.",
- "installed_oauth_apps.help.appDirectory": "Répertoire d'applications OAuth",
- "installed_oauth_apps.help.oauthApplications": "Applications OAuth 2.0",
- "installed_oauth_apps.homepage": "Page d'accueil",
- "installed_oauth_apps.iconUrl": "URL de l'icône",
- "installed_oauth_apps.is_trusted": "De confiance : {isTrusted}",
- "installed_oauth_apps.name": "Nom d'affichage",
- "installed_oauth_apps.save": "Enregistrer",
- "installed_oauth_apps.search": "Rechercher les applications OAuth 2.0",
- "installed_oauth_apps.trusted": "De confiance",
- "installed_oauth_apps.trusted.no": "Non",
- "installed_oauth_apps.trusted.yes": "Oui",
- "installed_outgoing_webhooks.add": "Ajouter des Webhooks sortants",
- "installed_outgoing_webhooks.delete.confirm": "Cette action supprime définitivement le webhook sortant et casse toutes les intégrations qui l'utilisent. Voulez-vous vraiment le supprimer ?",
- "installed_outgoing_webhooks.empty": "Aucun webhook sortant trouvé",
- "installed_outgoing_webhooks.header": "Webhooks sortants",
- "installed_outgoing_webhooks.help": "Utilisez des webhooks sortants pour connecter Mattermost à des outils externes. {buildYourOwn} ou visitez le {appDirectory} pour trouver des applications et intégrations auto-hébergées ou tierces.",
- "installed_outgoing_webhooks.help.appDirectory": "Répertoire de webhooks sortants",
- "installed_outgoing_webhooks.help.buildYourOwn": "Construisez votre propre webhook sortant",
- "installed_outgoing_webhooks.search": "Rechercher les webhooks sortants",
- "installed_outgoing_webhooks.unknown_channel": "Un webhook privé",
- "integrations.add": "Ajouter",
- "integrations.command.description": "Les commandes slash envoient des événements aux intégrations externes",
- "integrations.command.title": "Commande slash",
- "integrations.delete.confirm.button": "Supprimer",
- "integrations.delete.confirm.title": "Supprimer l'intégration",
- "integrations.done": "Effectué",
- "integrations.edit": "Modifier",
- "integrations.header": "Intégrations",
- "integrations.help": "Visitez le {appDirectory} pour trouver des applications et des intégrations auto-hébergées ou tierces pour Mattermost.",
- "integrations.help.appDirectory": "Répertoires d'intégrations",
- "integrations.incomingWebhook.description": "Les webhooks entrants permettent aux intégrations externes d'envoyer des messages",
- "integrations.incomingWebhook.title": "Webhooks entrants",
- "integrations.oauthApps.description": "OAuth 2.0 autorise les applications externes à faire des requêtes autorisées à l'API Mattermost.",
- "integrations.oauthApps.title": "Applications OAuth 2.0",
- "integrations.outgoingWebhook.description": "Les webhooks sortants permettent aux intégrations externes de recevoir et répondre aux messages",
- "integrations.outgoingWebhook.title": "Webhooks sortants",
- "integrations.successful": "Installation réussie",
- "intro_messages.DM": "Vous êtes au début de votre historique de messages avec {teammate}. Les messages privés et les fichiers partagés ici ne sont pas visibles par les autres utilisateurs.",
- "intro_messages.GM": "Vous êtes au début de votre historique de messages avec {names}. Les messages privés et les fichiers partagés ici ne sont pas visibles par les autres utilisateurs.",
- "intro_messages.anyMember": " Tout membre peut rejoindre et lire ce canal.",
- "intro_messages.beginning": "Début de {name}",
- "intro_messages.channel": "canal",
- "intro_messages.creator": "Ceci est le début de {type} {name}, créé par {creator} le {date}.",
- "intro_messages.default": "
Début de {display_name}
Bienvenue sur {display_name}!
Publiez ici les messages que vous souhaitez que tout le monde voie. Chaque utilisateur devient un membre permanent de ce canal lorsqu'il rejoint l'équipe.
",
- "intro_messages.group": "canal privé",
- "intro_messages.group_message": "Vous êtes au début de votre historique de messages de groupe avec ces utilisateurs. Les messages privés et les fichiers partagés ici ne sont pas visibles par les autres utilisateurs.",
- "intro_messages.invite": "Inviter d'autres membres sur ce {type}",
- "intro_messages.inviteOthers": "Inviter d'autres membres dans cette équipe",
- "intro_messages.noCreator": "Ceci est le début de {name} {type}, créé le {date}.",
- "intro_messages.offTopic": "
Début de {display_name}
Ceci est le début de {display_name}, un canal destiné aux conversations extra-professionnelles.
",
- "intro_messages.onlyInvited": " Seuls les membres invités peuvent voir ce canal privé.",
- "intro_messages.purpose": " L'objectif de {type} est : {purpose}.",
- "intro_messages.setHeader": "Définir l'entête",
- "intro_messages.teammate": "Vous êtes au début de votre historique de messages avec cet utilisateur. Les messages privés et les fichiers partagés ici ne sont pas visibles par les autres utilisateurs.",
- "invite_member.addAnother": "Ajouter un autre",
- "invite_member.autoJoin": "Les membres automatiquement invités rejoignent le canal {channel}.",
- "invite_member.cancel": "Annuler",
- "invite_member.content": "Les e-mails sont désactivés pour votre équipe et ne peuvent pas être envoyés. Contactez votre administrateur système pour activer l'envoi d'e-mails et l'envoi d'invitations par e-mail.",
- "invite_member.disabled": "La création d'utilisateurs est désactivée pour votre équipe. Veuillez contacter votre administrateur système.",
- "invite_member.emailError": "Veuillez spécifier une adresse e-mail valide",
- "invite_member.firstname": "Prénom",
- "invite_member.inviteLink": "Lien d'invitation à l'équipe",
- "invite_member.lastname": "Nom de famille",
- "invite_member.modalButton": "Oui, abandonner",
- "invite_member.modalMessage": "Vous avez des invitations qui n'ont pas encore été envoyées, êtes vous sûr de vouloir abandonner ?",
- "invite_member.modalTitle": "Abandonner les invitations ?",
- "invite_member.newMember": "Envoyer un e-mail d'invitation",
- "invite_member.send": "Ajouter une invitation",
- "invite_member.send2": "Ajouter une invitation",
- "invite_member.sending": " Envoi en cours",
- "invite_member.teamInviteLink": "Vous pouvez également inviter des membres en utilisant le {link}.",
- "ldap_signup.find": "Trouver mes équipes",
- "ldap_signup.ldap": "Créer une nouvelle équipe avec un compte AD/LDAP",
- "ldap_signup.length_error": "Le nom doit contenir de 3 à 15 caractères",
- "ldap_signup.teamName": "Entrez le nom de votre nouvelle équipe",
- "ldap_signup.team_error": "Veuillez spécifier le nom de votre équipe",
- "leave_private_channel_modal.leave": "Oui, quitter le canal",
- "leave_private_channel_modal.message": "Voulez-vous vraiment quitter le canal privé {channel} ? Vous devrez être réinvité pour pouvoir le rejoindre à nouveau dans le futur.",
- "leave_private_channel_modal.title": "Quitter le canal privé {channel}",
- "leave_team_modal.desc": "Vous allez être retiré de tous les canaux publics et privés. Si l'équipe est privée, vous ne serez pas en mesure de rejoindre l'équipe à nouveau. Voulez-vous continuer ?",
- "leave_team_modal.no": "Non",
- "leave_team_modal.title": "Quitter l'équipe ?",
- "leave_team_modal.yes": "Oui",
- "loading_screen.loading": "Chargement",
- "login.changed": " Méthode de connexion changée",
- "login.create": "Créer maintenant",
- "login.createTeam": "Créer une nouvelle équipe",
- "login.createTeamAdminOnly": "Cette option n'est disponible que pour les administrateurs système, et ne s'affiche pas pour les autres utilisateurs.",
- "login.email": "Adresse e-mail",
- "login.find": "Trouver vos autres équipes",
- "login.forgot": "Mot de passe perdu",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Votre mot de passe est incorrect.",
- "login.ldapUsername": "Nom d’utilisateur AD/LDAP",
- "login.ldapUsernameLower": "Nom d’utilisateur AD/LDAP",
- "login.noAccount": "Pas de compte utilisateur ? ",
- "login.noEmail": "Veuillez spécifier votre adresse e-mail.",
- "login.noEmailLdapUsername": "Veuillez spécifier votre adresse e-mail ou {ldapUsername}",
- "login.noEmailUsername": "Veuillez spécifier votre adresse e-mail ou votre nom d'utilisateur",
- "login.noEmailUsernameLdapUsername": "Veuillez spécifier votre adresse e-mail, votre nom d'utilisateur ou {ldapUsername}",
- "login.noLdapUsername": "Veuillez spécifier votre {ldapUsername}",
- "login.noMethods": "Aucune méthode configurée pour s'inscrive, veuillez contacter votre administrateur système.",
- "login.noPassword": "Veuillez spécifier votre mot de passe",
- "login.noUsername": "Veuillez spécifier votre nom d'utilisateur",
- "login.noUsernameLdapUsername": "Veuillez spécifier votre nom d'utilisateur ou {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "sur {siteName}",
- "login.or": "ou",
- "login.password": "Mot de passe",
- "login.passwordChanged": " Mot de passe mis a jour avec succès",
- "login.placeholderOr": " ou ",
- "login.session_expired": " Votre session a expiré. Merci de vous reconnecter.",
- "login.signIn": "Connexion",
- "login.signInLoading": "Authentification en cours...",
- "login.signInWith": "Se connecter avec :",
- "login.userNotFound": "Nous ne trouvons aucun compte correspondants a vos identifiants de connexions.",
- "login.username": "Nom d'utilisateur",
- "login.verified": " Adresse e-mail vérifiée",
- "login_mfa.enterToken": "Pour terminer le processus de connexion, veuillez spécifier le jeton apparaissant dans l'application d'authentification de votre smartphone.",
- "login_mfa.submit": "Envoyer",
- "login_mfa.token": "MFA Token",
- "login_mfa.tokenReq": "Veuillez spécifier un jeton d'authentification multi-facteurs (MFA)",
- "member_item.makeAdmin": "Passer Administrateur",
- "member_item.member": "Membre",
- "member_list.noUsersAdd": "Aucun utilisateur à ajouter.",
- "members_popover.manageMembers": "Gérer les membres",
- "members_popover.msg": "Envoyer un message",
- "members_popover.title": "Membres du canal",
- "members_popover.viewMembers": "Voir les membres",
- "mfa.confirm.complete": "Installation terminée !",
- "mfa.confirm.okay": "OK",
- "mfa.confirm.secure": "Votre compte est maintenant sécurisé. La prochaine fois que vous vous connectez, vous serez invité à spécifier un code à partir de l'application Google Authenticator sur votre téléphone.",
- "mfa.setup.badCode": "Code non valide. Si ce problème persiste, contactez votre Administrateur Système.",
- "mfa.setup.code": "Code MFA",
- "mfa.setup.codeError": "Veuillez spécifier le code de Google Authenticator.",
- "mfa.setup.required": "L'authentification multi-facteurs est requise sur {siteName}.",
- "mfa.setup.save": "Enregistrer",
- "mfa.setup.secret": "Clé secrète : {secret}",
- "mfa.setup.step1": "Etape 1 : Sur votre téléphone,, télécharger l'application Google Authenticator d'iTunes ou du Google Play",
- "mfa.setup.step2": "Etape 2 : Utilisez Google Authenticator pour scanner ce code QR, ou tapez manuellement la clé secrète",
- "mfa.setup.step3": "Etape 3 : Entrez le code généré par Google Authenticator",
- "mfa.setupTitle": "Configuration de l'authentification multi-facteurs",
- "mobile.about.appVersion": "Version de l'App : {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. Tous droits réservés",
- "mobile.about.database": "Base de données : {type}",
- "mobile.about.serverVersion": "Version du serveur : {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Version du serveur : {version}",
- "mobile.account.notifications.email.footer": "Lorsque hors ligne ou absent de plus de cinq minutes",
- "mobile.account_notifications.mentions_footer": "Votre nom d'utilisateur (\"@{username}\") déclenchera toujours des mentions.",
- "mobile.account_notifications.non-case_sensitive_words": "Autres mots non sensibles à la casse...",
- "mobile.account_notifications.reply.header": "Envoyer des notifications de réponse pour",
- "mobile.account_notifications.threads_mentions": "Mentions dans les fils de discussion",
- "mobile.account_notifications.threads_start": "Fils de discussion que je démarre",
- "mobile.account_notifications.threads_start_participate": "Fils de discussion que je démarre ou auxquels je participe",
- "mobile.advanced_settings.reset_button": "Réinitialiser",
- "mobile.advanced_settings.reset_message": "\nCela effacera toutes les données en mode hors connexion et redémarrera l'application. Vous serez automatiquement reconnecté une fois l'application redémarrée.\n",
- "mobile.advanced_settings.reset_title": "Réinitialiser le cache",
- "mobile.advanced_settings.title": "Paramètres avancés",
- "mobile.channel_drawer.search": "Aller à la conversation",
- "mobile.channel_info.alertMessageDeleteChannel": "Voulez-vous vraiment supprimer le {term} {name} ?",
- "mobile.channel_info.alertMessageLeaveChannel": "Voulez-vous vraiment quitter le {term} {name} ?",
- "mobile.channel_info.alertNo": "Non",
- "mobile.channel_info.alertTitleDeleteChannel": "Supprimer {term}",
- "mobile.channel_info.alertTitleLeaveChannel": "Quitter {term}",
- "mobile.channel_info.alertYes": "Oui",
- "mobile.channel_info.delete_failed": "Impossible de supprimer le canal {displayName}. Veuillez vérifier votre connexion et essayer à nouveau.",
- "mobile.channel_info.privateChannel": "Canal privé",
- "mobile.channel_info.publicChannel": "Canal public",
- "mobile.channel_list.alertMessageLeaveChannel": "Voulez-vous vraiment quitter le {term} {name} ?",
- "mobile.channel_list.alertNo": "Non",
- "mobile.channel_list.alertTitleLeaveChannel": "Quitter {term}",
- "mobile.channel_list.alertYes": "Oui",
- "mobile.channel_list.closeDM": "Fermer le message privé",
- "mobile.channel_list.closeGM": "Fermer le groupe de message",
- "mobile.channel_list.dm": "Message privé",
- "mobile.channel_list.gm": "Message de groupe",
- "mobile.channel_list.not_member": "PAS UN MEMBRE",
- "mobile.channel_list.open": "Ouvrir {term}",
- "mobile.channel_list.openDM": "Ouvrir le message privé",
- "mobile.channel_list.openGM": "Ouvrir le message de groupe",
- "mobile.channel_list.privateChannel": "Canal privé",
- "mobile.channel_list.publicChannel": "Canal public",
- "mobile.channel_list.unreads": "NON LUS",
- "mobile.components.channels_list_view.yourChannels": "Vos canaux :",
- "mobile.components.error_list.dismiss_all": "Annuler tout",
- "mobile.components.select_server_view.continue": "Continuer",
- "mobile.components.select_server_view.enterServerUrl": "Spécifiez l'URL du serveur",
- "mobile.components.select_server_view.proceed": "Continuer",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Créer",
- "mobile.create_channel.private": "Nouveau canal privé",
- "mobile.create_channel.public": "Nouveau canal public",
- "mobile.custom_list.no_results": "Aucun résultat",
- "mobile.drawer.teamsTitle": "Équipes",
- "mobile.edit_post.title": "Edition du message",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Relancer",
- "mobile.error_handler.description": "\nCliquez sur relancer pour ouvrir l'application à nouveau. Après le redémarrage, vous pouvez signaler le problème à partir du menu paramètres.\n",
- "mobile.error_handler.title": "Une erreur inattendue s'est produite",
- "mobile.file_upload.camera": "Prendre une photo ou une vidéo",
- "mobile.file_upload.library": "Bibliothèque de photos",
- "mobile.file_upload.more": "Plus…",
- "mobile.file_upload.video": "Bibliothèque vidéo",
- "mobile.help.title": "Aide",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "Vous êtes au début de votre historique de messages avec {teammate}. Les messages privés et les fichiers partagés ici ne sont pas visibles par les autres utilisateurs.",
- "mobile.intro_messages.default_message": "Il s'agit du premier canal que les utilisateurs voient lorsqu'ils s'inscrivent. Utilisez‑le pour poster des informations que tout le monde devrait connaître.",
- "mobile.intro_messages.default_welcome": "Bienvenue {name} !",
- "mobile.join_channel.error": "Impossible de joindre le canal {displayName}. Veuillez vérifier votre connexion et essayer à nouveau.",
- "mobile.loading_channels": "Chargement des canaux...",
- "mobile.loading_members": "Chargement des membres...",
- "mobile.loading_posts": "Chargement des messages...",
- "mobile.login_options.choose_title": "Spécifiez votre méthode de connexion",
- "mobile.managed.blocked_by": "Blocked by {vendor}",
- "mobile.managed.exit": "Modifier",
- "mobile.managed.jailbreak": "Jailbroken devices are not trusted by {vendor}, please exit the app.",
- "mobile.managed.secured_by": "Secured by {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Démarrer",
- "mobile.more_dms.title": "Nouvelle conversation",
- "mobile.notice_mobile_link": "applications mobiles",
- "mobile.notice_platform_link": "plateforme",
- "mobile.notice_text": "Mattermost est rendu possible grâce aux logiciels open source utilisés dans notre {platform} et {mobile}.",
- "mobile.notification.in": " dans ",
- "mobile.offlineIndicator.connected": "Connecté",
- "mobile.offlineIndicator.connecting": "Connexion en cours...",
- "mobile.offlineIndicator.offline": "Aucune connexion internet",
- "mobile.open_dm.error": "Impossible d'ouvrir un message privé avec {displayName}. Veuillez vérifier votre connexion et essayer à nouveau.",
- "mobile.open_gm.error": "Impossible d'ouvrir un message de groupe avec ces utilisateurs. Veuillez vérifier votre connexion et essayer à nouveau.",
- "mobile.post.cancel": "Annuler",
- "mobile.post.delete_question": "Voulez-vous vraiment supprimer ce message ?",
- "mobile.post.delete_title": "Supprimer le message",
- "mobile.post.failed_delete": "Supprimer le message",
- "mobile.post.failed_retry": "Essayez à nouveau",
- "mobile.post.failed_title": "Impossible d'envoyer votre message",
- "mobile.post.retry": "Rafraîchir",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Réponse invalide reçue du serveur.",
- "mobile.routes.channelInfo": "Information",
- "mobile.routes.channelInfo.createdBy": "Créé par {creator} le ",
- "mobile.routes.channelInfo.delete_channel": "Supprimer le canal",
- "mobile.routes.channelInfo.favorite": "Favoris",
- "mobile.routes.channel_members.action": "Supprimer des membres",
- "mobile.routes.channel_members.action_message": "Vous devez sélectionner au moins un membre à supprimer de ce canal.",
- "mobile.routes.channel_members.action_message_confirm": "Voulez-vous vraiment supprimer les membres sélectionnés du canal ?",
- "mobile.routes.channels": "Canaux",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Spécifiez l'URL du serveur",
- "mobile.routes.login": "Se connecter",
- "mobile.routes.loginOptions": "Sélecteur de connexion",
- "mobile.routes.mfa": "Authentification multi-facteurs",
- "mobile.routes.postsList": "Liste des messages",
- "mobile.routes.saml": "Authentification unique (SSO)",
- "mobile.routes.selectTeam": "Choisir une équipe",
- "mobile.routes.settings": "Paramètres",
- "mobile.routes.sso": "Authentification unique (SSO)",
- "mobile.routes.thread": "Fil de discussion de {channelName}",
- "mobile.routes.thread_dm": "Fil de discussion de message privé",
- "mobile.routes.user_profile": "Profil",
- "mobile.routes.user_profile.send_message": "Envoyer un message",
- "mobile.search.jump": "SAUTER",
- "mobile.search.no_results": "Aucun résultat trouvé",
- "mobile.select_team.choose": "Vos équipes : ",
- "mobile.select_team.join_open": "Les autres équipes que vous pouvez rejoindre.",
- "mobile.select_team.no_teams": "Il n'y a aucune équipe disponible que vous pouvez rejoindre.",
- "mobile.server_ping_failed": "Impossible de se connecter au serveur. Veuillez vérifier l'URL de votre serveur et votre connexion internet.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nUne mise à jour du serveur est requise pour utiliser l'application Mattermost. Veuillez demander à votre administrateur système pour plus de détails.\n",
- "mobile.server_upgrade.title": "Mise à jour du serveur requise",
- "mobile.server_url.invalid_format": "L'URL doit commencer par http:// ou https://",
- "mobile.session_expired": "La session a expiré. Veuillez vous connecter pour continuer à recevoir les notifications.",
- "mobile.settings.clear": "Effacer le stockage hors-ligne",
- "mobile.settings.clear_button": "Effacer",
- "mobile.settings.clear_message": "\nCela effacera toutes les données en mode hors connexion et redémarrera l'application. Vous serez automatiquement reconnecté une fois l'application redémarrée.\n",
- "mobile.settings.team_selection": "Sélection d'équipe",
- "mobile.suggestion.members": "Membres",
- "modal.manaul_status.ask": "Ne plus me demander",
- "modal.manaul_status.button": "Oui, définir mon état sur \"En ligne\"",
- "modal.manaul_status.cancel": "Non, conserver mon état \"{status}\"",
- "modal.manaul_status.message": "Voulez-vous définir votre état sur \"En ligne\"?",
- "modal.manaul_status.title": "Votre état est défini sur \"{status}\"",
- "more_channels.close": "Fermer",
- "more_channels.create": "Créer un nouveau canal",
- "more_channels.createClick": "Veuillez cliquer sur \"Créer un nouveau canal\" pour en créer un nouveau",
- "more_channels.join": "Rejoindre",
- "more_channels.next": "Suivant",
- "more_channels.noMore": "Il n'y a plus d'autre canal que vous pouvez rejoindre",
- "more_channels.prev": "Précédent",
- "more_channels.title": "Plus de canaux",
- "more_direct_channels.close": "Fermer",
- "more_direct_channels.message": "Message",
- "more_direct_channels.new_convo_note": "Ceci va démarrer une nouvelle conversation. Si vous ajoutez beaucoup de personnes, veuillez envisager la création d'un canal privé à la place.",
- "more_direct_channels.new_convo_note.full": "Vous avez atteint le nombre maximum de personnes pour cette conversation. Veuillez envisager la création d'un canal privé à la place.",
- "more_direct_channels.title": "Messages privés",
- "msg_typing.areTyping": "{users} et {last} sont en train d'écrire...",
- "msg_typing.isTyping": "{user} est en train d'écrire...",
- "msg_typing.someone": "Quelqu'un",
- "multiselect.add": "Ajouter",
- "multiselect.go": "Aller à",
- "multiselect.list.notFound": "Aucun utilisateur trouvé.",
- "multiselect.numPeopleRemaining": "Utilisez les flèches ↑↓ pour parcourir, ↵ pour sélectionner. Vous pouvez encore ajouter {num, number} {num, plural, one {personne} other {personnes}}. ",
- "multiselect.numRemaining": "Vous pouvez encore en ajouter {num, number} en plus",
- "multiselect.placeholder": "Rechercher et ajouter des membres",
- "navbar.addMembers": "Ajouter Membres",
- "navbar.click": "Cliquez ici",
- "navbar.delete": "Supprimer le canal...",
- "navbar.leave": "Quitter le canal",
- "navbar.manageMembers": "Gérer les membres",
- "navbar.noHeader": "Aucun entête de canal encore défini.{newline}{link} pour en ajouter un.",
- "navbar.preferences": "Préférences de notifications",
- "navbar.rename": "Renommer le canal...",
- "navbar.setHeader": "Définir l'entête du canal...",
- "navbar.setPurpose": "Définir la description du canal...",
- "navbar.toggle1": "Basculer la barre latérale",
- "navbar.toggle2": "Basculer la barre latérale",
- "navbar.viewInfo": "Afficher Informations",
- "navbar.viewPinnedPosts": "Afficher les messages épinglés",
- "navbar_dropdown.about": "À propos",
- "navbar_dropdown.accountSettings": "Paramètres du compte",
- "navbar_dropdown.addMemberToTeam": "Ajouter des membres",
- "navbar_dropdown.console": "Console système",
- "navbar_dropdown.create": "Créer une équipe",
- "navbar_dropdown.emoji": "Émoticônes persos",
- "navbar_dropdown.help": "Aide",
- "navbar_dropdown.integrations": "Intégrations",
- "navbar_dropdown.inviteMember": "Envoyer une invitation",
- "navbar_dropdown.join": "Rejoindre une équipe",
- "navbar_dropdown.keyboardShortcuts": "Raccourcis clavier",
- "navbar_dropdown.leave": "Quitter l'équipe",
- "navbar_dropdown.logout": "Se déconnecter",
- "navbar_dropdown.manageMembers": "Gérer les membres",
- "navbar_dropdown.nativeApps": "Télécharger les apps",
- "navbar_dropdown.report": "Signaler un problème",
- "navbar_dropdown.switchTeam": "Basculer sur {team}",
- "navbar_dropdown.switchTo": "Basculer vers ",
- "navbar_dropdown.teamLink": "Créer une invitation",
- "navbar_dropdown.teamSettings": "Paramètres d'équipe",
- "navbar_dropdown.viewMembers": "Voir les membres",
- "notification.dm": "Message privé",
- "notify_all.confirm": "Confirmer",
- "notify_all.question": "En utilisant @all ou @channel que vous êtes sur le point d'envoyer des notifications à {totalMembers} personnes. Voulez-vous vraiment continuer ?",
- "notify_all.title.confirm": "Confirmez l'envoi de notifications au canal entier",
- "passwordRequirements": "Pré-requis du mot de passe :",
- "password_form.change": "Modifier mon mot de passe",
- "password_form.click": "Veuillez cliquer ici pour vous connecter.",
- "password_form.enter": "Veuillez spécifier un nouveau mot de passe pour votre compte {siteName}.",
- "password_form.error": "Veuillez spécifier au moins {chars} caractères.",
- "password_form.pwd": "Mot de passe",
- "password_form.title": "Réinitialisation du mot de passe",
- "password_form.update": "Votre mot de passe a été correctement mis à jour.",
- "password_send.checkInbox": "Veuillez vérifier votre boîte de réception.",
- "password_send.description": "Pour réinitialiser votre mot de passe, veuillez spécifier l'adresse e-mail que vous avez utilisée pour vous inscrire",
- "password_send.email": "Adresse e-mail",
- "password_send.error": "Veuillez spécifier une adresse e-mail valide.",
- "password_send.link": "Si le compte existe, une demande de réinitialisation du mot de passe sera envoyée à l'adresse e-mail : {email}
",
- "password_send.reset": "Réinitialiser mon mot de passe",
- "password_send.title": "Réinitialisation du mot de passe",
- "pdf_preview.max_pages": "Télécharger pour lire plus de pages",
- "pending_post_actions.cancel": "Annuler",
- "pending_post_actions.retry": "Réessayer",
- "permalink.error.access": "Ce lien correspond à un message supprimé ou appartenant à un canal auquel vous n'avez pas accès.",
- "permalink.error.title": "Message introuvable",
- "post_attachment.collapse": "Afficher moins...",
- "post_attachment.more": "Afficher plus...",
- "post_body.commentedOn": "A commenté le message de {name} : ",
- "post_body.deleted": "(message supprimé)",
- "post_body.plusMore": " plus {count, number} other {count, plural, one {fichier} other {fichiers}}",
- "post_delete.notPosted": "Le commentaire n'a pu être envoyé",
- "post_delete.okay": "Ok",
- "post_delete.someone": "Quelqu'un a supprimé le message sur lequel vous tentiez d'envoyer un commentaire.",
- "post_focus_view.beginning": "Début des archives du canal",
- "post_info.del": "Supprimer",
- "post_info.edit": "Éditer",
- "post_info.message.visible": "(Visible uniquement par vous)",
- "post_info.message.visible.compact": " (Visible uniquement par vous)",
- "post_info.mobile.flag": "Marquer avec un indicateur",
- "post_info.mobile.unflag": "Supprimer l'indicateur",
- "post_info.permalink": "Lien permanent",
- "post_info.pin": "Épingler au canal",
- "post_info.pinned": "Epinglé",
- "post_info.reply": "Répondre",
- "post_info.system": "Système",
- "post_info.unpin": "Désépingler du canal",
- "post_message_view.edited": "(édité)",
- "posts_view.loadMore": "Charger plus de messages",
- "posts_view.loadingMore": "Chargement de plus de messages...",
- "posts_view.newMsg": "Nouveaux messages",
- "posts_view.newMsgBelow": "{count, plural, one {Nouveau message} other {Nouveaux messages}}",
- "quick_switch_modal.channels": "Canaux",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Commencez à taper, puis utilisez la touche TAB pour basculer entre les canaux/équipes, ↑↓ pour parcourir, ↵ pour sélectionner et la touche ESC pour annuler.",
- "quick_switch_modal.help_mobile": "Tapez pour trouver un canal.",
- "quick_switch_modal.help_no_team": "Veuillez spécifier le nom du canal à rechercher. Utilisez ↑↓ pour parcourir, ↵ pour sélectionner, ECHAP pour ignorer.",
- "quick_switch_modal.teams": "Équipes",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(cliquez pour ajouter)",
- "reaction.clickToRemove": "(cliquez pour supprimer)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {utilisateur} other {utilisateurs}}",
- "reaction.reacted": "{users} {reactionVerb} avec {emoji}",
- "reaction.reactionVerb.user": "a réagi",
- "reaction.reactionVerb.users": "a réagi",
- "reaction.reactionVerb.you": "a réagi",
- "reaction.reactionVerb.youAndUsers": "a réagi",
- "reaction.usersAndOthersReacted": "{users} et {otherUsers, number} {otherUsers, plural, one {autre utilisateur} other {autres utilisateurs}}",
- "reaction.usersReacted": "{users} et {lastUser}",
- "reaction.you": "Vous",
- "removed_channel.channelName": "le canal",
- "removed_channel.from": "Retiré de ",
- "removed_channel.okay": "Ok",
- "removed_channel.remover": "{remover} vous a retiré de {channel}",
- "removed_channel.someone": "Quelqu'un",
- "rename_channel.cancel": "Annuler",
- "rename_channel.defaultError": " - Ne peut être changée pour le canal par défaut",
- "rename_channel.displayName": "Nom d'affichage",
- "rename_channel.displayNameHolder": "Veuillez spécifier le nom d'affichage",
- "rename_channel.handleHolder": "caractères alphanumériques minuscules",
- "rename_channel.lowercase": "Doit être en caractères alphanumériques minuscules",
- "rename_channel.maxLength": "Ce champ doit être inférieur à {maxLength, number} caractères",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "Ce champ est obligatoire",
- "rename_channel.save": "Enregistrer",
- "rename_channel.title": "Renommer le canal",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Commentaire",
- "rhs_comment.del": "Supprimer",
- "rhs_comment.edit": "Éditer",
- "rhs_comment.mobile.flag": "Ajouter un indicateur",
- "rhs_comment.mobile.unflag": "Supprimer l'indicateur",
- "rhs_comment.permalink": "Lien permanent",
- "rhs_header.backToCallTooltip": "Retour à l'appel",
- "rhs_header.backToFlaggedTooltip": "Retourner aux messages marqués d'un indicateur",
- "rhs_header.backToPinnedTooltip": "Retourner aux messages épinglés",
- "rhs_header.backToResultsTooltip": "Retour aux résultats",
- "rhs_header.closeSidebarTooltip": "Fermer la barre latérale",
- "rhs_header.closeTooltip": "Fermer la barre latérale",
- "rhs_header.details": "Détails du message",
- "rhs_header.expandSidebarTooltip": "Étendre la barre latérale",
- "rhs_header.expandTooltip": "Réduire la barre latérale",
- "rhs_header.shrinkSidebarTooltip": "Réduire la barre latérale",
- "rhs_root.del": "Supprimer",
- "rhs_root.direct": "Messages privés",
- "rhs_root.edit": "Éditer",
- "rhs_root.mobile.flag": "Ajouter un indicateur",
- "rhs_root.mobile.unflag": "Supprimer l'indicateur",
- "rhs_root.permalink": "Lien permanent",
- "rhs_root.pin": "Épingler au canal",
- "rhs_root.unpin": "Désépingler du canal",
- "search_bar.search": "Rechercher",
- "search_bar.usage": "
Options de recherche
Utilisez \"des guillemets\" pour rechercher des phrases
Utilisez from: pour rechercher des messages d'utilisateurs spécifiques et in: pour rechercher des messages sur des canaux spécifiques
",
- "search_header.results": "Résultats de la recherche",
- "search_header.title2": "Mentions récentes",
- "search_header.title3": "Messages marqués d'un indicateur",
- "search_header.title4": "Messages épinglés dans {channelDisplayName}",
- "search_item.direct": "Message privé (avec {username})",
- "search_item.jump": "Aller à",
- "search_results.because": "
Pour rechercher une partie d'un mot (ex. rechercher \"réa\" en souhaitant \"réagir\" ou \"réaction\"), ajoutez un * au terme recherché.
En raison du nombre de résultats, les recherches sur deux lettres ou sur les mots communs tels que \"ce\", \"un\" et \"est\" n'apparaîtront pas dans les résultats de la recherche.
Utilisez \"des guillemets\" pour rechercher des phrases
Utilisez from: pour rechercher des messages d'utilisateurs spécifiques et in: pour rechercher des messages sur des canaux spécifiques
",
- "search_results.usageFlag1": "Vous n'avez pas encore de messages marqués d'un indicateur.",
- "search_results.usageFlag2": "Vous pouvez marquer un message ou un commentaire en cliquant sur l'icône ",
- "search_results.usageFlag3": " à côté de l'horodatage.",
- "search_results.usageFlag4": "Marquer un message est un bon moyen d'assurer le suivi. Marquer un message est personnel et ne peut être vu par les autres utilisateurs.",
- "search_results.usagePin1": "Il n'y a pas encore de messages épinglés.",
- "search_results.usagePin2": "Tous les membres de ce canal peuvent épingler les messages qu'ils jugent importants ou utiles.",
- "search_results.usagePin3": "Les messages épinglés sont visibles de tous les membres du canal.",
- "search_results.usagePin4": "Pour épingler un message : Allez dans le message que vous souhaitez épingler et cliquez sur [...] > \"Épingler au canal\".",
- "setting_item_max.cancel": "Annuler",
- "setting_item_max.save": "Enregistrer",
- "setting_item_min.edit": "Modifier",
- "setting_picture.cancel": "Annuler",
- "setting_picture.help": "Envoyez une photo de profil au format BMP, JPG, JPEG ou PNG, d'au moins {width} pixels de large et {height} pixels de haut.",
- "setting_picture.save": "Enregistrer",
- "setting_picture.select": "Sélectionner",
- "setting_upload.import": "Importer",
- "setting_upload.noFile": "Aucun fichier sélectionné.",
- "setting_upload.select": "Parcourir",
- "shortcuts.browser.channel_next": "Forward in history:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Forward in history:\t⌘|]",
- "shortcuts.browser.channel_prev": "Back in history:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Back in history:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom out:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom out:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom in:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom in:\t⌘|+",
- "shortcuts.browser.header": "Built-in Browser Commands",
- "shortcuts.browser.highlight_next": "Highlight text to the next line:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Highlight text to the previous line:\tShift|Up",
- "shortcuts.browser.input.header": "Works inside an input field",
- "shortcuts.browser.newline": "Create a new line:\tShift|Enter",
- "shortcuts.files.header": "Fichiers",
- "shortcuts.files.upload": "Upload files:\tCtrl|U",
- "shortcuts.files.upload.mac": "Upload files:\t⌘|U",
- "shortcuts.header": "Raccourcis clavier",
- "shortcuts.info": "Begin a message with / for a list of all the commands at your disposal.",
- "shortcuts.msgs.comp.channel": "Channel:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Auto-complétion",
- "shortcuts.msgs.comp.username": "Username:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Edit last message in channel:\tUp",
- "shortcuts.msgs.header": "Message",
- "shortcuts.msgs.input.header": "Works inside an empty input field",
- "shortcuts.msgs.mark_as_read": "Mark current channel as read:\tEsc",
- "shortcuts.msgs.reply": "Reply to last message in channel:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Reprint next message:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Reprint next message:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Reprint previous message:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Reprint previous message:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Direct messages menu:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Direct messages menu:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigation",
- "shortcuts.nav.next": "Next channel:\tAlt|Down",
- "shortcuts.nav.next.mac": "Next channel:\t⌥|Down",
- "shortcuts.nav.prev": "Previous channel:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Previous channel:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Recent mentions:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Recent mentions:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Account settings:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Account settings:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Quick channel switcher:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Quick channel switcher:\t⌘|K",
- "shortcuts.nav.unread_next": "Next unread channel:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Next unread channel:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Previous unread channel:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Previous unread channel:\t⌥|Shift|Up",
- "sidebar.channels": "CANAUX PUBLICS",
- "sidebar.createChannel": "Créer un nouveau canal public",
- "sidebar.createGroup": "Créer un nouveau canal privé",
- "sidebar.direct": "MESSAGES PRIVÉS",
- "sidebar.favorite": "CANAUX FAVORIS",
- "sidebar.leave": "Quitter le canal",
- "sidebar.mainMenu": "Main Menu",
- "sidebar.more": "Plus…",
- "sidebar.moreElips": "Plus...",
- "sidebar.otherMembers": "En dehors de l’équipe",
- "sidebar.pg": "CANAUX PRIVÉS",
- "sidebar.removeList": "Retirer de la liste",
- "sidebar.tutorialScreen1": "
Canaux
Les canaux organisent les conversations en sujets distincts. Ils sont ouverts à tous les utilisateurs de votre équipe. Pour envoyer des messages privés, utilisez Messages privés pour une personne ou des Canaux privés pour plusieurs personnes.
",
- "sidebar.tutorialScreen2": "
Canaux \"{townsquare}\" et \"{offtopic}\"
Voici deux canaux publics pour commencer :
{townsquare} est l'endroit idéal pour communiquer avec toute l'équipe. Tous les membres de votre équipe sont membres de ce canal.
{offtopic} (est l'endroit pour se détendre et parler d'autre chose que du travail. Vous et votre équipe décidez des autres canaux à créer.
",
- "sidebar.tutorialScreen3": "
Créer et rejoindre des canaux
Cliquez sur \"Plus...\" pour créer un nouveau canal ou rejoindre un canal existant.
Vous pouvez aussi créer un nouveau canal ou un groupe privé en cliquant sur le symbole \"+\" à côté du nom du canal public ou privé.
",
- "sidebar.unreads": "Plus de messages non-lus",
- "sidebar_header.tutorial": "
Menu principal
Le Menu Principal est l'endroit où vous pouvez inviter des nouveaux membres, accéder aux paramètres de votre compte et configurer les couleurs de votre thème.
Les administrateurs d'équipe peuvent aussi accéder aux paramètres de l'équipe.
Les administrateurs système trouveront la console système pour administrer tout le site.
",
- "sidebar_right_menu.accountSettings": "Paramètres du compte",
- "sidebar_right_menu.addMemberToTeam": "Ajouter des membres",
- "sidebar_right_menu.console": "Console système",
- "sidebar_right_menu.flagged": "Messages marqués d'un indicateur",
- "sidebar_right_menu.help": "Aide",
- "sidebar_right_menu.inviteNew": "E-mail d'invitation",
- "sidebar_right_menu.logout": "Se déconnecter",
- "sidebar_right_menu.manageMembers": "Gérer les membres",
- "sidebar_right_menu.nativeApps": "Télécharger les apps",
- "sidebar_right_menu.recentMentions": "Mentions récentes",
- "sidebar_right_menu.report": "Signaler un problème",
- "sidebar_right_menu.teamLink": "Créer un lien d'invitation d'équipe",
- "sidebar_right_menu.teamSettings": "Paramètres d'équipe",
- "sidebar_right_menu.viewMembers": "Voir les membres",
- "signup.email": "Adresse e-mail et mot de passe",
- "signup.gitlab": "Authentification unifiée avec GitLab",
- "signup.google": "Compte Google",
- "signup.ldap": "Informations d'authentification AD/LDAP",
- "signup.office365": "Office 365",
- "signup.title": "Créer un compte avec :",
- "signup_team.createTeam": "Ou créez une équipe",
- "signup_team.disabled": "Aucune méthode de création d'utilisateur n'est disponible. Veuillez contacter votre administrateur système pour obtenir un accès.",
- "signup_team.join_open": "Les équipes que vous pouvez rejoindre : ",
- "signup_team.noTeams": "Il n'y a aucune équipe dans l'annuaire, et la création d'équipe n'est pas autorisée.",
- "signup_team.no_open_teams": "Vous ne pouvez rejoindre aucune équipe. Veuillez demander une invitation à votre administrateur.",
- "signup_team.no_open_teams_canCreate": "Aucune équipe disponible. Veuillez créez une nouvelle équipe ou demandez une invitation à votre administrateur.",
- "signup_team.no_teams": "Aucune équipe n'est créée. Veuillez contacter votre administrateur.",
- "signup_team.no_teams_canCreate": "Aucune équipe n'a été créée. Vous pouvez en créer une en cliquant sur \"Créer une équipe\".",
- "signup_team.none": "Aucune méthode de création d'utilisateur n'est disponible. Veuillez contacter votre administrateur système pour obtenir un accès.",
- "signup_team_complete.completed": "Vous avez déjà utilisé cette invitation pour vous inscrire, ou bien l'invitation a expiré.",
- "signup_team_confirm.checkEmail": "Veuillez vérifier vos e-mails : {email} Votre e-mail contient un lien pour configurer votre équipe",
- "signup_team_confirm.title": "Inscription terminée",
- "signup_team_system_console": "Aller dans la console système",
- "signup_user_completed.choosePwd": "Spécifiez votre mot de passe",
- "signup_user_completed.chooseUser": "Spécifiez votre nom d'utilisateur",
- "signup_user_completed.create": "Créer un compte",
- "signup_user_completed.emailHelp": "Une adresse e-mail valide est obligatoire pour pouvoir s'inscrire",
- "signup_user_completed.emailIs": "Votre adresse e-mail est {email}. Vous utiliserez cette adresse pour vous connecter à {siteName}.",
- "signup_user_completed.expired": "Vous avez déjà utilisé cette invitation pour vous inscrire, ou bien l'invitation a expiré.",
- "signup_user_completed.gitlab": "avec GitLab",
- "signup_user_completed.google": "avec Google",
- "signup_user_completed.haveAccount": "Vous avez déjà un compte?",
- "signup_user_completed.invalid_invite": "Le lien d'invitation était invalide. Aller voir avec votre administrateur pour recevoir une invitation ",
- "signup_user_completed.lets": "Créons votre compte",
- "signup_user_completed.no_open_server": "Ce serveur ne permet pas d'inscriptions ouvertes. Aller voir avec votre Administrateur pour recevoir une invitation",
- "signup_user_completed.none": "Aucune méthode de création d'utilisateur n'est disponible. Veuillez contacter votre administrateur système pour obtenir un accès.",
- "signup_user_completed.office365": "avec Office 365",
- "signup_user_completed.onSite": "sur {siteName}",
- "signup_user_completed.or": "ou",
- "signup_user_completed.passwordLength": "Veuillez spécifier entre {min} et {max} caractères",
- "signup_user_completed.required": "Champ obligatoire",
- "signup_user_completed.reserved": "Ce nom d'utilisateur est réservé, veuillez en choisir un autre.",
- "signup_user_completed.signIn": "Veuillez cliquer ici pour vous connecter.",
- "signup_user_completed.userHelp": "Les noms d'utilisateur doivent commencer par une lettre et contenir entre {min} et {max} caractères composés de chiffres, lettres minuscules et des symboles '.', '-' et '_'",
- "signup_user_completed.usernameLength": "Les noms d'utilisateur doivent commencer par une lettre et contenir entre {min} et {max} caractères composés de chiffres, lettres minuscules et des symboles '.', '-' et '_'",
- "signup_user_completed.validEmail": "Veuillez spécifier une adresse e-mail valide",
- "signup_user_completed.welcome": "Bienvenue sur :",
- "signup_user_completed.whatis": "Quelle est votre adresse e-mail ?",
- "signup_user_completed.withLdap": "Avec vos informations d’identification AD/LDAP",
- "sso_signup.find": "Trouver mes équipes",
- "sso_signup.gitlab": "Créer une équipe avec un compte GitLab",
- "sso_signup.google": "Créer une équipe avec un compte Google Apps",
- "sso_signup.length_error": "Le nom doit contenir de 3 à 15 caractères",
- "sso_signup.teamName": "Entrez le nom de votre nouvelle équipe",
- "sso_signup.team_error": "Veuillez spécifier le nom de votre équipe",
- "status_dropdown.set_away": "Absent",
- "status_dropdown.set_offline": "Hors ligne",
- "status_dropdown.set_online": "En ligne",
- "suggestion.loading": "Chargement…",
- "suggestion.mention.all": "ATTENTION : Ceci mentionne tout le monde dans le canal",
- "suggestion.mention.channel": "Notifier tout le monde dans le canal",
- "suggestion.mention.channels": "Mes canaux",
- "suggestion.mention.here": "Notifier toutes les personnes connectées dans ce canal",
- "suggestion.mention.in_channel": "Canaux",
- "suggestion.mention.members": "Membres du canal",
- "suggestion.mention.morechannels": "Autres canaux",
- "suggestion.mention.nonmembers": "Pas dans le canal",
- "suggestion.mention.not_in_channel": "Autres canaux",
- "suggestion.mention.special": "Mentions spéciales",
- "suggestion.search.private": "Canaux privés",
- "suggestion.search.public": "Canaux publics",
- "system_users_list.count": "{count, number} {count, plural, one {utilisateur} other {utilisateurs}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {utilisateur} other {utilisateurs}} d'un total de {total, number}",
- "system_users_list.countSearch": "{count, number} {count, plural, one {utilisateur} other {utilisateurs}} d'un total de {total, number}",
- "team_export_tab.download": "Télécharger",
- "team_export_tab.export": "Exporter",
- "team_export_tab.exportTeam": "Exporter votre équipe",
- "team_export_tab.exporting": " Export...",
- "team_export_tab.ready": " Prêt pour ",
- "team_export_tab.unable": " Impossible d'exporter : {error}",
- "team_import_tab.failure": " Échec de l'import ",
- "team_import_tab.import": "Importer",
- "team_import_tab.importHelpDocsLink": "documentation",
- "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
- "team_import_tab.importHelpExporterLink": "Slack Advanced Exporter",
- "team_import_tab.importHelpLine1": "L'outil d'importation Slack vers Mattermost supporte désormais l'importation des messages des canaux publics d'équipes Slack.",
- "team_import_tab.importHelpLine2": "Pour importer une équipe de Slack, allez dans {exportInstructions}. Rendez-vous sur {uploadDocsLink} pour en savoir davantage.",
- "team_import_tab.importHelpLine3": "Pour importer des messages avec fichiers joints, voir {slackAdvancedExporterLink} pour plus de détails.",
- "team_import_tab.importSlack": "Importer depuis Slack (Beta)",
- "team_import_tab.importing": " Import...",
- "team_import_tab.successful": " Import réussi : ",
- "team_import_tab.summary": "Afficher le récapitulatif",
- "team_member_modal.close": "Fermer",
- "team_member_modal.members": "Membres de {team}",
- "team_members_dropdown.confirmDemoteDescription": "Si vous vous retirez le rôle d'administrateur et qu'il n'y a aucun autre administrateur désigné, vous devrez en désigner un en accédant au serveur Mattermost via un terminal et en exécutant la commande suivante.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Confirmez le retrait de votre rôle d'administrateur",
- "team_members_dropdown.confirmDemotion": "Confirmer le retrait",
- "team_members_dropdown.confirmDemotionCmd": "plate-forme de rôles system_admin {username}",
- "team_members_dropdown.inactive": "Inactif",
- "team_members_dropdown.leave_team": "Exclure de l'équipe",
- "team_members_dropdown.makeActive": "Activer",
- "team_members_dropdown.makeAdmin": "Rendre administrateur de l'équipe",
- "team_members_dropdown.makeInactive": "Désactiver",
- "team_members_dropdown.makeMember": "Assigner le rôle Membre",
- "team_members_dropdown.member": "Membre",
- "team_members_dropdown.systemAdmin": "Administrateur système",
- "team_members_dropdown.teamAdmin": "Administrateur d'équipe",
- "team_settings_modal.exportTab": "Exporter",
- "team_settings_modal.generalTab": "Général",
- "team_settings_modal.importTab": "Importer",
- "team_settings_modal.title": "Paramètres d'équipe",
- "team_sidebar.join": "Les autres équipes que vous pouvez rejoindre.",
- "textbox.bold": "**gras**",
- "textbox.edit": "Modifier le message",
- "textbox.help": "Aide",
- "textbox.inlinecode": "`code en-ligne`",
- "textbox.italic": "_italique_",
- "textbox.preformatted": "```pré-formaté```",
- "textbox.preview": "Aperçu",
- "textbox.quote": ">citation",
- "textbox.strike": "barré",
- "tutorial_intro.allSet": "C'est parti !",
- "tutorial_intro.end": "Veuillez cliquer sur \"Suivant\" pour entrer dans {channel}. Il s'agit du premier canal que les membres voient lorsqu'ils s'inscrivent. Utilisez‑le pour poster des messages que tout le monde devrait connaître.",
- "tutorial_intro.invite": "Inviter des membres",
- "tutorial_intro.mobileApps": "Installez les applications pour {link} pour un accès facile et ainsi recevoir des notifications même lorsque vous êtes en déplacement.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS et Android",
- "tutorial_intro.next": "Suivant",
- "tutorial_intro.screenOne": "
Bienvenue dans :
Mattermost
Toute la communication de votre équipe à un seul endroit, consultable instantanément et disponible partout.
Gardez votre équipe soudée et aider-la à accomplir les tâches qui importent vraiment.
",
- "tutorial_intro.screenTwo": "
Comment fonctionne Mattermost :
Vous pouvez échanger dans des canaux publics, des canaux privés ou des messages privés.
Tout est archivé et peut être recherché depuis n'importe quel navigateur web de bureau, tablette ou mobile.
",
- "tutorial_intro.skip": "Passer le tutoriel",
- "tutorial_intro.support": "Vous avez besoin d'aide ? Envoyez-nous un e‑mail à : ",
- "tutorial_intro.teamInvite": "Inviter des collègues",
- "tutorial_intro.whenReady": " quand vous serez prêt.",
- "tutorial_tip.next": "Suivant",
- "tutorial_tip.ok": "D'accord",
- "tutorial_tip.out": "Ne plus voir ces astuces.",
- "tutorial_tip.seen": "Déjà vu ? ",
- "update_command.cancel": "Annuler",
- "update_command.confirm": "Modifier la commande Slash",
- "update_command.question": "Vos modifications peuvent casser la commande Slash existante. Voulez-vous vraiment la mettre à jour ?",
- "update_command.update": "Mettre à jour",
- "update_incoming_webhook.update": "Mettre à jour",
- "update_outgoing_webhook.confirm": "Éditer les webhooks sortants",
- "update_outgoing_webhook.question": "Vos modifications peuvent casser le webhook sortant existant. Voulez-vous vraiment le mettre à jour ?",
- "update_outgoing_webhook.update": "Mettre à jour",
- "upload_overlay.info": "Faites glisser un fichier pour le télécharger.",
- "user.settings.advance.embed_preview": "Pour le premier lien web dans un message, afficher un aperçu du contenu du site sous le message, si disponible.",
- "user.settings.advance.embed_toggle": "Voir un aperçu pour tous les messages inclus",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {fonctionnalité activée} other {fonctionnalités activées}}",
- "user.settings.advance.formattingDesc": "Lorsqu'activé, les messages sont formatés pour créer des liens, montrer les émoticônes, styliser le texte et ajouter des sauts de ligne. Par défaut, ce paramètre est activé. La modification de ce paramètre nécessite le rafraîchissement de la page.",
- "user.settings.advance.formattingTitle": "Activer le formatage des messages",
- "user.settings.advance.joinLeaveDesc": "Lorsqu'activé, les messages systèmes indiquant qu'un utilisateur s'est connecté ou a quitté un canal sont visibles. Lorsque désactivé, ces messages sont masqués. Un message est toutefois toujours affiché lorsque vous êtes ajouté à un canal, de façon à ce que vous en soyez quand même informé.",
- "user.settings.advance.joinLeaveTitle": "Active les messages indiquant qu'un utilisateur a rejoint/quitté le canal",
- "user.settings.advance.markdown_preview": "Voir l'option d'aperçu du markdown dans la zone de saisie de message",
- "user.settings.advance.off": "Désactivé",
- "user.settings.advance.on": "Activé",
- "user.settings.advance.preReleaseDesc": "Testez des fonctionnalités en avant-première. Vous devrez peut-être rafraîchir la page pour que ce paramètre soit activé.",
- "user.settings.advance.preReleaseTitle": "Activer les fonctionnalités expérimentales",
- "user.settings.advance.sendDesc": "Lorsqu'activé, ENTREE insère une nouvelle ligne et CTRL+ENTREE envoie le message.",
- "user.settings.advance.sendTitle": "Envoi des messages avec CTRL+ENTREE",
- "user.settings.advance.slashCmd_autocmp": "Autoriser les applications externes à proposer l'auto-complétion des commandes slash",
- "user.settings.advance.title": "Paramètres avancés",
- "user.settings.advance.webrtc_preview": "Activer la possibilité de passer et de recevoir des appels WebRTC en tête-à-tête",
- "user.settings.custom_theme.awayIndicator": "Indicateur \"absent\"",
- "user.settings.custom_theme.buttonBg": "Arrière-plan du bouton",
- "user.settings.custom_theme.buttonColor": "Texte de bouton",
- "user.settings.custom_theme.centerChannelBg": "Arrière-plan de l'espace central",
- "user.settings.custom_theme.centerChannelColor": "Text du canal central",
- "user.settings.custom_theme.centerChannelTitle": "Styles de l'espace central",
- "user.settings.custom_theme.codeTheme": "Code du thème",
- "user.settings.custom_theme.copyPaste": "Copiez/Collez pour partager les couleurs du thème :",
- "user.settings.custom_theme.linkButtonTitle": "Styles des boutons et liens",
- "user.settings.custom_theme.linkColor": "Couleur de lien",
- "user.settings.custom_theme.mentionBj": "Arrière-plan de la bulle de mention",
- "user.settings.custom_theme.mentionColor": "Texte bulle de mention",
- "user.settings.custom_theme.mentionHighlightBg": "Arrière-plan de la mise en surbrillance lors d'une mention",
- "user.settings.custom_theme.mentionHighlightLink": "Lien de mise en surbrillance lors d'une mention",
- "user.settings.custom_theme.newMessageSeparator": "Séparateur de nouveau message",
- "user.settings.custom_theme.onlineIndicator": "Indicateur \"connecté\"",
- "user.settings.custom_theme.sidebarBg": "Arrière-plan de la barre latérale",
- "user.settings.custom_theme.sidebarHeaderBg": "Arrière-plan de l'entête de la barre latérale",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Texte d'entête de la barre latérale",
- "user.settings.custom_theme.sidebarText": "Texte de barre latérale",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Contour de texte de barre latéral actif",
- "user.settings.custom_theme.sidebarTextActiveColor": "Text de barre latérale actif",
- "user.settings.custom_theme.sidebarTextHoverBg": "Arrière-plan lors du survol de la barre latérale",
- "user.settings.custom_theme.sidebarTitle": "Style des barres latérales",
- "user.settings.custom_theme.sidebarUnreadText": "Texte non-lu de barre latérale",
- "user.settings.display.channelDisplayTitle": "Mode d’affichage du canal",
- "user.settings.display.channeldisplaymode": "Veuillez spécifier la largeur de l'espace central.",
- "user.settings.display.clockDisplay": "Affichage de l'horloge",
- "user.settings.display.collapseDesc": "Définit si les aperçus de liens d'images s'affichent étendus ou réduits par défaut. Ce paramètre peut également être contrôlé à l'aide des commandes slash /expand et /collapse.",
- "user.settings.display.collapseDisplay": "Apparence par défaut des aperçus de liens d'images",
- "user.settings.display.collapseOff": "Réduit",
- "user.settings.display.collapseOn": "Etendu",
- "user.settings.display.fixedWidthCentered": "Largeur fixe, centré",
- "user.settings.display.fullScreen": "Largeur pleine",
- "user.settings.display.language": "Langue",
- "user.settings.display.messageDisplayClean": "Standard",
- "user.settings.display.messageDisplayCleanDes": "Facile à parcourir et à lire.",
- "user.settings.display.messageDisplayCompact": "Compact",
- "user.settings.display.messageDisplayCompactDes": "Afficher autant de messages que possible à l'écran.",
- "user.settings.display.messageDisplayDescription": "Sélectionner comment les messages d'un canal doivent être affichés.",
- "user.settings.display.messageDisplayTitle": "Affichage des messages",
- "user.settings.display.militaryClock": "Horloge 24 heures (ex. : 16:00)",
- "user.settings.display.nameOptsDesc": "Choisissez comment afficher les autres utilisateurs dans les messages et les listes de messages privés.",
- "user.settings.display.normalClock": "Horloge 12 heures (ex. : 4:00 PM)",
- "user.settings.display.preferTime": "Choisissez l'affichage des heures dans l'application.",
- "user.settings.display.theme.applyToAllTeams": "Appliquer le nouveau thème à toutes mes équipes",
- "user.settings.display.theme.customTheme": "Thème personnalisé",
- "user.settings.display.theme.describe": "Dépliez pour gérer votre thème",
- "user.settings.display.theme.import": "Importer des couleurs de thème depuis Slack",
- "user.settings.display.theme.otherThemes": "Voir d’autre thèmes",
- "user.settings.display.theme.themeColors": "Couleurs de thème",
- "user.settings.display.theme.title": "Thème",
- "user.settings.display.title": "Paramètres d'affichage",
- "user.settings.general.checkEmail": "Vérifiez la boîte de réception de {email} pour valider votre adresse e-mail.",
- "user.settings.general.checkEmailNoAddress": "Vérifiez votre boîte de réception pour valider votre nouvelle adresse e-mail.",
- "user.settings.general.close": "Quitter",
- "user.settings.general.confirmEmail": "E-mail de confirmation",
- "user.settings.general.currentEmail": "Adresse e-mail actuelle",
- "user.settings.general.email": "E-mail",
- "user.settings.general.emailGitlabCantUpdate": "La connexion s'effectue par Gitlab. L'adresse e-mail ne peut pas être mise à jour. L'adresse e-mail utilisée pour les notifications par e-mail est {email}.",
- "user.settings.general.emailGoogleCantUpdate": "La connexion s'effectue par Gitlab. L'adresse e-mail ne peut pas être mise à jour. L'adresse e-mail utilisée pour les notifications par e-mail est {email} .",
- "user.settings.general.emailHelp1": "L'adresse e-mail est utilisée pour la connexion, les notifications et la réinitialisation du mot de passe. Votre adresse e-mail doit être validée si vous la changez.",
- "user.settings.general.emailHelp2": "L'envoi d'e-mails a été désactivé par votre administrateur système. Aucun e-mail de notification ne peut être envoyé.",
- "user.settings.general.emailHelp3": "L'adresse e-mail est utilisée pour la connexion, les notifications et la réinitialisation du mot de passe.",
- "user.settings.general.emailHelp4": "Un e-mail de vérification a été envoyé à {email}.",
- "user.settings.general.emailLdapCantUpdate": "La connexion s'effectue par AD/LDAP. L'adresse e-mail ne peut pas être mise à jour. L'adresse e-mail utilisée pour les notifications par e-mail est {email}.",
- "user.settings.general.emailMatch": "Les nouvelles adresses e-mail que vous avez spécifiées ne correspondent pas.",
- "user.settings.general.emailOffice365CantUpdate": "La connexion s'effectue par Office 365. L'adresse e-mail ne peut pas être mise à jour. L'adresse e-mail utilisée pour les notifications par e-mail est {email} .",
- "user.settings.general.emailSamlCantUpdate": "La connexion s'effectue par le biais de SAML. L'adresse e-mail ne peut pas être mise à jour. L'adresse e-mail utilisée pour les notifications par e-mail est {email}.",
- "user.settings.general.emailUnchanged": "Votre nouvelle adresse e-mail est la même que l'ancienne.",
- "user.settings.general.emptyName": "Veuillez cliquer sur ‘Modifier’ pour spécifier votre nom complet",
- "user.settings.general.emptyNickname": "Veuillez cliquer sur ‘Modifier’ pour ajouter un pseudo",
- "user.settings.general.emptyPosition": "Veuillez cliquer sur 'Modifier' pour ajouter votre titre professionnel / fonction",
- "user.settings.general.field_handled_externally": "Ce champ est géré par le service d'authentification. Si vous souhaitez le modifier, vous devez le faire par le biais de votre service d'authentification.",
- "user.settings.general.firstName": "Prénom",
- "user.settings.general.fullName": "Nom complet",
- "user.settings.general.imageTooLarge": "Impossible de mettre à jour votre photo de profil. Le fichier est trop grand.",
- "user.settings.general.imageUpdated": "Image mise à jour le {date}",
- "user.settings.general.lastName": "Nom",
- "user.settings.general.loginGitlab": "Connexion avec GitLab ({email})",
- "user.settings.general.loginGoogle": "Connexion avec Google ({email})",
- "user.settings.general.loginLdap": "Connexion avec AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Dernière connexion avec Office 365 ({email})",
- "user.settings.general.loginSaml": "Connexion avec SAML ({email})",
- "user.settings.general.mobile.emptyName": "Veuillez cliquer pour spécifier votre nom complet",
- "user.settings.general.mobile.emptyNickname": "Veuillez cliquer pour ajouter un pseudo",
- "user.settings.general.mobile.emptyPosition": "Veuillez cliquer pour ajouter votre titre professionnel / fonction",
- "user.settings.general.mobile.uploadImage": "Veuillez cliquer pour envoyer une image",
- "user.settings.general.newAddress": "Nouvelle adresse : {email} Vérifiez vos e-mails pour valider votre adresse e-mail.",
- "user.settings.general.newEmail": "Nouvelle adresse e-mail",
- "user.settings.general.nickname": "Pseudo",
- "user.settings.general.nicknameExtra": "Vous pouvez utiliser un pseudo à la place de vos prénom, nom et nom d'utilisateur. Ceci est pratique lorsque deux personnes de votre équipe ont des noms similaires phonétiquement.",
- "user.settings.general.notificationsExtra": "Par défaut, vous recevez une notification lorsqu'un utilisateur cite votre prénom. Rendez vous dans les paramètres de {notify} pour modifier ce paramètre.",
- "user.settings.general.notificationsLink": "Notifications",
- "user.settings.general.position": "Rôle",
- "user.settings.general.positionExtra": "Veuillez utiliser ce champ pour spécifier votre role / titre professionnel. Il sera affiché dans votre infobulle de profil utilisateur.",
- "user.settings.general.profilePicture": "Photo de profil",
- "user.settings.general.title": "Paramètres généraux",
- "user.settings.general.uploadImage": "Veuillez cliquer sur ‘Modifier’ pour télécharger une image",
- "user.settings.general.username": "Nom d'utilisateur",
- "user.settings.general.usernameInfo": "Veuillez spécifier un nom d'utilisateur facile à reconnaître et à mémoriser pour vos collègues.",
- "user.settings.general.usernameReserved": "Ce nom est réservé, veuillez en choisir un autre.",
- "user.settings.general.usernameRestrictions": "Les noms d'utilisateur doivent commencer par une lettre et contenir entre {min} et {max} caractères composés de chiffres, lettres minuscules et des symboles '.', '-' et '_'.",
- "user.settings.general.validEmail": "Veuillez spécifier une adresse e-mail valide",
- "user.settings.general.validImage": "Seules les images JPG ou PNG sont autorisées pour les photos de profil",
- "user.settings.import_theme.cancel": "Annuler",
- "user.settings.import_theme.importBody": "Pour importer un thème, rendez-vous sur une équipe Slack et cliquez sur \"Preferences -> Sidebar Theme\". Ouvrez les options de thèmes personnalisés, copiez les couleurs du thème et collez-les ici :",
- "user.settings.import_theme.importHeader": "Importer un thème Slack",
- "user.settings.import_theme.submit": "Envoyer",
- "user.settings.import_theme.submitError": "Format invalide, veuillez réessayer de copier-coller.",
- "user.settings.languages.change": "Changer la langue de l'interface",
- "user.settings.languages.promote": "Sélectionnez quelle langue utiliser dans l'interface utilisateur de Mattermost.
Vous souhaitez apporter votre aide pour traduire ? Rejoignez le Serveur de Traduction Mattermost pour contribuer.",
- "user.settings.mfa.add": "Ajouter une identification à multi-facteur à votre compte",
- "user.settings.mfa.addHelp": "Ajouter l'authentification multi-facteurs va rendre votre compte plus sécurisé en demandant un code à partir de votre téléphone mobile à chaque fois que vous vous connecterez.",
- "user.settings.mfa.addHelpQr": "Veuillez scanner le code QR avec l'application Google Authenticator sur votre smartphone et spécifiez le code fourni par l'application. Si vous ne pouvez pas scanner le code, vous pouvez spécifier manuellement la clé secrète.",
- "user.settings.mfa.enterToken": "Token",
- "user.settings.mfa.qrCode": "Code barre",
- "user.settings.mfa.remove": "Retirer l’authentification à facteurs multiples",
- "user.settings.mfa.removeHelp": "Retirer l’authentification multi-facteur signifie que vous n’aurez plus besoin d'un code d'accès basé sur un téléphone pour vous connecter à votre compte.",
- "user.settings.mfa.requiredHelp": "L'authentification multi-facteurs est requise sur ce serveur. La réinitialisation n'est recommandée que lorsque vous souhaitez migrer la génération du code sur un nouvel appareil. Il vous sera demandé de directement reconfigurer vos paramètres d'authentification multi-facteurs.",
- "user.settings.mfa.reset": "Réinitialiser l’authentification multi-facteurs sur votre compte",
- "user.settings.mfa.secret": "Clé secrète :",
- "user.settings.mfa.title": "Activité l’authentification multi-facteurs:",
- "user.settings.modal.advanced": "Options avancées",
- "user.settings.modal.confirmBtns": "Oui, abandonner",
- "user.settings.modal.confirmMsg": "Certaines modifications ne sont pas sauvegardées, voulez-vous vraiment abandonner ?",
- "user.settings.modal.confirmTitle": "Abandonner les modifications ?",
- "user.settings.modal.display": "Affichage",
- "user.settings.modal.general": "Général",
- "user.settings.modal.notifications": "Notifications",
- "user.settings.modal.security": "Sécurité",
- "user.settings.modal.title": "Paramètres du compte",
- "user.settings.notifications.allActivity": "Pour toute activité",
- "user.settings.notifications.channelWide": "Mentions globales au canal \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Quitter",
- "user.settings.notifications.comments": "Notifications de réponse",
- "user.settings.notifications.commentsAny": "Recevoir des notifications sur les messages de fils de discussion que je lance ou dans lesquels je participe",
- "user.settings.notifications.commentsInfo": "En plus des notifications que vous recevez lorsque vous êtes mentionné, vous pouvez choisir de recevoir des notifications pour chaque réponse apportée à un message que vous avez envoyé.",
- "user.settings.notifications.commentsNever": "Ne pas recevoir de notifications pour toutes réponses apportées à un fil de réponses à moins que je ne sois mentionné",
- "user.settings.notifications.commentsRoot": "Recevoir des notifications pour pour toutes réponses apportées à un fil de discussion que j'ai lancé",
- "user.settings.notifications.desktop": "Envoyer des notifications de bureau",
- "user.settings.notifications.desktop.allNoSoundForever": "Pour toute activité, sans son, visible indéfiniment",
- "user.settings.notifications.desktop.allNoSoundTimed": "Pour toute activité, sans son, visible {seconds} secondes",
- "user.settings.notifications.desktop.allSoundForever": "Pour toute activité, avec son, visible indéfiniment",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Pour toute activité, visible indéfiniment",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Pour toute activité, visible pour {seconds} secondes",
- "user.settings.notifications.desktop.allSoundTimed": "Pour toute activité, avec son, visible {seconds} secondes",
- "user.settings.notifications.desktop.duration": "Durée de notification",
- "user.settings.notifications.desktop.durationInfo": "Définit combien de temps les notifications de bureau resteront à l'écran lors de l'utilisation de Firefox ou Chrome. Les notifications de bureau dans Edge et Safari ne peuvent rester affichées à l'écran que pour un maximum de 5 secondes.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Pour les mentions et messages privés, sans son, visible indéfiniment",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Pour les mentions et messages privés, sans son, visible {seconds} secondes",
- "user.settings.notifications.desktop.mentionsSoundForever": "Pour les mentions et messages privés, avec son, visible indéfiniment",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Pour les mentions et messages privés, visible indéfiniment",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Pour les mentions et messages privés, visible pour {seconds} secondes",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Pour les mentions et messages privés, avec son, visible {seconds} secondes",
- "user.settings.notifications.desktop.seconds": "{seconds} secondes",
- "user.settings.notifications.desktop.sound": "Son de notification",
- "user.settings.notifications.desktop.title": "Notifications de bureau",
- "user.settings.notifications.desktop.unlimited": "Illimité",
- "user.settings.notifications.desktopSounds": "Sons des notifications de bureau",
- "user.settings.notifications.email.disabled": "Désactivé par l'administrateur système",
- "user.settings.notifications.email.disabled_long": "Les e-mails de notification ont été désactivés par votre administrateur système.",
- "user.settings.notifications.email.everyHour": "Toutes les heures",
- "user.settings.notifications.email.everyXMinutes": "{count, plural, one {Chaque minute} other {Toutes les {count, number} minutes}}",
- "user.settings.notifications.email.immediately": "Immédiatement",
- "user.settings.notifications.email.never": "Jamais",
- "user.settings.notifications.email.send": "Envoyer des notifications de bureau",
- "user.settings.notifications.emailBatchingInfo": "Les notifications reçues sur la période de temps sélectionnée ont été combinées et envoyées en un seul e-mail.",
- "user.settings.notifications.emailInfo": "Les e-mails de notification sont envoyés pour les mentions et les messages privés reçus après que vous soyez passé hors-ligne ou absent de {siteName} pendant plus de 5 minutes.",
- "user.settings.notifications.emailNotifications": "Notifications par e-mail",
- "user.settings.notifications.header": "Notifications",
- "user.settings.notifications.info": "Les notifications de bureau sont disponibles sur Edge, Firefox, Safari, Chrome et les applications Mattermost de bureau.",
- "user.settings.notifications.mentionsInfo": "Les mentions se déclenchent lorsque quelqu'un envoie un message qui inclut votre nom d'utilisateur (\"@{username}\") ou l'une des options ci-dessus.",
- "user.settings.notifications.never": "Jamais",
- "user.settings.notifications.noWords": "Aucun mot configuré",
- "user.settings.notifications.off": "Désactivé",
- "user.settings.notifications.on": "Activé",
- "user.settings.notifications.onlyMentions": "Seulement pour les mentions et messages privés",
- "user.settings.notifications.push": "Notifications push mobiles",
- "user.settings.notifications.push_notification.status": "Déclencher des notifications push lorsque",
- "user.settings.notifications.sensitiveName": "Votre prénom (respectant la casse) \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Votre nom d'utilisateur (insensible à la casse) \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Autres mots insensibles à la casse, séparés par des virgules :",
- "user.settings.notifications.soundConfig": "Configurez les sons des notifications dans les paramètres de votre navigateur",
- "user.settings.notifications.sounds_info": "Les sons de notification sont disponibles sur IE11, Edge, Safari, Chrome et les applications de bureau Mattermost.",
- "user.settings.notifications.teamWide": "Mentions à toute l'équipe \"@all\"",
- "user.settings.notifications.title": "Paramètres de notification",
- "user.settings.notifications.wordsTrigger": "Mots qui déclenchent des mentions",
- "user.settings.push_notification.allActivity": "Pour toute activité",
- "user.settings.push_notification.allActivityAway": "Pour toute activité lorsque vous êtes en absent ou hors ligne",
- "user.settings.push_notification.allActivityOffline": "Pour toutes les activités lorsque vous etes en déplacement ou hors ligne",
- "user.settings.push_notification.allActivityOnline": "Pour toutes les activités lorsque vous etes en déplacement ou hors ligne",
- "user.settings.push_notification.away": "Absent ou hors ligne",
- "user.settings.push_notification.disabled": "Désactivé par l'administrateur système",
- "user.settings.push_notification.disabled_long": "Les notifications push pour les appareils mobiles ont été désactivées par votre administrateur système. ",
- "user.settings.push_notification.info": "Les alertes de notification sont envoyées à votre appareil mobile quand il y a de l’activité dans Mattermost.",
- "user.settings.push_notification.off": "Désactivé",
- "user.settings.push_notification.offline": "Hors ligne",
- "user.settings.push_notification.online": "En ligne, absent(e) ou hors ligne",
- "user.settings.push_notification.onlyMentions": "Seulement pour les mentions et messages privés",
- "user.settings.push_notification.onlyMentionsAway": "Pour les mentions et messages privés lorsqu'absent ou hors-ligne",
- "user.settings.push_notification.onlyMentionsOffline": "Pour mentions et messages directs en mode hors connexion",
- "user.settings.push_notification.onlyMentionsOnline": "Pour les mentions et messages privés lorsque présent, absent ou hors-ligne",
- "user.settings.push_notification.send": "Envoyer des notifications push mobiles",
- "user.settings.push_notification.status": "Déclencher des notifications push lorsque",
- "user.settings.push_notification.status_info": "Les notifications seront envoyées sur votre téléphone uniquement si votre état en ligne correspond à la sélection ci-dessus.",
- "user.settings.security.active": "Actif",
- "user.settings.security.close": "Quitter",
- "user.settings.security.currentPassword": "Mot de passe actuel",
- "user.settings.security.currentPasswordError": "Veuillez spécifier votre mot de passe actuel",
- "user.settings.security.deauthorize": "Supprimer l'autorisation",
- "user.settings.security.emailPwd": "Adresse e-mail et mot de passe",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inactif",
- "user.settings.security.lastUpdated": "Dernière mise à jour le {date} à {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Connexion avec GitLab",
- "user.settings.security.loginGoogle": "Connexion à partir de Google Apps",
- "user.settings.security.loginLdap": "Connexion effectuée via AD/LDAP",
- "user.settings.security.loginOffice365": "Connexion à partir d'Office 365",
- "user.settings.security.loginSaml": "Se connecter par SAML",
- "user.settings.security.logoutActiveSessions": "Consulter et déconnecter les sessions actives",
- "user.settings.security.method": "Méthode de connexion",
- "user.settings.security.newPassword": "Nouveau mot de passe",
- "user.settings.security.noApps": "Aucune application OAuth 2.0 autorisée.",
- "user.settings.security.oauthApps": "Applications OAuth 2.0",
- "user.settings.security.oauthAppsDescription": "Veuillez cliquer sur 'Modifier' pour gérer vos applications OAuth 2.0",
- "user.settings.security.oauthAppsHelp": "Les applications agissent en votre nom pour accéder à vos données sur base des permissions que vous leur accordez.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Vous ne pouvez avoir qu'une seule méthode de connexion à la fois. Changer de méthode de connexion provoquera l'envoi d'un e-mail vous notifiant que le changement a réussi.",
- "user.settings.security.password": "Mot de passe",
- "user.settings.security.passwordError": "Votre mot de passe doit contenir entre {min} et {max} caractères.",
- "user.settings.security.passwordErrorLowercase": "Votre mot de passe doit contenir entre {min} et {max} caractères et être composé d'au moins une lettre minuscule.",
- "user.settings.security.passwordErrorLowercaseNumber": "Votre mot de passe doit contenir entre {min} et {max} caractères composé d'au moins une lettre minuscule et un chiffre.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre minuscule, un chiffre et au moins un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre minuscule et au moins un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre minuscule et une lettre majuscule.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Votre mot de passe doit contenir entre {min} et {max} caractères composé d'au moins d'une lettre minuscule, d'une lettre majuscule et d'un chiffre.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre minuscule, une majuscule, un chiffre et au moins un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre minuscule , une lettre majuscule et au moins un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins un chiffre.",
- "user.settings.security.passwordErrorNumberSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins un chiffre et un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre majuscule.",
- "user.settings.security.passwordErrorUppercaseNumber": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre majuscule et un chiffre.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre majuscule, un chiffre et un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Votre mot de passe doit contenir entre {min} et {max} caractères et au moins une lettre majuscule et un symbole (parmi \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "La connexion se produit à travers GitLab. Le mot de passe ne peut pas être mis à jour.",
- "user.settings.security.passwordGoogleCantUpdate": "La connexion s'effectue par Google Apps. Le mot de passe ne peut pas être mis à jour.",
- "user.settings.security.passwordLdapCantUpdate": "La connexion s'effectue via AD/LDAP. Le mot de passe ne peut pas être changé.",
- "user.settings.security.passwordMatchError": "Les nouveaux mots de passe que vous avez spécifiés ne correspondent pas.",
- "user.settings.security.passwordMinLength": "Longueur minimum invalide, impossible d'afficher l'aperçu.",
- "user.settings.security.passwordOffice365CantUpdate": "La connexion s'effectue par Office 365. Le mot de passe ne peut pas être mis à jour.",
- "user.settings.security.passwordSamlCantUpdate": "Ce champ est géré par le service d'authentification. Si vous souhaitez le modifier, vous devez le faire par le biais de votre service d'authentification.",
- "user.settings.security.retypePassword": "Répéter le nouveau mot de passe",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Utilisation de l'adresse e-mail et du mot de passe",
- "user.settings.security.switchGitlab": "Utiliser l'authentification unique (SSO) via GitLab",
- "user.settings.security.switchGoogle": "Utiliser l'authentification unique (SSO) via Google",
- "user.settings.security.switchLdap": "Passer à l'utilisation d'AD/LDAP",
- "user.settings.security.switchOffice365": "Utiliser l'authentification unique (SSO) via Office 365",
- "user.settings.security.switchSaml": "Utiliser l'authentification unique (SSO) via SAML",
- "user.settings.security.title": "Paramètres de sécurité",
- "user.settings.security.viewHistory": "Voir l'historique d'accès",
- "user.settings.tokens.cancel": "Annuler",
- "user.settings.tokens.clickToEdit": "Cliquez sur 'Modifier' pour gérer vos jetons d'accès",
- "user.settings.tokens.confirmCreateButton": "Oui, créer",
- "user.settings.tokens.confirmCreateMessage": "Vous êtes sur le point de générer un jeton d'accès personnel avec les permissions d'administrateur système. Voulez-vous vraiment créer ce type de jeton ?",
- "user.settings.tokens.confirmCreateTitle": "Créer un jeton d'accès personnel d'administrateur système",
- "user.settings.tokens.confirmDeleteButton": "Oui, supprimer",
- "user.settings.tokens.confirmDeleteMessage": "Toutes les intégrations utilisant ce jeton ne pourront plus accéder à l'API Mattermost. Cette action en peut être annulée.
Voulez-vous vraiment supprimer le jeton {description} ?",
- "user.settings.tokens.confirmDeleteTitle": "Supprimer le jeton ?",
- "user.settings.tokens.copy": "Veuillez copier le jeton d'accès ci-dessous. Vous ne serez pas en mesure de le voir à nouveau !",
- "user.settings.tokens.create": "Créer un nouveau jeton",
- "user.settings.tokens.delete": "Supprimer",
- "user.settings.tokens.description": "La fonction jetons d'accès personnel similaire aux jetons de sessions et qui peut être utilisée par les intégrations pour s'authentifier à l'API REST.",
- "user.settings.tokens.description_mobile": "La fonction jetons d'accès personnel similaire aux jetons de sessions et qui peut être utilisée par les intégrations pour s'authentifier à l'API REST. Crée des nouveaux jetons sur votre bureau.",
- "user.settings.tokens.id": "ID du jeton : ",
- "user.settings.tokens.name": "Description du jeton : ",
- "user.settings.tokens.nameHelp": "Spécifiez une description pour votre jeton pour vous rappeler ce qu'il fait.",
- "user.settings.tokens.nameRequired": "Veuillez spécifier une description.",
- "user.settings.tokens.save": "Enregistrer",
- "user.settings.tokens.title": "Jetons d'accès personnel",
- "user.settings.tokens.token": "Jeton d'accès : ",
- "user.settings.tokens.tokenId": "ID du jeton : ",
- "user.settings.tokens.userAccessTokensNone": "Aucun jeton d'accès personnel.",
- "user_list.notFound": "Aucun utilisateur trouvé.",
- "user_profile.send.dm": "Envoyer un message",
- "user_profile.webrtc.call": "Démarrer un appel vidéo",
- "user_profile.webrtc.offline": "L'utilisateur est hors ligne",
- "user_profile.webrtc.unavailable": "Passer un nouvel appel n'est pas possible tant que l'appel en cours n'a pas été terminé",
- "view_image.loading": "Chargement ",
- "view_image_popover.download": "Télécharger",
- "view_image_popover.file": "Fichier {count, number} de {total, number}",
- "view_image_popover.publicLink": "Obtenir le lien public",
- "web.footer.about": "À propos",
- "web.footer.help": "Aide",
- "web.footer.privacy": "Confidentialité",
- "web.footer.terms": "Termes",
- "web.header.back": "Précédent",
- "web.header.logout": "Se déconnecter",
- "web.root.signup_info": "Toute la communication de votre équipe au même endroit, accessible de partout",
- "webrtc.busy": "{username} est occupé.",
- "webrtc.call": "Appeler",
- "webrtc.callEnded": "L'appel avec {username} s'est terminé.",
- "webrtc.cancel": "Annuler l'appel",
- "webrtc.cancelled": "{username} a annulé l'appel.",
- "webrtc.declined": "Votre appel a été refusé par {username}.",
- "webrtc.disabled": "{username} a la fonctionnalité WebRTC désactivée et ne peut donc recevoir d'appels. Pour activer cette fonctionnalité, l'utilisateur doit se rendre dans Paramètres du compte > Options avancées > Activer les fonctionnalités expérimentales et activer WebRTC.",
- "webrtc.failed": "Une erreur s'est produite lors de la connexion de l'appel vidéo.",
- "webrtc.hangup": "Raccrocher",
- "webrtc.header": "Appel en cours avec {username}",
- "webrtc.inProgress": "Vous avez un appel en cours. Veuillez d'abord raccrocher.",
- "webrtc.mediaError": "Impossible d'accéder à la caméra ou au micro.",
- "webrtc.mute_audio": "Couper le micro",
- "webrtc.noAnswer": "{username} ne répond pas à l'appel.",
- "webrtc.notification.answer": "Répondre",
- "webrtc.notification.decline": "Refuser",
- "webrtc.notification.incoming_call": "{username} vous appelle.",
- "webrtc.notification.returnToCall": "Retourner à l'appel en cours avec {username}",
- "webrtc.offline": "{username} est hors ligne.",
- "webrtc.pause_video": "Éteindre la caméra",
- "webrtc.unmute_audio": "Rétablir le micro",
- "webrtc.unpause_video": "Allumer la caméra",
- "webrtc.unsupported": "Le client de {username} ne supporte pas les appels vidéo.",
- "youtube_video.notFound": "Vidéo non trouvé"
-}
diff --git a/webapp/i18n/i18n.jsx b/webapp/i18n/i18n.jsx
deleted file mode 100644
index b69f82491a6..00000000000
--- a/webapp/i18n/i18n.jsx
+++ /dev/null
@@ -1,208 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-const de = require('!!file-loader?name=i18n/[name].[hash].[ext]!./de.json');
-const es = require('!!file-loader?name=i18n/[name].[hash].[ext]!./es.json');
-const fr = require('!!file-loader?name=i18n/[name].[hash].[ext]!./fr.json');
-const it = require('!!file-loader?name=i18n/[name].[hash].[ext]!./it.json');
-const ja = require('!!file-loader?name=i18n/[name].[hash].[ext]!./ja.json');
-const ko = require('!!file-loader?name=i18n/[name].[hash].[ext]!./ko.json');
-const nl = require('!!file-loader?name=i18n/[name].[hash].[ext]!./nl.json');
-const pl = require('!!file-loader?name=i18n/[name].[hash].[ext]!./pl.json');
-const pt_BR = require('!!file-loader?name=i18n/[name].[hash].[ext]!./pt-BR.json'); //eslint-disable-line camelcase
-const tr = require('!!file-loader?name=i18n/[name].[hash].[ext]!./tr.json');
-const ru = require('!!file-loader?name=i18n/[name].[hash].[ext]!./ru.json');
-const zh_TW = require('!!file-loader?name=i18n/[name].[hash].[ext]!./zh-TW.json'); //eslint-disable-line camelcase
-const zh_CN = require('!!file-loader?name=i18n/[name].[hash].[ext]!./zh-CN.json'); //eslint-disable-line camelcase
-
-import {addLocaleData} from 'react-intl';
-import deLocaleData from 'react-intl/locale-data/de';
-import enLocaleData from 'react-intl/locale-data/en';
-import esLocaleData from 'react-intl/locale-data/es';
-import frLocaleData from 'react-intl/locale-data/fr';
-import itLocaleData from 'react-intl/locale-data/it';
-import jaLocaleData from 'react-intl/locale-data/ja';
-import koLocaleData from 'react-intl/locale-data/ko';
-import nlLocaleData from 'react-intl/locale-data/nl';
-import plLocaleData from 'react-intl/locale-data/pl';
-import ptLocaleData from 'react-intl/locale-data/pt';
-import trLocaleData from 'react-intl/locale-data/tr';
-import ruLocaleData from 'react-intl/locale-data/ru';
-import zhLocaleData from 'react-intl/locale-data/zh';
-
-// should match the values in model/config.go
-const languages = {
- de: {
- value: 'de',
- name: 'Deutsch',
- order: 0,
- url: de
- },
- en: {
- value: 'en',
- name: 'English',
- order: 1,
- url: ''
- },
- es: {
- value: 'es',
- name: 'Español',
- order: 2,
- url: es
- },
- fr: {
- value: 'fr',
- name: 'Français',
- order: 3,
- url: fr
- },
- it: {
- value: 'it',
- name: 'Italiano (Beta)',
- order: 4,
- url: it
- },
- ja: {
- value: 'ja',
- name: '日本語',
- order: 13,
- url: ja
- },
- ko: {
- value: 'ko',
- name: '한국어 (Alpha)',
- order: 10,
- url: ko
- },
- nl: {
- value: 'nl',
- name: 'Nederlands (Alpha)',
- order: 5,
- url: nl
- },
- pl: {
- value: 'pl',
- name: 'Polski (Beta)',
- order: 6,
- url: pl
- },
- 'pt-BR': {
- value: 'pt-BR',
- name: 'Português (Brasil)',
- order: 7,
- url: pt_BR
- },
- tr: {
- value: 'tr',
- name: 'Türkçe (Beta)',
- order: 8,
- url: tr
- },
- ru: {
- value: 'ru',
- name: 'Pусский (Beta)',
- order: 9,
- url: ru
- },
- 'zh-TW': {
- value: 'zh-TW',
- name: '中文 (繁體)',
- order: 12,
- url: zh_TW
- },
- 'zh-CN': {
- value: 'zh-CN',
- name: '中文 (简体)',
- order: 11,
- url: zh_CN
- }
-};
-
-let availableLanguages = null;
-
-function setAvailableLanguages() {
- let available;
- availableLanguages = {};
-
- if (global.window.mm_config.AvailableLocales) {
- available = global.window.mm_config.AvailableLocales.split(',');
- } else {
- available = Object.keys(languages);
- }
-
- available.forEach((l) => {
- if (languages[l]) {
- availableLanguages[l] = languages[l];
- }
- });
-}
-
-export function getAllLanguages() {
- return languages;
-}
-
-export function getLanguages() {
- if (!availableLanguages) {
- setAvailableLanguages();
- }
- return availableLanguages;
-}
-
-export function getLanguageInfo(locale) {
- return getAllLanguages()[locale];
-}
-
-export function isLanguageAvailable(locale) {
- return Boolean(getLanguages()[locale]);
-}
-
-export function safariFix(callback) {
- require.ensure([
- 'intl',
- 'intl/locale-data/jsonp/de.js',
- 'intl/locale-data/jsonp/en.js',
- 'intl/locale-data/jsonp/es.js',
- 'intl/locale-data/jsonp/fr.js',
- 'intl/locale-data/jsonp/it.js',
- 'intl/locale-data/jsonp/ja.js',
- 'intl/locale-data/jsonp/ko.js',
- 'intl/locale-data/jsonp/nl.js',
- 'intl/locale-data/jsonp/pl.js',
- 'intl/locale-data/jsonp/pt.js',
- 'intl/locale-data/jsonp/tr.js',
- 'intl/locale-data/jsonp/ru.js',
- 'intl/locale-data/jsonp/zh.js'
- ], (require) => {
- require('intl');
- require('intl/locale-data/jsonp/de.js');
- require('intl/locale-data/jsonp/en.js');
- require('intl/locale-data/jsonp/es.js');
- require('intl/locale-data/jsonp/fr.js');
- require('intl/locale-data/jsonp/it.js');
- require('intl/locale-data/jsonp/ja.js');
- require('intl/locale-data/jsonp/ko.js');
- require('intl/locale-data/jsonp/nl.js');
- require('intl/locale-data/jsonp/pl.js');
- require('intl/locale-data/jsonp/pt.js');
- require('intl/locale-data/jsonp/tr.js');
- require('intl/locale-data/jsonp/ru.js');
- require('intl/locale-data/jsonp/zh.js');
- callback();
- });
-}
-
-export function doAddLocaleData() {
- addLocaleData(enLocaleData);
- addLocaleData(deLocaleData);
- addLocaleData(esLocaleData);
- addLocaleData(frLocaleData);
- addLocaleData(itLocaleData);
- addLocaleData(jaLocaleData);
- addLocaleData(koLocaleData);
- addLocaleData(nlLocaleData);
- addLocaleData(plLocaleData);
- addLocaleData(ptLocaleData);
- addLocaleData(trLocaleData);
- addLocaleData(ruLocaleData);
- addLocaleData(zhLocaleData);
-}
diff --git a/webapp/i18n/it.json b/webapp/i18n/it.json
deleted file mode 100644
index a3284150607..00000000000
--- a/webapp/i18n/it.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Chiudi",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. Tutti i diritti riservati",
- "about.database": "Database:",
- "about.date": "Creato il:",
- "about.enterpriseEditionLearn": "Maggiori informazioni sulla Edizione Enterprise a ",
- "about.enterpriseEditionSt": "Comunicazioni moderne da dietro il tuo firewall.",
- "about.enterpriseEditione1": "Edizione Enterprise",
- "about.hash": "Hash di compilazione:",
- "about.hashee": "Hash di compilazione EE:",
- "about.licensed": "Licenziato a:",
- "about.notice": "Mattermost è stato possibile grazie al software open source usato dalla nostra piattaforma, dall'app desktop e dalle app mobile.",
- "about.number": "Numero di compilazione:",
- "about.teamEditionLearn": "Entra nella comunità Mattermost su ",
- "about.teamEditionSt": "Tutte le tue comunicazioni in un posto, instantaneamente ricercabili e accessibili ovunque.",
- "about.teamEditiont0": "Edizione gruppo",
- "about.teamEditiont1": "Edizione Enterprise",
- "about.title": "Informazioni su Mattermost",
- "about.version": "Versione:",
- "access_history.title": "Cronologia accessi",
- "activity_log.activeSessions": "Sessioni attive",
- "activity_log.browser": "Browser: {browser}",
- "activity_log.firstTime": "Prima data attivo: {date}, {time}",
- "activity_log.lastActivity": "Ultima attività: {date}, {time}",
- "activity_log.logout": "Esci",
- "activity_log.moreInfo": "Maggiori informazioni",
- "activity_log.os": "SO: {os}",
- "activity_log.sessionId": "ID sessione: {id}",
- "activity_log.sessionsDescription": "Una sessione è creata quando viene eseguito l'accesso utilizzando un browser. Le sessioni permettono al sistema di non chiedere ripetutamente agli utenti di effettuare l'accesso per un periodo specificato dall'Amministratore di Sistema. Per uscire e terminare una sessione è possibile utilizzare il pulsante 'Esci'.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Applicazione nativa Android",
- "activity_log_modal.androidNativeClassicApp": "App Android Native Classic",
- "activity_log_modal.desktop": "Applicazione nativa Desktop",
- "activity_log_modal.iphoneNativeApp": "Applicazione nativa iPhone",
- "activity_log_modal.iphoneNativeClassicApp": "App iPhone Native Classic",
- "add_command.autocomplete": "Completamento automatico",
- "add_command.autocomplete.help": "(Opzionale) Visualizza i comandi slash nella lista di auto-completamento.",
- "add_command.autocompleteDescription": "Descrizione Autocompletamento",
- "add_command.autocompleteDescription.help": "(Opzionale) Breve descrizione del comando slash per la lista di auto-completamento.",
- "add_command.autocompleteDescription.placeholder": "Esempio: \"Trova risultati per i documenti medici\"",
- "add_command.autocompleteHint": "Suggerimento per l'auto-completamento",
- "add_command.autocompleteHint.help": "(Opzionale) Argomenti associati con il comando slash, vengono visualizzati come messaggio di aiuto nella lista di auto-completamento.",
- "add_command.autocompleteHint.placeholder": "Esempio: [Nome del Paziente]",
- "add_command.cancel": "Annulla",
- "add_command.description": "Descrizione",
- "add_command.description.help": "Descrizione del webhook in ingresso.",
- "add_command.displayName": "Nome visibile",
- "add_command.displayName.help": "Nome visualizzato per il comando slash, può contenere fino a 64 caratteri.",
- "add_command.doneHelp": "Il comando slash è stato impostato. Il token seguente verrà inviato nel contenuto in uscita. Usare il token per verificare che la richiesta sia arrivata dal vostro gruppo Mattermost. (vedere la documentazione per altri dettagli)",
- "add_command.iconUrl": "Icona di risposta",
- "add_command.iconUrl.help": "(Opzionale) Scegli una immagine di profilo da mostrare per i messaggi inviati da questo comando. Inserisci un URL di immagini .png o .jpg di dimensioni non inferiori a 128x128 pixel.",
- "add_command.iconUrl.placeholder": "https://www.esempio.com/myicon.png",
- "add_command.method": "Metodo Richiesta",
- "add_command.method.get": "GET",
- "add_command.method.help": "Digita il tipo di comando da inviare all'indirizzo URL di richiesta.",
- "add_command.method.post": "POST",
- "add_command.save": "Salva",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Parola di esecuzione del comando",
- "add_command.trigger.help": "La parola di esecuzione deve essere univoca e non può iniziare con '/' o contenere spazi.",
- "add_command.trigger.helpExamples": "Esempi: cliente, impiegato, paziente, tempo",
- "add_command.trigger.helpReserved": "Riservato: {link}",
- "add_command.trigger.helpReservedLinkText": "vedi una lista dei comandi slash predefiniti",
- "add_command.trigger.placeholder": "comando di innesco e.s. \"ciao\"",
- "add_command.triggerInvalidLength": "La parola chiave deve contenere tra {min} e {max} caratteri",
- "add_command.triggerInvalidSlash": "Una parola chiave non può iniziare con /",
- "add_command.triggerInvalidSpace": "La parola chiave non può contenere spazi",
- "add_command.triggerRequired": "Il comando è richiesto",
- "add_command.url": "URL di richiesta",
- "add_command.url.help": "La URL callback per ricevere la richiesta di evento HTTP POST o GET, quando il comando slash viene eseguito.",
- "add_command.url.placeholder": "Deve iniziare con http:// o https://",
- "add_command.urlRequired": "Un URL di richiesta è richiesta",
- "add_command.username": "Nome utente risposta",
- "add_command.username.help": "(Opzionale) Scegliere un nome utente sostitutivo per le risposta di questo comando slash. I nomi utente possono avere fino a 22 caratteri composti da lettere minuscole, numeri e i simboli '-' e '_'.",
- "add_command.username.placeholder": "Nome utente",
- "add_emoji.cancel": "Annulla",
- "add_emoji.header": "Aggiungi",
- "add_emoji.image": "Immagine",
- "add_emoji.image.button": "Selezionare",
- "add_emoji.image.help": "Scegliere un'immagine per l'Emoji. L'immagine può essere GIF, PNG o JPG con una dimensione massima di 1 MB. Verrà automaticamente ridimensionata a 128x128 px, mantenendo le proporzioni.",
- "add_emoji.imageRequired": "E' richiesta un'immagine per questo emoji",
- "add_emoji.name": "Nome",
- "add_emoji.name.help": "Scegliere un nome per l'emoji, composto da un massimo di 64 caratteri scelti tra lettere minuscole, numeri e i simboli '-' e '_'.",
- "add_emoji.nameInvalid": "Il nome di un emoji può contenere solo numeri, lettere e i simboli '-' e '_'.",
- "add_emoji.nameRequired": "E' richiesto un nome per l'emoji",
- "add_emoji.nameTaken": "Questo nome è già usato da un Emoji nel sistema. Scegliere un altro nome.",
- "add_emoji.preview": "Anteprima",
- "add_emoji.preview.sentence": "Questa è una frase contenente {image}.",
- "add_emoji.save": "Salva",
- "add_incoming_webhook.cancel": "Cancella",
- "add_incoming_webhook.channel": "Canale",
- "add_incoming_webhook.channel.help": "Canale pubblico o privato che riceve i contenuti del webhook. Si deve essere membri del gruppo privato per impostare il webhook.",
- "add_incoming_webhook.channelRequired": "Un canale valido è richiesto",
- "add_incoming_webhook.description": "Descrizione",
- "add_incoming_webhook.description.help": "Descrizione del webhook in ingresso.",
- "add_incoming_webhook.displayName": "Nome visibile",
- "add_incoming_webhook.displayName.help": "Nome visualizzato per il webhook in ingresso, può contenere fino a 64 caratteri.",
- "add_incoming_webhook.doneHelp": "Il webhook in ingresso è stato impostato. Inviare i dati all'URL seguente (Vedere la documentazione per altri dettagli.",
- "add_incoming_webhook.name": "Nome",
- "add_incoming_webhook.save": "Salva",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "L'URI di redirezione a cui il servizio invierà gli utenti dopo aver accettato o negato l'autorizzazione dell'applicazione e che gestirà i codici di autorizzazione o i token di accesso. Deve essere un URL valido ed iniziare con http:// oppure https://.",
- "add_oauth_app.callbackUrlsRequired": "Sono richiesti uno o più URL di callback",
- "add_oauth_app.clientId": "ID cliente: {id}",
- "add_oauth_app.clientSecret": "Secret cliente: {secret}",
- "add_oauth_app.description.help": "Descrizione dell'applicazione OAuth 2.0.",
- "add_oauth_app.descriptionRequired": "E' richiesta una descrizione per l'applicazione OAuth 2.0.",
- "add_oauth_app.doneHelp": "L'applicazione OAuth 2.0 è stata impostata. Usare il seguente ID Cliente e Client Secret per chiedere l'autorizzazione per l'applicazione. Vedere la documentazione per altri dettagli.",
- "add_oauth_app.doneUrlHelp": "Questi sono gli URL di redirezione autorizzati.",
- "add_oauth_app.header": "Aggiungi",
- "add_oauth_app.homepage.help": "L'URL della homepage dell'applicazione OAuth 2.0. Inserire HTTP o HTTPS nell'URL, a seconda della configurazione del server.",
- "add_oauth_app.homepageRequired": "E' richiesta una homepage per l'applicazione OAuth 2.0.",
- "add_oauth_app.icon.help": "(Opzionale) L'URL dell'immagine usata per l'applicazione OAuth 2.0. Inserire HTTP o HTTPS nell'URL.",
- "add_oauth_app.name.help": "Nome visualizzato per l'applicazione OAuth 2.0. Può contenere fino a 64 caratteri.",
- "add_oauth_app.nameRequired": "E' richiesto un nome per l'applicazione OAuth 2.0.",
- "add_oauth_app.trusted.help": "Se vero, l'applicazione OAuth 2.0 viene considerata sicura dal server Mattermost e non richiederà all'utente di accettare l'autorizzazione. Quando falso, verrà mostrata una schermata per richiedere all'utente di accettare o rifiutare l'autorizzazione.",
- "add_oauth_app.url": " URL: {url}",
- "add_outgoing_webhook.callbackUrls": "URL di callback (una per riga)",
- "add_outgoing_webhook.callbackUrls.help": "La URL a cui verrà spedito il messaggio.",
- "add_outgoing_webhook.callbackUrlsRequired": "Sono richiesti uno o più URL di callback",
- "add_outgoing_webhook.cancel": "Cancella",
- "add_outgoing_webhook.channel": "Canale",
- "add_outgoing_webhook.channel.help": "Il canale pubblico che deve ricevere i payload del webhook. Opzionale, se viene specificata almeno una parola Trigger.",
- "add_outgoing_webhook.contentType.help1": "Scegliere il content type con cui verrà inviata la risposta.",
- "add_outgoing_webhook.contentType.help2": "Se si sceglie application/x-www-form-urlencoded, il server richiede che i parametri siano codificati in formato URL.",
- "add_outgoing_webhook.contentType.help3": "Se si sceglie application/json il server richiede che vengano inviati dati JSON.",
- "add_outgoing_webhook.content_Type": "Content Type",
- "add_outgoing_webhook.description": "Descrizione",
- "add_outgoing_webhook.description.help": "Descrizione del webhook in uscita.",
- "add_outgoing_webhook.displayName": "Nome visibile",
- "add_outgoing_webhook.displayName.help": "Nome visualizzato per il webhook in uscita; può contenere fino a 64 caratteri.",
- "add_outgoing_webhook.doneHelp": "Il webhook in uscita è stato impostato. Il token seguente verrà inviato nel contenuto in uscita. Usare il token per verificare che la richiesta sia arrivata dal vostro gruppo Mattermost. (vedi la documentazione per altri dettagli)",
- "add_outgoing_webhook.name": "Nome",
- "add_outgoing_webhook.save": "Salva",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Parole di innesco (una per linea)",
- "add_outgoing_webhook.triggerWords.help": "Messaggi che inizino con una delle parole specificate attiveranno il webhook in uscita. Opzionale, se Canale è selezionato.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "E' richiesto un canale valido, o una lista di parole chiave",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Attiva quando",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Scegliere quando attivare il webhook in uscita: se la prima parola di un messaggio corrisponde esattamente ad una parola chiave, oppure se inizia con una parola chiave.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "La prima parola corrisponde esattamente ad una parola chiave",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "La prima parola inizia con una parola chiave",
- "add_users_to_team.title": "Aggiungi nuovi membri al gruppo {teamName}",
- "admin.advance.cluster": "Alta Disponibilità (HA)",
- "admin.advance.metrics": "Monitoraggio prestazioni",
- "admin.audits.reload": "Aggiorna il log delle Attività Utente",
- "admin.audits.title": "Log delle Attività Utente",
- "admin.authentication.email": "Autenticazione email",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Attenzione:",
- "admin.client_versions.androidLatestVersion": "Ultima Versione Android",
- "admin.client_versions.androidLatestVersionHelp": "L'ultima versione rilasciata di Android",
- "admin.client_versions.androidMinVersion": "Versione Minima di Android",
- "admin.client_versions.androidMinVersionHelp": "La versione minima di Android richiesta",
- "admin.client_versions.desktopLatestVersion": "Ultima Versione Desktop",
- "admin.client_versions.desktopLatestVersionHelp": "L'ultima versione Desktop rilasciata",
- "admin.client_versions.desktopMinVersion": "Versione Minima Desktop",
- "admin.client_versions.desktopMinVersionHelp": "La versione minima Desktop richiesta",
- "admin.client_versions.iosLatestVersion": "Ultima versione IOS",
- "admin.client_versions.iosLatestVersionHelp": "L'ultima versione rilasciata per IOS",
- "admin.client_versions.iosMinVersion": "Versione minima per IOS",
- "admin.client_versions.iosMinVersionHelp": "La versione minima per IOS richiesta",
- "admin.cluster.enableDescription": "Quando abilitato, Mattermost funzionerà in modalità Alta disponibilità. Vedi la documentazione per altri particolari sulla configurazione dell'alta disponibilità di Mattermost.",
- "admin.cluster.enableTitle": "Abilita modalità Alta disponibilità:",
- "admin.cluster.interNodeListenAddressDesc": "Indirizzo a cui il server si metterà in ascolto per comunicare con altri server.",
- "admin.cluster.interNodeListenAddressEx": "Es. \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Indirizzo di ascolto inter-nodi:",
- "admin.cluster.interNodeUrlsDesc": "URL privati/interni di tutti i server Mattermost, separati da virgole.",
- "admin.cluster.interNodeUrlsEx": "Es. \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "URL inter-nodo:",
- "admin.cluster.loadedFrom": "Questo file di configurazione è stato caricato dal nodo con ID {clusterId}. Vedi la Guida alla soluzione dei problemi nella documentazione se si sta accedendo alla Console di sistema attraverso un load balancer e si verificano problemi.",
- "admin.cluster.noteDescription": "La modifica di proprietà in questa sezione richiederà un riavvio del server per essere attivata. Quando si attiva la modalità Alta disponibilità. la Console di Sistema viene messa in sola lettura e può essere modificata soltanto dal file di configurazione.",
- "admin.cluster.should_not_change": "ATTENZIONE: queste impostazioni possono non essere sincronizzate sugli altri server nel cluster. La comunicazione inter-nodi ad Alta disponibilità non si avvierà fino a quando il file config.json non sarà identico su tutti i server. Vedi la documentazione per sapere come aggiungere o rimuovere un server dal cluster.Vedi la Guida alla soluzione dei problemi nella documentazione se si sta accedendo alla Console di sistema attraverso un load balancer e si verificano problemi.",
- "admin.cluster.status_table.config_hash": "File di configurazione MD5",
- "admin.cluster.status_table.hostname": "Nome host",
- "admin.cluster.status_table.id": "ID nodo",
- "admin.cluster.status_table.reload": "Ricaricare status cluster",
- "admin.cluster.status_table.status": "Stato",
- "admin.cluster.status_table.url": "Indirizzo Gossip",
- "admin.cluster.status_table.version": "Versione",
- "admin.cluster.unknown": "sconosciuto",
- "admin.compliance.directoryDescription": "Cartella per i report di compliance. Se vuoto, sarà impostata a ./data/.",
- "admin.compliance.directoryExample": "Es. \"./data/\"",
- "admin.compliance.directoryTitle": "Cartella per i Compliance Report:",
- "admin.compliance.enableDailyDesc": "Quando abilitato, Mattermost genererà un rapporto giornaliero.",
- "admin.compliance.enableDailyTitle": "Abilita rapporto giornaliero:",
- "admin.compliance.enableDesc": "Quando abilitato, Mattermost permette l'invio di report di compliance dal tab Compliance e Auditing. Vedi la documentazione per altre info.",
- "admin.compliance.enableTitle": "Abilita rapporti di compliance:",
- "admin.compliance.false": "falso",
- "admin.compliance.noLicense": "
Nota:
Compliance è una funzionalità della versione Enterprise. La licenza usata non include la funzione Compliance. Vedere il sito Mattermost per informazioni sulle licenze e prezzi.
\"Invia una descrizione generica con il mittente e i canali\" include il nome della persona che ha inviato il messaggio e il canale su cui è stato inviato, ma non il testo del messaggio.
\"Invia estratto del messaggio\" include un estratto del messaggio nella notifica push, che può contenere informazioni confidenziali. Se il Servizio di Notifica Push è esterno al tuo firewall è *altamente raccomandato* di utilizzare questa opzione solo con un protocollo \"https\" per criptare la connessione.",
- "admin.email.pushContentTitle": "Contenuto Notifiche Push:",
- "admin.email.pushDesc": "Normalmente abilitato in produzione. Quando abilitato, Mattermost tenta di inviare ad iOS e Android le notifiche push tramite il server delle notifiche push.",
- "admin.email.pushOff": "Non inviare notifiche push",
- "admin.email.pushOffHelp": "Vedi la documentazione sulle notifiche push per scoprire di più sulla configurazione.",
- "admin.email.pushServerDesc": "Collocazione del servizio di notifiche push di Mattermost, che può essere configurato dietro al firewall usando https://github.com/mattermost/push-proxy. Per prova si può usare http://push-test.mattermost.com, che si connette all'app iOS Mattermost di esempio nell'AppStore pubblico di Apple. Non usare questo servizio per impieghi in produzione.",
- "admin.email.pushServerEx": "E.s.: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Server notifiche push:",
- "admin.email.pushTitle": "Abilita notifiche push: ",
- "admin.email.requireVerificationDescription": "Normalmente abilitato in produzione. Quando abilitato, Mattermost dopo la creazione dell'utente richiede una verifica tramite email prima di concedere l'accesso. Per rapidità, gli sviluppatori possono disabilitare questo campo per saltare la verifica tramite email.",
- "admin.email.requireVerificationTitle": "Richiedi Email di verifica : ",
- "admin.email.selfPush": "Inserisci manualmente il percorso del Servizio Notifiche Push",
- "admin.email.skipServerCertificateVerification.description": "Quando abilitato, Mattermost non verificherà il certificato del server email.",
- "admin.email.skipServerCertificateVerification.title": "Salta Verifica Certificato Server: ",
- "admin.email.smtpPasswordDescription": "La password associata al nome utente SMTP.",
- "admin.email.smtpPasswordExample": "Es. \"latuapassword\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "Password server SMTP:",
- "admin.email.smtpPortDescription": "Porta del server smtp.",
- "admin.email.smtpPortExample": "Es. \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "Porta server SMTP:",
- "admin.email.smtpServerDescription": "Indirizzo del server email SMTP.",
- "admin.email.smtpServerExample": "Es. \"smtp.tuacompagnia.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "Server SMTP:",
- "admin.email.smtpUsernameDescription": "Il nome utente per autenticarsi sul server SMTP.",
- "admin.email.smtpUsernameExample": "Es.: \"admin@tuacompagniacom\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "Nome utente server SMTP:",
- "admin.email.testing": "Verifica in corso...",
- "admin.false": "falso",
- "admin.file.enableFileAttachments": "Consenti Condivisione File:",
- "admin.file.enableFileAttachmentsDesc": "Se falso, disattiva la possibilità di condividere file su questo server. Tutti i file e le immagini caricati nei messaggi saranno bloccati su tutti i client e dispositivi, inclusi i dispositivi mobili.",
- "admin.file.enableMobileDownloadDesc": "Se falso, disattiva il download dei file sulle app per smartphone. Gli utente potranno ancora scaricare i file dal browser web mobile.",
- "admin.file.enableMobileDownloadTitle": "Permetti download dei file da mobile:",
- "admin.file.enableMobileUploadDesc": "Se falso, disattiva il caricamento dei file dalle app per smartphone. Se Consenti Condivisione File è vero, gli utenti potranno ancora caricare file dal browser web mobile.",
- "admin.file.enableMobileUploadTitle": "Permetti Caricamento File da Mobile:",
- "admin.file_upload.chooseFile": "Scegliere file",
- "admin.file_upload.noFile": "Nessun file caricato",
- "admin.file_upload.uploadFile": "Carica",
- "admin.files.images": "Immagini",
- "admin.files.storage": "Archiviazione",
- "admin.general.configuration": "Configurazione",
- "admin.general.localization": "Localizzazione",
- "admin.general.localization.availableLocalesDescription": "Impostare quali lingue sono disponibili per gli utenti nelle Impostazioni utente (lasciare in bianco per tutte le lingue disponibili). Se si stanno aggiungendo manualmente altre lingue, si deve aggiungere la Lingua predefinita utente prima di salvare.
. Se si vuole contribuire alla traduzione, iscriversi al Server traduzioni Mattermost.",
- "admin.general.localization.availableLocalesNoResults": "Nessun risultato trovato",
- "admin.general.localization.availableLocalesNotPresent": "La lingua predefinita del client deve essere inclusa nella lista di quelle disponibili",
- "admin.general.localization.availableLocalesTitle": "Lingue disponibili:",
- "admin.general.localization.clientLocaleDescription": "Lingua predefinita per utenti appena creati e pagine dove l'utente non ha effettuato l'accesso.",
- "admin.general.localization.clientLocaleTitle": "Lingua predefinita client:",
- "admin.general.localization.serverLocaleDescription": "Lingua predefinita per i messaggi ed i log. La modifica richiederà un riavvio del server per avere effetto.",
- "admin.general.localization.serverLocaleTitle": "Lingua predefinita server:",
- "admin.general.log": "Registrazione",
- "admin.general.policy": "Criteri",
- "admin.general.policy.allowBannerDismissalDesc": "Quando abiltato, gli utenti possono ignorare il banner fino al prossimo aggiornamento. Se impostato su falso, il banner rimarrà permanentemente visibile fino a che non verrà disabilitato dall'amministratore di sistema.",
- "admin.general.policy.allowBannerDismissalTitle": "Ammetti Ignora Banner:",
- "admin.general.policy.allowEditPostAlways": "In qualunque momento",
- "admin.general.policy.allowEditPostDescription": "Imposta il periodo di tempo lasciato agli autori per modificare il messaggio dopo la pubblicazione.",
- "admin.general.policy.allowEditPostNever": "Mai",
- "admin.general.policy.allowEditPostTimeLimit": "secondi dopo la pubblicazione",
- "admin.general.policy.allowEditPostTitle": "Consente agli utenti di modificare i propri messaggi:",
- "admin.general.policy.bannerColorTitle": "Colore Banner:",
- "admin.general.policy.bannerTextColorTitle": "Color Testo Banner:",
- "admin.general.policy.bannerTextDesc": "Testo che apparirà nel banner di annuncio.",
- "admin.general.policy.bannerTextTitle": "Testo Banner:",
- "admin.general.policy.enableBannerDesc": "Abilita un banner di annuncio all'interno di tutti i gruppi.",
- "admin.general.policy.enableBannerTitle": "Abilita Banner di annuncio:",
- "admin.general.policy.permissionsAdmin": "Amministratori di sistema e di gruppo",
- "admin.general.policy.permissionsAll": "Tutti i membri del gruppo",
- "admin.general.policy.permissionsAllChannel": "Tutti i membri del canale",
- "admin.general.policy.permissionsChannelAdmin": "Amministratori di sistema, di gruppo e di canale",
- "admin.general.policy.permissionsDeletePostAdmin": "Amministratori di sistema e di gruppo",
- "admin.general.policy.permissionsDeletePostAll": "L'autore del messaggio lo può cancellare, e gli amministratori possono cancellare qualsiasi messaggio",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Amministratori di sistema",
- "admin.general.policy.permissionsSystemAdmin": "Amministratori di sistema",
- "admin.general.policy.restrictPostDeleteDescription": "Imposta chi ha i permessi per cancellare messaggi.",
- "admin.general.policy.restrictPostDeleteTitle": "Quali utenti possono cancellare messaggi:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Imposta chi può creare canali privati.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Abilitare creazione di canali privati per:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "riga di comando",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Imposta criterio su chi può cancellare i canali privati. I canali cancellati possono essere recuperati dal database usando la {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Abilitare cancellazione dei canali privati per:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Imposta criterio su chi puà aggiungere e rimuovere membri dai canali privati.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Abilita la gestione dei membri del canale privato per:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Imposta criterio su chi può rinominare ed impostare intestazione e scopo per i canali privati.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Abilitare la possibilità di rinominare il canale privato per:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Imposta chi può creare canali pubblici.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Abilitare creazione di canali pubblici per:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "riga di comando",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Imposta chi può cancellare i canali pubblici. I canali cancellati possono essere recuperati dal database usando la {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Abilitare cancellazione dei canali pubblici per:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Imposta chi può rinominare e impostare intestazione e scopo per i canali pubblici.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Abilitare la rinomina dei canali pubblici per:",
- "admin.general.policy.teamInviteDescription": "Impostare criterio su chi può invitare altri in un gruppo usando Invia Email di Invito per invitare nuovi utenti con email, o con le opzioni Collegamento di Invito al gruppo e Aggiunti Membri al gruppo dal menu principale. Se si usa Collegamento di Invito al gruppo, si può impostare la scadenza del codice di invito in Impostazioni Team > Codice di Invito una volta che gli utenti desiderati si sono uniti al gruppo.",
- "admin.general.policy.teamInviteTitle": "Abilitare l'invio di inviti al gruppo da:",
- "admin.general.privacy": "Riservatezza",
- "admin.general.usersAndTeams": "Utenti e gruppi",
- "admin.gitab.clientSecretDescription": "Ricavare questo valore dalle precedenti istruzioni per l'accesso a GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Accedere con l'account GitLab e scegliere Impostazioni profilo -> Applicazioni
Inserire gli URI di redirezione \"/login/gitlab/complete\" (es: http://localhost:8065/login/gitlab/complete) e \"/signup/gitlab/complete\".
Quindi usare i campi \"Application Secret Key\" e \"Application ID\" di GitLab per completare le opzioni seguenti.
Completare le URL Endpoint qui sotto.
",
- "admin.gitlab.authDescription": "Inserire https:///oauth/authorize (es. https://example.com:3000/oauth/authorize). Assicurarsi di usare HTTP o HTTPS nell'URL in base alla configurazione del server.",
- "admin.gitlab.authExample": "Es. \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Auth Endpoint:",
- "admin.gitlab.clientIdDescription": "Ottenere questo valore dalle istruzioni precedenti sull'accesso a GitLab",
- "admin.gitlab.clientIdExample": "Es. \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "ID applicazione:",
- "admin.gitlab.clientSecretExample": "Es. \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Secret Key applicazione:",
- "admin.gitlab.enableDescription": "Quando abilitato, Mattermost ammetterà iscrizione e creazione di gruppi utilizzando OAuth GitLab.",
- "admin.gitlab.enableTitle": "Abilita autenticazione con GitLab: ",
- "admin.gitlab.settingsTitle": "Impostazioni GitLab",
- "admin.gitlab.tokenDescription": "Immetti https:///oauth/token. Assicurati di impostare HTTP o HTTPS nell'URL in base alla configurazione del tuo server.",
- "admin.gitlab.tokenExample": "Es.: \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Endpoint Token:",
- "admin.gitlab.userDescription": "Immetti https:///api/v3/user. Assicurati di usare HTTP o HTTPS in base alla configurazione della tua configurazione.",
- "admin.gitlab.userExample": "Es.: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "Endpoint API utente:",
- "admin.google.EnableHtmlDesc": "
Vai a https://console.developers.google.com, clicca su Credenziali nella barra laterale a sinistra ed immetti \"Mattermost - nome-tua-azienda\" come Nome Progetto, in seguito clicca su Crea.
Clicca sulla scermata di consenso OAuth ed immetti \"Mattermost\" come Nome prodotto mostrato agli utenti, successivamente clicca su Salva.
Sotto l'intestazione Credenziali, clicca Crea credenziali, scegli ID client OAuthe seleziona Applicazione Web.
Sotto Restrizioni e Redirect URI Autorizzati immettere tuo-url-mattermost/signup/google/complete (esempio: http://localhost:8065/signup/google/complete). Clicca Crea.
Incolla ID Client e Segreto Client nei campi sottostanti, e poi clicca su Salva.
Infine, visita Google+ API e clicca Abilita. Potrebbe essere necessario qualche minuto affinchè le modifiche vengano propagate all'interno dei sistemi di Google.
",
- "admin.google.authTitle": "Endpoint Autenticazione:",
- "admin.google.clientIdDescription": "L'ID Client che hai ricevuto durante la registrazione dell'applicazione con Google.",
- "admin.google.clientIdExample": "Es.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "ID Client:",
- "admin.google.clientSecretDescription": "Il Segreto Client che hai ricevuto durante la registrazione della tua applicazione con Google.",
- "admin.google.clientSecretExample": "Es.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Segreto Client:",
- "admin.google.tokenTitle": "Endpoint Token:",
- "admin.google.userTitle": "Endpoint API utente:",
- "admin.image.amazonS3BucketDescription": "Nome selezionato per il bucket S3 in AWS.",
- "admin.image.amazonS3BucketExample": "Es.: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Bucket Amazon S3:",
- "admin.image.amazonS3EndpointDescription": "Nome host del tuo fornitore Storage Compatibile S3. Impostazione Predefinita `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Es.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Endpoint S3 Amazon:",
- "admin.image.amazonS3IdDescription": "Richiedi questa credenziale dal tuo amministratore EC2 Amazon.",
- "admin.image.amazonS3IdExample": "Es.: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Chiave di Accesso ID Amazon S3:",
- "admin.image.amazonS3RegionDescription": "Regione AWS selezionata per la creazione del tuo bucket S3.",
- "admin.image.amazonS3RegionExample": "Es.: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Regione Amazon S3:",
- "admin.image.amazonS3SSEDescription": "Se vero, codifica i file su Amazon S3 utilizzando la codifica lato server con le chiavi gestite da Amazon S3. Vedere la documentazione per ulteriori dettagli.",
- "admin.image.amazonS3SSEExample": "Es.: \"falso\"",
- "admin.image.amazonS3SSETitle": "Abilita la codifica lato server di Amazon S3:",
- "admin.image.amazonS3SSLDescription": "Quando disabilitato, ammette connessioni insicure ad Amazon S3. L'Impostazione predefinita ammette solo connessioni sicure.",
- "admin.image.amazonS3SSLExample": "Es.: \"true\"",
- "admin.image.amazonS3SSLTitle": "Abilita Connessioni Sicure ad Amazon S3:",
- "admin.image.amazonS3SecretDescription": "Richiedi questa credenziale al tuo amministratore Amazon EC2.",
- "admin.image.amazonS3SecretExample": "Es.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 Secret Access Key:",
- "admin.image.localDescription": "Directory in cui scrivere file ed immagini. Se vuoto, l'impostazione predefinita è ./data/.",
- "admin.image.localExample": "Es.: \"./data/\"",
- "admin.image.localTitle": "Directory di salvataggio locale:",
- "admin.image.maxFileSizeDescription": "Dimensione massima per gli allegati dei messaggi in megabytes. Attenzione: Verificare che il server disponga di sufficiente memoria per supportare la tua scelta.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Dimensione Massima File:",
- "admin.image.publicLinkDescription": "Salt di 32 caratteri aggiunto per firmare i collegamenti pubblici alle immagini. Viene generato casualmente ad ogni installazione. Clic su \"Rigenera\" per creare un nuovo salt.",
- "admin.image.publicLinkExample": "Es.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Collegamento salt pubblico:",
- "admin.image.shareDescription": "Consenti agli utenti di condividere collegamenti pubblici a file ed immagini.",
- "admin.image.shareTitle": "Abilita Collegamenti Pubblici a File: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Il sistema di storage dove allegati file ed immagini vengono salvati.
Selezionando \"Amazon S3\" verranno abilitati i campi in cui immettere le credenziali ed il nome del bucket Amazon.
Selezionando \"Filesystem Locale\" verrà abilitato il campo necessario per specificare il percorso ad una cartella locale.",
- "admin.image.storeLocal": "Filesystem Locale",
- "admin.image.storeTitle": "Sistema di Storage File:",
- "admin.integrations.custom": "Integrazione personalizzata",
- "admin.integrations.external": "Servizi esterni",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "Il Base DN è il nome della posizione dal cui Mattermost dovrebbe avviare la sua ricerca per gli utenti presenti nell'albero AD/LDAP.",
- "admin.ldap.baseEx": "Es.: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Password dell'utente fornito in \"Bind Username\".",
- "admin.ldap.bindPwdTitle": "Bind Password:",
- "admin.ldap.bindUserDesc": "Il nome utente utilizzato per eseguire la ricerca AD/LDAP. Questo tipicamente dovrebbe essere un account creato specificatamente per l'uso con Mattermost. Dovrebbe avere accesso limitato in lettura alla porzione di albero AD/LDAP specificato nel campo BaseDN.",
- "admin.ldap.bindUserTitle": "Bind Username:",
- "admin.ldap.emailAttrDesc": "L'attributo nel server AD/LDAP che verrà usato per popolare il campo indirizzo email degli utenti in Mattermost.",
- "admin.ldap.emailAttrEx": "Es.: \"mail\" o \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Attributi Email:",
- "admin.ldap.enableDesc": "Quando abilitato, Mattermost ammetterà il login utilizzando AD/LDAP",
- "admin.ldap.enableTitle": "Abilita il login con AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Opzionale) L'attributo usato nel server AD/LDAP che verrà utilizzato per popolare il campo nome proprio degli utenti in Mattermost. Quando abilitato, gli utenti non saranno in grado di modificare il loro nome proprio poichè sincronizzato con il server LDAP. Quando lasciato vuoto, gli utenti possono impostare il nome proprio nelle Impostazioni Account.",
- "admin.ldap.firstnameAttrEx": "Es.: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Nome",
- "admin.ldap.idAttrDesc": "L'attributo del server AD/LDAP che sarà usato come identificatore univoco in Mattermost. Deve essere un attributo AD/LDAP con un valore che non cambia, come un nome utente oppure un uid. Se l'attributo ID di un utente cambia, verrà creato un nuovo account Mattermost dissociato dal vecchio account. Questo è il valore usato per entrare in Mattermost nel campo \"Nome utente AD/LDAP\" presente sulla pagina di accesso. Normalmente questo attributo è lo stesso dell'attributo \"Nome utente\" sopra specificato. Se il tuo gruppo utilizza tipicamente il formato dominio\\\\nomeutente per l'accesso ad altri servizi con AD/LDAP, puoi scegliere di inserire la voce dominio\\\\nomeutente in questo campo e mantenere la coerenza tra i siti.",
- "admin.ldap.idAttrEx": "Es.: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "Attributo ID: ",
- "admin.ldap.lastnameAttrDesc": "(Opzionale) L'attributo del server AD/LDAP che verrà usato per popolare il cognome degli utenti in Mattermost. Quando impostato, gli utenti non potranno modificare il loro cognome perché sarà sincronizzato con il server LDAP. Se lasciato vuoto gli utenti potranno impostare il loro cognome dalle Impostazioni Account.",
- "admin.ldap.lastnameAttrEx": "Es.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Cognome:",
- "admin.ldap.ldap_test_button": "Test AD/LDAP",
- "admin.ldap.loginNameDesc": "Il segnaposto che appare nel campo login sulla pagina login. Predefinito \"Nome utente AD/LDAP \".",
- "admin.ldap.loginNameEx": "Es.: \"AD/LDAP Username\"",
- "admin.ldap.loginNameTitle": "Nome del campo login:",
- "admin.ldap.maxPageSizeEx": "Es.: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Il numero massimo di utenti che il server Mattermost richiederà al server AD/LDAP in una volta sola. 0 significa illimitato.",
- "admin.ldap.maxPageSizeTitle": "Dimensione Massima pagina:",
- "admin.ldap.nicknameAttrDesc": "(Opzionale) L'attributo del server AD/LDAP che verrà usato per popolare il soprannome degli utenti in Mattermost. Quando impostato, gli utenti non potranno modificare il loro soprannome perché sarà sincronizzato con il server LDAP. Se lasciato vuoto gli utenti potranno impostare il loro soprannome dalle Impostazioni Account.",
- "admin.ldap.nicknameAttrEx": "Es.: \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Soprannome:",
- "admin.ldap.noLicense": "
Nota:
AD/LDAP è una funzionalità della versione Enterprise. La licenza usata non include la funzione AD/LDAP. Vedere il sito Mattermost per informazioni sulle licenze e prezzi.
",
- "admin.ldap.portDesc": "La porta che Mattermost userà per connettersi al server AD/LDAP. Il valore di default è 389.",
- "admin.ldap.portEx": "Es.: \"389\"",
- "admin.ldap.portTitle": "Porta AD/LDAP:",
- "admin.ldap.positionAttrDesc": "(Opzionale) L'attributo del server AD/LDAP che verrà usato per popolare il posizione in Mattermost.",
- "admin.ldap.positionAttrEx": "Es.: \"title\"",
- "admin.ldap.positionAttrTitle": "Posizione:",
- "admin.ldap.queryDesc": "Il valore di timeout per le query sul server AD/LDAP. Aumentarlo nel caso si verifichino degli errori di timeout dovuti a rallentamenti sul server AD/LDAP.",
- "admin.ldap.queryEx": "Es.: \"60\"",
- "admin.ldap.queryTitle": "Query Timeout (secondi):",
- "admin.ldap.serverDesc": "Il dominio o l'indirizzo IP del server AD/LDAP.",
- "admin.ldap.serverEx": "Es.: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "Server AD/LDAP:",
- "admin.ldap.skipCertificateVerification": "Salta Verifica Certificato Server:",
- "admin.ldap.skipCertificateVerificationDesc": "Salta la verifica del certificato per le connessioni TLS o STARTTLS. Sconsigliato per gli ambienti di produzione dove è richiesto TLS. Solo per test.",
- "admin.ldap.syncFailure": "Errore sincronizzazione: {error}",
- "admin.ldap.syncIntervalHelpText": "La Sincronizzazione AD/LDAP aggiorna le informazioni utente di Mattermost per rispecchiate gli aggiornamenti sul server AD/LDAP. Per esempio, quando un nome utente cambia su server AD/LDAP, le modifiche vengono applicate anche in Mattermost quando avviene la sincronizzazione. Gli account eliminati o disattivati sul server AD/LDAP saranno impostati come account \"Inattivo\" su Mattermost e le loro sessioni saranno revocate. Mattermost esegue la sincronizzazione secondo l'intervallo specificato. Per esempio, se viene inserito 60, Mattermost esegue la sincronizzazione ogni 60 minuti.",
- "admin.ldap.syncIntervalTitle": "Intervallo di Sincronizzazione (minuti):",
- "admin.ldap.syncNowHelpText": "Avvia la sincronizzazione AD/LDAP immediatamente.",
- "admin.ldap.sync_button": "Sincronizza AD/LDAP ora",
- "admin.ldap.testFailure": "Test AD/LDAP Fallito: {error}",
- "admin.ldap.testHelpText": "Controlla se il server Mattermost può connettersi al server AD/LDAP specificato. Controllare il file di log per messaggi dettagliati sull'errore.",
- "admin.ldap.testSuccess": "Test AD/LDAP Avvenuto correttamente",
- "admin.ldap.uernameAttrDesc": "L'attributo sul server AD/LDAP che verrà usato per popolare il campo nome utente in Mattermost. Può essere lo stesso dell'attributo ID.",
- "admin.ldap.userFilterDisc": "(Opzionale) Inserire un filtro AD/LDAP da usare nella ricerca degli oggetti utente. Solamente gli utenti selezionati dalla query potranno accedere a Mattermost. Per Active Directory, la query per escludere gli utenti disattivati è (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Es.: \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Filtro Utente:",
- "admin.ldap.usernameAttrEx": "Es.: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Nome utente:",
- "admin.license.choose": "Scegli file",
- "admin.license.chooseFile": "Scegli file",
- "admin.license.edition": "Edizione: ",
- "admin.license.key": "Chiave di Licenza: ",
- "admin.license.keyRemove": "Cancella licenza Enterprise ed esegui Downgrade del server",
- "admin.license.noFile": "Nessun file caricato",
- "admin.license.removing": "Rimozione Licenza...",
- "admin.license.title": "Edizione e Licenza",
- "admin.license.type": "Licenza: ",
- "admin.license.upload": "Carica",
- "admin.license.uploadDesc": "Carica una chiave di licenza per Mattermost Enterprise Edition per aggiornare questo server. Vai sul nostro sito per scoprire quali vantaggi offre la versione Enterprise o per acquistare una chiave di licenza.",
- "admin.license.uploading": "Invio Licenza...",
- "admin.log.consoleDescription": "Tipicamente impostato a false in produzione. Gli sviluppatori posso impostare questo campo a true per inviare i messaggi di log alla console impostata. Se vero, il server scrive i messaggi sullo standard output stream (stdout).",
- "admin.log.consoleTitle": "Scrive i logs sulla console: ",
- "admin.log.enableDiagnostics": "Abilita Diagnostica e Invio Errori:",
- "admin.log.enableDiagnosticsDescription": "Abilita questa opzione per aumentare la qualità e le funzionalità di Mattermost inviando informazioni diagnostiche ed errori a Mattermost, Inc. Leggi la nosta politica sulla privacy per scoprirne di più.",
- "admin.log.enableWebhookDebugging": "Attiva il debug di Webhook:",
- "admin.log.enableWebhookDebuggingDescription": "Impostare a falso per disattivare il debug di tutte le richieste webhook in ingresso.",
- "admin.log.fileDescription": "Tipicamente abilitato in produzione. Quando attivo, i log registrati vengono scritti nel file mattermost.log all'interno della directory specificata nel campo File Log Directory. I log vengono ruotati ogni 10,000 linee ed archiviati in un file presente nella stessa directory, con un nome ed una data comprendente un numero di serie. Per esempio, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "Questa impostazione determina il livello di dettaglio con cui i log vengono scritti. ERROR: Scrive solo messaggi di errore. INFO: Scrive i messaggi di errore e le informazioni di avvio e inizializzazione. DEBUG: Scrive informazioni dettagliate per gli sviluppatori in fase di debug.",
- "admin.log.fileLevelTitle": "Livello di log file:",
- "admin.log.fileTitle": "File di log: ",
- "admin.log.formatDateLong": "Data (2006/01/02)",
- "admin.log.formatDateShort": "Data (01/02/06)",
- "admin.log.formatDescription": "Formato del messaggio di log. Se vuoto verrà usato il formato \"[%D %T] [%L] %M\", dove:",
- "admin.log.formatLevel": "Livello (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Messaggio",
- "admin.log.formatPlaceholder": "Specificare il formato file",
- "admin.log.formatSource": "Sorgente",
- "admin.log.formatTime": "Ora (15:04:05 MST)",
- "admin.log.formatTitle": "Formato file di log:",
- "admin.log.levelDescription": "Questa impostazione determina il livello di dettaglio con cui il log degli eventi è inviato alla console. ERROR: Scrive solo i messaggi di errore. INFO: Scrive i messaggi di errore e le informazioni di avvio e inizializzazione. DEBUG: Scrive informazioni dettagliate per gli sviluppatori in fase di debug.",
- "admin.log.levelTitle": "Livello log di console:",
- "admin.log.locationDescription": "Il percorso dei file di log. Se vuoto verranno salvati nella directory ./logs. Il percorso impostato deve esistere e Mattermost deve avere la possibilità di scrivervi.",
- "admin.log.locationPlaceholder": "Immetti la posizione del tuo file",
- "admin.log.locationTitle": "Cartella file di log:",
- "admin.log.logSettings": "Impostazioni di Log",
- "admin.logs.bannerDesc": "Per cercare gli utenti tramite ID utente o token di accesso, andare in Reportistica > Utenti ed incollare l'ID nel campo di ricerca.",
- "admin.logs.reload": "Ricarica",
- "admin.logs.title": "Log del Server",
- "admin.manage_roles.additionalRoles": "Seleziona permessi addizionali per l'account. Scopri di più su ruoli e permessi.",
- "admin.manage_roles.allowUserAccessTokens": "Permetti a questo account di generare token di accesso.",
- "admin.manage_roles.cancel": "Annulla",
- "admin.manage_roles.manageRolesTitle": "Gestisci ruoli",
- "admin.manage_roles.postAllPublicRole": "Accede alle pubblicazione di tutti i canali pubblici.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Accede a tutte le pubblicazioni inclusi i messaggi diretti.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Salva",
- "admin.manage_roles.saveError": "Impossibile salvare i ruoli.",
- "admin.manage_roles.systemAdmin": "Amministratore di Sistema",
- "admin.manage_roles.systemMember": "Membro",
- "admin.manage_tokens.manageTokensTitle": "Gestione Token di accesso personali",
- "admin.manage_tokens.userAccessTokensDescription": "I Token di accesso sono simili ai token di sessione e possono essere utilizzati dalle integrazioni per autenticarsi con le API REST. Più informazioni sui token di accesso.",
- "admin.manage_tokens.userAccessTokensNone": "Nessun Token di accesso personale.",
- "admin.metrics.enableDescription": "Quando abilitato, Mattermost abiliterà il monitoraggio e l'analisi delle prestazioni. Consultare la documentazione per ottenere maggiori informazioni su come configurare il monitoraggio delle prestazioni per Mattermost.",
- "admin.metrics.enableTitle": "Abilitare il monitor delle performance:",
- "admin.metrics.listenAddressDesc": "L'indirizzo su cui il server starà in ascolto per esporre le informazioni di performace.",
- "admin.metrics.listenAddressEx": "Es.: \":8067\"",
- "admin.metrics.listenAddressTitle": "Indirizzo di ascolto:",
- "admin.mfa.bannerDesc": "Autenticazione Multi-fattore è disponibile per gli account con login AD/LDAP. Qualora vengano adoperati altri metodi di autenticazione sarà necessario configurare MFS con il provider di autenticazione.",
- "admin.mfa.cluster": "Alta",
- "admin.mfa.title": "Autenticazione Multi-fattore",
- "admin.nav.administratorsGuide": "Guida dell'amministratore",
- "admin.nav.commercialSupport": "Supporto commerciale",
- "admin.nav.help": "Aiuto",
- "admin.nav.logout": "Esci",
- "admin.nav.report": "Segnala un problema",
- "admin.nav.switch": "Selezione gruppo",
- "admin.nav.troubleshootingForum": "Forum risoluzione problematiche",
- "admin.notifications.email": "Email",
- "admin.notifications.push": "Notifiche Mobile",
- "admin.notifications.title": "Impostazioni delle notifiche",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Applicazioni Google",
- "admin.oauth.off": "Impedisci l'autenticazione tramite un fornitore OAuth 2.0",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Quando abilitato, Mattermost può funzionare come un provider di servizio OAuth 2.0 abilitando se stesso all'autorizzazione di richieste API provenienti da applicazioni esterne. Consultare la documentazione per ottenere maggiori informazioni.",
- "admin.oauth.providerTitle": "Attiva fornitore servizio OAuth 2.0: ",
- "admin.oauth.select": "Seleziona fornitore servizio OAuth 2.0:",
- "admin.office365.EnableHtmlDesc": "
Accedi al tuo account Microsoft o Office 365 account. Assicurati che l'account appartenga allo stesso tenant con cui vuoi che gli utenti accedano.
Vai a https://apps.dev.microsoft.com, clicca Vai alla lista delle app > Aggiungi un app e utillizza \"Mattermost - nome-della-compagnia\" come Nome applicazione.
In Segreto Applicazione, clicca Genera Nuova Password e incolla questo valore nel campo Password Segreta Applicazione sottostante.
In Piattaforme, clicca Aggiungi Piattaforma, scegli Web e inserisci url-mattermost/signup/office365/complete (esempio: http://localhost:8065/signup/office365/complete) in Reindirizza URIs. Deseleziona anche Consenti Flusso Implicito.
Infine, clicca Salva e incolla l'ID Applicazione nel campo sottostante
",
- "admin.office365.authTitle": "Auth Endpoint:",
- "admin.office365.clientIdDescription": "L'ID Client/Applicazione che hai ricevuto durante la registrazione dell'applicazione con Microsoft.",
- "admin.office365.clientIdExample": "Es.: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "ID Applicazione:",
- "admin.office365.clientSecretDescription": "La Password Segreta Applicatione che hai generato durante la registrazione dell'applicazione con Microsoft.",
- "admin.office365.clientSecretExample": "Es.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Password Segreta Applicazione:",
- "admin.office365.tokenTitle": "Endpoint Token:",
- "admin.office365.userTitle": "Endpoint API utente:",
- "admin.password.lowercase": "Almeno una lettera minuscola",
- "admin.password.minimumLength": "Lunghezza Minima Password:",
- "admin.password.minimumLengthDescription": "Numero minimo di caratteri richiesto per una password valida. Dev'essere un numero intero maggiore o uguale a {min} e minore o uguale a {max}.",
- "admin.password.minimumLengthExample": "Es.: \"5\"",
- "admin.password.number": "Almeno un numero",
- "admin.password.preview": "Anteprima messaggio di errore",
- "admin.password.requirements": "Requisiti Password:",
- "admin.password.requirementsDescription": "Tipi di carattere richiesti in una password valida.",
- "admin.password.symbol": "Almeno un simbolo (es. \"~!@#$%^&*()\")",
- "admin.password.uppercase": "Almeno una lettera maiuscola",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "Se vero, puoi configurare i webhook JIRA per inviare messaggi in Mattermost. Per aiutare a combattere i tentativi di phishing, tutte le pubblicazioni saranno etichettate come BOT.",
- "admin.plugins.jira.enabledLabel": "Attiva JIRA:",
- "admin.plugins.jira.secretDescription": "Questo segreto è utilizzato per autenticarsi in Mattermost.",
- "admin.plugins.jira.secretLabel": "Segreto:",
- "admin.plugins.jira.secretParamPlaceholder": "segreto",
- "admin.plugins.jira.secretRegenerateDescription": "Rigenera il segreto per il webhook. Rigenerare il segreto invalida tutte le integrazioni JIRA esistenti.",
- "admin.plugins.jira.setupDescription": "Utilizza questo webhook per configurare l'integrazione con JIRA. Vedere {webhookDocsLink} per ulteriori informazioni.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Seleziona il nome utente utilizzato dall'integrazione.",
- "admin.plugins.jira.userLabel": "Utente:",
- "admin.plugins.jira.webhookDocsLink": "documentazione",
- "admin.privacy.showEmailDescription": "Se falso, nasconde gli indirizzi email dei membri a tutti gli utenti esclusi gli Amministratori di Sistema.",
- "admin.privacy.showEmailTitle": "Mostra Indirizzo Email: ",
- "admin.privacy.showFullNameDescription": "Se falso, nascone i nomi completi dei membri a tutti gli utenti esclusi gli Amministratori di Sistema. Al posto del nome completo verrà visualizzato il nome utente.",
- "admin.privacy.showFullNameTitle": "Mostra nome completo: ",
- "admin.purge.button": "Svuota tutte le Cache",
- "admin.purge.loading": "Caricamento...",
- "admin.purge.purgeDescription": "Svuota tutte le cache in memoria da oggetti come sessioni, account, canali, ecc. Installazioni che utilizzano meccanismi di Alta Affidabilità proveranno a svuotare tutti i server nel cluster. Svuotare le cache può avere effetti sulle performance.",
- "admin.purge.purgeFail": "Pulizia non riuscita: {error}",
- "admin.rate.enableLimiterDescription": "Quando abilitato, le API sono rallentate al limite espresso qui di seguito.",
- "admin.rate.enableLimiterTitle": "Attiva limite di velocità: ",
- "admin.rate.httpHeaderDescription": "Se impostato, varia il limite di velocità secondo l'header HTTP specificato (es. configurando NGINX impostare a \"X-Real-IP\", configurando AmazonELD impostare a \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Es.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Varia il limite di velocità secondo l'header HTTP:",
- "admin.rate.maxBurst": "Dimensione massima richiesta:",
- "admin.rate.maxBurstDescription": "Numero massimo di richieste consentite oltre al limite di query per secondo.",
- "admin.rate.maxBurstExample": "Es.: \"100\"",
- "admin.rate.memoryDescription": "Numero massimo di sessioni utente connesse al sistema come determinato dalle impostazioni \"Varia il limite di velocità secondo l'indirizzo remoto\" e \"Varia il limite di velocità secondo l'header HTTP\".",
- "admin.rate.memoryExample": "Es.: \"10000\"",
- "admin.rate.memoryTitle": "Dimensione Allocazione Memoria:",
- "admin.rate.noteDescription": "Riavviare il server per rendere effettive le modifiche apportate ad impostazioni diverse da URL del sito.",
- "admin.rate.noteTitle": "Nota:",
- "admin.rate.queriesDescription": "Restringere il tasso di richieste API a questo numero per secondo.",
- "admin.rate.queriesExample": "Es.: \"10\"",
- "admin.rate.queriesTitle": "Numero massimo di Richieste al secondo:",
- "admin.rate.remoteDescription": "Quando abilitato, l'accesso alle API è limitato tramite indirizzo IP.",
- "admin.rate.remoteTitle": "Varia il limite di velocità secondo l'indirizzo remoto: ",
- "admin.rate.title": "Impostazioni limite di velocità",
- "admin.recycle.button": "Riutilizza connessioni al database",
- "admin.recycle.loading": "Riutilizzo...",
- "admin.recycle.recycleDescription": "Installazioni che utilizzano database multipli possono cambiare da un database principale ad un altro senza riavviare il server Mattermost, aggiornando il file \"config.json\" con la nuova configurazione e utilizzando la funzionalità {reloadConfiguration} per caricare le nuove impostazioni mentre il server gira. L'amministratore deve usare la funzionalità {featureName} per riutilizzare le connessioni al database con le nuove impostazioni.",
- "admin.recycle.recycleDescription.featureName": "Riutilizza connessioni al database",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configurazione > Ricarica la configurazione dal disco",
- "admin.recycle.reloadFail": "Riutilizzo connessioni non riuscito: {error}",
- "admin.regenerate": "Rigenera",
- "admin.reload.button": "Ricarica Configurazione Dal Disco",
- "admin.reload.loading": " Caricamento...",
- "admin.reload.reloadDescription": "Le installazioni che utilizzano database multipli possono cambiare da un database principale ad un altro senza riavviare il server Mattermost, aggiornando il file \"config.json\" con la nuova configurazione e utilizzando la funzionalità {featureName} per caricare le nuove impostazioni mentre il server gira. L'amministratore deve usare la funzionalità {recycleDatabaseConnections} per riutilizzare le connessioni al database con le nuove impostazioni.",
- "admin.reload.reloadDescription.featureName": "Ricarica la configurazione dal Disco",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Database > Riutilizza connessioni al database",
- "admin.reload.reloadFail": "Ricaricamento non riuscito: {error}",
- "admin.requestButton.loading": "Caricamento...",
- "admin.requestButton.requestFailure": "Errore: {error}",
- "admin.requestButton.requestSuccess": "Test eseguito con successo",
- "admin.reset_password.close": "Chiudi",
- "admin.reset_password.newPassword": "Nuova Password",
- "admin.reset_password.select": "Seleziona",
- "admin.reset_password.submit": "Inserire almeno {chars} caratteri.",
- "admin.reset_password.titleReset": "Reimposta password",
- "admin.reset_password.titleSwitch": "Cambia Account a Email / Password",
- "admin.saml.assertionConsumerServiceURLDesc": "Inserisci https:///login/sso/saml. Assicurati di utilizzare HTTP o HTTPS nell'URL secondo la configurazione del server. Questo quando è conosciuto anche come Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "Es.: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "URL del fornitore del servizio di accesso:",
- "admin.saml.bannerDesc": "Gli attributi utente del server SAML, inclusi disattivazione o rimozione utente, sono aggiornati in Mattermost durante l'accesso utente. Ulteriori informazioni disponibili qui https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "L'attributo nell'asserzione SAML che verrà usato per popolare il campo indirizzo email degli utenti in Mattermost.",
- "admin.saml.emailAttrEx": "Es.: \"Email\" or \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "Attributo Email:",
- "admin.saml.enableDescription": "Quando abilitato, Mattermost permette il login usando SAML 2.0. Vedi la documentazione per altri particolari sulla configurazione SAML di Mattermost.",
- "admin.saml.enableTitle": "Abilita accesso con SAML 2.0:",
- "admin.saml.encryptDescription": "Se falso, Mattermost non decodificherà le Asserzioni SAML codificate con il tuo Service Provider Public Certificate. Sconsigliato in ambienti di produzione. Solo per test.",
- "admin.saml.encryptTitle": "Abilita Codifica:",
- "admin.saml.firstnameAttrDesc": "(Opzionale) L'attributo nell'asserzione SAML che verrà usato per popolare il campo nome degli utenti in Mattermost.",
- "admin.saml.firstnameAttrEx": "Es.: \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "Attributo nome:",
- "admin.saml.idpCertificateFileDesc": "Il certificato di autenticazione pubblico rilasciato dal tuo Identity Provider.",
- "admin.saml.idpCertificateFileRemoveDesc": "Cancella il certificato di autenticazione pubblico rilasciato dal tuo Identity Provider.",
- "admin.saml.idpCertificateFileTitle": "Certificato pubblico dell'Identity Provider:",
- "admin.saml.idpDescriptorUrlDesc": "L'URL dell'Identity Provider Issuer utilizzato nelle richieste SAML.",
- "admin.saml.idpDescriptorUrlEx": "Es.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "URL dell'Identity Provider Issuer:",
- "admin.saml.idpUrlDesc": "L'URL a cui Mattermost invia le richieste SAML per avviare la sequenza di accesso.",
- "admin.saml.idpUrlEx": "Es.: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Opzionale) L'attributo nell'asserzione SAML che verrà usato per popolare il campo cognome degli utenti in Mattermost.",
- "admin.saml.lastnameAttrEx": "Es.: \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Attributo Cognome:",
- "admin.saml.localeAttrDesc": "(Opzionale) L'attributo nell'asserzione SAML che verrà usato per popolare il campo lingua degli utenti in Mattermost.",
- "admin.saml.localeAttrEx": "Es.: \"Locale\" or \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Attributo Lingua Preferita:",
- "admin.saml.loginButtonTextDesc": "(Opzionale) Il testo che compare sul pulsante di accesso nella pagina di accesso. Il valore predefinito è \"Con SAML\".",
- "admin.saml.loginButtonTextEx": "Es.: \"With OKTA\"",
- "admin.saml.loginButtonTextTitle": "Testo pulsante di accesso:",
- "admin.saml.nicknameAttrDesc": "(Opzionale) L'attributo nell'asserzione SAML che verrà usato per popolare il campo soprannome degli utenti in Mattermost.",
- "admin.saml.nicknameAttrEx": "Es.: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Attributo soprannome:",
- "admin.saml.positionAttrDesc": "(Opzionale) L'attributo nell'asserzione SAML che verrà usato per popolare il campo posizione degli utenti in Mattermost.",
- "admin.saml.positionAttrEx": "Es.: \"Role\"",
- "admin.saml.positionAttrTitle": "Attributo posizione:",
- "admin.saml.privateKeyFileFileDesc": "La chiave privata utilizzata per decodificare le Asserzioni SAML dall'Identity Provider.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Rimuovi la chiave privata utilizzata per decodificare le Asserzioni SAML dall'Identity Provider.",
- "admin.saml.privateKeyFileTitle": "Rimuovi Chiave Privata Provider Servizio:",
- "admin.saml.publicCertificateFileDesc": "Il certificato utilizzato per generare la firma su una richiesta SAML verso l'Identity Provider per un accesso SAML inizializzazo, quando Mattermost è il fornitore del servizio.",
- "admin.saml.publicCertificateFileRemoveDesc": "Rimuovi il certificato utilizzato per generare la firma di una richiesta SAML all'Identity Provider per un accesso SAML inizializzazo, quando Mattermost è il fornitore del servizio.",
- "admin.saml.publicCertificateFileTitle": "Certificato Pubblico del Fornitore del Servizio:",
- "admin.saml.remove.idp_certificate": "Rimuovi Certificato Identità Provider",
- "admin.saml.remove.privKey": "Rimuovi Chiave Privata Provider Servizio",
- "admin.saml.remove.sp_certificate": "Rimuovi Certificato Provider Servizio",
- "admin.saml.removing.certificate": "Rimozione Certificato...",
- "admin.saml.removing.privKey": "Rimozione Chiave Privata...",
- "admin.saml.uploading.certificate": "Caricamento Certificato...",
- "admin.saml.uploading.privateKey": "Caricamento Chiave Privata...",
- "admin.saml.usernameAttrDesc": "L'attributo nell'asserzione SAML che verrà usato per popolare il campo nome utente in Mattermost.",
- "admin.saml.usernameAttrEx": "Es.: \"Username\"",
- "admin.saml.usernameAttrTitle": "Attributo del nome utente:",
- "admin.saml.verifyDescription": "Se falso, Mattermost non verificherà che la firma di una Risposta SAML coincida con l'URL di login del fornitore del servizio. Sconsigliato in ambienti di produzione. Solo per test.",
- "admin.saml.verifyTitle": "Verifica Firma:",
- "admin.save": "Salva",
- "admin.saving": "Salvataggio configurazione...",
- "admin.security.connection": "Connessioni",
- "admin.security.inviteSalt.disabled": "Il salt per l'invito non può essere cambiato quando l'invio email è disabilitato.",
- "admin.security.login": "Login",
- "admin.security.password": "Password",
- "admin.security.passwordResetSalt.disabled": "Il salto di recupero password non può essere modificato quando l'email è disabilitata.",
- "admin.security.public_links": "Collegamenti Pubblici",
- "admin.security.requireEmailVerification.disabled": "La verifica email non può essere modificata quando l'invio email è disabilitato.",
- "admin.security.session": "Sessioni",
- "admin.security.signup": "Iscrizione",
- "admin.select_team.close": "Chiudi",
- "admin.select_team.select": "Seleziona",
- "admin.select_team.selectTeam": "Seleziona gruppo",
- "admin.service.attemptDescription": "Numero di tentativi di login possibilit prima che l'account utente venga bloccato e sia necessario reimpostare la password via email.",
- "admin.service.attemptExample": "Es.: \"10\"",
- "admin.service.attemptTitle": "Numero massimo tentativi di login:",
- "admin.service.cmdsDesc": "Se vero, comandi con slash personalizzati saranno ammessi. Consultare la documentazione per maggiori informazioni.",
- "admin.service.cmdsTitle": "Abilita Comandi con Slash Personalizzati: ",
- "admin.service.corsDescription": "Abilita richieste HTTP Cross origin da uno specifico dominio. Usa \"*\" se vuoi ammettere CORS da qualsiasi dominio o lasciare non compilato per disabilitarlo.",
- "admin.service.corsEx": "http://esempio.com",
- "admin.service.corsTitle": "Abilita richieste cross-origin da:",
- "admin.service.developerDesc": "Quando abilitato, gli errori JavaScript vengono mostrati all'interno di una barra rossa nella parte alta dell'interfaccia utente. Uso non raccomandato in produzione. ",
- "admin.service.developerTitle": "Abilita Modalità Sviluppatore: ",
- "admin.service.enableAPIv3": "Consenti l'utilizzo delle API versione 3:",
- "admin.service.enableAPIv3Description": "Imposta a falso per disattivare la versione 3 delle API REST. Le integrazioni che si basano sulle API v3 smetteranno di funzionare e potranno essere identificate per essere migrate alle API v4. Le API v3 sono considerate deprecate e saranno rimosse nelle prossime release. Vedere https://api.mattermost.com per ulteriori dettagli.",
- "admin.service.enforceMfaDesc": "Quando vero, per effettuare il login è necessario usareautenticazione multi-fattore. I nuovi utenti saranno obbligati ad impostare MFA durante l'iscrizione. Gli utenti che hanno già eseguito l'accesso senza MFA saranno confinati nella pagina di impostazione MFA fino al completamento della procedura.
Se il tuo sistema comprende utenti con meccanismi di login diversi da AD/LDAP ed email, MFA dovrà essere forzato tramite il provider di autenticazione all'infuori di Mattermost.",
- "admin.service.enforceMfaTitle": "Forza Autenticazione Multifattore:",
- "admin.service.forward80To443": "Inoltra porta 80 su 443:",
- "admin.service.forward80To443Description": "Inoltra tutto il traffico non sicuro dalla porta 80 alla porta sicura 443",
- "admin.service.googleDescription": "Imposta questa chiave per abilitare la visualizzazione dei titoli incorporati nelle anteprime YouTube. Senza la chiave, le anteprime YouTube saranno basate su hyperlink che appariranno in messaggi o commenti ma senza mostrare il titolo del video. Visualizzare il Tutorial Google Developers per istruzioni su come ottenere una chiave.",
- "admin.service.googleExample": "Es.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Chiave API Google:",
- "admin.service.iconDescription": "Quando vero, webhooks, comandi slash ed altre integrazioni come Zapier, saranno messe in grado di modificare l'immagine di profilo con cui postano. Nota: in concomitanza con l'abilitazione delle integrazioni per l'override dei nomi utenti, gli utenti potrebbero essere in grado di eseguire attacchi di phishing tentando di impersonare altri utenti.",
- "admin.service.iconTitle": "Abilita integrazioni per l'override delle immagini profilo:",
- "admin.service.insecureTlsDesc": "Se vero, qualsiasi richiesta HTTPS in uscita, accetterà senza verifica certificati self-signed. Per esempio, verranno ammessi webhook in uscita verso server provvisti di certificato self-signed per un qualsiasi dominio. Da notare che questo renderà queste eventuali connessioni suscettibili ad attacchi di tipo man-in-the-middle.",
- "admin.service.insecureTlsTitle": "Abilita Connessioni in Uscita Non Sicure: ",
- "admin.service.integrationAdmin": "Abilita restrizioni nella gestione delle integrazione da parte degli Amministratori:",
- "admin.service.integrationAdminDesc": "Quando vero, webhooks e comandi slash possono solo essere creati, modificati e visualizzati da Amministratori di Sistema, di gruppo, Applicazioni di OAuth 2.0 di Amministratori di Sistema. Le integrazione sono disponibili a tutti gli utenti dopo essere state create dagli Amministratori.",
- "admin.service.internalConnectionsDesc": "In ambiente di test, come nel caso di sviluppo di integrazioni locali, utilizzare questo parametro per specificare il dominio, gli indirizzi IP o la notazione CIDR per permettere connessioni interni.Non raccomandato l'utilizzo in produzione poiché può essere permesso agli utenti di estrarre dati confidenziali dal server o dalla rete interna.
Per impostazione predefinita, gli URL forniti dall'utente come quelli utilizzati per Open Graph, i webhook o i comandi slash non sono autorizzati a connettersi a indirizzi riservati, inclusi gli indirizzi di loopback i gli indirizzi locali utilizzati per la rete interna. Le notifiche push, OAuth 2.0 e WebRTC sono verificati e non vengono influenzati da questa impostazione.",
- "admin.service.internalConnectionsEx": "webhooks.interno.esempio.com 127.0.0.1 10.10.16.0/28",
- "admin.service.internalConnectionsTitle": "Consenti connessioni interne non verificate a: ",
- "admin.service.letsEncryptCertificateCacheFile": "File di Cache del certificato Let's Encrypt:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Il certificato ottenuto ed altri dati relativi al servizio Let's Encrypt saranno immagazzinate in questo file.",
- "admin.service.listenAddress": "Indirizzo di ascolto:",
- "admin.service.listenDescription": "L'indirizzo e porta a cui associarsi e mettersi in ascolto. Specificando \":8065\" ci si associerà a tutte le interfaccie di rete. Specificando \"127.0.0.1:8065\" ci si assocerà solo all'interfaccia corrispondente a quell'indirizzo. Qualora venga scelta una porta di livello basso (chiamate \"porte di sistema\" o \"porte note\", nel range di 0-1023), si dovrà disporre dei permessi necessari per associarsi a quella porta. Su linux è possibile usare: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" per consentire a Mattermost di associarsi alle porte note.",
- "admin.service.listenExample": "Es. \":8065\"",
- "admin.service.mfaDesc": "Se vero, gli utenti con login AD/LDAP o email possono aggiungere al loro account autenticazione multifattore utilizzando Google Authenticator.",
- "admin.service.mfaTitle": "Forza Autenticazione Multi-fattore:",
- "admin.service.mobileSessionDays": "Durata sessione mobile (giorni):",
- "admin.service.mobileSessionDaysDesc": "Il numero di giorni trascorsi dall'ultima volta in cui un utente ha inserito le proprie credenziali e la scadenza della sessione utente. Dopo aver modificato questa impostazione, la nuova durata sessione sarà attiva a partire dalla prossima volta in cui l'utente avrà inserito le proprio credenziali.",
- "admin.service.outWebhooksDesc": "Se vero, comandi con slash personalizzati saranno ammessi. Consultare la documentazione per maggiori informazioni.",
- "admin.service.outWebhooksTitle": "Abilita Webhook in uscita: ",
- "admin.service.overrideDescription": "Quando vero, webhooks, comandi slash ed altre integrazioni come Zapier, saranno messe in grado di modificare l'immagine di profilo con cui postano. Nota: in concomitanza con l'abilitazione delle integrazioni per l'override dei nomi utenti, gli utenti potrebbero essere in grado di eseguire attacchi di phishing tentando di impersonare altri utenti.",
- "admin.service.overrideTitle": "Abilita integrazioni per l'override dei nome utente:",
- "admin.service.readTimeout": "Timeout Lettura:",
- "admin.service.readTimeoutDescription": "Tempo massimo ammesso da quando la connessione è stata accettata a quando la il body della richiesta è stato completamente letto.",
- "admin.service.securityDesc": "Se vero, gli Amministratori di Sistema sono notificati tramite email se delle importanti fix di sicurezza sono stati annunciate nelle ultime 12 ore. Le email devono essere attive.",
- "admin.service.securityTitle": "Abilita notifiche di sicurezza: ",
- "admin.service.sessionCache": "Cache di session (minuti):",
- "admin.service.sessionCacheDesc": "Il numero di minuti in cui tenere una sessione in memoria.",
- "admin.service.sessionDaysEx": "Es.: \"30\"",
- "admin.service.siteURL": "URL del sito:",
- "admin.service.siteURLDescription": "L'URL che gli utenti utilizzeranno per accedere a Mattermost. Le porte standard come la porta 80 e 443 possono essere omesse, ma le porte non standard devono essere specificate. Ad esempio http://mattermost.example.com:8065. Questa impostazione è obbligatoria.",
- "admin.service.siteURLExample": "Es.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Durata sessione SSO (giorni):",
- "admin.service.ssoSessionDaysDesc": "Il numero di giorni dall'ultimo login alla scadenza della sessione utente. Se il metodo di autenticazione è SAML oppure GitLab, l'utente può automaticamente riaccedere se è già loggato in SAML o GitLab. Eventuali modifiche a questa impostazione avranno effetto dalla prossima volta in cui l'utente inserisce le sue credenziali.",
- "admin.service.testingDescription": "Se vero, il comando /test è attivo per provare account, dati e formattazione del testo. Eventuali modifiche richiedono il riavvio del server per avere effetto.",
- "admin.service.testingTitle": "Abilita comandi di test: ",
- "admin.service.tlsCertFile": "File del certificato TLS:",
- "admin.service.tlsCertFileDescription": "Il file del certificato da utilizzare.",
- "admin.service.tlsKeyFile": "File della chiave TLS:",
- "admin.service.tlsKeyFileDescription": "File della chiave privata da utilizzare.",
- "admin.service.useLetsEncrypt": "Utilizza Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Attiva il recupero automatico dei certificati da Let's Encrypt. Il certificato verrà recuperato quando un client cerca di connettersi da un nuovo dominio. Funziona con più domini.",
- "admin.service.userAccessTokensDescLabel": "Nome: ",
- "admin.service.userAccessTokensDescription": "Se vero, gli utenti possono creare token di accesso per le integrazioni in Impostazioni account > Sicurezza. Possono essere utilizzati per autenticarsi verso le API e consentire pieno accesso all'account.
Per gestire chi può creare token di accesso o per cercare un utente per ID del token, andare nella pagina Console di Sistema > Utenti.",
- "admin.service.userAccessTokensIdLabel": "ID token: ",
- "admin.service.userAccessTokensTitle": "Attiva Token di Accesso: ",
- "admin.service.webSessionDays": "Durata session AD/LDAP e email (giorni):",
- "admin.service.webSessionDaysDesc": "Il numero di giorni trascorsi dall'ultima volta in cui un utente ha inserito le proprie credenziali e la scadenza della sessione utente. Dopo aver modificato questa impostazione, la nuova durata sessione sarà attiva a partire dalla prossima volta in cui l'utente avrà inserito le proprio credenziali.",
- "admin.service.webhooksDescription": "Se vero, le richieste webhook in ingresso sono consentite. Per prevenire gli attacchi di phishing, tutte le pubblicazioni da webhooks saranno etichettati da un tag BOT. vedere la documentazione per ulteriori informazioni.",
- "admin.service.webhooksTitle": "Abilita Webhook in ingresso: ",
- "admin.service.writeTimeout": "Timeout in scrittura:",
- "admin.service.writeTimeoutDescription": "Se si utilizza HTTP (non sicuro), è il tempo massimo che può trascorre da quando l'intestazione della richiesta viene letta a quando la risposta viene scritta. Se si utilizza HTTPS è il tempo totale da quando la connessione è accettata a quando la risposta viene inviata.",
- "admin.sidebar.advanced": "Avanzate",
- "admin.sidebar.audits": "Conformità e Controllo",
- "admin.sidebar.authentication": "Autenticazione",
- "admin.sidebar.client_versions": "Versioni del client",
- "admin.sidebar.cluster": "Alta Disponibilità (HA)",
- "admin.sidebar.compliance": "Conformità",
- "admin.sidebar.configuration": "Configurazione",
- "admin.sidebar.connections": "Connessioni",
- "admin.sidebar.customBrand": "Intestazione personalizzata",
- "admin.sidebar.customIntegrations": "Integrazione personalizzata",
- "admin.sidebar.customization": "Personalizzazione",
- "admin.sidebar.database": "Database",
- "admin.sidebar.developer": "Sviluppatore",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "Email",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "Servizi esterni",
- "admin.sidebar.files": "Files",
- "admin.sidebar.general": "Generale",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integrazioni",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Aspetti legali e supporto",
- "admin.sidebar.license": "Versione e Licenza",
- "admin.sidebar.linkPreviews": "Anteprima Collegamenti",
- "admin.sidebar.localization": "Localizzazione",
- "admin.sidebar.logging": "Registrazione",
- "admin.sidebar.login": "Accesso",
- "admin.sidebar.logs": "Logs",
- "admin.sidebar.metrics": "Monitoraggio prestazioni",
- "admin.sidebar.mfa": "AMF",
- "admin.sidebar.nativeAppLinks": "Collegamenti App Mattermost",
- "admin.sidebar.notifications": "Notifiche",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "ALTRI",
- "admin.sidebar.password": "Password",
- "admin.sidebar.policy": "Criteri",
- "admin.sidebar.privacy": "Privacy",
- "admin.sidebar.publicLinks": "Collegamenti pubblici",
- "admin.sidebar.push": "Notifiche Mobile",
- "admin.sidebar.rateLimiting": "Limite di velocità",
- "admin.sidebar.reports": "REPORTISTICA",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Sicurezza",
- "admin.sidebar.sessions": "Sessioni",
- "admin.sidebar.settings": "IMPOSTAZIONI",
- "admin.sidebar.signUp": "Registrati",
- "admin.sidebar.sign_up": "Iscriviti",
- "admin.sidebar.statistics": "Statistiche di gruppo",
- "admin.sidebar.storage": "Archiviazione",
- "admin.sidebar.support": "Aspetti legali e supporto",
- "admin.sidebar.users": "Utenti",
- "admin.sidebar.usersAndTeams": "Utenti e gruppi",
- "admin.sidebar.view_statistics": "Statistiche sito",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Console di Sistema",
- "admin.sql.dataSource": "Sorgente dati:",
- "admin.sql.driverName": "Nome Driver:",
- "admin.sql.keyDescription": "salt a 32 caratteri disponibile per codificare e decodificare i campi sensibili nel database.",
- "admin.sql.keyExample": "Es.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "Chiave di codifica At Rest:",
- "admin.sql.maxConnectionsDescription": "Numero massimo di connessioni inattive mantenute aperte con il database.",
- "admin.sql.maxConnectionsExample": "Es.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Numero massimo di connessioni inattive:",
- "admin.sql.maxOpenDescription": "Numero massimo di connessioni attive mantenute aperte con il database.",
- "admin.sql.maxOpenExample": "Es.: \"10\"",
- "admin.sql.maxOpenTitle": "Numero massimo di connessioni:",
- "admin.sql.noteDescription": "Modificare le impostazioni in questa sezione richiede un riavvio del server affinché abbiano effetto.",
- "admin.sql.noteTitle": "Nota:",
- "admin.sql.queryTimeoutDescription": "Il numero di secondi da attendere una risposta dal database dopo aver aperto una connessione e inviato una richiesta. Gli errori visualizzati nell'interfaccia utente oppure nei log come risultato di un timeout di una query possono cambiare a seconda del tipo di query.",
- "admin.sql.queryTimeoutExample": "Es.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Timeout Query:",
- "admin.sql.replicas": "Repliche sorgente dati:",
- "admin.sql.traceDescription": "(Modalità sviluppo) Se vero, l'esecuzione di statement SQL viene scritta nei log.",
- "admin.sql.traceTitle": "Traccia: ",
- "admin.sql.warning": "Attenzione: rigenerare questo salt può rendere impossibile recuperare i valori di alcune colonne del database.",
- "admin.support.aboutDesc": "L'URL del collegamento \"Informazioni\" nelle pagine di accesso a Mattermost. Se vuoto il collegamento viene nascosto agli utenti.",
- "admin.support.aboutTitle": "Collegamento informazioni:",
- "admin.support.emailHelp": "Indirizzi email visualizzati nelle notifiche email e durante il tutorial agli utenti su come richiedere supporto.",
- "admin.support.emailTitle": "Email di supporto:",
- "admin.support.helpDesc": "URL per collegamento di Supporto sulla pagina di accesso a Mattermost e nel Menu Principale. Se vuoto il collegamento di Supporto viene nascosto agli utenti.",
- "admin.support.helpTitle": "Collegamento di supporto:",
- "admin.support.noteDescription": "Se il collegamento punta a un sito esterno, l'URL deve iniziare con http:// oppure https://.",
- "admin.support.noteTitle": "Nota:",
- "admin.support.privacyDesc": "L'URL per il collegamento alla Privacy sulle pagine di login. Se vuoto il collegamento alla Privacy viene nascosto agli utenti.",
- "admin.support.privacyTitle": "Collegamento alla Politica sulla Privacy:",
- "admin.support.problemDesc": "L'URL per Segnalare un Problema nel Menu Principale. Se vuoto il collegamento viene cancellato dal Menu Principale.",
- "admin.support.problemTitle": "Collegamento per Segnalare un Problema:",
- "admin.support.termsDesc": "Collegamento alla pagina con i Termini di Utilizzo per gli utenti del servizio online. Per default, sono incluse le \"Condizioni d'uso di Mattermost (Utente finale)\" che spiegano i termini con cui il software Mattermost è fornito agli utenti finali. Se si utilizzato termini personalizzati, i nuovi termini devono includere un collegamento ai termini di default in modo da mettere gli utenti a conoscenza delle \"Condizioni d'uso di Mattermost (Utente finale)\".",
- "admin.support.termsTitle": "Collegamento Termini di Utilizzo:",
- "admin.system_analytics.activeUsers": "Utenti attivi con post",
- "admin.system_analytics.title": "il Sistema",
- "admin.system_analytics.totalPosts": "Pubblicazioni totali",
- "admin.system_users.allUsers": "Tutti gli utenti",
- "admin.system_users.noTeams": "Nessun gruppo",
- "admin.system_users.title": "Utenti {siteName}",
- "admin.team.brandDesc": "Abilita marchio pesonalizzato per visualizzare un'immagine a tua scelta, caricabile qui sotto, e un testo di aiuto, inseribile qui sotto, nella pagina di accesso.",
- "admin.team.brandDescriptionExample": "Tutte le tue comunicazioni di gruppo in un posto, ricercabili e accessibili ovunque",
- "admin.team.brandDescriptionHelp": "Descrizione del servizio visualizzata nella pagina di login e nell'interfaccia utente. Se non specificato viene visualizzato \"Tutte le tue comunicazioni di gruppo in un posto, ricercabili e accessibili ovunque\".",
- "admin.team.brandDescriptionTitle": "Descrizione del sito: ",
- "admin.team.brandImageTitle": "Logo personalizato:",
- "admin.team.brandTextDescription": "Testo che comparirà sotto l'immagine del marchio personalizzato sulla pagina di login. Supporta il testo formattato in html. Massimo 500 caratteri.",
- "admin.team.brandTextTitle": "Testo marchio personalizzato:",
- "admin.team.brandTitle": "Abilita marchio personalizzato: ",
- "admin.team.chooseImage": "Scegli Nuova Immmagine",
- "admin.team.dirDesc": "Se vero, i gruppi che sono configurati per essere visualizzati nella cartella gruppi saranno visualizzati nella pagina principale al posto della voce \"crea nuovo gruppo\".",
- "admin.team.dirTitle": "Abilita Cartella Gruppi: ",
- "admin.team.maxChannelsDescription": "Numero totate di canali (attivi e cancellati) per gruppo.",
- "admin.team.maxChannelsExample": "Es.: \"100\"",
- "admin.team.maxChannelsTitle": "Numero massimo di canali per gruppo:",
- "admin.team.maxNotificationsPerChannelDescription": "Numero massimo di utenti in un canale che disattivano comandi @all, @here e @channel per le notifiche, a causa delle performance.",
- "admin.team.maxNotificationsPerChannelExample": "Es.: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Numero massimo di notifiche per canale:",
- "admin.team.maxUsersDescription": "Numero massimo di utenti (attivi e inattivi) per gruppo.",
- "admin.team.maxUsersExample": "Es.: \"25\"",
- "admin.team.maxUsersTitle": "Numero massimo di utenti per gruppo:",
- "admin.team.noBrandImage": "Nessun immagine logo caricata",
- "admin.team.openServerDescription": "Se vero, chiunque per registrare un account utente su questo server senza essere stato invitato.",
- "admin.team.openServerTitle": "Abilita Server Aperto: ",
- "admin.team.restrictDescription": "Gruppi e utenti possono essere creati solo da un dominio specifico (es. \"mattermost.org\") o da una lista di domini separati da virgola (es. \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Abilita gli utenti ad aprire canali di Messaggi Diretti con:",
- "admin.team.restrictDirectMessageDesc": "'Tutti gli utenti su questo server Mattermost' abilita gli utenti a inviare Messaggi Diretti con qualsiasi utente sul server, anche se non appartengono a nessun gruppo comune. 'Tutti i membri del gruppo' limita l'abilità di inviare Messaggi Diretti solo agli utenti che appartengono allo stesso gruppo.",
- "admin.team.restrictExample": "Es.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Se vero, non è possibile creare gruppo con nomi che contengono parole riservate ad esempio www, admin, support, test, channel, ecc",
- "admin.team.restrictNameTitle": "Restringi Nomi Gruppo: ",
- "admin.team.restrictTitle": "Restringi la creazione di account ai domini specificati:",
- "admin.team.restrict_direct_message_any": "Qualunque utente sul server Mattermost",
- "admin.team.restrict_direct_message_team": "Qualsiasi membro del gruppo",
- "admin.team.showFullname": "Visualizza nome e cognome",
- "admin.team.showNickname": "Visualizza soprannome se esiste, altrimenti visualizza nome e cognome",
- "admin.team.showUsername": "Visualizza nome utente (default)",
- "admin.team.siteNameDescription": "Nome del servizio visualizzato nella pagina di accesso e nell'interfaccia utente.",
- "admin.team.siteNameExample": "Es.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Nome del sito:",
- "admin.team.teamCreationDescription": "Se falso, solo gli Amministratori di Sistema possono creare Gruppi.",
- "admin.team.teamCreationTitle": "Abilita creazione gruppi: ",
- "admin.team.teammateNameDisplay": "Visualizza nome collega:",
- "admin.team.teammateNameDisplayDesc": "Seleziona come visualizzare i nomi degli altri utenti nelle pubblicazioni e nelle liste dei messaggi diretti.",
- "admin.team.upload": "Carica",
- "admin.team.uploadDesc": "Personalizza la tua esperienza utente aggiungendo un'immagine personalizzata alla pagina di accesso. La dimensione massima raccomandata per l'immagine è inferiore ai 2 MB.",
- "admin.team.uploaded": "Caricato!",
- "admin.team.uploading": "Invio..",
- "admin.team.userCreationDescription": "Se falso, la creazione di nuovi account è disattivata. Il pulsate di creazione account visualizza un errore se cliccato.",
- "admin.team.userCreationTitle": "Abilita creazione account: ",
- "admin.team_analytics.activeUsers": "Utenti attivi con post",
- "admin.team_analytics.totalPosts": "Pubblicazioni totali",
- "admin.true": "vero",
- "admin.user_item.authServiceEmail": "Metodo di accesso: Email",
- "admin.user_item.authServiceNotEmail": "Metodo di accesso: {service}",
- "admin.user_item.confirmDemoteDescription": "Se rimuovi te stesso dal ruolo di Amministratore di Sistema e non ci sono altri utenti con il ruolo di Amministratore di Sistema dovrai riassegnare il ruolo di Amministratore di Sistema utilizzando un terminale ed eseguendo il seguente comando.",
- "admin.user_item.confirmDemoteRoleTitle": "Conferma la rimozione dal ruolo di Amministratore di Sistema",
- "admin.user_item.confirmDemotion": "Conferma rimozione",
- "admin.user_item.confirmDemotionCmd": "Ruolo system_admin su piattaforma {username}",
- "admin.user_item.emailTitle": "Email: {email}",
- "admin.user_item.inactive": "Inattivo",
- "admin.user_item.makeActive": "Attiva",
- "admin.user_item.makeInactive": "Disattiva",
- "admin.user_item.makeMember": "Rendi membro",
- "admin.user_item.makeSysAdmin": "Rendi Amministratore di Sistema",
- "admin.user_item.makeTeamAdmin": "Rendi Amministratore di Gruppo",
- "admin.user_item.manageRoles": "Gestisci ruoli",
- "admin.user_item.manageTeams": "Gestisci Gruppi",
- "admin.user_item.manageTokens": "Gestisci Tokens",
- "admin.user_item.member": "Membro",
- "admin.user_item.mfaNo": "AMF: No",
- "admin.user_item.mfaYes": "AMF: Sì",
- "admin.user_item.resetMfa": "Rimuovi AMF",
- "admin.user_item.resetPwd": "Reimposta password",
- "admin.user_item.switchToEmail": "Cambia a Email/Password",
- "admin.user_item.sysAdmin": "Amministratore di sistema",
- "admin.user_item.teamAdmin": "Amministratore di Gruppo",
- "admin.user_item.userAccessTokenPostAll": "(con post:tutti i Token di accesso personali)",
- "admin.user_item.userAccessTokenPostAllPublic": "(con post:Token di accesso personali per canali)",
- "admin.user_item.userAccessTokenYes": "(con Token di accesso personali)",
- "admin.webrtc.enableDescription": "Se vero, Mattermost permetti di fare videochiamate uno-a-uno. Le chiamate WebRTC sono disponibili su Chrome, Firefox e l'App Mattermost Desktop.",
- "admin.webrtc.enableTitle": "Abilita Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Inserisci la password segreta di amministrazione per accedere all'URL del Gateway di Amministrazione.",
- "admin.webrtc.gatewayAdminSecretExample": "Es.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Segreto del Gateway di Amministrazione:",
- "admin.webrtc.gatewayAdminUrlDescription": "Inserisci https://:/admin. Assicurati di utilizzare HTTP o HTTPS nell'URL a seconda della configurazione del server. Mattermost WebRTC utilizza questo URL per ottenere dei token validi per ogni peer in modo da stabilire la connessione.",
- "admin.webrtc.gatewayAdminUrlExample": "Es.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "URL Gateway di Amministrazione:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Inserisci wss://:. Assicurati di utilizzare WS o WSS nell'URL a seconda della configurazione del server. Questo è il WebSocket utilizzato per segnalare e stabilire la connessione tra i peer.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Es.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "URL Gateway del WebSocket:",
- "admin.webrtc.stunUriDescription": "Inserisci l'URI del server di STUN: :. STUN è un protocollo di rete che permette di accedere ad un host attraverso il suo IP pubblico se è situato dietro un NAT.",
- "admin.webrtc.stunUriExample": "Es.: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI:",
- "admin.webrtc.turnSharedKeyDescription": "Inserisci la Chiave Condivisa del Server TURN. Questa è utilizzata per creare delle password dinamiche e stabilire la connessione. Ogni password è valida per un breve periodo di tempo.",
- "admin.webrtc.turnSharedKeyExample": "Es.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "Chiave Condivisa TURN:",
- "admin.webrtc.turnUriDescription": "Inserisci l'URI del server TURN: :. TURN è un protocollo di rete standard che permette di collegarsi a un host utilizzato un IP pubblico se è situato dietro un NAT.",
- "admin.webrtc.turnUriExample": "Es.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI:",
- "admin.webrtc.turnUsernameDescription": "Inserisci il nome utente del server TURN.",
- "admin.webrtc.turnUsernameExample": "Es.: \"mionomeutente\"",
- "admin.webrtc.turnUsernameTitle": "Nome utente TURN:",
- "admin.webserverModeDisabled": "Disabilitata",
- "admin.webserverModeDisabledDescription": "Il server Mattermost non invierà file statici.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Il server Mattermost invierà i file statici compressi con gzip.",
- "admin.webserverModeHelpText": "la compressione gzip applicata ai file statici. E' consigliato attivare gzip per aumentare le performance a meno che l'ambiente di installazione non abbia specifiche restrizioni, come un proxy web che non gestisce gzip.",
- "admin.webserverModeTitle": "Modalità webserver:",
- "admin.webserverModeUncompressed": "Non compressa",
- "admin.webserverModeUncompressedDescription": "Il server Mattermost invierà i contenuti statici non compressi.",
- "analytics.chart.loading": "Caricamento...",
- "analytics.chart.meaningful": "Dati insufficienti per una rappresentazione significativa.",
- "analytics.system.activeUsers": "Utenti attivi con post",
- "analytics.system.channelTypes": "Tipi di canale",
- "analytics.system.dailyActiveUsers": "Utenti attivi quotidianamente",
- "analytics.system.monthlyActiveUsers": "Utenti attivi mensilmente",
- "analytics.system.postTypes": "Pubblicazioni, File e Hashtag",
- "analytics.system.privateGroups": "Canali Privati",
- "analytics.system.publicChannels": "Canali Pubblici",
- "analytics.system.skippedIntensiveQueries": "Per massimizzare le performance, alcune statistiche sono state disattivate. Puoi riattivarle nel file config.json. Vedi https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Pubblicazioni con solo testo",
- "analytics.system.title": "Statistiche di Sistema",
- "analytics.system.totalChannels": "Canali totali",
- "analytics.system.totalCommands": "Comandi totali",
- "analytics.system.totalFilePosts": "Pubblicazioni con file",
- "analytics.system.totalHashtagPosts": "Pubblicazioni con Hashtags",
- "analytics.system.totalIncomingWebhooks": "Webhooks in ingresso",
- "analytics.system.totalMasterDbConnections": "Connessioni al database principale",
- "analytics.system.totalOutgoingWebhooks": "Webhooks in uscita",
- "analytics.system.totalPosts": "Pubblicazioni totali",
- "analytics.system.totalReadDbConnections": "Connessioni al database di replica",
- "analytics.system.totalSessions": "Sessioni totali",
- "analytics.system.totalTeams": "Gruppi totali",
- "analytics.system.totalUsers": "Utenti totali",
- "analytics.system.totalWebsockets": "Connessioni WebSocket",
- "analytics.team.activeUsers": "Utenti Attivi Con Pubblicazioni",
- "analytics.team.newlyCreated": "Utenti Creati Recentemente",
- "analytics.team.noTeams": "Non sono presenti gruppi su questo server per i quali visualizzare statistiche.",
- "analytics.team.privateGroups": "Canali Privati",
- "analytics.team.publicChannels": "Canali Pubblici",
- "analytics.team.recentActive": "Utenti Attivi Recentemente",
- "analytics.team.recentUsers": "Utenti Attivi Recentemente",
- "analytics.team.title": "Statistiche gruppo per {team}",
- "analytics.team.totalPosts": "Pubblicazioni totali",
- "analytics.team.totalUsers": "Utenti totali",
- "api.channel.add_member.added": "{addedUsername} aggiunto al canale da {username}",
- "api.channel.delete_channel.archived": "{username} ha archiviato il canale.",
- "api.channel.join_channel.post_and_forget": "{username} è entrato nel canale.",
- "api.channel.leave.left": "{username} ha lasciato il canale.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} ha aggiornato il nome del canale da: {old} a: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} ha rimosso l'intestazione del canale (era: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} ha aggiornato il titolo del canale da: {old} a: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} ha aggiornato il titolo del canale a: {new}",
- "api.channel.remove_member.removed": "{removedUsername} è stato cancellato dal canale",
- "app.channel.post_update_channel_purpose_message.removed": "{username} ha cancellato lo scopo del canale (era: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} ha aggiornato lo scopo del canale da: {old} a: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} ha aggiornato lo scopo del canale a: {new}",
- "audit_table.accountActive": "Account attivato",
- "audit_table.accountInactive": "Account disattivato",
- "audit_table.action": "Azione",
- "audit_table.attemptedAllowOAuthAccess": "Cerca di permettere un nuovo accesso al servizio OAuth",
- "audit_table.attemptedLicenseAdd": "Tentata aggiunta di una nuova licenza",
- "audit_table.attemptedLogin": "Tentato accesso",
- "audit_table.attemptedOAuthToken": "Tentato di ottenere un token di accesso OAuth",
- "audit_table.attemptedPassword": "Tentato di cambiare la password",
- "audit_table.attemptedRegisterApp": "Tentato di registrare una nuova Applicazione OAuth con ID {id}",
- "audit_table.attemptedReset": "Tentato di resettare la password",
- "audit_table.attemptedWebhookCreate": "Tentato di creare un nuovo webhook",
- "audit_table.attemptedWebhookDelete": "Tentato di cancellare un webhook",
- "audit_table.by": " da {username}",
- "audit_table.byAdmin": " da un amministratore",
- "audit_table.channelCreated": "Creato il canale {channelName}",
- "audit_table.channelDeleted": "Cancellato il canale con l'URL {url}",
- "audit_table.establishedDM": "Stabilito un canale di messaggi diretti con {username}",
- "audit_table.failedExpiredLicenseAdd": "Impossibile aggiungere una nuova licenza che è scaduta o non ancora iniziata",
- "audit_table.failedInvalidLicenseAdd": "Aggiunta di una licenza invalida fallita",
- "audit_table.failedLogin": "Tentativo di accesso fallito",
- "audit_table.failedOAuthAccess": "Impossibile consentire un nuovo accesso OAuth - l'URI di reindirizzamento non corrisponde con quello precedentemente registrato",
- "audit_table.failedPassword": "Impossibile cambiare la password - l'utente ha eseguito l'accesso tramite OAuth",
- "audit_table.failedWebhookCreate": "Impossibile creare un webhook - permessi canale non validi",
- "audit_table.failedWebhookDelete": "Impossibile cancellare un webhook - condizioni non valide",
- "audit_table.headerUpdated": "Aggiornato l'intestazione del canale {channelName}",
- "audit_table.ip": "Indirizzo IP",
- "audit_table.licenseRemoved": "Rimozione della licenza avvenuta correttamente",
- "audit_table.loginAttempt": " (tentativo Login)",
- "audit_table.loginFailure": " (Accesso fallito)",
- "audit_table.logout": "Disconnessione dal tuo account eseguita",
- "audit_table.member": "membro",
- "audit_table.nameUpdated": "Aggiornato il nome del canale {channelName}",
- "audit_table.oauthTokenFailed": "Impossibile ottenere un token di accesso OAuth - {token}",
- "audit_table.revokedAll": "Revocate tutte le sessioni correnti per il gruppo",
- "audit_table.sentEmail": "Inviata email a {email} per il reset della password",
- "audit_table.session": "ID di sessione",
- "audit_table.sessionRevoked": "La session con ID {sessionId} è stata revocata",
- "audit_table.successfullLicenseAdd": "Nuova licenza aggiunta correttamente",
- "audit_table.successfullLogin": "Accesso eseguito correttamente",
- "audit_table.successfullOAuthAccess": "Nuovo accesso OAuth eseguito correttamente",
- "audit_table.successfullOAuthToken": "Nuovo servizio OAuth aggiunto correttamente",
- "audit_table.successfullPassword": "Password modificata con successo",
- "audit_table.successfullReset": "Password resettata correttamente",
- "audit_table.successfullWebhookCreate": "Webhook creato correttamente",
- "audit_table.successfullWebhookDelete": "Webhook cancellato correttamente",
- "audit_table.timestamp": "Data & ora",
- "audit_table.updateGeneral": "Aggiorna le impostazioni generali del tuo account",
- "audit_table.updateGlobalNotifications": "Aggiorna le impostazioni globali di notifica",
- "audit_table.updatePicture": "Aggiorna la tua immagine profilo",
- "audit_table.updatedRol": "Ruolo utente aggiornati a ",
- "audit_table.userAdded": "Aggiungo {username} al canale {channelName}",
- "audit_table.userId": "ID utente",
- "audit_table.userRemoved": "Rimosso {username} dal canale {channelName}",
- "audit_table.verified": "Indirizzo email verificato correttamente",
- "authorize.access": "Permetti l'accesso a {appName}?",
- "authorize.allow": "Consenti",
- "authorize.app": "L'app {appName} richiede l'accesso e la modifica alle tue informazioni di base.",
- "authorize.deny": "Nega",
- "authorize.title": "{appName} vorrebbe connettersi al tuo account Mattermost",
- "backstage_list.search": "Ricerca",
- "backstage_navbar.backToMattermost": "Torna a {siteName}",
- "backstage_sidebar.emoji": "Emoji personalizzati",
- "backstage_sidebar.integrations": "Integrazioni",
- "backstage_sidebar.integrations.commands": "Comandi Slash",
- "backstage_sidebar.integrations.incoming_webhooks": "Webhooks in ingresso",
- "backstage_sidebar.integrations.oauthApps": "Applicazioni OAuth 2.0",
- "backstage_sidebar.integrations.outgoing_webhooks": "Webhooks in uscita",
- "calling_screen": "Chiamata",
- "center_panel.recent": "Click qui per andare ai messaggi recenti. ",
- "change_url.close": "Chiudi",
- "change_url.endWithLetter": "L'URL deve finire con una lettera o con un numero.",
- "change_url.invalidUrl": "URL invalido",
- "change_url.longer": "L'URL deve essere lungo almeno due caratteri.",
- "change_url.noUnderscore": "L'URL non può contenere due underscore consecutivi.",
- "change_url.startWithLetter": "L'URL deve iniziare con una lettera o con un numero.",
- "change_url.urlLabel": "URL del canale",
- "channelHeader.addToFavorites": "Aggiungi a preferiti",
- "channelHeader.removeFromFavorites": "Rimuovi dai preferiti",
- "channel_flow.alreadyExist": "Un canale con questo URL esiste già",
- "channel_flow.changeUrlDescription": "Alcuni caratteri non sono permessi negli URL e potrebbero essere rimossi.",
- "channel_flow.changeUrlTitle": "Modifica URL del canale",
- "channel_flow.create": "Crea canale",
- "channel_flow.handleTooShort": "L'URL del canale deve contenere 2 o più caratteri alfanumerici minuscoli",
- "channel_flow.invalidName": "Nome canale non valido",
- "channel_flow.set_url_title": "Imposta URL del canale",
- "channel_header.addChannelHeader": "Aggiungi una descrizione al canale",
- "channel_header.addMembers": "Aggiungi Membri",
- "channel_header.addToFavorites": "Aggiungi a preferiti",
- "channel_header.channelHeader": "Modifica titolo canale",
- "channel_header.channelMembers": "Membri",
- "channel_header.delete": "Elimina Canale",
- "channel_header.flagged": "Pubblicazioni segnati",
- "channel_header.leave": "Abbandona canale",
- "channel_header.manageMembers": "Gestione Membri",
- "channel_header.notificationPreferences": "Preferenze delle Notifiche",
- "channel_header.pinnedPosts": "Pubblicazioni bloccate",
- "channel_header.recentMentions": "Citazioni Recenti",
- "channel_header.removeFromFavorites": "Rimuovi dai preferiti",
- "channel_header.rename": "Rinomina Canale",
- "channel_header.setHeader": "Modifica titolo canale",
- "channel_header.setPurpose": "Modifica scopo canale",
- "channel_header.viewInfo": "Mostra informazioni",
- "channel_header.viewMembers": "Mostra membri",
- "channel_header.webrtc.call": "Avvia videochiamata",
- "channel_header.webrtc.offline": "L'utente è offline",
- "channel_header.webrtc.unavailable": "Nuove chiamate non disponibili fino al termine della chiamata esistente",
- "channel_info.about": "Informazioni",
- "channel_info.close": "Chiudi",
- "channel_info.header": "Titolo:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Nome:",
- "channel_info.notFound": "Nessun canale trovato",
- "channel_info.purpose": "Scopo:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Aggiungi",
- "channel_invite.addNewMembers": "Aggiungi nuovi membri a ",
- "channel_invite.close": "Chiudi",
- "channel_loader.connection_error": "Sembra esserci un problema con la tua connessione internet.",
- "channel_loader.posted": "Pubblicato",
- "channel_loader.postedImage": " ha caricato un'immagine",
- "channel_loader.socketError": "Controlla la connessione, Mattermost non è raggiungibile. Se il problema persiste chiedi al tuo Amministratore di Sistema di controllare la porta del WebSocket.",
- "channel_loader.someone": "Qualcuno",
- "channel_loader.something": " ha fatto qualcosa di nuovo",
- "channel_loader.unknown_error": "Abbiamo ricevuto un codice di stato inaspettato dal server.",
- "channel_loader.uploadedFile": " ha caricato un file",
- "channel_loader.uploadedImage": " ha caricato un'immagine",
- "channel_loader.wrote": " ha scritto: ",
- "channel_members_dropdown.channel_admin": "Amministratore di canale",
- "channel_members_dropdown.channel_member": "Membro del canale",
- "channel_members_dropdown.make_channel_admin": "Rendi Amministratore di canale",
- "channel_members_dropdown.make_channel_member": "Rendi Membro di canale",
- "channel_members_dropdown.remove_from_channel": "Rimuovi dal canale",
- "channel_members_dropdown.remove_member": "Rimuovi Membro",
- "channel_members_modal.addNew": " Aggiungi nuovi membri",
- "channel_members_modal.members": " Membri",
- "channel_modal.cancel": "Cancella",
- "channel_modal.createNew": "Crea un nuovo canale",
- "channel_modal.descriptionHelp": "Descrivi come verrà usato questo canale.",
- "channel_modal.displayNameError": "Il nome del canale deve contenere 2 o più caratteri",
- "channel_modal.edit": "Modifica",
- "channel_modal.header": "Titolo",
- "channel_modal.headerEx": "Es.: \"[Nome collegamento](http://esempio.com)\"",
- "channel_modal.headerHelp": "Imposta il testo che comparirà nel titolo del canale accanto al nome del canale. Per esempio, includi i collegamenti usati di frequente scrivento [Titolo collegamento](http://esempio.com).",
- "channel_modal.modalTitle": "Nuovo canale",
- "channel_modal.name": "Nome",
- "channel_modal.nameEx": "Es.: \"Bugs\", \"Marketing\"",
- "channel_modal.optional": "(opzionale)",
- "channel_modal.privateGroup1": "Crea un nuovo canale private con accessi ristretti. ",
- "channel_modal.privateGroup2": "Crea un canale privato",
- "channel_modal.publicChannel1": "Crea un canale pubblico",
- "channel_modal.publicChannel2": "Crea un nuovo canale pubblico con accesso libero. ",
- "channel_modal.purpose": "Scopo",
- "channel_modal.purposeEx": "Es.: \"Un canale per segnalare bug e miglioramenti\"",
- "channel_notifications.allActivity": "Per tutte le attività",
- "channel_notifications.allUnread": "Per tutti i messaggi non letti",
- "channel_notifications.globalDefault": "Default Globale ({notifyLevel})",
- "channel_notifications.markUnread": "Segna il canale come non letto",
- "channel_notifications.never": "Mai",
- "channel_notifications.onlyMentions": "Solo per le citazioni",
- "channel_notifications.override": "Selezionando un opzione diversa da \"Default\" sovrascriverà le impostazioni di notifica globale. Le notifiche Desktop sono disponibili per Firefox, Safari e Chrome.",
- "channel_notifications.overridePush": "Selezionano un opzione diversa da \"Default globale\" sovrascriverà le impostazioni di notifica globali per il push mobile nelle impostazioni account. Le notifiche push devono essere abilitate da un Amministratore di Sistema.",
- "channel_notifications.preferences": "Preferenze di notifica per ",
- "channel_notifications.push": "Invia le notifiche push pobile",
- "channel_notifications.sendDesktop": "Invia notifiche desktop",
- "channel_notifications.unreadInfo": "Il nome del canale è in grassetto nella barra laterale quando ci sono messaggi non letti. Selezionando \"Solo per le citazioni\" renderà in grassetto il canale sono quando sei citato.",
- "channel_select.placeholder": "--- Seleziona un canale ---",
- "channel_switch_modal.dm": "(Messaggio diretto)",
- "channel_switch_modal.failed_to_open": "Impossibile aprire un canale.",
- "channel_switch_modal.not_found": "Nessuna corrispondenza trovata.",
- "channel_switch_modal.submit": "Scambia",
- "channel_switch_modal.title": "Cambia canali",
- "claim.account.noEmail": "Nessuna email specificata",
- "claim.email_to_ldap.enterLdapPwd": "Inserisci l'ID e la password del tuo account AD/LDAP",
- "claim.email_to_ldap.enterPwd": "Inserisci la tua password per il tuo account email {site}",
- "claim.email_to_ldap.ldapId": "ID AD/LDAP",
- "claim.email_to_ldap.ldapIdError": "Inserisci il tuo ID AD/LDAP.",
- "claim.email_to_ldap.ldapPasswordError": "Inserisci la tua password AD/LDAP.",
- "claim.email_to_ldap.ldapPwd": "Password AD/LDAP",
- "claim.email_to_ldap.pwd": "Password",
- "claim.email_to_ldap.pwdError": "Inserisci la tua password.",
- "claim.email_to_ldap.ssoNote": "Devi avere già un account AD/LDAP valido",
- "claim.email_to_ldap.ssoType": "Dopo aver convalidato il tuo account, potrai accedere con AD/LDAP",
- "claim.email_to_ldap.switchTo": "Cambia account a AD/LDAP",
- "claim.email_to_ldap.title": "Cambia account Email/Password a AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Inserisci una nuova password per il tuo account {site}",
- "claim.email_to_oauth.pwd": "Password",
- "claim.email_to_oauth.pwdError": "Inserisci la tua password.",
- "claim.email_to_oauth.ssoNote": "Devi avere già un account {type} valido",
- "claim.email_to_oauth.ssoType": "Dopo aver convalidato il tuo account, potrai accedere solo con {type} SSO",
- "claim.email_to_oauth.switchTo": "Cambia account to {uiType}",
- "claim.email_to_oauth.title": "Cambia account Email/Password a {uiType}",
- "claim.ldap_to_email.confirm": "Conferma password",
- "claim.ldap_to_email.email": "Dopo aver cambiato il metodo di autenticazione, userai {email} per autenticarti. Le credenziali AD/LDAP non daranno più accesso a Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "Nuova password per login tramite email:",
- "claim.ldap_to_email.ldapPasswordError": "Inserisci la tua password AD/LDAP.",
- "claim.ldap_to_email.ldapPwd": "Password AD/LDAP",
- "claim.ldap_to_email.pwd": "Password",
- "claim.ldap_to_email.pwdError": "Inserisci la tua password.",
- "claim.ldap_to_email.pwdNotMatch": "Le password non corrispondono.",
- "claim.ldap_to_email.switchTo": "Cambia account a email/password",
- "claim.ldap_to_email.title": "Cambia account AD/LDAP a Email/Password",
- "claim.oauth_to_email.confirm": "Conferma password",
- "claim.oauth_to_email.description": "Dopo aver convalidato il tuo account, potrai accedere solo con la tua email e password.",
- "claim.oauth_to_email.enterNewPwd": "Inserisci la tua password per il tuo account email {site}",
- "claim.oauth_to_email.enterPwd": "Inserisci una password.",
- "claim.oauth_to_email.newPwd": "Nuova Password",
- "claim.oauth_to_email.pwdNotMatch": "Le password non corrispondono.",
- "claim.oauth_to_email.switchTo": "Cambia {type} ad email e password",
- "claim.oauth_to_email.title": "Cambia account {type} a Email",
- "confirm_modal.cancel": "Cancella",
- "connecting_screen": "Connessione",
- "create_comment.addComment": "Aggiungi un commento...",
- "create_comment.comment": "Aggiungi commento",
- "create_comment.commentLength": "La lunghezza dei commenti deve essere meno di {max} caratteri.",
- "create_comment.commentTitle": "Commento",
- "create_comment.file": "Invio file",
- "create_comment.files": "Invio file in corso",
- "create_post.comment": "Commento",
- "create_post.error_message": "Il tuo messaggio è troppo lungo. Conteggio caratteri: {length}/{limit}",
- "create_post.post": "Pubblica",
- "create_post.shortcutsNotSupported": "Le scorciatoie da tastiera non sono supportate sul tuo dispositivo.",
- "create_post.tutorialTip": "
Invio messaggi
Scrivi qui il tuo messaggio e premi INVIO per pubblicarlo.
Clicca il pulsante Allegato per inviare un immagine o un file.
",
- "create_post.write": "Scrivi un messaggio...",
- "create_team.agreement": "Procedendo con la creazione del tuo account e utilizzando {siteName}, acconsenti ai nostri Termini di Utilizzo del Servizio e alla nostra Politica sulla Privacy. Se non sei d'accordo, non puoi utilizzare {siteName}.",
- "create_team.display_name.charLength": "Il nome deve essere lungo {min} o più caratteri fino ad un massimo di {max}. Puoi aggiungere una descrizione più lunga in seguito.",
- "create_team.display_name.nameHelp": "Nome del gruppo in tutti i linguaggi. Il nome del gruppo compare nei menu e nei titoli.",
- "create_team.display_name.next": "Prossimo",
- "create_team.display_name.required": "Il campo è richiesto",
- "create_team.display_name.teamName": "Nome del gruppo",
- "create_team.team_url.back": "Torna al passo precedente",
- "create_team.team_url.charLength": "Il nome deve essere di almeno {min} caratteri e massimo {max}",
- "create_team.team_url.creatingTeam": "Creazione gruppo...",
- "create_team.team_url.finish": "Fine",
- "create_team.team_url.hint": "
Breve e mnemonico è perfetto
Utilizza lettere minuscole, numero e trattini
Deve iniziare con una lettera e non può finire con un trattino
",
- "create_team.team_url.regex": "Utilizza solo lettere minuscolo, numeri e trattini. Deve iniziare con una lettera e non può finire con un trattino.",
- "create_team.team_url.required": "Questo campo è richiesto",
- "create_team.team_url.taken": "Questo URL inizia con una parola riservata o non è disponibile. Per favore provane un altro.",
- "create_team.team_url.teamUrl": "URL gruppo",
- "create_team.team_url.unavailable": "Questo URL è già utilizzato o non disponibile. Per favore provane un altro.",
- "create_team.team_url.webAddress": "Scegli l'indirizzo web del tuo nuovo gruppo:",
- "custom_emoji.empty": "Nessuna emoji personalizzata trovata",
- "custom_emoji.header": "Emoji personalizzati",
- "custom_emoji.search": "Cerca Emoji personalizzate",
- "deactivate_member_modal.cancel": "Annulla",
- "deactivate_member_modal.deactivate": "Disattiva",
- "deactivate_member_modal.desc": "Questa azione disattiverà {username}. L'utente sarà disconnesso e non avrà accesso a nessun gruppo o canale su questo sistem. Sei sicuro di voler disattivare {username}?",
- "deactivate_member_modal.title": "Disattiva {username}",
- "default_channel.purpose": "Pubblica qui i messaggi che vuoi far vedere a tutti. Tutti diventeranno automaticamente membri permanenti di questo canale quando si uniranno al gruppo.",
- "delete_channel.cancel": "Cancella",
- "delete_channel.confirm": "Conferma CANCELLAZIONE del canale",
- "delete_channel.del": "Cancella",
- "delete_channel.question": "Questo cancellerà il canale dal gruppo e renderà il suo contenuto inaccessibile a tutti gli utenti.
Sei sicuro di voler cancellare il canale {display_name}?",
- "delete_post.cancel": "Cancella",
- "delete_post.comment": "Commento",
- "delete_post.confirm": "Conferma la cancellazione di {term}",
- "delete_post.del": "Cancella",
- "delete_post.post": "Spedisci",
- "delete_post.question": "Sei sicuro di voler eliminare questo {term}?",
- "delete_post.warning": "Questa pubblicazione ha {count, number} {count, plural, one {comment} other {comments}}.",
- "edit_channel_header.editHeader": "Modifica il titolo del canale...",
- "edit_channel_header.previewHeader": "Modifica titolo",
- "edit_channel_header_modal.cancel": "Cancella",
- "edit_channel_header_modal.description": "Modifica il titolo che compare vicino al nome del canale nel titolo del canale.",
- "edit_channel_header_modal.error": "Il titolo di questo canale è troppo lungo, inseriscine uno più corto",
- "edit_channel_header_modal.save": "Salva",
- "edit_channel_header_modal.title": "Cambia intestazione per {channel}",
- "edit_channel_header_modal.title_dm": "Modifica del titolo",
- "edit_channel_private_purpose_modal.body": "Questo testo compare nella finestra \"Mostra informazioni\" del canale privato.",
- "edit_channel_purpose_modal.body": "Descrivi come questo canale va usato. Questo testo compare nel menu \"Ancora...\" e aiuta gli utenti a decidere dove entrare.",
- "edit_channel_purpose_modal.cancel": "Cancella",
- "edit_channel_purpose_modal.error": "Lo scopo di questo canale è troppo lungo, inseriscine uno più corto",
- "edit_channel_purpose_modal.save": "Salva",
- "edit_channel_purpose_modal.title1": "Modifica Scopo",
- "edit_channel_purpose_modal.title2": "Modifica Scopo per ",
- "edit_command.save": "Aggiorna",
- "edit_post.cancel": "Cancella",
- "edit_post.edit": "Modifica {title}",
- "edit_post.editPost": "Modifica post...",
- "edit_post.save": "Salva",
- "email_signup.address": "Indirizzo Email",
- "email_signup.createTeam": "Crea gruppo",
- "email_signup.emailError": "Inserisci un indirizzo email valido.",
- "email_signup.find": "Trova i miei gruppi",
- "email_verify.almost": "{siteName}: Hai quasi finito",
- "email_verify.failed": " Invio email di verifica fallito.",
- "email_verify.notVerifiedBody": "Verifica il tuo indirizzo email. Controlla la posta in arrivo nella tua email.",
- "email_verify.resend": "Email re inviata",
- "email_verify.sent": " Email di verifica inviata.",
- "email_verify.verified": "{siteName} Email Verificata",
- "email_verify.verifiedBody": "
La tua email è stata veridicata! Click qui per accedere.
",
- "email_verify.verifyFailed": "Verifica email fallita.",
- "emoji_list.actions": "Azioni",
- "emoji_list.add": "AggiungiEmoji personalizzati",
- "emoji_list.creator": "Creatore",
- "emoji_list.delete": "Cancella",
- "emoji_list.delete.confirm.button": "Cancella",
- "emoji_list.delete.confirm.msg": "Questa operazione cancella definitivamente l'emoji personalizzato. Sei sicuro di volerlo cancellare?",
- "emoji_list.delete.confirm.title": "Cancella Emoji personalizzato",
- "emoji_list.empty": "Nessun Emoji personalizzato trovato",
- "emoji_list.header": "Emoji personalizzati",
- "emoji_list.help": "Gli emoji personalizzati sono disponibili a tutti sul tuo server. Digita ':' nella casella del messaggio per visualizzare il menu di selezione emoji. Gli altri utenti potrebbero dover aggiornare la pagina prima di veder comparire le nuove emoji.",
- "emoji_list.help2": "Consiglio: Se aggiungi #, ## o ### come primo carattere su una nuova linea contenente emoji, puoi usare emoji più grandi. Per provarlo, invia un messaggio ad esempio: '# :smile:'.",
- "emoji_list.image": "Immagine",
- "emoji_list.name": "Nome",
- "emoji_list.search": "Cerca Emoji personalizzate",
- "emoji_list.somebody": "Qualcuno di un altro gruppo",
- "emoji_picker.activity": "Attività",
- "emoji_picker.custom": "Personalizzata",
- "emoji_picker.emojiPicker": "Selettore Emoji",
- "emoji_picker.flags": "Contrassegni",
- "emoji_picker.foods": "Cibi",
- "emoji_picker.nature": "Natura",
- "emoji_picker.objects": "Oggetti",
- "emoji_picker.people": "Persone",
- "emoji_picker.places": "Luoghi",
- "emoji_picker.recent": "Usati di recente",
- "emoji_picker.search": "Ricerca",
- "emoji_picker.symbols": "Simboli",
- "error.local_storage.help1": "Attiva cookies",
- "error.local_storage.help2": "Disattiva navigazione privata",
- "error.local_storage.help3": "Utilizza un browser supportato (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermos non è riuscito a caricarsi a causa di un'impostazione sul tuo browser che impedisce di utilizzare le funzioni di archiviazione locale. Per permettere a Mattermost di caricarsi, prova le seguenti azioni:",
- "error.not_found.link_message": "Torna a Mattermost",
- "error.not_found.message": "La pagina che cerchi di raggiungere non esiste",
- "error.not_found.title": "Pagina non trovata",
- "error_bar.expired": "La lincenza Enterprise è scaduta e alcune funzionalità possono essere state disattivate. Rinnova ora la licenza.",
- "error_bar.expiring": "La licenza Enterprise scade il {date}. Rinnova ora la licenza.",
- "error_bar.past_grace": "La licenza Enterprise è scaduta e alcune funzionalità possono essere state disattivate. Contatta il tuo Amministratore di Sistema per ulteriori dettagli.",
- "error_bar.preview_mode": "Modalità anteprima: Le notifiche email non sono state configurate",
- "error_bar.site_url": "Configura il tuo {docsLink} nella {link}.",
- "error_bar.site_url.docsLink": "URL del sito",
- "error_bar.site_url.link": "Console di Sistema",
- "error_bar.site_url_gitlab": "Configura il tuo {docsLink} nella Console di Sistema o in gitlab.rb se stai usando GitLab Mattermost.",
- "file_attachment.download": "Scarica",
- "file_info_preview.size": "Dimensione ",
- "file_info_preview.type": "Tipo file ",
- "file_upload.disabled": "Gli allegati sono disattivati.",
- "file_upload.fileAbove": "File sopra i {max}MB non possono essere caricati: {filename}",
- "file_upload.filesAbove": "File sopra i {max}MB non possono essere caricati: {filenames}",
- "file_upload.limited": "Si possono caricare solo {count, number} file alla volta.",
- "file_upload.pasted": "Immagine incollata a ",
- "filtered_channels_list.search": "Cerca canali",
- "filtered_user_list.any_team": "Tutti gli utenti",
- "filtered_user_list.count": "{count, number} {count, plural, one {member} other {members}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {member} other {members}} of {total, number} total",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {member} other {members}} of {total, number} total",
- "filtered_user_list.member": "Membro",
- "filtered_user_list.next": "Prossimo",
- "filtered_user_list.prev": "Precedente",
- "filtered_user_list.search": "Cerca utenti",
- "filtered_user_list.searchButton": "Ricerca",
- "filtered_user_list.show": "Filtro:",
- "filtered_user_list.team_only": "Membri di questo gruppo",
- "find_team.email": "Email",
- "find_team.findDescription": "Un email con collegamento è stata inviata a tutti i gruppi a cui appartieni.",
- "find_team.findTitle": "Trova il tuo gruppo",
- "find_team.getLinks": "Un email con collegamento è stata inviata a tutti i gruppi a cui appartieni.",
- "find_team.placeholder": "tuo@dominio.com",
- "find_team.send": "Invia",
- "find_team.submitError": "Inserisci un indirizzo email valido",
- "flag_post.flag": "Contrassegna",
- "flag_post.unflag": "Togli contrassegno",
- "general_tab.chooseDescription": "Scegli una nuova descrizione per il tuo gruppo",
- "general_tab.codeDesc": "Clicca su 'Modifica' per rigenerare il codice di invito.",
- "general_tab.codeLongDesc": "Il codice di invito è usato come parte dell'URL nel collemento di invito ad unirsi a un gruppo {getTeamInviteLink} nel menu principale. Rigenerarlo crea un nuovo collegamento di unione al gruppo e invalida il collegamento precedente.",
- "general_tab.codeTitle": "Codice di invito",
- "general_tab.emptyDescription": "Clicca 'Modifica' per aggiungere una descrizione al gruppo.",
- "general_tab.getTeamInviteLink": "Ottieni collegamento di invito al gruppo",
- "general_tab.includeDirDesc": "Includere questo gruppo visualizzerà il nome del gruppo nella sezione Directory Gruppo della Pagina Principale e offrirà un colleamento alla pagina di unione.",
- "general_tab.no": "No",
- "general_tab.openInviteDesc": "Se sì, un collegamento a questo gruppo verrà inserito nella pagina principale consentendo a chiunque di unirsi a questo gruppo.",
- "general_tab.openInviteTitle": "Permetti a tutti gli utenti con un account su questo server di unirsi al gruppo",
- "general_tab.regenerate": "Rigenera",
- "general_tab.required": "Il campo è richiesto",
- "general_tab.teamDescription": "Descrizione del gruppo",
- "general_tab.teamDescriptionInfo": "La descrizione del gruppo offre informazioni aggiunti per aiutare gli utenti a scegliere il gruppo corretto. Massimo 50 caratteri.",
- "general_tab.teamName": "Nome del gruppo",
- "general_tab.teamNameInfo": "Imposta il nome del gruppo così come appare nella tua schermata di accesso e in cima alla barra laterale.",
- "general_tab.title": "Impostazioni Generali",
- "general_tab.yes": "Si",
- "get_app.alreadyHaveIt": "Lo possiedi già?",
- "get_app.androidAppName": "Mattermost per Android",
- "get_app.androidHeader": "Mattermost funziona meglio se passi alla nostra app per Android",
- "get_app.continue": "continua",
- "get_app.continueWithBrowser": "o {link}",
- "get_app.continueWithBrowserLink": "continua sul browser",
- "get_app.iosHeader": "Mattermost funziona meglio se passi alla nostra app per iPhone",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Open Mattermost",
- "get_link.clipboard": " Collegamento copiato",
- "get_link.close": "Chiudi",
- "get_link.copy": "Copia collegamento",
- "get_post_link_modal.help": "Il collegamento sottostante permette agli utenti autorizzati di vedere le tue pubblicazioni.",
- "get_post_link_modal.title": "Copia permalink",
- "get_public_link_modal.help": "Il collegamento sottostante permette a chiunque di vedere questo file senza essere registrato su questo server.",
- "get_public_link_modal.title": "Copia collegamento pubblico",
- "get_team_invite_link_modal.help": "Invia ai colleghi il collegamento sottostante per farli aggiungere a questo gruppo. Il collegamento di invito al gruppo può essere condiviso con più colleghi dal momento che non cambia se non viene rigenerato nelle Impostazioni del Gruppo da un Amministratore di Gruppo.",
- "get_team_invite_link_modal.helpDisabled": "La creazione di utenti è stata disabilitata per il tuo gruppo. Chiedi al tuo amministratore per maggiori dettagli.",
- "get_team_invite_link_modal.title": "Copia il collegamento di invito al gruppo",
- "help.attaching.downloading": "#### Scaricamento File\nScarica un file allegato cliccando sull'icona di download vicino all'anteprima o aprendo il file in anteprima e cliccando **Scarica**.",
- "help.attaching.dragdrop": "#### Drag and Drop\nCarica uno o più file trascinandoli dal tuo computer nel barra di destra o nel riquadro centrale. Trascinare i file li allega nella casella del messaggio, puoi aggiungere un messaggio opzionale e premere **INVIO** per pubblicarli.",
- "help.attaching.icon": "####Allega icona\nIn alternativa, puoi caricare file cliccando la clip grigia nella casella del messaggio. Questo apre una finestra per selezionare i file e cliccando **Apri** puoi caricare i file nella casella del messaggio. Puoi aggiungere un messaggio opzionale e premere **INVIO** per pubblicarli.",
- "help.attaching.limitations": "## Limiti sulla dimensione dei file\nMattermost support al massimo cinque file per post, ciascuno con una dimensione massima di 50Mb.",
- "help.attaching.methods": "## Metodi per allegare\nAllega un file trascinandolo oppure cliccando l'icona per gli allegati nella casella del messaggio.",
- "help.attaching.notSupported": "Anteprima documento (Word, Excel, PPT) non ancora supportate.",
- "help.attaching.pasting": "#### Incollare immagini\nSu Chrome e Edge è possibile caricare i file incollandoli direttamente dagli appunto. Questo non è attualmente supportato su altri browsers.",
- "help.attaching.previewer": "## Anteprima files\nMattermost ha un meccanismo di anteprima file integrato. Clicca sui thumbnail di un file per aprirne l'anteprima.",
- "help.attaching.publicLinks": "#### Condivisione collegamenti pubblici\nI link pubblici ti consentono di condividere file con persone esterne al gruppodi Mattermost. Apri un file con l'anteprima e clicca su **Copia collegamento pubblico**. Questo apre una finestra di dialogo con un collegamento da copiare. Quando il collegamento è condiviso e aperto da altri utenti, il file verrà automaticamente scaricato.",
- "help.attaching.publicLinks2": "Se **Copia collegamento pubblico** non è visibile nell'anteprima del file e vuoi attivare questa funzione, chiedi al tuo Amministratore di Sistema di attivare la funzione nella Console di Sistema sotto **Sicurezza** > **Collegamenti pubblici**.",
- "help.attaching.supported": "#### Tipi di media supportati\nSe stai cercando di visualizzare l'anteprima di un file non supportato, il visualizzatore aprira una finestra standard. I tipi di file supportati dipendono pensantemente dal browser e dal sistema operativo utilizzati ma i seguenti formati sono supportati da Mattermost nell maggior parte dei casi:",
- "help.attaching.supportedList": "- Immagini: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Documenti: PDF",
- "help.attaching.title": "#Allega file\n",
- "help.commands.builtin": "## Comandi integrati\nI seguenti comandi slash sono disponibili in Mattermost:",
- "help.commands.builtin2": "Comincia digitando '/' e una lista di comandi slash comparirà sopra la casella del messaggio. L'autocompletament aiuta fornendo dei formati di esempio e una breve descrizione del comando slash.",
- "help.commands.custom": "## Comandi personalizzati\nI comandi slash personalizzati possono essere integrati con applicazioni esterne. Per esempio, un gruppo può configurare un comando slash per controllare lo stato di un record con '/paziente marco rossi' oppure per controllare le previsioni meteo per la settimana con '/meteo roma week'. Controlla con il tuo Amministratore di Sistema o apri la lista completa digitando '/' per capire se il tuo gruppo a configurato dei comandi slash personalizzati.",
- "help.commands.custom2": "I comandi slash personalizzati sono disattivati di default ma possono essere abilitati da un Amministratore di Sistema nella **Console di Sistema** > **Integrazioni** > **Webhooks e Comandi**. Scopri come configurare dei comandi slash personalizzati alla pagina (http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "I comandi slash compiono operazioni in Mattermost digitando nella casella del messaggio. Inserire una '/' seguita dal comando e alcuni argomenti per eseguire l'operazione.\n\nI comandi slash integrati sono forniti con tutte le installazioni di Mattermost e i comandi slash personalizzati sono configurabili per interagire con dei programmi esterni. Scopri come configurare dei comandi slash personalizzati alla pagina (http://docs.mattermost.com/developer/slash-commands.html). ",
- "help.commands.title": "# Eseguire comandi\n",
- "help.composing.deleting": "## Cancellare un messaggio\nCancellare un messaggio cliccando l'icona **[...]** vicino a ogni messaggio inviato, poi cliccare **Cancella**. Amministratori di Sistema e di Gruppo possono cancellare qualsiasi messaggio sul loro sistema o gruppo.",
- "help.composing.editing": "## Editing a Message\nModifica un messaggio cliccando **[...]** vicino al messaggio che hai inviato, poi clicca **Modifica**. Dopo aver fatto le modifiche, premi **INVIO** per applicare i cambiamenti. Le modifiche ai messaggi non fanno scattare le notifiche @mention, le notifiche desktop o i suoni di notifica.",
- "help.composing.linking": "## Collegamento a un messaggio\nLa funzione **Permalink** crea un collegamento a qualsiasi messaggio. Condividendo questo collegamento con altri utenti nel canale permetti a questi di visualizzare il messaggio collegato nella sezione Archivio Messaggi. Gli utenti che non appartengono al canale dov'è stato pubblicato il messaggio non possono visualizzare il permalink. Per ottenere il permalink cliccare **[...]** vicino al messaggio desiderato poi > **Permalink** > **Copia collegamento**.",
- "help.composing.posting": "##Pubblicare un messaggio\nScrivere un messaggio nella casella di testo, premere INVIO per inviarlo. Usare SHIFT+INVIO per creare una nuova linea nello stesso messaggio. Per inviare i messaggi con CTRL+INVIO andare in **Menu principale > Impostazioni account > Invio messaggi con CTRL+INVIO**.",
- "help.composing.posts": "####Pubblicazioni\nLe pubblicazioni possono essere considerate messaggi principali. Sono messaggi che spesso iniziano una serie di risposte. Le pubblicazioni sono create e inviate dalla casella di testo posta in fondo al pannello centrale.",
- "help.composing.replies": "#### Risposte\nPer rispondere a un messaggio cliccare sull'icona vicino a quest'ultimo. Quest'azione apre il pannello sulla destra dove si trova la serie di risposte del messaggio e dove è possibile scrivere e pubblicare la propria risposta. Le risposte sono indentate nel pannello centrale per indicare che sono messaggi figli della pubblicazione principale.\n\nQuando si scrive una risposta nel pannello di destra, cliccare sull'icona espandi/contrai in cima al pannello per facilitare la lettura dei contenuti.",
- "help.composing.title": "# Inviare messaggi\n",
- "help.composing.types": "## Tipi di messaggio\nRispondere ai messaggi per mantenere organizzate le conversazioni.",
- "help.formatting.checklist": "Costruire una lista di operazioni utilizzando le parentesi quadre:",
- "help.formatting.checklistExample": "- [ ] Primo elemento\n- [ ] Secondo elemento\n- [x] Elemento completato",
- "help.formatting.code": "## Blocco codice\n\nPer creare un blocco di codice indentare ogni linea di quattro spazi, oppure utilizzare ``` sulle linea prima e dopo quella del codice.",
- "help.formatting.codeBlock": "Blocco di codice",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nAprire il pannello delle Emoji scrivendo `:`. Una lista completa delle emoji si può trovare [qui](http://www.emoji-cheat-sheet.com/). E' possibile creare delle [Emoji Personalizzate](http://docs.mattermost.com/help/settings/custom-emoji.html) se l'emoji che si vuole usare non esiste.",
- "help.formatting.example": "Esempio:",
- "help.formatting.githubTheme": "**GitHub Theme**",
- "help.formatting.headings": "## Titoli\n\nCreare un titolo scrivendo # seguito da uno spazio prima del titolo. Per titoli più piccoli, usare più #.",
- "help.formatting.headings2": "Oppure, per sottolineare il testo usare `===` o `---` per creare dei titoli.",
- "help.formatting.headings2Example": "Titolo largo\n-------------",
- "help.formatting.headingsExample": "## Titolo largo\n### Titolo medio\n#### Titolo piccolo",
- "help.formatting.images": "## Immagini in linea\n\nPer aggiungere immagini in linea usare un `!` seguito dal testo alternativo tra parentesi quadre e il collegamento tra parentesi tonde. Aggiungere il testo in hover mettendolo tra apici dopo il collegament.",
- "help.formatting.imagesExample": "\n\ne\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Codice in linea\n\nPer creare del codice in linea con un carattere monospazio racchiudere il testo tra apici inversi.",
- "help.formatting.intro": "L'uso dei mark semplifica la formattazione dei messaggi. Scrivere un messaggio normalmente e usare queste regole per formattarlo in maniera speciale.",
- "help.formatting.lines": "## Linee\n\nCreare una linea usando tre `*`, `_`, o `-`.",
- "help.formatting.linkEx": "[Scopri Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Collegamenti\n\nCreare dei collegamenti etichettatti inserendo il testo tra parentesi quadre e il relativo collegamento tra parentesi tonde.",
- "help.formatting.listExample": "* primo elemento\n* secondo elemento\n * primo sottoelemento",
- "help.formatting.lists": "## Liste\n\nCreare una lista usando `*` o `-` come punti della lista. Indentare il punto aggiungento due spazi.",
- "help.formatting.monokaiTheme": "**Monokai Theme**",
- "help.formatting.ordered": "Per creare una lista ordinata utilizzare i numeri:",
- "help.formatting.orderedExample": "1. Primo elemento\n2. Secondo elemento",
- "help.formatting.quotes": "## Citazioni\n\nCreare le citazioni usando `>`.",
- "help.formatting.quotesExample": "`> block quotes` sono formattati come:",
- "help.formatting.quotesRender": "> block quotes",
- "help.formatting.renders": "Formattato come:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark Theme**",
- "help.formatting.solirizedLightTheme": "**Solarized Light Theme**",
- "help.formatting.style": "## Stile testo\n\nUsare `_` o `*` intorno a una parola per la formattazione corsiva. Usarne due per il grassetto.\n\n* `_corsivo_` formattato come _corsivo_\n* `**grassetto**` formattato come **grassetto**\n* `**_grassetto-corsivo_**` formattato come **_grassetto-corsivo_**\n* `~~sbarrato~~`formattato come ~~sbarrato~~",
- "help.formatting.supportedSyntax": "I linguaggi supportati sono:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Evidenziazione\n\nPer evidenziare del testo digitare il testo dopo ```. Mattermost offre quattro tipi di temi (GitHub, Solarized Dark, Solarized Light, Monokai) che possono essere cambiati in **Impostazioni Account** > **Display** > **Tema ** > **Tema personalizzato** > **Stili canale centrale**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "|Allineato a sinitra | Allineato al centro | Allineato a destra |\n| :------------ |:---------------:| -----:|\n| Colonna 1| testo | $100 |\n| Colonna 2 | è | $10 |\n| Colonna 3 | centrato | $1 |",
- "help.formatting.tables": "## Tabelle\n\nCreare una tabella inserendo una linea tratteggiata sotto la riga d'intestazione e separando le colonne con un pipe `|`. (Le colonne non necessitano di essere allineate per funzionare). Scegliere come allinea il testo nelle colonne inserendo due punti `:` nell'intestazione.",
- "help.formatting.title": "# Formattare il testo\n",
- "help.learnMore": "Scopri di più:",
- "help.link.attaching": "Allegare file",
- "help.link.commands": "Eseguire comandi",
- "help.link.composing": "Scrivere messaggi e risposte",
- "help.link.formatting": "Formattare i messaggi con i marker",
- "help.link.mentioning": "Citare i colleghi",
- "help.link.messaging": "Messaggistica di base",
- "help.mentioning.channel": "#### @Channel\nSi può citare un intero canale scrivendo `@channel`. Tutti i membri del canale riceveranno una notifica come se fossero stati citati singolarmente.",
- "help.mentioning.channelExample": "@channel ottimo lavoro sulle interviste questa settimana. Penso che abbiamo trovato degli eccellenti potenziali candidati!",
- "help.mentioning.mentions": "## @Mentions\nUsare @mentions per avere l'attenzione di uno specifico membro del gruppo.",
- "help.mentioning.recent": "## Menzioni recenti\nClick `@` vicino alla casella di ricerca per ottenere una lista delle @mentions recenti e delle parole che hanno scatenato citazioni. Cliccare **Salta** vicino al risultato nella barra laterale per spostare il pannello centrale sul canale e sulla posizione del messaggio della citazione.",
- "help.mentioning.title": "# Citare i colleghi\n",
- "help.mentioning.triggers": "## Parole che attivano le citazioni\nOltre alle notifiche con @username e @channel, si possono personalizzare le parole che scatenano delle notifiche per citazione in **Impostazioni Account** > **Notifiche** > **Parole che attivano notifiche per citazione**. Per default si riceve una notifica per citazione con il proprio nome e si possono aggiungere altre parole scrivendole nella casella separate da virgola. Questo è utile se si vuole essere notificati su pubblicazioni relative a certi argomenti, per esempio “intervista” o “marketing”.",
- "help.mentioning.username": "#### @Username\nSi può citare un collega usando il carattere `@` più il nome utente da notificare.\n\nScrivere `@` per far comparire una lista dei membri del gruppo che si possono notificare. Per filtrare la lista scrivere le prime lettere del nome utente, del nome, cognome o soprannome. Le frecce **Su** e **Giù** possono essere usate per scorrere la lista, premendo **INVIO** si seleziona l'utente da citare. Alla selezione, il nome utente sostituisce automaticamente il nome o il soprannome.\nL'esempio seguente invia una notifica ad **alice** con i riferimenti al canale e al messaggio in cui è stata citata. Se **alice** è offline ma ha le [notifiche email](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) attive, riceverà un messaggio email con il testo della notifica.",
- "help.mentioning.usernameCont": "Se l'utente citato non appartiene al canale, verrà visualizzato un Messaggio di Sistema. Questo è un messaggio temporaneo visibile solo alla persona che ha cercato di fare la citazione. Per aggiungere l'utente citato al canale, utilizzare la casella nel menu accanto al nome del canale e scegliere **Aggiungi membri**.",
- "help.mentioning.usernameExample": "@alice come è andata la tua intervista con il nuovo candidato?",
- "help.messaging.attach": "**Allegare file** trascinando i file in Mattermost o cliccando l'icona degli allegato nella casella del messaggio.",
- "help.messaging.emoji": "**Aggiungere emoji velocemente** scrivendo \":\", che aprirà il pannello delle emoji. Se le emoji esistenti non contengono quella cercata è possibile creare delle [emoji personalizzate](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Formattare i messaggi** utilizzando la formattazione che supporta gli stili di testo, titoli, collegamenti, emoji, blocchi di codice, citazioni, tabelle, liste e immagini in linea.",
- "help.messaging.notify": "**Notificare i colleghi** quando serve scrivendo `@username`.",
- "help.messaging.reply": "**Rispondere ai messaggi** cliccando sulla freccia di risposta accanto al messaggio.",
- "help.messaging.title": "# Messaggistica di base\n",
- "help.messaging.write": "**Scrivere messaggi* utilizzando la casella di testo in fondo a Mattermost. Premere INVIO per pubblicare il messaggio. Utilizzare SHIFT + INVIO per creare una nuova linea nello stesso messaggio.",
- "installed_command.header": "Comandi Slash",
- "installed_commands.add": "Aggiungere Comando Slash",
- "installed_commands.delete.confirm": "Questa operazione cancella definitivamente il comando slash e interrompe ogni integrazione che ne fa uso. Sicuro di volerlo cancellare?",
- "installed_commands.empty": "Nessun comando trovato",
- "installed_commands.header": "Comandi Slash",
- "installed_commands.help": "Utilizza i comandi slash per connettere gli strumenti esterni a Mattermost. {buildYourOwn} oppure visita la {appDirectory} per trovare app self-hosted, app di terze parti e integrazioni.",
- "installed_commands.help.appDirectory": "Cartella delle app",
- "installed_commands.help.buildYourOwn": "Costruisci il tuo",
- "installed_commands.search": "Cerca comandi slah",
- "installed_commands.unnamed_command": "Comando slash senza nome",
- "installed_incoming_webhooks.add": "Aggiungere webhook in ingresso",
- "installed_incoming_webhooks.delete.confirm": "Questa azione cancella definitivamente il webhook in ingresso e interrompe tutte le integrazioni che ne fanno uso. Sicuro di volerlo cancellare?",
- "installed_incoming_webhooks.empty": "Nessun webhooks in ingresso trovato",
- "installed_incoming_webhooks.header": "Webhooks in ingresso",
- "installed_incoming_webhooks.help": "Utilizza i webhook in ingresso per collegare strumenti esterni a Mattermost. {buildYourOwn} oppure visita la {appDirectory} per trovare app self-hosted, app di terze parti e integrazioni.",
- "installed_incoming_webhooks.help.appDirectory": "Cartella delle app",
- "installed_incoming_webhooks.help.buildYourOwn": "Costruisci il tuo",
- "installed_incoming_webhooks.search": "Cerca webhook in ingresso",
- "installed_incoming_webhooks.unknown_channel": "Un webhook privato",
- "installed_integrations.callback_urls": "URL di callback: {urls}",
- "installed_integrations.client_id": "ID client: {clientId}",
- "installed_integrations.client_secret": "Segreto client: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Creato da {creator} il {createAt, date, full}",
- "installed_integrations.delete": "Cancella",
- "installed_integrations.edit": "Modifica",
- "installed_integrations.hideSecret": "Nascondi segreto",
- "installed_integrations.regenSecret": "Rigenera segreto",
- "installed_integrations.regenToken": "Rigenera token",
- "installed_integrations.showSecret": "Mostra segreto",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Attiva quando: {triggerWhen}",
- "installed_integrations.triggerWords": "Parole chiave: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Applicazione OAuth 2.0 senza nome",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "Aggiungi applicazione OAuth 2.0",
- "installed_oauth_apps.callbackUrls": "URL di callback (uno per riga)",
- "installed_oauth_apps.cancel": "Cancella",
- "installed_oauth_apps.delete.confirm": "Questa operazione cancella definitivamente l'applicazione OAuth 2.0 e interrompe tutte le integrazioni che ne fanno uso. Sicuro di volerla cancellare?",
- "installed_oauth_apps.description": "Descrizione",
- "installed_oauth_apps.empty": "Nessun applicazion OAuth 2.0 trovata",
- "installed_oauth_apps.header": "Applicazioni OAuth 2.0",
- "installed_oauth_apps.help": "Crea {oauthApplications} per integrare in sicurezza bot e app di terze parti con Mattermost. Visita {appDirectory} per scoprire le app self-hosted disponibili.",
- "installed_oauth_apps.help.appDirectory": "Cartella delle app",
- "installed_oauth_apps.help.oauthApplications": "Applicazioni OAuth 2.0",
- "installed_oauth_apps.homepage": "Sito web",
- "installed_oauth_apps.iconUrl": "URL icona",
- "installed_oauth_apps.is_trusted": "Affidabile: {isTrusted}",
- "installed_oauth_apps.name": "Nome visibile",
- "installed_oauth_apps.save": "Salva",
- "installed_oauth_apps.search": "Cerca applicazioni OAuth 2.0",
- "installed_oauth_apps.trusted": "Affidabile",
- "installed_oauth_apps.trusted.no": "No",
- "installed_oauth_apps.trusted.yes": "Si",
- "installed_outgoing_webhooks.add": "Aggiungi webhook in uscita",
- "installed_outgoing_webhooks.delete.confirm": "Questa operazione cancella definitivamente il webhook in uscita e interrompe qualsiasi integrazione che ne fa uso. Sicuro di volerlo cancellare?",
- "installed_outgoing_webhooks.empty": "Nessun webhook in uscita trovato",
- "installed_outgoing_webhooks.header": "Webhooks in uscita",
- "installed_outgoing_webhooks.help": "Utilizza i webhook in uscita per collegare strumenti esterni a Mattermost. {buildYourOwn} oppure visita la {appDirectory} per scoprire app self-hosted, app di terze parti e integrazioni.",
- "installed_outgoing_webhooks.help.appDirectory": "Cartella delle app",
- "installed_outgoing_webhooks.help.buildYourOwn": "Costruisci il tuo",
- "installed_outgoing_webhooks.search": "Cerca webhook in uscita",
- "installed_outgoing_webhooks.unknown_channel": "Un webhook privato",
- "integrations.add": "Aggiungi",
- "integrations.command.description": "I comandi slash inviano eventi alle integrazioni esterne",
- "integrations.command.title": "Comando Slash",
- "integrations.delete.confirm.button": "Cancella",
- "integrations.delete.confirm.title": "Cancella integrazione",
- "integrations.done": "Fatto",
- "integrations.edit": "Modifica",
- "integrations.header": "Integrazioni",
- "integrations.help": "Visita la {appDirectory} per scoprire app self-hosted, app di terze parti e integrazioni per Mattermost.",
- "integrations.help.appDirectory": "Cartella delle app",
- "integrations.incomingWebhook.description": "I webhook in ingresso consentono alle integrazioni esterne di inviare messaggi",
- "integrations.incomingWebhook.title": "Webhook in ingresso",
- "integrations.oauthApps.description": "OAuth 2.0 consente alle applicazioni esterne di fare richieste autorizzate alle API di Mattermost.",
- "integrations.oauthApps.title": "Applicazioni OAuth 2.0",
- "integrations.outgoingWebhook.description": "I webhook in uscita consentono alle integrazioni esterne di riceve e rispondere ai messaggi",
- "integrations.outgoingWebhook.title": "Webhook in uscita",
- "integrations.successful": "Configurazione avvenuta con successo",
- "intro_messages.DM": "Questo è l'inizio della tua conversazione privata con {teammate}. Messaggi privati e file condivisi qui non sono accessibili ad altre persone.",
- "intro_messages.GM": "Questo è l'inizio della tua conversazione privata con {names}. Messaggi privati e file condivisi qui non verranno mostrati a persone al di fuori di questa area.",
- "intro_messages.anyMember": " Tutti i membri possono entrare e leggere questo canale.",
- "intro_messages.beginning": "Inizio di {name}",
- "intro_messages.channel": "canale",
- "intro_messages.creator": "Questo è l'inizio di {name} {type}, creato il {date} da {creator}.",
- "intro_messages.default": "
Inizio di {display_name}
Benvenuto in {display_name}!
Pubblicare i messaggi qui se si vuole renderli visibili a tutti. Tutti diventano membri permanenti di questo gruppo quando ci entrano.
",
- "intro_messages.group": "canale privato",
- "intro_messages.group_message": "Questo è l'inizio della tua conversazione privata con questi colleghi. Messaggi privati e file condivisi qui non sono accessibili ad altre persone.",
- "intro_messages.invite": "Invita altri a questo {type}",
- "intro_messages.inviteOthers": "Invita altri in questo gruppo",
- "intro_messages.noCreator": "Questo è l'inizio di {name} {type}, creato il {date}.",
- "intro_messages.offTopic": "
Inizio di {display_name}
Questo è l'inizio di {display_name}, un canale per le conversazioni non collegate al lavoro.
",
- "intro_messages.onlyInvited": " Invita solo i membri che possono vedere questo canale privato.",
- "intro_messages.purpose": " Lo scopo di {type} è: {purpose}.",
- "intro_messages.setHeader": "Imposta un intestazione",
- "intro_messages.teammate": "Questo è l'inizio della tua conversazione privata con questi colleghi. Messaggi privati e file condivisi qui non sono accessibili ad altre persone.",
- "invite_member.addAnother": "Aggiungi un altro",
- "invite_member.autoJoin": "Le persone invitate vengono aggiunte automaticamente al canale {channel}.",
- "invite_member.cancel": "Cancella",
- "invite_member.content": "Le email sono al momento disabilitate per il tuo gruppo e le email di invito non possono essere inviate. Contatta il tuo amministratore di sistema per abilitare le email e gli inviti via email.",
- "invite_member.disabled": "La creazione di utenti è stata disabilitata per il tuo gruppo. Chiedi al tuo amministratore per maggiori dettagli.",
- "invite_member.emailError": "Per favore inserisci un indirizzo email valido",
- "invite_member.firstname": "Nome",
- "invite_member.inviteLink": "Collegamento di invito al gruppo",
- "invite_member.lastname": "Cognome",
- "invite_member.modalButton": "Si, Scarta",
- "invite_member.modalMessage": "Hai degli inviti non inviati, sei sicuro di volerli annullare?",
- "invite_member.modalTitle": "Scarta inviti?",
- "invite_member.newMember": "Invia Email di Invito",
- "invite_member.send": "Invia Invito",
- "invite_member.send2": "Invia Invito",
- "invite_member.sending": " Invio",
- "invite_member.teamInviteLink": "Puoi anche invitare persone usando il {link}.",
- "ldap_signup.find": "Trova i miei gruppi",
- "ldap_signup.ldap": "Crea gruppo con account AD/LDAP",
- "ldap_signup.length_error": "Nome deve essere maggiore di 3 caratteri fino a un massimo di 15",
- "ldap_signup.teamName": "Inserisci il nome del nuovo team",
- "ldap_signup.team_error": "Inserisci un nome gruppo",
- "leave_private_channel_modal.leave": "Si, lascia il canale",
- "leave_private_channel_modal.message": "Sei sicuro di voler abbandonare il canale privato {channel}? Dovrai essere invitato di nuovo per poterci rientrare.",
- "leave_private_channel_modal.title": "Abbandona il canale privato {channel}",
- "leave_team_modal.desc": "Sarai rimosso da tutti i canali pubblici e privati. Se il gruppo è privato non potrai rientrarci. Sei sicuro?",
- "leave_team_modal.no": "No",
- "leave_team_modal.title": "Abbandonare il gruppo?",
- "leave_team_modal.yes": "Si",
- "loading_screen.loading": "Caricamento",
- "login.changed": " Cambiamento di accesso effetuato con successo",
- "login.create": "Crea nuovo",
- "login.createTeam": "Crea un nuovo gruppo",
- "login.createTeamAdminOnly": "Questa opzione è disponibile solo agli Amministratori di Sistema e non viene visualizzata dagli altri utenti.",
- "login.email": "Email",
- "login.find": "Trova i tuoi altri gruppi",
- "login.forgot": "Password dimenticata",
- "login.gitlab": "GitLab",
- "login.google": "Applicazioni Google",
- "login.invalidPassword": "La password è errata.",
- "login.ldapUsername": "Nome dell'utente AD/LDAP",
- "login.ldapUsernameLower": "Nome utente AD/LDAP",
- "login.noAccount": "Non hai un account? ",
- "login.noEmail": "Inserisci la tua email",
- "login.noEmailLdapUsername": "Inserisci la tua email o {ldapUsername}",
- "login.noEmailUsername": "Inserisci la tua email o il tuo nome utente",
- "login.noEmailUsernameLdapUsername": "Inserisci la tua email, nome utente o {ldapUsername}",
- "login.noLdapUsername": "Inserisci il tuo {ldapUsername}",
- "login.noMethods": "Nessun metodo di accesso abilitato. Contattare l'Amministratore di Sistema.",
- "login.noPassword": "Inserisci la tua password",
- "login.noUsername": "Inserisci il tuo nome utente",
- "login.noUsernameLdapUsername": "Inserisci il tuo nome utente o {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "su {siteName}",
- "login.or": "oppure",
- "login.password": "Password",
- "login.passwordChanged": " Aggiornamento password effettuato con successo",
- "login.placeholderOr": " o ",
- "login.session_expired": " La tua sessione è scaduta. Accedi nuovamente.",
- "login.signIn": "Accedi",
- "login.signInLoading": "Autenticazione in corso...",
- "login.signInWith": "Accedi con:",
- "login.userNotFound": "Non è stato trovato un account con le tue credenziali di accesso.",
- "login.username": "Nome utente",
- "login.verified": " Email Verificata",
- "login_mfa.enterToken": "Per completare il processo di accesso, inserisci un token di autenticatore dal tuo smartphone",
- "login_mfa.submit": "Invia",
- "login_mfa.token": "Token MFA",
- "login_mfa.tokenReq": "Inserisci token MFA",
- "member_item.makeAdmin": "Rendi Amministratore",
- "member_item.member": "Membro",
- "member_list.noUsersAdd": "Nessun utente da aggiungere.",
- "members_popover.manageMembers": "Gestione Membri",
- "members_popover.msg": "Messaggio",
- "members_popover.title": "Membri del canale",
- "members_popover.viewMembers": "Visualizza membri",
- "mfa.confirm.complete": "Configurazione completata!",
- "mfa.confirm.okay": "Okay",
- "mfa.confirm.secure": "Il tuo account è sicuro adesso. Al prossimo accesso, ti sarà chiesto un codice dall'app Google Authenticator sul tuo telefono.",
- "mfa.setup.badCode": "Codice non valide. Se il problema persiste, contatta l'Amministratore di Sistema.",
- "mfa.setup.code": "Codice AMF",
- "mfa.setup.codeError": "Inserire il codice di Google Authenticator.",
- "mfa.setup.required": "Autenticazione multifattore attiva per {siteName}.",
- "mfa.setup.save": "Salva",
- "mfa.setup.secret": "Segreto: {secret}",
- "mfa.setup.step1": "Punto 1: Scarica Google Authenticato sul tuo telefono da iTunes o Google Play",
- "mfa.setup.step2": "Punto 2: Utilizza Google Authenticator per scansionare questo codice QR, o inserisci manualmente la chiave segreta",
- "mfa.setup.step3": "Punto 3: Inserisci il codice generato da Google Authenticato",
- "mfa.setupTitle": "Impostazioni Autenticazione Multi-fattore",
- "mobile.about.appVersion": "Versione Applicazione: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved",
- "mobile.about.database": "Database: {type}",
- "mobile.about.serverVersion": "Versione Server: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Versione Server: {version}",
- "mobile.account.notifications.email.footer": "Se fuori linea o assenter per più di cinque minuti",
- "mobile.account_notifications.mentions_footer": "Il tuo nome utente (\"@{username}\") innescherà sempre le citazioni.",
- "mobile.account_notifications.non-case_sensitive_words": "Altre parole dove non differenziare le minuscole dalle maiuscole...",
- "mobile.account_notifications.reply.header": "Invia risposta di notifica per",
- "mobile.account_notifications.threads_mentions": "Citazioni nelle discussioni",
- "mobile.account_notifications.threads_start": "Discussioni avviate da me",
- "mobile.account_notifications.threads_start_participate": "Discussioni alle quali ho partecipato",
- "mobile.advanced_settings.reset_button": "Azzera",
- "mobile.advanced_settings.reset_message": "\nQuesta operazione cancella tutti i dati salvati in locale e riavvia l'app. L'accesso verrà eseguito automaticamente al termine del riavvio.\n",
- "mobile.advanced_settings.reset_title": "Azzera Cache",
- "mobile.advanced_settings.title": "Impostazioni Avanzate",
- "mobile.channel_drawer.search": "Salta alla conversazione",
- "mobile.channel_info.alertMessageDeleteChannel": "Sei sicuro di voler eliminare questo {term} {name}?",
- "mobile.channel_info.alertMessageLeaveChannel": "Sei sicuro di voler tralasciare questo {term} {name}?",
- "mobile.channel_info.alertNo": "No",
- "mobile.channel_info.alertTitleDeleteChannel": "Elimina {term}",
- "mobile.channel_info.alertTitleLeaveChannel": "Tralascia {term}",
- "mobile.channel_info.alertYes": "Si",
- "mobile.channel_info.delete_failed": "Impossibile cancellare il canale {displayName}. Controlla la connessione e riprova.",
- "mobile.channel_info.privateChannel": "Canale privato",
- "mobile.channel_info.publicChannel": "Canale Pubblico",
- "mobile.channel_list.alertMessageLeaveChannel": "Sei sicuro di voler tralasciare questo {term} {name}?",
- "mobile.channel_list.alertNo": "No",
- "mobile.channel_list.alertTitleLeaveChannel": "Tralascia {term}",
- "mobile.channel_list.alertYes": "Si",
- "mobile.channel_list.closeDM": "Chudi Messaggio Diretto",
- "mobile.channel_list.closeGM": "Chiudi Messaggio di Gruppo",
- "mobile.channel_list.dm": "Messaggio Diretto",
- "mobile.channel_list.gm": "Messaggio di Gruppo",
- "mobile.channel_list.not_member": "NON UN MEMBRO",
- "mobile.channel_list.open": "Apri {term}",
- "mobile.channel_list.openDM": "Apri Messaggi Diretti",
- "mobile.channel_list.openGM": "Apri Messaggi di Gruppo",
- "mobile.channel_list.privateChannel": "Canale Privato",
- "mobile.channel_list.publicChannel": "Canale Pubblico",
- "mobile.channel_list.unreads": "NON LETTI",
- "mobile.components.channels_list_view.yourChannels": "I tuoi canali:",
- "mobile.components.error_list.dismiss_all": "Ignora Tutti",
- "mobile.components.select_server_view.continue": "Continua",
- "mobile.components.select_server_view.enterServerUrl": "Immetti URL Server",
- "mobile.components.select_server_view.proceed": "Procedi",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.esempio.com",
- "mobile.create_channel": "Crea",
- "mobile.create_channel.private": "Nuovo Canale Privato",
- "mobile.create_channel.public": "Nuovo Canale Pubblico",
- "mobile.custom_list.no_results": "Nessun risultato",
- "mobile.drawer.teamsTitle": "Gruppi",
- "mobile.edit_post.title": "Modifica Messaggio",
- "mobile.emoji_picker.activity": "ATTIVITA'",
- "mobile.emoji_picker.custom": "PERSONALIZZATO",
- "mobile.emoji_picker.flags": "BANDIERE",
- "mobile.emoji_picker.foods": "CIBI",
- "mobile.emoji_picker.nature": "NATURA",
- "mobile.emoji_picker.objects": "OGGETTI",
- "mobile.emoji_picker.people": "PERSONE",
- "mobile.emoji_picker.places": "LUOGHI",
- "mobile.emoji_picker.symbols": "SIMBOLI",
- "mobile.error_handler.button": "Riavvia",
- "mobile.error_handler.description": "\nClicca riavvia per aprire di nuovo l'app. Dopo il riavvio, puoi segnalare il problema dal menu impostazioni.\n",
- "mobile.error_handler.title": "Rilevato errore non previsto",
- "mobile.file_upload.camera": "Scatta una Foto o registra un Video",
- "mobile.file_upload.library": "Galleria Fotografica",
- "mobile.file_upload.more": "Più",
- "mobile.file_upload.video": "Libreria video",
- "mobile.help.title": "Aiuto",
- "mobile.image_preview.save": "Salva Immagine",
- "mobile.intro_messages.DM": "Questo è l'inizio della tua conversazione privata con {teammate}. Messaggi diretti e file condivisi qui non saranno accessibili ad altre persone.",
- "mobile.intro_messages.default_message": "Questo è il primo canale che i colleghi vedranno una volta effettuato l'accesso - usalo per comunicare aggiornamenti che chiunque dovrebbe conoscere.",
- "mobile.intro_messages.default_welcome": "Benvenuto a {name}!",
- "mobile.join_channel.error": "Impossibile aggiungere il canale {displayName}. Controlla la connessione e riprova.",
- "mobile.loading_channels": "Caricamento Canali...",
- "mobile.loading_members": "Caricamento Membri...",
- "mobile.loading_posts": "Caricamento Messaggi...",
- "mobile.login_options.choose_title": "Seleziona il tuo metodo di login",
- "mobile.managed.blocked_by": "Bloccati da {vendor}",
- "mobile.managed.exit": "Esci",
- "mobile.managed.jailbreak": "Dispositivi con jailbreak considerati non sicuri da {vendor}, per favore uscire dall'app.",
- "mobile.managed.secured_by": "Verificato da {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} più righe",
- "mobile.more_dms.start": "Inizio",
- "mobile.more_dms.title": "Nuova Conversazione",
- "mobile.notice_mobile_link": "apps per smartphone",
- "mobile.notice_platform_link": "piattaforma",
- "mobile.notice_text": "Mattermost è stato realizzato con il software open source usato sulla nostra {platform} e {mobile}.",
- "mobile.notification.in": " in ",
- "mobile.offlineIndicator.connected": "Connesso",
- "mobile.offlineIndicator.connecting": "Connessione...",
- "mobile.offlineIndicator.offline": "Nessuna connessione internet",
- "mobile.open_dm.error": "Impossibile aprire un messaggio diretto con {displayName}. Controlla la connessione e riprova.",
- "mobile.open_gm.error": "Impossibile aprire un messaggio di gruppo con questi utenti. Controlla la tua connessione e riprova.",
- "mobile.post.cancel": "Annulla",
- "mobile.post.delete_question": "Sei sicuro di voler eliminare questo post?",
- "mobile.post.delete_title": "Elimina Pubblicazione",
- "mobile.post.failed_delete": "Elimina messaggio",
- "mobile.post.failed_retry": "Riprova",
- "mobile.post.failed_title": "Impossibile inviare il messaggio",
- "mobile.post.retry": "Aggiorna",
- "mobile.post_info.add_reaction": "Aggiungi reazione",
- "mobile.request.invalid_response": "Risposta non valida ricevuta dal server.",
- "mobile.routes.channelInfo": "Informazioni",
- "mobile.routes.channelInfo.createdBy": "Creato da {creator} il ",
- "mobile.routes.channelInfo.delete_channel": "Elimina Canale",
- "mobile.routes.channelInfo.favorite": "Preferiti",
- "mobile.routes.channel_members.action": "Rimuovi Membri",
- "mobile.routes.channel_members.action_message": "Devi selezionare almeno un membro da rimuovere dal canale.",
- "mobile.routes.channel_members.action_message_confirm": "Sei sicuro di voler rimuovere i membri selezionati dal canale?",
- "mobile.routes.channels": "Canale",
- "mobile.routes.code": "{language} codice",
- "mobile.routes.code.noLanguage": "Codice",
- "mobile.routes.enterServerUrl": "Immettere l'URL del server",
- "mobile.routes.login": "Login",
- "mobile.routes.loginOptions": "Selezionatore Login",
- "mobile.routes.mfa": "Forza Autenticazione Multi-fattore",
- "mobile.routes.postsList": "Elenco Pubblicazioni",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "Seleziona gruppo",
- "mobile.routes.settings": "Impostazioni",
- "mobile.routes.sso": "Single SignOn",
- "mobile.routes.thread": "{channelName} Discussione",
- "mobile.routes.thread_dm": "Discussione Messaggi Diretti",
- "mobile.routes.user_profile": "Profilo",
- "mobile.routes.user_profile.send_message": "Invia messaggio",
- "mobile.search.jump": "SALTA",
- "mobile.search.no_results": "Nessun risultato trovato",
- "mobile.select_team.choose": "I tuoi gruppi:",
- "mobile.select_team.join_open": "Gruppi librei a cui puoi accedere",
- "mobile.select_team.no_teams": "Non ci sono gruppi disponibili.",
- "mobile.server_ping_failed": "Impossibile connettersi al server. Per favore controlla l'URL del tuo server e la connessione internet.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nE' richiesto un aggiornamento del server per usare l'app di Mattermost. Chiedi al tuo Amministratore di Sistema per i dettagli.\n",
- "mobile.server_upgrade.title": "Richiesto aggiornamento del server",
- "mobile.server_url.invalid_format": "L'URL Deve iniziare con http:// o https://",
- "mobile.session_expired": "Sessione scaduta: accedere per ricevere le notifiche.",
- "mobile.settings.clear": "Pulisci la memoria offline",
- "mobile.settings.clear_button": "Pulisci",
- "mobile.settings.clear_message": "\nQuesta operazione cancella tutti i dati salvati in locale e riavvia l'app. Sarai automaticamente loggato al termine del riavvio.\n",
- "mobile.settings.team_selection": "Seleziona gruppo",
- "mobile.suggestion.members": "Membri",
- "modal.manaul_status.ask": "Non chiedere più in futuro",
- "modal.manaul_status.button": "Si, imposta lo stato \"Online\"",
- "modal.manaul_status.cancel": "No, rimani \"{status}\"",
- "modal.manaul_status.message": "Vuoi cambiare lo status in \"Online\"?",
- "modal.manaul_status.title": "Lo stato è \"{status}\"",
- "more_channels.close": "Chiudi",
- "more_channels.create": "Crea un nuovo canale",
- "more_channels.createClick": "Click 'Crea un nuovo canale' per crearne uno nuovo",
- "more_channels.join": "Entra",
- "more_channels.next": "Prossimo",
- "more_channels.noMore": "Nessun altro canale in cui entrare",
- "more_channels.prev": "Precedente",
- "more_channels.title": "Più Canali",
- "more_direct_channels.close": "Chiudi",
- "more_direct_channels.message": "Messaggio",
- "more_direct_channels.new_convo_note": "Avviare una nuova conversazione. Se aggiungi molte persone prova a creare un gruppo privato.",
- "more_direct_channels.new_convo_note.full": "Hai raggiunto il limite massimo di persone per questa conversazione. Prova a creare un canale privato.",
- "more_direct_channels.title": "Messagio Privato",
- "msg_typing.areTyping": "{users} e {last} stanno scrivendo...",
- "msg_typing.isTyping": "{user} sta scrivendo...",
- "msg_typing.someone": "Qualcuno",
- "multiselect.add": "Aggiungi",
- "multiselect.go": "Vai",
- "multiselect.list.notFound": "Nessun elemento trovato",
- "multiselect.numPeopleRemaining": "Usa ↑↓ per navigare, ↵ per scegliere. Puoi aggiungere {num, number} più {num, plural, one {person} altre {people}}. ",
- "multiselect.numRemaining": "Si possono ancora aggiungere {num, number}",
- "multiselect.placeholder": "Cercare ed aggiungere membri",
- "navbar.addMembers": "Aggiungi Membro",
- "navbar.click": "Clicca qui",
- "navbar.delete": "Elimina Canale...",
- "navbar.leave": "Elimina Canale",
- "navbar.manageMembers": "Amministra Membri",
- "navbar.noHeader": "Nessun intestazione per il canale.{newline}{link} per aggiungerne una.",
- "navbar.preferences": "Preferenze delle Notifiche",
- "navbar.rename": "Rinomina Canale...",
- "navbar.setHeader": "Imposta Intstazione Canale...",
- "navbar.setPurpose": "Cambia Scopo Canale...",
- "navbar.toggle1": "Nascondi barra laterale",
- "navbar.toggle2": "Nascondi barra laterale",
- "navbar.viewInfo": "Mostra informazioni",
- "navbar.viewPinnedPosts": "Visualizza pubblicazioni bloccate",
- "navbar_dropdown.about": "Informazioni su Mattermost",
- "navbar_dropdown.accountSettings": "Impostazioni Account",
- "navbar_dropdown.addMemberToTeam": "Aggiungi membri al gruppo",
- "navbar_dropdown.console": "Console di Sistema",
- "navbar_dropdown.create": "Crea un Nuovo gruppo",
- "navbar_dropdown.emoji": "Emoji personalizzati",
- "navbar_dropdown.help": "Aiuto",
- "navbar_dropdown.integrations": "Integrazioni",
- "navbar_dropdown.inviteMember": "Invia Email di Invito",
- "navbar_dropdown.join": "Unisciti a un altro gruppo",
- "navbar_dropdown.keyboardShortcuts": "Scorciatoie da tastiera",
- "navbar_dropdown.leave": "Abbandona il gruppo",
- "navbar_dropdown.logout": "Esci",
- "navbar_dropdown.manageMembers": "Amministra Membri",
- "navbar_dropdown.nativeApps": "Scarica le app",
- "navbar_dropdown.report": "Segnala un problema",
- "navbar_dropdown.switchTeam": "Cambia a {team}",
- "navbar_dropdown.switchTo": "Passa a ",
- "navbar_dropdown.teamLink": "Prendi collegamento di invito al gruppo",
- "navbar_dropdown.teamSettings": "Impostazioni gruppo",
- "navbar_dropdown.viewMembers": "Visualizza membri",
- "notification.dm": "Messaggio diretto",
- "notify_all.confirm": "Conferma",
- "notify_all.question": "Usando @all o @channel si inviano notifiche a {totalMembers} persone. Sicuro di volerlo fare?",
- "notify_all.title.confirm": "Conferma l'invio delle notifiche a tutto il canale",
- "passwordRequirements": "Requisiti della password:",
- "password_form.change": "Cambia la password",
- "password_form.click": "Fai click qui per accedere.",
- "password_form.enter": "Inserisci una nuova password per il tuo account {siteName}.",
- "password_form.error": "Inserisci almeno {chars} caratteri.",
- "password_form.pwd": "Password",
- "password_form.title": "Reimposta Password",
- "password_form.update": "La tua password è stata aggiornata con successo.",
- "password_send.checkInbox": "Per favore controlla la posta in arrivo.",
- "password_send.description": "Per resettare la password, inserisci l' indirizzo email usato per accedere",
- "password_send.email": "Email",
- "password_send.error": "Inserisci un indirizzo email valido.",
- "password_send.link": "Se l'account esiste, un'email per il reset della password sarà inviato a: {email}
",
- "password_send.reset": "Reimposta password",
- "password_send.title": "Resetta Password",
- "pdf_preview.max_pages": "Scarica per leggere più pagine",
- "pending_post_actions.cancel": "Cancella",
- "pending_post_actions.retry": "Riprova",
- "permalink.error.access": "Permalink appartenente a un messaggio cancellato o a un gruppo in cui non si può accedere.",
- "permalink.error.title": "Messaggio non trovato",
- "post_attachment.collapse": "Mostra meno...",
- "post_attachment.more": "Mostra di più...",
- "post_body.commentedOn": "Commento su {name}{apostrophe} messaggio: ",
- "post_body.deleted": "(messaggio cancellato)",
- "post_body.plusMore": " più {count, number} other {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Il commento non può essere pubblicato",
- "post_delete.okay": "Tutto bene",
- "post_delete.someone": "Qualcuno ha cancellato il messaggio che stai cercando di commentare.",
- "post_focus_view.beginning": "Inizio del Archivio del Canale",
- "post_info.del": "Cancella",
- "post_info.edit": "Modifica",
- "post_info.message.visible": "(Visibile soltanto a te)",
- "post_info.message.visible.compact": " (Visibile soltanto a te)",
- "post_info.mobile.flag": "Contrassegna",
- "post_info.mobile.unflag": "Togli contrassegno",
- "post_info.permalink": "Permalink",
- "post_info.pin": "Blocca al canale",
- "post_info.pinned": "Bloccato",
- "post_info.reply": "Rispondi",
- "post_info.system": "Sistema",
- "post_info.unpin": "Sblocca dal canale",
- "post_message_view.edited": "(modificato)",
- "posts_view.loadMore": "Carica più messaggi",
- "posts_view.loadingMore": "Carico più messaggi...",
- "posts_view.newMsg": "Nuovo Messaggio",
- "posts_view.newMsgBelow": "Nuovo {count, plural, one {message} other {messages}} sotto",
- "quick_switch_modal.channels": "Canali",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Inizia a scrivere e usa il tasto TAB per attivare i canali/gruppi, ↑↓ per navigare, ↵ per selezionare e ESC per uscire.",
- "quick_switch_modal.help_mobile": "Scrivi per cercare un canale.",
- "quick_switch_modal.help_no_team": "Scrivi per trovare i canali. Utilizza ↑↓ per navigare, ↵ per selezionare e ESC per uscire.",
- "quick_switch_modal.teams": "Gruppi",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(clicca per aggiungere)",
- "reaction.clickToRemove": "(clicca per rimuovere)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {user} other {users}}",
- "reaction.reacted": "{users} {reactionVerb} con {emoji}",
- "reaction.reactionVerb.user": "reagito",
- "reaction.reactionVerb.users": "reagito",
- "reaction.reactionVerb.you": "reagito",
- "reaction.reactionVerb.youAndUsers": "reagito",
- "reaction.usersAndOthersReacted": "{users} e {otherUsers, number} other {otherUsers, plural, one {user} other {users}}",
- "reaction.usersReacted": "{users} e {lastUser}",
- "reaction.you": "Tu",
- "removed_channel.channelName": "il canale",
- "removed_channel.from": "Rimosso da ",
- "removed_channel.okay": "Tutto bene",
- "removed_channel.remover": "{remover} ti ha rimosso da {channel}",
- "removed_channel.someone": "Qualcuno",
- "rename_channel.cancel": "Cancella",
- "rename_channel.defaultError": " - Non può essere cambiato per il canale di dafault",
- "rename_channel.displayName": "Nome visibile",
- "rename_channel.displayNameHolder": "Inserisci il nome visualizato",
- "rename_channel.handleHolder": "caratteri alfanumerici minuscoli",
- "rename_channel.lowercase": "Devono essere caratteri alfanumerici minuscoli",
- "rename_channel.maxLength": "Questo campo può essere al massimo di {maxLength, number} caratteri",
- "rename_channel.minLength": "Il nome del canale deve essere lungo almeno {minLength, number} caratteri",
- "rename_channel.required": "Il campo è richiesto",
- "rename_channel.save": "Salva",
- "rename_channel.title": "Rinomina Canale",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Commento",
- "rhs_comment.del": "Cancella",
- "rhs_comment.edit": "Modifica",
- "rhs_comment.mobile.flag": "Contrassegna",
- "rhs_comment.mobile.unflag": "Togli contrassegno",
- "rhs_comment.permalink": "Permalink",
- "rhs_header.backToCallTooltip": "Torna a chiamata",
- "rhs_header.backToFlaggedTooltip": "Torna alle pubblicazioni contrassegnate",
- "rhs_header.backToPinnedTooltip": "Torna alle pubblicazioni bloccate",
- "rhs_header.backToResultsTooltip": "Torna ai risultati della ricerca",
- "rhs_header.closeSidebarTooltip": "Chiudi la barra laterale",
- "rhs_header.closeTooltip": "Chiudi la barra laterale",
- "rhs_header.details": "Informazioni Messaggio",
- "rhs_header.expandSidebarTooltip": "Apri la barra laterale",
- "rhs_header.expandTooltip": "Adatta la barra laterale",
- "rhs_header.shrinkSidebarTooltip": "Adatta la barra laterale",
- "rhs_root.del": "Elimina",
- "rhs_root.direct": "Messagio Privato",
- "rhs_root.edit": "Modifica",
- "rhs_root.mobile.flag": "Contrassegna",
- "rhs_root.mobile.unflag": "Togli contrassegno",
- "rhs_root.permalink": "Permalink",
- "rhs_root.pin": "Blocca al canale",
- "rhs_root.unpin": "Sblocca dal canale",
- "search_bar.search": "Ricerca",
- "search_bar.usage": "
Opzioni di Ricerca
Usa \"apici\" per ricercare frasi
Usa from: per trovare una pubblicazione di un utente specifico e in: per trovare una pubblicazione in uno specifico canale
Se stai cercando una frase parziale (es. cerca \"one\" per trovare \"riunione\" o \" reazione\"), aggiungi un * al tuo termine di ricerca.
Le ricerche a due lettere o con parole comuni come \"questo\", \"e\" ed \"è\" non compaiono nei risultati causa dell'elevato numero di occorrenze trovate.
Usa from: per cercare pubblicazioni di un utente e in: per trovare pubblicazioni in canali specifici.
",
- "search_results.usageFlag1": "Non hai contrassegnato nessun messaggio.",
- "search_results.usageFlag2": "Puoi contrassegnare i messaggi e i commenti cliccando ",
- "search_results.usageFlag3": " l'icona vicino alla data.",
- "search_results.usageFlag4": "Contrassegnare i messaggi è uno strumento per seguirli. I contrassegni sono personali e non sono visibili agli altri utenti.",
- "search_results.usagePin1": "Non ci sono messaggi bloccati.",
- "search_results.usagePin2": "Tutti i membri di questo canale possono bloccare i messaggi utili o importanti.",
- "search_results.usagePin3": "I messaggi bloccati sono visibili a tutti i membri del canale.",
- "search_results.usagePin4": "Per bloccare un messaggio: sul messaggio desiderato cliccare [...] > \"Blocca al canale\".",
- "setting_item_max.cancel": "Cancella",
- "setting_item_max.save": "Salva",
- "setting_item_min.edit": "Modifica",
- "setting_picture.cancel": "Cancella",
- "setting_picture.help": "Carica una immagine in formato BMP, JPG, JPEG o PNG. Le dimensioni massime sono: larghezza {width}px e altezza {height}px.",
- "setting_picture.save": "Salva",
- "setting_picture.select": "Seleziona",
- "setting_upload.import": "Importa",
- "setting_upload.noFile": "Nessun file selezionato.",
- "setting_upload.select": "Seleziona file",
- "shortcuts.browser.channel_next": "Avanti nella cronologia:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Avanti nella cronologia:\t⌘|]",
- "shortcuts.browser.channel_prev": "Indietro nella cronologia:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Indietro nella cronologia:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom indietro:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom indietro:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom avanti:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom avanti:\t⌘|+",
- "shortcuts.browser.header": "Comandi integrati nel browser",
- "shortcuts.browser.highlight_next": "Evidenzia il testo sulla riga successiva:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Evidenzia il testo sulla riga precedente:\tShift|Up",
- "shortcuts.browser.input.header": "Lavoro all'interno di un campo testo",
- "shortcuts.browser.newline": "Crea una nuova riga:\tShift|Enter",
- "shortcuts.files.header": "File",
- "shortcuts.files.upload": "Carica file:\tCtrl|U",
- "shortcuts.files.upload.mac": "Carica file:\t⌘|U",
- "shortcuts.header": "Scorciatoie da tastiera",
- "shortcuts.info": "Inizia un messaggio con / per una lista dei comandi disponibili.",
- "shortcuts.msgs.comp.channel": "Canale:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Completamento automatico",
- "shortcuts.msgs.comp.username": "Nome utente:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Modifica l'ultimo messaggio del canale:\tUp",
- "shortcuts.msgs.header": "Messaggi",
- "shortcuts.msgs.input.header": "Lavora all'interno di un campo di testo",
- "shortcuts.msgs.mark_as_read": "Segna il canale corrente come letto:\tEsc",
- "shortcuts.msgs.reply": "Rispondi all'ultimo messaggio nel canale:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Ristampa il prossimo messaggio:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Ristampa il prossimo messaggio:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Ristampa il messaggio precedente:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Ristampa il messaggio precedente:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Menu messaggio diretto:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Menu messaggio diretto:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigazione",
- "shortcuts.nav.next": "Prossimo canale:\tAlt|Down",
- "shortcuts.nav.next.mac": "Prossimo canale:\t⌥|Down",
- "shortcuts.nav.prev": "Canale precedente:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Canale precedente:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Citazioni recenti:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Citazioni recenti:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Impostazioni account:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Impostazioni account:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Selezione rapida del canale:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Selezione rapida del canale:\t⌘|K",
- "shortcuts.nav.unread_next": "Prossimo canale da leggere:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Prossimo canale da leggere:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Canale da leggere precedente:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Canale da leggere precedente:\t⌥|Shift|Up",
- "sidebar.channels": "CANALI PUBBLICI",
- "sidebar.createChannel": "Crea un canale pubblico",
- "sidebar.createGroup": "Crea un canale privato",
- "sidebar.direct": "MESSAGGI DIRETTI",
- "sidebar.favorite": "CANALI PREFERITI",
- "sidebar.leave": "Abbandona canale",
- "sidebar.mainMenu": "Menu principale",
- "sidebar.more": "Più",
- "sidebar.moreElips": "Più...",
- "sidebar.otherMembers": "Fuori da questo gruppo",
- "sidebar.pg": "CANALI PRIVATI",
- "sidebar.removeList": "Rimosso dalla lista",
- "sidebar.tutorialScreen1": "
Canali
I canali organizzano le conversazioni per argomenti. Sono aperti a tutto il gruppo. Per inviare messaggi privati usa Messaggi Privati verso una persona o Canale privato verso un gruppo di persone.
",
- "sidebar.tutorialScreen2": "
I canali \"{townsquare}\" e \"{offtopic}\"
Questi sono due canali pubblici di partenza:
{townsquare} è un canale per le comunicazioni intragruppo. Tutti i membri del gruppo accedono a questo canale.
{offtopic} è un canale per divertirsi e trattare argomenti diversi dal lavoro. Tu e il tuo gruppo potete scegliere quali altri canali creare.
",
- "sidebar.tutorialScreen3": "
Creare e Entrare nei canali
Clicca \"Di più...\" per creare un nuovo canale o entrare su un canale esistente.
Puoi anche creare un nuovo canale cliccando sul simbolo \"+\" vicino al titolo del canale.
",
- "sidebar.unreads": "Più non letti",
- "sidebar_header.tutorial": "
Menu principale
Il Menu principale è dove puoi Invitare nuovi membri, accedere alle tue Impostazioni account e impostare il tuo colore tema.
Gli amministratori di gruppo possono anche accedere alle Impostazioni di gruppo.
Gli Amministratori di Sistema troveranno la Console di Sistema per gestire l'intera installazione.
",
- "sidebar_right_menu.accountSettings": "Impostazioni Account",
- "sidebar_right_menu.addMemberToTeam": "Aggiungi membri al gruppo",
- "sidebar_right_menu.console": "Console di Sistema",
- "sidebar_right_menu.flagged": "Pubblicazioni contrassegnate",
- "sidebar_right_menu.help": "Aiuto",
- "sidebar_right_menu.inviteNew": "Invia Email di Invito",
- "sidebar_right_menu.logout": "Esci",
- "sidebar_right_menu.manageMembers": "Amministra Membri",
- "sidebar_right_menu.nativeApps": "Scarica le app",
- "sidebar_right_menu.recentMentions": "Citazioni Recenti",
- "sidebar_right_menu.report": "Segnala un problema",
- "sidebar_right_menu.teamLink": "Prendi collegamento di invito al gruppo",
- "sidebar_right_menu.teamSettings": "Impostazioni gruppo",
- "sidebar_right_menu.viewMembers": "Mostra membri",
- "signup.email": "Email e Password",
- "signup.gitlab": "GitLab Single Sign-On",
- "signup.google": "Account Google",
- "signup.ldap": "Credenziali AD/LDAP",
- "signup.office365": "Office 365",
- "signup.title": "Crea un account con:",
- "signup_team.createTeam": "O Crea un gruppo",
- "signup_team.disabled": "La creazione di gruppi è stata disabilitata. Contatta un amministratore per accesso.",
- "signup_team.join_open": "Gruppi in cui puoi entrare: ",
- "signup_team.noTeams": "Non ci sono gruppi nella Cartella Gruppi e la creazione di Gruppi è disattivata.",
- "signup_team.no_open_teams": "Nessun gruppo disponibile. Chiedi al tuo amministratore l'invito.",
- "signup_team.no_open_teams_canCreate": "Nessun gruppo disponibile. Crea un nuovo gruppo o richiedi un invito al tuo amministratore.",
- "signup_team.no_teams": "Nessun gruppo creato. Contatta il tuo amministratore.",
- "signup_team.no_teams_canCreate": "Nessun gruppo creato. Puoi crearne uno cliccando \"Crea nuovo gruppo\".",
- "signup_team.none": "La creazione di gruppi è stata attivata. Contatta un amministratore per accedere.",
- "signup_team_complete.completed": "Hai già completato il processo di registrazione per questo invito oppure l'invito è scaduto.",
- "signup_team_confirm.checkEmail": "Controlla la tua email: {email} L'email contiene un collegamento per configurare il tuo gruppo",
- "signup_team_confirm.title": "Registrazione completata",
- "signup_team_system_console": "Vai alla Console di Sistema",
- "signup_user_completed.choosePwd": "Scegli una password",
- "signup_user_completed.chooseUser": "Scegli un nome utente",
- "signup_user_completed.create": "Crea account",
- "signup_user_completed.emailHelp": "Richiesto un'indirizzo email valido per la registrazione",
- "signup_user_completed.emailIs": "L'indirizzo email è {email}. Userai questo indirizzo per accedere a {siteName}.",
- "signup_user_completed.expired": "Hai già completato il processo di registrazione per questo invito o l'invito è scaduto.",
- "signup_user_completed.gitlab": "con GitLab",
- "signup_user_completed.google": "con Google",
- "signup_user_completed.haveAccount": "Hai già un account?",
- "signup_user_completed.invalid_invite": "Questo collegamento non è valido. Chiedi all'Amministratore per ricevere un altro invito.",
- "signup_user_completed.lets": "Crea il tuo account",
- "signup_user_completed.no_open_server": "Questo server non permette la registrazione aperta. Chiedi all'Amministratore per ricevere un invito.",
- "signup_user_completed.none": "Non sono stati definiti metodi per creare un utente. Contatta l'Amministratore per accedere.",
- "signup_user_completed.office365": "con Office 365",
- "signup_user_completed.onSite": "su {siteName}",
- "signup_user_completed.or": "oppure",
- "signup_user_completed.passwordLength": "Inserire da {min} a {max} caratteri",
- "signup_user_completed.required": "Il campo è richiesto",
- "signup_user_completed.reserved": "Questo nome utente è riservato, sceglierne un altro.",
- "signup_user_completed.signIn": "Clicca qui per accedere.",
- "signup_user_completed.userHelp": "Il nome utente deve iniziare con una lettera e contenere da {min} a {max} caratteri minuscoli, numeri e i simboli '.', '-', '_'",
- "signup_user_completed.usernameLength": "Il nome utente deve iniziare con una lettera e contenere da {min} a {max} caratteri minuscoli, numeri e i simboli '.', '-', '_'.",
- "signup_user_completed.validEmail": "Inserisci un indirizzo email valido",
- "signup_user_completed.welcome": "Benvenuto in:",
- "signup_user_completed.whatis": "Qual'è il tuo indirizzo email?",
- "signup_user_completed.withLdap": "Con le credenziali AD/LDAP",
- "sso_signup.find": "Trova i miei gruppi",
- "sso_signup.gitlab": "Crea un gruppo con account GitLab",
- "sso_signup.google": "Crea un gruppo con Google Apps Account",
- "sso_signup.length_error": "Il nome deve avere una lunghezza tra 3 e 15 caratteri",
- "sso_signup.teamName": "Inserisci il nome del nuovo gruppo",
- "sso_signup.team_error": "Inserisci un nome gruppo",
- "status_dropdown.set_away": "Assente",
- "status_dropdown.set_offline": "Offline",
- "status_dropdown.set_online": "Online",
- "suggestion.loading": "Caricamento...",
- "suggestion.mention.all": "ATTENZIONE: Questo citerà tutti nel canale",
- "suggestion.mention.channel": "Notifica tutti nel canale",
- "suggestion.mention.channels": "Miei canali",
- "suggestion.mention.here": "Notifica tutti gli utenti online nel canale",
- "suggestion.mention.in_channel": "Canali",
- "suggestion.mention.members": "Membri del canale",
- "suggestion.mention.morechannels": "Altri canali",
- "suggestion.mention.nonmembers": "Non nel canale",
- "suggestion.mention.not_in_channel": "Altri canali",
- "suggestion.mention.special": "Citazioni speciali",
- "suggestion.search.private": "Canali privati",
- "suggestion.search.public": "Canali Pubblici",
- "system_users_list.count": "{count, number} {count, plural, one {user} other {users}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {user} other {users}} of {total, number} total",
- "system_users_list.countSearch": "{count, number} {count, plural, one {user} other {users}} of {total, number} total",
- "team_export_tab.download": "scarica",
- "team_export_tab.export": "Esporta",
- "team_export_tab.exportTeam": "Esporta gruppo",
- "team_export_tab.exporting": " Esportazione...",
- "team_export_tab.ready": " Pronto per ",
- "team_export_tab.unable": " Impossibile esportare: {error}",
- "team_import_tab.failure": " Importazione fallita: ",
- "team_import_tab.import": "Importa",
- "team_import_tab.importHelpDocsLink": "documentazione",
- "team_import_tab.importHelpExportInstructions": "Slack > Impostazioni gruppo > Importa /Esporta > Esporta > Inizia esportazione",
- "team_import_tab.importHelpExporterLink": "Esportazione Avanzata Slack",
- "team_import_tab.importHelpLine1": "L'importazione di Slack in Mattermost supporta l'importazione dei messaggi nei tuoi canali pubblici di Slack.",
- "team_import_tab.importHelpLine2": "Per importare i tuoi gruppi da Slack, vai a {exportInstructions}. Vedi {uploadDocsLink} per ulteriori informazioni.",
- "team_import_tab.importHelpLine3": "Per importare pubblicazioni con file allegati, vedere {slackAdvancedExporterLink}.",
- "team_import_tab.importSlack": "Importa da Slack (Beta)",
- "team_import_tab.importing": " Importazione...",
- "team_import_tab.successful": " Importazione riuscita: ",
- "team_import_tab.summary": "Vedi sommario",
- "team_member_modal.close": "Chiudi",
- "team_member_modal.members": "Membri {team}",
- "team_members_dropdown.confirmDemoteDescription": "Se rimuovi te stesso dal ruolo di Amministratore di Sistema e non ci sono altri utenti con il ruolo di Amministratore di Sistema dovrai riassegnare il ruolo di Amministratore di Sistema utilizzando un terminale ed eseguendo il seguente comando.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Conferma la rimozione dal ruolo di Amministratore di Sistema",
- "team_members_dropdown.confirmDemotion": "Conferma rimozione",
- "team_members_dropdown.confirmDemotionCmd": "ruolo system_admin su piattaforma {username}",
- "team_members_dropdown.inactive": "Inattivo",
- "team_members_dropdown.leave_team": "Rimuovi da gruppo",
- "team_members_dropdown.makeActive": "Attiva",
- "team_members_dropdown.makeAdmin": "Rendi Amministratore di Gruppo",
- "team_members_dropdown.makeInactive": "Disattiva",
- "team_members_dropdown.makeMember": "Rendi membro",
- "team_members_dropdown.member": "Membro",
- "team_members_dropdown.systemAdmin": "Amministratore di sistema",
- "team_members_dropdown.teamAdmin": "Amministratore di Gruppo",
- "team_settings_modal.exportTab": "Esporta",
- "team_settings_modal.generalTab": "Generale",
- "team_settings_modal.importTab": "Importa",
- "team_settings_modal.title": "Impostazioni gruppo",
- "team_sidebar.join": "Gruppi liberi a cui puoi accedere.",
- "textbox.bold": "**bold**",
- "textbox.edit": "Modifica messaggio",
- "textbox.help": "Aiuto",
- "textbox.inlinecode": "`inline code`",
- "textbox.italic": "_italic_",
- "textbox.preformatted": "```preformatted```",
- "textbox.preview": "Anteprima",
- "textbox.quote": ">quote",
- "textbox.strike": "prezzo di esercizio",
- "tutorial_intro.allSet": "Configurazione completata",
- "tutorial_intro.end": "Clicca \"Avanti\" per entrare in {channel}. Questo è il primo canale che i colleghi visualizzano all'accesso. Pubblica qui i messaggi che tutti dovranno vedere.",
- "tutorial_intro.invite": "Invita colleghi",
- "tutorial_intro.mobileApps": "Installa le apps per {link} e ottenere l'accesso facilitato e le notifiche da mobile.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS e Android",
- "tutorial_intro.next": "Prossimo",
- "tutorial_intro.screenOne": "
Benvenuto in:
Mattermost
Le tue comunicazioni in un unico posto, accessibile sempre e ovunque.
Mantieni connessi i tuoi gruppi per aiutarli a raggiungere quello che conta davvero.
",
- "tutorial_intro.screenTwo": "
Come funziona Mattermost:
Le comunicazioni avvengono in canali di discussione pubblici, privati e con messaggi diretti.
Tutto viene archiviato ed è ricercabile da ogni dispositivo con accesso a Internet.
",
- "tutorial_intro.skip": "Salta il tutorial",
- "tutorial_intro.support": "Serve aiuto, scrivi a ",
- "tutorial_intro.teamInvite": "Invita colleghi",
- "tutorial_intro.whenReady": " quando sei pronto.",
- "tutorial_tip.next": "Prossimo",
- "tutorial_tip.ok": "Okay",
- "tutorial_tip.out": "Esci da questi consigli.",
- "tutorial_tip.seen": "Mai visto prima? ",
- "update_command.cancel": "Annulla",
- "update_command.confirm": "Modifica comandi slash",
- "update_command.question": "Le modifiche potrebbero interrompere il funzionamento dei comandi slash esistenti. Sicuro di volerlo aggiornare?",
- "update_command.update": "Aggiorna",
- "update_incoming_webhook.update": "Aggiorna",
- "update_outgoing_webhook.confirm": "Aggiungi webhook in uscita",
- "update_outgoing_webhook.question": "Le modifiche potrebbero interrompere il funzionamento del webhook in uscita esistente. Sicuro di volerlo aggiornare?",
- "update_outgoing_webhook.update": "Aggiorna",
- "upload_overlay.info": "Trascina un file per caricarlo.",
- "user.settings.advance.embed_preview": "Per il primo collegamento web in un messaggio, visualizza un'anteprima del contenuto del sito web sotto il messaggio, se disponibile",
- "user.settings.advance.embed_toggle": "Visualizza toggle per tutte le anteprime incorporate",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Feature} other {Features}} attiva/e",
- "user.settings.advance.formattingDesc": "Se attivo le pubblicazioni saranno formattate per creare collegamenti, visualizzare emoji, formattare il testo e aggiungere le interruzioni di riga. Per default questa opzione è attiva. Ricaricare la pagina per applicare eventuali modifiche.",
- "user.settings.advance.formattingTitle": "Abilita formattazione pubblicazioni",
- "user.settings.advance.joinLeaveDesc": "Se \"On\" i Messaggi di Sistema che indicano se un utente si è unito o ha lasciato un canale saranno visibili, altrimenti questi messaggi saranno nascosti. Un messaggio continuerà a comparire quando vieni aggiunto ad un canale in modo da ricevere una notifica.",
- "user.settings.advance.joinLeaveTitle": "Abilita Entra/Lascia messaggi",
- "user.settings.advance.markdown_preview": "Visualizza l'anteprima di formattazione nella casella del messaggio",
- "user.settings.advance.off": "Spento",
- "user.settings.advance.on": "Acceso",
- "user.settings.advance.preReleaseDesc": "Visualizza l'anteprima delle funzioni prerilascio. Può servire un aggiornamento della pagina affinché questa modifica abbia effetto.",
- "user.settings.advance.preReleaseTitle": "Visualizza anteprima delle funzioni prerilascio",
- "user.settings.advance.sendDesc": "Se attivo INVIO inserisce una nuova linea e CTRL+INVIO invia il messaggio.",
- "user.settings.advance.sendTitle": "Invia messaggi con CTRL+INVIO",
- "user.settings.advance.slashCmd_autocmp": "Abilita le applicazioni esterne ad offrire l'autocompletamento dei comandi slash",
- "user.settings.advance.title": "Impostazioni avanzate",
- "user.settings.advance.webrtc_preview": "Abilita la possibilità di fare e ricevere chiamate uno-a-uno WebRTC",
- "user.settings.custom_theme.awayIndicator": "Indicatore di assenza",
- "user.settings.custom_theme.buttonBg": "BG Pulsante",
- "user.settings.custom_theme.buttonColor": "Testo del pulsante",
- "user.settings.custom_theme.centerChannelBg": "BG Canale centrale",
- "user.settings.custom_theme.centerChannelColor": "Testo canale centrale",
- "user.settings.custom_theme.centerChannelTitle": "Stili canale centrale",
- "user.settings.custom_theme.codeTheme": "Codice del tema",
- "user.settings.custom_theme.copyPaste": "Copia e incolla per condividere i colori del tema:",
- "user.settings.custom_theme.linkButtonTitle": "Stili pulsante e collegamento",
- "user.settings.custom_theme.linkColor": "Colore del collegamento",
- "user.settings.custom_theme.mentionBj": "BG gioiello citazione",
- "user.settings.custom_theme.mentionColor": "Testo gioiello citazione",
- "user.settings.custom_theme.mentionHighlightBg": "BG evidenziazione citazione",
- "user.settings.custom_theme.mentionHighlightLink": "Evidenzia collegamento mezione",
- "user.settings.custom_theme.newMessageSeparator": "Separatore nuovo messaggio",
- "user.settings.custom_theme.onlineIndicator": "Indicatore online",
- "user.settings.custom_theme.sidebarBg": "BG barra laterale",
- "user.settings.custom_theme.sidebarHeaderBg": "BG titolo barra laterale",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Testo titolo barra laterale",
- "user.settings.custom_theme.sidebarText": "Testo barra laterale",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Testo bordo attivo barra laterale",
- "user.settings.custom_theme.sidebarTextActiveColor": "Testo colore attivo barra laterale",
- "user.settings.custom_theme.sidebarTextHoverBg": "BG testo hover barra laterale",
- "user.settings.custom_theme.sidebarTitle": "Stili barra laterale",
- "user.settings.custom_theme.sidebarUnreadText": "Testo non letto barra laterale",
- "user.settings.display.channelDisplayTitle": "Modalità visualizzazione canale",
- "user.settings.display.channeldisplaymode": "Seleziona la larghezza del canale centrale.",
- "user.settings.display.clockDisplay": "Visualizza orologio",
- "user.settings.display.collapseDesc": "Imposta se l'anteprima dei collegamenti a un'immagine sono visualizzati espansi o contratti per default. Questa opzione può essere controllata anche con i comandi slash /expand e /collapse.",
- "user.settings.display.collapseDisplay": "Formato di default per l'anteprima dei collegamenti a un'immagine",
- "user.settings.display.collapseOff": "Contratto",
- "user.settings.display.collapseOn": "Espanso",
- "user.settings.display.fixedWidthCentered": "Larghezza fissa, centrato",
- "user.settings.display.fullScreen": "A tutta larghezza",
- "user.settings.display.language": "Lingua",
- "user.settings.display.messageDisplayClean": "Standard",
- "user.settings.display.messageDisplayCleanDes": "Facile da leggere e scandire.",
- "user.settings.display.messageDisplayCompact": "Compatto",
- "user.settings.display.messageDisplayCompactDes": "Visualizza più messaggi possibile a schermo.",
- "user.settings.display.messageDisplayDescription": "Seleziona come vengono visualizzati i messaggi in un canale.",
- "user.settings.display.messageDisplayTitle": "Visualizzazione dei messaggi",
- "user.settings.display.militaryClock": "orologio 24 ore (esempio: 16:00)",
- "user.settings.display.nameOptsDesc": "Seleziona come visualizzare i nomi degli altri utenti nelle pubblicazioni e nelle liste dei messaggi diretti.",
- "user.settings.display.normalClock": "Orologio 12 ore (esempio 4:00 PM)",
- "user.settings.display.preferTime": "Seleziona come visualizzare l'ora.",
- "user.settings.display.theme.applyToAllTeams": "Applica il nuovo tema a tutti i miei gruppi",
- "user.settings.display.theme.customTheme": "Tema personalizzato",
- "user.settings.display.theme.describe": "Apri per gestire il tema",
- "user.settings.display.theme.import": "Importa i colori del tema da Slack",
- "user.settings.display.theme.otherThemes": "Visualizza altri temi",
- "user.settings.display.theme.themeColors": "Colori tema",
- "user.settings.display.theme.title": "Tema",
- "user.settings.display.title": "Impostazioni aspetto",
- "user.settings.general.checkEmail": "Controlla la tua email {email} per verificare il tuo indirizzo.",
- "user.settings.general.checkEmailNoAddress": "Verifica le tue email per confermare il nuovo indirizzo",
- "user.settings.general.close": "Chiudi",
- "user.settings.general.confirmEmail": "Conferma l'indirizzo email",
- "user.settings.general.currentEmail": "Indirizzo email attuale",
- "user.settings.general.email": "Email",
- "user.settings.general.emailGitlabCantUpdate": "Accesso avvenuto tramite GitLab. L'indirizzo email non può essere aggiornato. L'indirizzo email utilizzato per le notifiche è {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Accesso avvenuto tramite Google. L'indirizzo email non può essere aggiornato. L'indirizzo email utilizzato per le notifiche è {email}.",
- "user.settings.general.emailHelp1": "Email utilizzata per l'accesso, notifiche e reset della password. L'email richiede una convalida se modificata.",
- "user.settings.general.emailHelp2": "Le email sono state disattiva dall'Amministratore di Sistema. Nessuna notifiche email verrà inviata fino a quando non saranno attivate.",
- "user.settings.general.emailHelp3": "Email utilizzata per l'accesso, notifiche e reset della password.",
- "user.settings.general.emailHelp4": "Un email di verifica è stata inviata a {email}.",
- "user.settings.general.emailLdapCantUpdate": "Accesso avvenuto tramite AD/LDAP. L'indirizzo email non può essere aggiornato. L'indirizzo email utilizzato per le notifiche è {email}.",
- "user.settings.general.emailMatch": "Le nuove email inserire non coincidono.",
- "user.settings.general.emailOffice365CantUpdate": "Accesso avvenuto tramite Office 365. L'indirizzo email non può essere aggiornato. L'indirizzo email utilizzato per le notifiche è {email}.",
- "user.settings.general.emailSamlCantUpdate": "Accesso avvenuto tramite SAML. L'indirizzo email non può essere aggiornato. L'indirizzo email utilizzato per le notifiche è {email}.",
- "user.settings.general.emailUnchanged": "Il nuovo indirizzo email è identico al vecchio indirizzo.",
- "user.settings.general.emptyName": "Clicca 'Modifica' per specificare il nome completo",
- "user.settings.general.emptyNickname": "Clicca 'Modifica' per specificare il soprannome",
- "user.settings.general.emptyPosition": "Clicca 'Modifica' per specificare il tuo ruolo lavorativo / posizione",
- "user.settings.general.field_handled_externally": "Questo campo è gestito tramite il fornitore di accesso. Se vuoi cambiarlo devi farlo tramite il fornitore del tuo accesso.",
- "user.settings.general.firstName": "Nome",
- "user.settings.general.fullName": "Nome completo",
- "user.settings.general.imageTooLarge": "Impossibile caricare la foto profilo. Il file è troppo grande.",
- "user.settings.general.imageUpdated": "Ultimo aggiornamento immagine {date}",
- "user.settings.general.lastName": "Cognome",
- "user.settings.general.loginGitlab": "Accesso avvenuto tramite GitLab ({email})",
- "user.settings.general.loginGoogle": "Accesso avvenuto tramite Google ({email})",
- "user.settings.general.loginLdap": "Accesso avvenuto tramite AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Accesso avvenuto tramite Office 365 ({email})",
- "user.settings.general.loginSaml": "Accesso avvenuto tramite SAML ({email})",
- "user.settings.general.mobile.emptyName": "Clicca per specificare il nome completo",
- "user.settings.general.mobile.emptyNickname": "Clicca per aggiungere il soprannome",
- "user.settings.general.mobile.emptyPosition": "Clicca per aggiungere il tuo ruolo lavorativo / posizione",
- "user.settings.general.mobile.uploadImage": "Clicca per caricare un'immagine.",
- "user.settings.general.newAddress": "Nuovo indirizzo: {email} Controlla le email per confermarlo.",
- "user.settings.general.newEmail": "Nuovo indirizzo email",
- "user.settings.general.nickname": "Soprannome",
- "user.settings.general.nicknameExtra": "Usa il soprannome come un nome con cui puoi essere chiamato, diverso dal nome e dal cognome. Può essere usato per differenziare gli omonimi.",
- "user.settings.general.notificationsExtra": "Per default, riceverai un notifica per citazione quando qualcuno scrive il tuo nome. Vai nelle Impostazioni Account > {notify} per modificare questo comportamento.",
- "user.settings.general.notificationsLink": "Notifiche",
- "user.settings.general.position": "Posizione",
- "user.settings.general.positionExtra": "Usa la posizione per definire il tuo ruolo lavorativo. Verrà visualizzato nel tuo profilo.",
- "user.settings.general.profilePicture": "Immagine del profilo",
- "user.settings.general.title": "Impostazioni Generali",
- "user.settings.general.uploadImage": "Click 'Modifica' per inviare un immagine.",
- "user.settings.general.username": "Nome utente",
- "user.settings.general.usernameInfo": "Scegli qualcosa di semplice che i tuoi colleghi possono ricordare facilmente.",
- "user.settings.general.usernameReserved": "Questo nome utente è riservato, sceglierne un altro.",
- "user.settings.general.usernameRestrictions": "Il nome utente deve iniziare con una letta e contenere dai {min} ai {max} caratteri alfanumerici minuscoli e i simboli '.', '-', e '_'.",
- "user.settings.general.validEmail": "Inserisci un indirizzo email valido",
- "user.settings.general.validImage": "Solo immagini JPG o PNG possono essere usate come foto profilo",
- "user.settings.import_theme.cancel": "Cancella",
- "user.settings.import_theme.importBody": "Per importare un tema, vai su un gruppo Slack e cerca \"Preferenze->Tema barra laterale\". Apri le opzioni del tema personalizzato, copia i valori dei colori del tema e incollali qui:",
- "user.settings.import_theme.importHeader": "Importa Tema di Slack",
- "user.settings.import_theme.submit": "Invia",
- "user.settings.import_theme.submitError": "Formato invalido, prova a copiare e incollare ancora.",
- "user.settings.languages.change": "Cambia la lingua",
- "user.settings.languages.promote": "Seleziona quale lingua deve usare Mattermost nell'interfaccia utente.
Vuoi aiutare con le traduzioni? Unisciti al Server delle traduzioni di Mattermost per contribuire.",
- "user.settings.mfa.add": "Aggiungi MFA al tuo account",
- "user.settings.mfa.addHelp": "Aggiungere l'autenticazione multifattore renderà il tuo account ancora più sicuro, richiedendo un codice da un tuo dispositivo mobile ad ogni accesso.",
- "user.settings.mfa.addHelpQr": "Scansiona il codice QR con Google Authenticator sul tuo smartphone e inserisci il token fornito dall'app. Se non puoi scansionare il codice inserisci manualmente il segreto.",
- "user.settings.mfa.enterToken": "Token (solo numeri)",
- "user.settings.mfa.qrCode": "Codice a barre",
- "user.settings.mfa.remove": "Togli AMF dal tuo account",
- "user.settings.mfa.removeHelp": "Rimuovere l'autenticazione multifattore significa che non sarà più richiesto un codice fornito da uno smartphone per accedere.",
- "user.settings.mfa.requiredHelp": "L'autenticazione multifattore è richiesta. Il reset è consigliato solo quando si cambia smartphone. Ti verrà richiesto di configurare l'AMF immediatamente.",
- "user.settings.mfa.reset": "Resetta AMF sul tuo account",
- "user.settings.mfa.secret": "Segreto",
- "user.settings.mfa.title": "Autenticazione Multifattore",
- "user.settings.modal.advanced": "Avanzate",
- "user.settings.modal.confirmBtns": "Si, Scarta",
- "user.settings.modal.confirmMsg": "Hai dei cambiamenti non salvati, sei sicuro di volerli cancelllare?",
- "user.settings.modal.confirmTitle": "Scartare le modifiche?",
- "user.settings.modal.display": "Aspetto",
- "user.settings.modal.general": "Generale",
- "user.settings.modal.notifications": "Notifiche",
- "user.settings.modal.security": "Sicurezza",
- "user.settings.modal.title": "Impostazioni Account",
- "user.settings.notifications.allActivity": "Per tutte le attività",
- "user.settings.notifications.channelWide": "Citazioni per canale \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Chiudi",
- "user.settings.notifications.comments": "Notifiche per le risposte",
- "user.settings.notifications.commentsAny": "Invia notifiche per le risposte a conversazioni che ho iniziato o a cui ho partecipato",
- "user.settings.notifications.commentsInfo": "Scegli se vuoi ricevere delle notifiche per le risposte oltre alle notifiche per citazione.",
- "user.settings.notifications.commentsNever": "Non inviare notifiche per le risposte a meno che io non sia citato",
- "user.settings.notifications.commentsRoot": "Invia notifiche per le conversazioni che ho iniziato",
- "user.settings.notifications.desktop": "Invia notifiche desktop",
- "user.settings.notifications.desktop.allNoSoundForever": "Per tutte le attività, senza suono, mostra per sempre",
- "user.settings.notifications.desktop.allNoSoundTimed": "Per tutte le attività, senza suono, mostra per {seconds} secondi",
- "user.settings.notifications.desktop.allSoundForever": "Per tutte le attività, con suono, mostra per sempre",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Per tutte le attività, mostra per sempre",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Per tutte le attività, mostra per {seconds} secondi",
- "user.settings.notifications.desktop.allSoundTimed": "Per tutte le attività, con suono, mostra per {seconds} secondi",
- "user.settings.notifications.desktop.duration": "Durata della notifica",
- "user.settings.notifications.desktop.durationInfo": "Imposta per quanto le notifiche desktop devono rimanere sullo schermo quando si usa Firefox o Chrome. Le notifiche desktop in Edge e Safari possono rimanere sullo schermo per massimo 5 secondi.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Per le citazioni e i messaggi diretti, senza suono, mostra per sempre",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Per le citazioni e i messaggi diretti, senza suono, mostra per {seconds} secondi",
- "user.settings.notifications.desktop.mentionsSoundForever": "Per le citazioni e i messaggi diretti, con suono, mostra per sempre",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Per le citazioni e i messaggi diretti, mostra per sempre",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Per le citazioni e i messaggi diretti, mostra per {seconds} seconds",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Per le citazioni e i messaggi diretti, con suono, mostra per {seconds} secondi",
- "user.settings.notifications.desktop.seconds": "{seconds} secondi",
- "user.settings.notifications.desktop.sound": "Suono di notifica",
- "user.settings.notifications.desktop.title": "Notifiche desktop",
- "user.settings.notifications.desktop.unlimited": "Illimitata",
- "user.settings.notifications.desktopSounds": "Suoni di notifica desktop",
- "user.settings.notifications.email.disabled": "Disabilitato dall'Amministratore di Sistema",
- "user.settings.notifications.email.disabled_long": "Le notifiche email sono state disabilitate dall'Amministratore di Sistema.",
- "user.settings.notifications.email.everyHour": "Ogni ora",
- "user.settings.notifications.email.everyXMinutes": "Ogni {count, plural, one {minute} other {{count, number} minuti}}",
- "user.settings.notifications.email.immediately": "Immediatamente",
- "user.settings.notifications.email.never": "Mai",
- "user.settings.notifications.email.send": "Invia notifiche email",
- "user.settings.notifications.emailBatchingInfo": "Le notifiche ricevute nel periodo di tempo selezionato sono combinate e inviate come singola email.",
- "user.settings.notifications.emailInfo": "Invia le notifiche email per citazioni e messaggi diretti quando sei offline o lontano da {siteName} per più di 5 minuti.",
- "user.settings.notifications.emailNotifications": "Notifiche email",
- "user.settings.notifications.header": "Notifiche",
- "user.settings.notifications.info": "Le notifiche desktop sono disponibili per Edge, Firefox, Safari, Chrome e l'app desktop di Mattermost.",
- "user.settings.notifications.mentionsInfo": "Attiva una notifica per citazione quando qualcuno invia un messaggio che include il tuo nome utente (\"@{username}\") oppure una delle opzioni sopra specificate.",
- "user.settings.notifications.never": "Mai",
- "user.settings.notifications.noWords": "Nessuna parola configurata",
- "user.settings.notifications.off": "Spento",
- "user.settings.notifications.on": "Acceso",
- "user.settings.notifications.onlyMentions": "Solo per citazione e messaggi privati",
- "user.settings.notifications.push": "Notifiche push mobile",
- "user.settings.notifications.push_notification.status": "Invia notifiche push quando",
- "user.settings.notifications.sensitiveName": "Nome (differenza tra maiuscole e minuscole) \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Nome (nessuna differenza tra maiuscolo e minuscole) \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Altre parole non sensibili a maiuscole e minuscole, separate da virgola:",
- "user.settings.notifications.soundConfig": "Configura i suoni di notifica nel tuo browser",
- "user.settings.notifications.sounds_info": "I suoni di notifica sono disponibili in IE11, Edge, Safari, Chrome e l'app desktop di Mattermost.",
- "user.settings.notifications.teamWide": "Citazioni di gruppo \"@all\"",
- "user.settings.notifications.title": "Impostazioni delle notifiche",
- "user.settings.notifications.wordsTrigger": "Parole che attivano notifiche per citazione",
- "user.settings.push_notification.allActivity": "Per tutte le attività",
- "user.settings.push_notification.allActivityAway": "Per tutte le attività quando offline o lontano",
- "user.settings.push_notification.allActivityOffline": "Per tutte le attività quando offline",
- "user.settings.push_notification.allActivityOnline": "Per tutte le attività quando online, lontano o offline",
- "user.settings.push_notification.away": "Lontano o offline",
- "user.settings.push_notification.disabled": "Disabilitato dall'Amministratore di Sistema",
- "user.settings.push_notification.disabled_long": "Le notifiche push per i dispositivi mobili sono state disabilitate dall'Amministratore di Sistema.",
- "user.settings.push_notification.info": "Le notifiche sono inviate al tuo dispositivo mobile quando c'è attività su Mattermost.",
- "user.settings.push_notification.off": "Spento",
- "user.settings.push_notification.offline": "Offline",
- "user.settings.push_notification.online": "Online, lontano o offline",
- "user.settings.push_notification.onlyMentions": "Solo per citazioni e messaggi diretti",
- "user.settings.push_notification.onlyMentionsAway": "Per mensioni e messaggi diretti quando lontano o offline",
- "user.settings.push_notification.onlyMentionsOffline": "Per citazioni e messaggi diretti quando offline",
- "user.settings.push_notification.onlyMentionsOnline": "Per citazioni e messaggi diretti quando online, lontano o offline",
- "user.settings.push_notification.send": "Invia notifiche push",
- "user.settings.push_notification.status": "Invia le notifiche push quando",
- "user.settings.push_notification.status_info": "Le notifiche sono inviate al tuo dispositivo mobile quando il tuo stato rientra in quelli sopra selezionati.",
- "user.settings.security.active": "Attivo",
- "user.settings.security.close": "Chiudi",
- "user.settings.security.currentPassword": "Password attuale",
- "user.settings.security.currentPasswordError": "Inserisci la tua password.",
- "user.settings.security.deauthorize": "Revoca autorizzazione",
- "user.settings.security.emailPwd": "Email e Password",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inattivo",
- "user.settings.security.lastUpdated": "Ultimo aggiornamento {date} alle {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Accesso effettuato tramite Gitlab",
- "user.settings.security.loginGoogle": "Accesso effettuato tramite Google Apps",
- "user.settings.security.loginLdap": "Accesso effettuato tramite AD/LDAP",
- "user.settings.security.loginOffice365": "Accesso effettuato tramite Office 365",
- "user.settings.security.loginSaml": "Accesso effettuato tramite SAML",
- "user.settings.security.logoutActiveSessions": "Gestione delle Sessioni Attive",
- "user.settings.security.method": "Metodo di accesso",
- "user.settings.security.newPassword": "Nuova Password",
- "user.settings.security.noApps": "Nessuna applicazione OAuth 2.0 autorizzata.",
- "user.settings.security.oauthApps": "Applicazioni OAuth 2.0",
- "user.settings.security.oauthAppsDescription": "Clicca 'Modifica' per gestire le applicazioni OAuth 2.0",
- "user.settings.security.oauthAppsHelp": "Le applicazioni accedono ai dati secondo i permessi che gli hai concesso.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Puoi avere solo un metodo di accesso attivo per volta. Cambiare metodo di accesso invierà un'email per informarti dell'avvenuto cambio.",
- "user.settings.security.password": "Password",
- "user.settings.security.passwordError": "La password deve contente da {min} a {max} caratteri.",
- "user.settings.security.passwordErrorLowercase": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola.",
- "user.settings.security.passwordErrorLowercaseNumber": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola e un numero.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola, un numero e almeno un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola e un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola e una lettera maiuscola.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola, una lettera maiuscola e un numero.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola, una lettera maiuscola, un numero e un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "La password deve contente da {min} a {max} caratteri con almeno una lettera minuscola, una lettera maiuscola e un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "La password deve contente da {min} a {max} caratteri con almeno un numero.",
- "user.settings.security.passwordErrorNumberSymbol": "La password deve contente da {min} a {max} caratteri con almeno un numero e un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "La password deve contente da {min} a {max} caratteri con almeno un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "La password deve contente da {min} a {max} caratteri con almeno una lettera maiuscola.",
- "user.settings.security.passwordErrorUppercaseNumber": "La password deve contente da {min} a {max} caratteri con almeno una lettera maiuscola e un numero.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "La password deve contente da {min} a {max} caratteri con almeno una lettera maiuscola, un numero e un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "La password deve contente da {min} a {max} caratteri con almeno una lettera maiuscola e un simbolo (es. \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Accesso effettuato tramite GitLab. La password non può essere aggiornata.",
- "user.settings.security.passwordGoogleCantUpdate": "Accesso effettuato tramite Google Apps. La password non può essere aggiornata.",
- "user.settings.security.passwordLdapCantUpdate": "Accesso effettuato tramite AD/LDAP. La password non può essere aggiornata.",
- "user.settings.security.passwordMatchError": "Le nuove password inserite non corrispondono.",
- "user.settings.security.passwordMinLength": "Lunghezza minima non valida, impossibile visualizza l'anteprima.",
- "user.settings.security.passwordOffice365CantUpdate": "Accesso effettuato tramite Office 365. La password non può essere aggiornata.",
- "user.settings.security.passwordSamlCantUpdate": "Questo campo è gestito tramite il fornitore di accesso. Se vuoi cambiarlo devi utilizzare il fornitore dell'accesso.",
- "user.settings.security.retypePassword": "Riscrivi la Nuova Password",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Cambia al usso di email e password",
- "user.settings.security.switchGitlab": "Cambia all uso del SSO GitLab",
- "user.settings.security.switchGoogle": "Cambia all uso del SSO Google",
- "user.settings.security.switchLdap": "Cambia a AD/LDAP",
- "user.settings.security.switchOffice365": "Cambia a Office 365 SSO",
- "user.settings.security.switchSaml": "Cambia a SAML SSO",
- "user.settings.security.title": "Impostazioni di sicurezza",
- "user.settings.security.viewHistory": "Guarda Storico degli Accessi",
- "user.settings.tokens.cancel": "Annulla",
- "user.settings.tokens.clickToEdit": "Clicca 'Modifica' per gestire i token di accesso",
- "user.settings.tokens.confirmCreateButton": "Sì, Crealo",
- "user.settings.tokens.confirmCreateMessage": "Stai generando un token di accesso con i permessi di Amministratore di Sistema. Sicuro di voler continuare?",
- "user.settings.tokens.confirmCreateTitle": "Crea un Token di Accesso come Amministratore di Sistema",
- "user.settings.tokens.confirmDeleteButton": "Sì, Cancellalo",
- "user.settings.tokens.confirmDeleteMessage": "Tutte le integrazioni che utilizzano questo token non riusciranno più ad accedere alle API di Mattermost. Questa operazione non è reversibile.
Continuare con la cancellazione del token {description}? ",
- "user.settings.tokens.confirmDeleteTitle": "Eliminare Token?",
- "user.settings.tokens.copy": "Per favore copia il Token sottostante. Non riuscirai a vederlo di nuovo!",
- "user.settings.tokens.create": "Crea un Nuovo Token",
- "user.settings.tokens.delete": "Cancella",
- "user.settings.tokens.description": "I Token di accesso sono simili ai Token di sessione e possono essere usati dalle integrazioni per autenticarsi con le API REST.",
- "user.settings.tokens.description_mobile": "I Token di accesso sono simili ai Token di sessione e possono essere usati dalle integrazioni per autenticarsi con le API REST. Crea nuovi token sul tuo desktop.",
- "user.settings.tokens.id": "ID Token: ",
- "user.settings.tokens.name": "Descrizione del Token: ",
- "user.settings.tokens.nameHelp": "Inserire una descrizione del token, per ricordare il suo scopo.",
- "user.settings.tokens.nameRequired": "Per favore, inserire una descrizione.",
- "user.settings.tokens.save": "Salva",
- "user.settings.tokens.title": "Gestisci Token di Accesso personali",
- "user.settings.tokens.token": "Token di Accesso: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "Nessun token di accesso personale.",
- "user_list.notFound": "Nessun utente trovato",
- "user_profile.send.dm": "Invia messaggio",
- "user_profile.webrtc.call": "Avvia videochiamata",
- "user_profile.webrtc.offline": "L'utente è offline",
- "user_profile.webrtc.unavailable": "Nuove chiamate non disponibili fino al termine della chiamata esistente",
- "view_image.loading": "Caricamento ",
- "view_image_popover.download": "Scarica",
- "view_image_popover.file": "File {count, number} di {total, number}",
- "view_image_popover.publicLink": "Prendi collegamento pubblico",
- "web.footer.about": "Approposito",
- "web.footer.help": "Aiuto",
- "web.footer.privacy": "Privacy",
- "web.footer.terms": "Termini",
- "web.header.back": "Indietro",
- "web.header.logout": "Esci",
- "web.root.signup_info": "Tutte le tue comunicazioni in un posto, instantaneamente ricercabili e accessibili ovunque",
- "webrtc.busy": "{username} è impegnato.",
- "webrtc.call": "Chiama",
- "webrtc.callEnded": "Chiamata con {username} conclusa.",
- "webrtc.cancel": "Annulla chiamata",
- "webrtc.cancelled": "{username} ha annullato la chiamata.",
- "webrtc.declined": "{username} ha rifiutato la chiamata.",
- "webrtc.disabled": "{username} non ha WebRTC attivo e non può ricevere chiamate. Per attivare questa funzione deve andare nelle sue Impostazioni Account > Avanzate > Visualizza funzioni prerilascio e attivare WebRTC.",
- "webrtc.failed": "Si è verificato un problema con il collegamento alla videochiamata.",
- "webrtc.hangup": "Riaggancia",
- "webrtc.header": "Chiamata con {username}",
- "webrtc.inProgress": "Chiamata in corso. Riaggancia per proseguire.",
- "webrtc.mediaError": "Impossibile accedere alla videocamera o al microfono.",
- "webrtc.mute_audio": "Muto",
- "webrtc.noAnswer": "{username} non sta rispondendo alla chiamata.",
- "webrtc.notification.answer": "Rispondi",
- "webrtc.notification.decline": "Rifiuta",
- "webrtc.notification.incoming_call": "{username} ti sta chiamando.",
- "webrtc.notification.returnToCall": "Torna alla chiamata con {username}",
- "webrtc.offline": "{username} è offline.",
- "webrtc.pause_video": "Disabilita la videocamera",
- "webrtc.unmute_audio": "Attiva microfono",
- "webrtc.unpause_video": "Abilita videocamera",
- "webrtc.unsupported": "Il client usato da {username} non supporta le videochiamate.",
- "youtube_video.notFound": "Video non trovato"
-}
diff --git a/webapp/i18n/ja.json b/webapp/i18n/ja.json
deleted file mode 100644
index dc3116e79dd..00000000000
--- a/webapp/i18n/ja.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "閉じる",
- "about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved",
- "about.database": "データベース:",
- "about.date": "ビルド日時:",
- "about.enterpriseEditionLearn": "Enterprise Editionについて詳しく知る: ",
- "about.enterpriseEditionSt": "ファイアウォールの内側で、現代的なコミュニケーションを実現します。",
- "about.enterpriseEditione1": "Enterprise Edition",
- "about.hash": "ビルドハッシュ値:",
- "about.hashee": "EEビルドハッシュ値:",
- "about.licensed": "ライセンス供給先:",
- "about.notice": "Mattermostは我々のplatform, desktop, mobileでオープンソース・ソフトウェアとして利用可能です。",
- "about.number": "ビルド番号:",
- "about.teamEditionLearn": "Mattermostコミュニティーに参加する: ",
- "about.teamEditionSt": "あなたのチームの全てのコミュニケーションを一箇所で、すぐに検索可能で、どこからでもアクセスできるものにします。",
- "about.teamEditiont0": "Team Edition",
- "about.teamEditiont1": "Enterprise Edition",
- "about.title": "Mattermostについて",
- "about.version": "バージョン:",
- "access_history.title": "アクセス履歴",
- "activity_log.activeSessions": "使用中のセッション",
- "activity_log.browser": "ブラウザー: {browser}",
- "activity_log.firstTime": "初回活動日時: {date}, {time}",
- "activity_log.lastActivity": "最終活動日時: {date}, {time}",
- "activity_log.logout": "ログアウト",
- "activity_log.moreInfo": "詳細情報",
- "activity_log.os": "OS: {os}",
- "activity_log.sessionId": "セッションID: {id}",
- "activity_log.sessionsDescription": "セッションは新しいブラウザーまたはデバイスからログインからログインした時に作成されます。Mattermostはシステム管理者が指定した期間内であればログインし直すことなく使用できます。すぐにログアウトしたい場合には、「ログアウト」ボタンを使用することで、セッションを終了させることができます。",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Androidネイティブアプリ",
- "activity_log_modal.androidNativeClassicApp": "Androidネイティブクラシックアプリ",
- "activity_log_modal.desktop": "ネイティブデスクトップアプリ",
- "activity_log_modal.iphoneNativeApp": "iPhoneネイティブアプリ",
- "activity_log_modal.iphoneNativeClassicApp": "iPhoneネイティブクラシックアプリ",
- "add_command.autocomplete": "自動補完",
- "add_command.autocomplete.help": "(オプション) 自動補完リストにスラッシュコマンドを表示する。",
- "add_command.autocompleteDescription": "自動補完の説明",
- "add_command.autocompleteDescription.help": "(オプション) 自動補完リストのスラッシュコマンドについての短い説明",
- "add_command.autocompleteDescription.placeholder": "例: \"カルテの検索結果を返す\"",
- "add_command.autocompleteHint": "自動補完のヒント",
- "add_command.autocompleteHint.help": "(オプション) あなたのスラッシュコマンドに紐づく引数です。これは自動補完リストに表示されます。",
- "add_command.autocompleteHint.placeholder": "例: [患者氏名]",
- "add_command.cancel": "キャンセル",
- "add_command.description": "説明",
- "add_command.description.help": "内向きのウェブフックについての説明です。",
- "add_command.displayName": "表示名",
- "add_command.displayName.help": "最大64文字のスラッシュコマンドの表示名です。",
- "add_command.doneHelp": "あなたのスラッシュコマンドは既に設定されています。以下のトークンは外向きのペイロードに含まれて送信されます。このトークンは、あなたのMattermostチームからのリクエストだということを確認するために利用してください。 (詳細については説明文書を参照してください)。",
- "add_command.iconUrl": "応答アイコン",
- "add_command.iconUrl.help": "(オプション) このスラッシュコマンドへの返信となる投稿のプロフィール画像を上書きする画像を選択します。最低128ピクセル×128ピクセルの大きさを持つ.pngまたは.jpgファイルのURLを指定してください。",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "リクエストメソッド",
- "add_command.method.get": "GET",
- "add_command.method.help": "リクエストURLに発行するコマンドリクエストの種類です。",
- "add_command.method.post": "POST",
- "add_command.save": "保存する",
- "add_command.token": "トークン: {token}",
- "add_command.trigger": "コマンドトリガーワード",
- "add_command.trigger.help": "トリガーワードは重複してはいけません。また、スラッシュで始めることや、スペースを含めることもできません。",
- "add_command.trigger.helpExamples": "例: client, employee, patient, weather",
- "add_command.trigger.helpReserved": "予約語: {link}",
- "add_command.trigger.helpReservedLinkText": "内蔵スラッシュコマンドのリストを見る",
- "add_command.trigger.placeholder": "コマンドトリガー 例: \"hello\"",
- "add_command.triggerInvalidLength": "トリガーワードは{min}文字以上{max}文字以下にしてください。",
- "add_command.triggerInvalidSlash": "トリガーワードは/で始めることはできません",
- "add_command.triggerInvalidSpace": "トリガーワードはスペースを含んではいけません",
- "add_command.triggerRequired": "トリガーワードが必要です。",
- "add_command.url": "リクエストURL",
- "add_command.url.help": "スラッシュコマンドを実行した時に、HTTP POSTまたはGETイベントリクエストを受信するコールバックURLです。",
- "add_command.url.placeholder": "http://またはhttps://から始まらなくてはいけません",
- "add_command.urlRequired": "リクエストURLが必要です",
- "add_command.username": "返信ユーザー名",
- "add_command.username.help": "(オプション) このスラッシュコマンドへの返信となる投稿のユーザー名を上書きするユーザー名を選択します。ユーザー名は英小文字、数字、記号(\"-\"、\"_\"、\".\"のみ)を使用し、22文字以内にしてください。",
- "add_command.username.placeholder": "ユーザー名",
- "add_emoji.cancel": "キャンセル",
- "add_emoji.header": "追加",
- "add_emoji.image": "画像",
- "add_emoji.image.button": "選択",
- "add_emoji.image.help": "絵文字に対する画像を選択してください。画像は最大1MBのgif, png, jpegファイルを指定できます。サイズはアスペクト比を保持した状態で128 x 128ピクセルに自動的にリサイズされます。",
- "add_emoji.imageRequired": "絵文字の画像は必須です。",
- "add_emoji.name": "名前",
- "add_emoji.name.help": "あなたの作成した絵文字の名前を設定してください。英小文字、数字、記号('-'と'_'のみ)を使用し、64文字以内にしてください。",
- "add_emoji.nameInvalid": "絵文字の名前は、英小文字、数字、記号('-'と'_'のみ)を使用してください。",
- "add_emoji.nameRequired": "絵文字の名前は必須です。",
- "add_emoji.nameTaken": "この名前はシステムの絵文字で既に使用されています。違う名前を選択してください。",
- "add_emoji.preview": "プレビュー",
- "add_emoji.preview.sentence": "この文書は{image}と一緒に使われます。",
- "add_emoji.save": "保存",
- "add_incoming_webhook.cancel": "キャンセル",
- "add_incoming_webhook.channel": "チャンネル",
- "add_incoming_webhook.channel.help": "ウェブフックのペイロードを受け取る公開チャンネル・非公開チャンネルです。非公開チャンネルにウェブフックを設定する時は、そのチャンネルに所属していなければなりません。",
- "add_incoming_webhook.channelRequired": "有効なチャンネルが必要です",
- "add_incoming_webhook.description": "説明",
- "add_incoming_webhook.description.help": "内向きのウェブフックについての説明です。",
- "add_incoming_webhook.displayName": "表示名",
- "add_incoming_webhook.displayName.help": "最大64文字の内向きのウェブフックの表示名です。",
- "add_incoming_webhook.doneHelp": "あなたの内向きのウェブフックは既に設定されています。以下のURLにデータを送信してください (詳細については説明文書を参照してください)。",
- "add_incoming_webhook.name": "名前",
- "add_incoming_webhook.save": "保存する",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "アプリケーションの認可が承諾、もしくは拒否された場合にサービスがユーザーを転送する際や、認証コードやアクセストークンを扱う際のリダイレクトURLです。 http:// もしくは https:// で始まる有効なURLにしてください。",
- "add_oauth_app.callbackUrlsRequired": "1つ以上のコールバックURLが必要です",
- "add_oauth_app.clientId": "クライアントID: {id}",
- "add_oauth_app.clientSecret": "クライアント秘密情報: {secret}",
- "add_oauth_app.description.help": "OAuth 2.0アプリケーションの説明です。",
- "add_oauth_app.descriptionRequired": "OAuth 2.0アプリケーションの説明は必須です。",
- "add_oauth_app.doneHelp": "あなたのOAuth 2.0アプリケーションがセットアップされました。あなたのアプリケーションから認証を要求する際には、以下のクライアントIDと秘密情報を使用してください(詳しくは説明文書を参照してください)。",
- "add_oauth_app.doneUrlHelp": "認証されたリダイレクトURLは以下の通りです。",
- "add_oauth_app.header": "追加する",
- "add_oauth_app.homepage.help": "OAuth 2.0アプリケーションのホームページのURLです。サーバーの設定によりHTTPかHTTPSかは異なりますので注意してください。",
- "add_oauth_app.homepageRequired": "OAuth 2.0アプリケーションのホームページは必須です。",
- "add_oauth_app.icon.help": "(オプション) OAuth 2.0アプリケーションで使う画像のURLです。URLのHTTPかHTTPSのどちらを使うか注意してください。",
- "add_oauth_app.name.help": "最大64文字のOAuth 2.0アプリケーションの表示名です。",
- "add_oauth_app.nameRequired": "OAuth 2.0アプリケーションの名前は必須です。",
- "add_oauth_app.trusted.help": "有効な場合、OAuth 2.0アプリケーションはMattermostサーバによって信頼済みとみなされ、ユーザーに認可を要求しなくなります。無効な場合、ユーザーに認可を許可するか、もしくは拒否するかを確認するウィンドウを表示します。",
- "add_oauth_app.url": "URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "コールバックURL(1つにつき1行)",
- "add_outgoing_webhook.callbackUrls.help": "メッセージ送信先のURL",
- "add_outgoing_webhook.callbackUrlsRequired": "1つ以上のコールバックURLが必要です",
- "add_outgoing_webhook.cancel": "キャンセル",
- "add_outgoing_webhook.channel": "チャンネル",
- "add_outgoing_webhook.channel.help": "ウェブフックのペイロードを受け取る公開チャンネルです。少なくとも一つのトリガーワードが指定されている場合のオプションです。",
- "add_outgoing_webhook.contentType.help1": "レスポンスのコンテントタイプを選択してください。",
- "add_outgoing_webhook.contentType.help2": "application/x-www-form-urlencoded を選択した場合、サーバーはパラメーターがURLエンコードされていると見なします。",
- "add_outgoing_webhook.contentType.help3": "application/json を選択した場合、サーバーはあなたがJSONデータをPOSTするものと見なします。",
- "add_outgoing_webhook.content_Type": "コンテントタイプ",
- "add_outgoing_webhook.description": "説明",
- "add_outgoing_webhook.description.help": "外向きのウェブフックについての説明",
- "add_outgoing_webhook.displayName": "表示名",
- "add_outgoing_webhook.displayName.help": "最大64文字の外向きのウェブフックの表示名です。",
- "add_outgoing_webhook.doneHelp": "あなたの外向きのウェブフックは既に設定されています。以下のトークンは外向きのペイロードに含まれて送信されます。このトークンは、あなたのMattermostチームからのリクエストだということを確認するために利用してください (詳細については説明文書を参照してください)。",
- "add_outgoing_webhook.name": "名前",
- "add_outgoing_webhook.save": "保存する",
- "add_outgoing_webhook.token": "トークン: {token}",
- "add_outgoing_webhook.triggerWords": "トリガーワード(1つにつき1行)",
- "add_outgoing_webhook.triggerWords.help": "ここで指定された単語の一つで始まるメッセージが外向きのウェブフックをトリガーします。チャンネルが選択されている場合のオプションです。",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "有効なチャンネルまたはトリガーワードのリストが必要です",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "トリガーとなる条件",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "外向きのウェブフックのトリガーとなる条件を選択してください。メッセージの最初の単語がトリガーワードと正確に一致する場合、もしくはトリガーワードで始まる場合。",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "最初の単語がトリガーワードと正確に一致する",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "最初の単語がトリガーワードで始まる",
- "add_users_to_team.title": "新しいメンバーを {teamName} チームに追加する",
- "admin.advance.cluster": "高可用",
- "admin.advance.metrics": "パフォーマンスモニタリング",
- "admin.audits.reload": "再読み込み",
- "admin.audits.title": "ユーザーのアクティビティー",
- "admin.authentication.email": "電子メール認証",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "注意:",
- "admin.client_versions.androidLatestVersion": "最新のAndroidバージョン",
- "admin.client_versions.androidLatestVersionHelp": "最新リリースのAndroidバージョン",
- "admin.client_versions.androidMinVersion": "最小のAndroidバージョン",
- "admin.client_versions.androidMinVersionHelp": "最小の対応Androidバージョン",
- "admin.client_versions.desktopLatestVersion": "最新のデスクトップバージョン",
- "admin.client_versions.desktopLatestVersionHelp": "最新リリースのデスクトップバージョン",
- "admin.client_versions.desktopMinVersion": "最小のデスクトップバージョン",
- "admin.client_versions.desktopMinVersionHelp": "最小の対応デスクトップバージョン",
- "admin.client_versions.iosLatestVersion": "最新のiOSバージョン",
- "admin.client_versions.iosLatestVersionHelp": "最新リリースのiOSバージョン",
- "admin.client_versions.iosMinVersion": "最小iOSバージョン",
- "admin.client_versions.iosMinVersionHelp": "最小の対応iOSバージョン",
- "admin.cluster.enableDescription": "有効な場合、Mattermostは高可用モードで動作するようになります。高可用モードの設定について詳しくは、説明文書を参照してください。",
- "admin.cluster.enableTitle": "高可用モードを有効にする:",
- "admin.cluster.interNodeListenAddressDesc": "他のサーバーと通信するための接続待ちアドレスです。",
- "admin.cluster.interNodeListenAddressEx": "例: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "ノード間接続待ちアドレス:",
- "admin.cluster.interNodeUrlsDesc": "カンマで区切られた全Mattermostサーバの内部URL/非公開URLです。",
- "admin.cluster.interNodeUrlsEx": "例: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "ノード間URL:",
- "admin.cluster.loadedFrom": "この設定ファイルはノードID {clusterId} からロードされます。ロードバランサーを通じてシステムコンソールにアクセスしている場合や問題が発生している場合は、説明文書 のTroubleshooting Guideを参照してください。",
- "admin.cluster.noteDescription": "このセクションでの設定値の変更を有効にするにはサーバーを再起動させる必要があります。高可用モードを有効にした場合、設定ファイルのReadOnlyConfigが無効でない限りシステムコンソールは読み込み専用となり、設定ファイルからのみ変更可能となります。",
- "admin.cluster.should_not_change": "警告: これらの設定はクラスター内の他のサーバーと同期されません。高可用なノード間接続は、全てのサーバーのconfig.jsonを同一に設定し、Mattermostを再起動するまで開始されません。クラスターからサーバーを追加/削除する方法については説明文書を参照してください。 ロードバランサーを通じてシステムコンソールにアクセスしている場合や問題が発生している場合は、説明文書 のTroubleshooting Guideを参照してください。",
- "admin.cluster.status_table.config_hash": "設定ファイルのMD5ハッシュ値",
- "admin.cluster.status_table.hostname": "ホスト名",
- "admin.cluster.status_table.id": "ノードID",
- "admin.cluster.status_table.reload": " クラスターの状態をリロードしてください",
- "admin.cluster.status_table.status": "状態",
- "admin.cluster.status_table.url": "ゴシップアドレス",
- "admin.cluster.status_table.version": "バージョン",
- "admin.cluster.unknown": "不明",
- "admin.compliance.directoryDescription": "コンプライアンスリポートを書き込むディレクトリー。空欄の場合には./data/に書き込みます。",
- "admin.compliance.directoryExample": "例: \"./data/\"",
- "admin.compliance.directoryTitle": "コンプライアンスリポートディレクトリー:",
- "admin.compliance.enableDailyDesc": "有効な場合、Mattermostが毎日コンプライアンスリポートを生成します。",
- "admin.compliance.enableDailyTitle": "日次リポートを有効にする",
- "admin.compliance.enableDesc": "有効な場合、Mattermostはコンプライアンスと監査タブからのコンプライアンスリポートを許可します。詳しくは、説明文書を参照してください。",
- "admin.compliance.enableTitle": "コンプライアンスリポートを有効にする:",
- "admin.compliance.false": "無効",
- "admin.compliance.noLicense": "
この操作はやり直すことができません。本当に {description}トークンを削除しますか?",
- "user.settings.tokens.confirmDeleteTitle": "トークンを削除しますか?",
- "user.settings.tokens.copy": "以下のアクセストークンをコピーしてください。二度と確認することはできません!",
- "user.settings.tokens.create": "新しいトークンを生成する",
- "user.settings.tokens.delete": "削除",
- "user.settings.tokens.description": "パーソナルアクセストークンはセッショントークンと同様に機能し、統合機能がREST APIに対して認証するために利用できます。",
- "user.settings.tokens.description_mobile": "パーソナルアクセストークンはセッショントークンと同様に機能し、統合機能がREST APIに対して認証するために利用できます。デスクトップ環境で新しトークンを生成してください。",
- "user.settings.tokens.id": "トークンID: ",
- "user.settings.tokens.name": "トークンの説明: ",
- "user.settings.tokens.nameHelp": "何をするためのトークンかを思い出すために説明を入力してください。",
- "user.settings.tokens.nameRequired": "説明を入力してください。",
- "user.settings.tokens.save": "保存",
- "user.settings.tokens.title": "パーソナルアクセストークン",
- "user.settings.tokens.token": "アクセストークン: ",
- "user.settings.tokens.tokenId": "トークンID: ",
- "user.settings.tokens.userAccessTokensNone": "パーソナルアクセストークンがありません。",
- "user_list.notFound": "ユーザーが見付かりません",
- "user_profile.send.dm": "メッセージを送信",
- "user_profile.webrtc.call": "ビデオ通話の開始",
- "user_profile.webrtc.offline": "ユーザーはオフラインです",
- "user_profile.webrtc.unavailable": "あなたの現在の通話を終了するまで新しい通話を利用することはできません",
- "view_image.loading": "読み込み中です ",
- "view_image_popover.download": "ダウンロードする",
- "view_image_popover.file": "{total, number}ファイル中{count, number}番目のファイル",
- "view_image_popover.publicLink": "公開リンクを取得する",
- "web.footer.about": "Mattermostについて",
- "web.footer.help": "ヘルプ",
- "web.footer.privacy": "プライバシー",
- "web.footer.terms": "使用条件",
- "web.header.back": "戻る",
- "web.header.logout": "ログアウト",
- "web.root.signup_info": "チームの全てのコミュニケーションを一箇所で、検索可能で、どこからでもアクセスできるものにします",
- "webrtc.busy": "{username}は通話中です。",
- "webrtc.call": "発信",
- "webrtc.callEnded": "{username}との通話が終了しました。",
- "webrtc.cancel": "通話をキャンセルする",
- "webrtc.cancelled": "{username}が通話をキャンセルしました。",
- "webrtc.declined": "あなたの通話は{username}によって辞退されました。",
- "webrtc.disabled": "{username}はWebRTCを無効にしているため、通話を受けることができません。この機能を有効にするためには、アカウント設定 > 詳細 > プリリリース機能をプレビューする へ行き、WebRTCをオンにしなくてはなりません。",
- "webrtc.failed": "ビデオ通話の接続に問題があります。",
- "webrtc.hangup": "切断する",
- "webrtc.header": "{username}との通話",
- "webrtc.inProgress": "通話中です。現在の通話を切断してください。",
- "webrtc.mediaError": "カメラとマイクへのアクセスができません。",
- "webrtc.mute_audio": "マイクをミュートする",
- "webrtc.noAnswer": "{username}が通話に応答しません。",
- "webrtc.notification.answer": "応答する",
- "webrtc.notification.decline": "辞退する",
- "webrtc.notification.incoming_call": "{username}から着信中です。",
- "webrtc.notification.returnToCall": "{username}との通話に戻る",
- "webrtc.offline": "{username}はオフラインです。",
- "webrtc.pause_video": "カメラをオフにする",
- "webrtc.unmute_audio": "マイクのミュートを解除する",
- "webrtc.unpause_video": "カメラをオンにする",
- "webrtc.unsupported": "{username}のクライアントはビデオ通話をサポートしていません。",
- "youtube_video.notFound": "ビデオが見つかりません"
-}
diff --git a/webapp/i18n/ko.json b/webapp/i18n/ko.json
deleted file mode 100644
index 22948f7f0a9..00000000000
--- a/webapp/i18n/ko.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "닫기",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. All rights reserved",
- "about.database": "데이터베이스:",
- "about.date": "빌드 일자:",
- "about.enterpriseEditionLearn": "엔터프라이즈 에디션에 대한 자세한 정보 ",
- "about.enterpriseEditionSt": "방화벽 안에 구축 가능한 현대적인 커뮤니케이션 플랫폼",
- "about.enterpriseEditione1": "엔터프라이즈 에디션",
- "about.hash": "빌드 해쉬:",
- "about.hashee": "EE 빌드 해쉬:",
- "about.licensed": "다음 사용자에게 허가되었습니다:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "빌드 넘버:",
- "about.teamEditionLearn": "Mattermost 커뮤니티에 참여 ",
- "about.teamEditionSt": "모든 팀 커뮤니케이션 활동을 한 곳에 모아 빠르게 찾고 공유할 수 있습니다.",
- "about.teamEditiont0": "팀 에디션",
- "about.teamEditiont1": "엔터프라이즈 에디션",
- "about.title": "Mattermost에 대하여",
- "about.version": "버전:",
- "access_history.title": "접근 기록",
- "activity_log.activeSessions": "활성 세션",
- "activity_log.browser": "브라우저: {browser}",
- "activity_log.firstTime": "첫 활성화 시간: {date}, {time}",
- "activity_log.lastActivity": "최근 활동: {date}, {time}",
- "activity_log.logout": "로그아웃",
- "activity_log.moreInfo": "상세 정보",
- "activity_log.os": "OS: {os}",
- "activity_log.sessionId": "세션 ID: {id}",
- "activity_log.sessionsDescription": "세션은 기기의 새 브라우저로 로그인할때 생성됩니다. 세션을 사용하면 시스템에서 정한 시간동안은 다시 로그인할 필요가 없습니다. '로그아웃' 버튼을 사용해서 세션을 종료할 수 있습니다.",
- "activity_log_modal.android": "안드로이드",
- "activity_log_modal.androidNativeApp": "안드로이드 앱",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Native Desktop App",
- "activity_log_modal.iphoneNativeApp": "아이폰 앱",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "자동완성",
- "add_command.autocomplete.help": "(선택사항) 명령어가 자동완성 목록에서 보이게 합니다.",
- "add_command.autocompleteDescription": "자동완성 설명",
- "add_command.autocompleteDescription.help": "(선택사항) 자동완성 목록에서 보여질 부가적인 설명을 입력하세요.",
- "add_command.autocompleteDescription.placeholder": "예시: \"환자 기록에 대한 검색결과를 보여줍니다\"",
- "add_command.autocompleteHint": "자동완성 힌트",
- "add_command.autocompleteHint.help": "(선택사항) 자동완성 목록에서 보여질, 명령어 매개변수의 도움말을 입력하세요.",
- "add_command.autocompleteHint.placeholder": "예시: [환자 이름]",
- "add_command.cancel": "취소",
- "add_command.description": "설명",
- "add_command.description.help": "명령어에 대한 설명을 입력하세요.",
- "add_command.displayName": "표시명",
- "add_command.displayName.help": "명령어의 표시명을 64글자 이내로 입력하세요.",
- "add_command.doneHelp": "명령어 설정이 완료되었습니다. 다음 토큰이 이벤트 요청과 같이 보내질 것입니다. 요청이 유효한 팀에서 보내진 요청인지 검증해주세요. (자세한 내용은 문서를 참고하세요).",
- "add_command.iconUrl": "응답 아이콘",
- "add_command.iconUrl.help": "(선택사항) 명령어 응답 글에 사용될 프로필 사진을 선택합니다. 128 x 128 픽셀 이상의 .png 또는 .jpg 이미지의 URL을 입력하세요.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "요청 메소드",
- "add_command.method.get": "GET",
- "add_command.method.help": "요청 URL이 요구하는 요청의 형식을 선택하세요.",
- "add_command.method.post": "POST",
- "add_command.save": "저장",
- "add_command.token": "토큰: {token}",
- "add_command.trigger": "명령어 트리거 단어",
- "add_command.trigger.help": "트리거 단어는 고유한 값이여야 하며, 슬래시(/)로 시작되거나 공백을 포함할 수 없습니다.",
- "add_command.trigger.helpExamples": "예시: 고객, 직원, 환자, 날씨",
- "add_command.trigger.helpReserved": "사용할 수 없음: {link}",
- "add_command.trigger.helpReservedLinkText": "내장된 명령어 목록을 확인하세요.",
- "add_command.trigger.placeholder": "명령어 트리거 예시: \"인사\"",
- "add_command.triggerInvalidLength": "단어가 {min}글자 이상, {max}글자 이하여야 합니다.",
- "add_command.triggerInvalidSlash": "단어 앞에 슬래시(/)를 사용할 수 없습니다.",
- "add_command.triggerInvalidSpace": "단어에 공백을 포함할 수 없습니다.",
- "add_command.triggerRequired": "단어가 필요합니다.",
- "add_command.url": "요청 URL",
- "add_command.url.help": "명령이 실행될 때 이벤트 요청(HTTP POST 또는 GET)을 받을 콜백 URL을 입력하세요.",
- "add_command.url.placeholder": "URL 주소는 http:// 또는 https:// 로 시작되어야 합니다",
- "add_command.urlRequired": "요청 URL을 입력하세요.",
- "add_command.username": "응답 유저 이름",
- "add_command.username.help": "명령 응답에 보일 사용자명을 입력하세요. 사용자명은 22글자여 이하여야 하며, 영문 소문자, 숫자, 특수문자 \"-\", \"_\", \".\"만 포함할 수 있습니다.",
- "add_command.username.placeholder": "사용자명",
- "add_emoji.cancel": "취소",
- "add_emoji.header": "추가",
- "add_emoji.image": "이미지",
- "add_emoji.image.button": "선택",
- "add_emoji.image.help": "Choose the image for your emoji. The image can be a gif, png, or jpeg file with a max size of 1 MB. Dimensions will automatically resize to fit 128 by 128 pixels but keeping aspect ratio.",
- "add_emoji.imageRequired": "이모티콘 이미지가 필요합니다.",
- "add_emoji.name": "이름",
- "add_emoji.name.help": "이모티콘 이름으로 64글자 이하 영문 소문자, 숫자, 특수문자 '-' 와 '_'를 사용할 수 있습니다.",
- "add_emoji.nameInvalid": "이모티콘 이름은 영문 소문자, 숫자, 특수문자 '-' 와 '_' 만 포함할 수 있습니다.",
- "add_emoji.nameRequired": "이모티콘 이름이 필요합니다.",
- "add_emoji.nameTaken": "이미 시스템 이모티콘에서 사용하는 이름입니다. 다른 이름을 사용하세요.",
- "add_emoji.preview": "미리보기",
- "add_emoji.preview.sentence": "이모티콘({image})이 포함된 문장입니다.",
- "add_emoji.save": "저장",
- "add_incoming_webhook.cancel": "취소",
- "add_incoming_webhook.channel": "채널",
- "add_incoming_webhook.channel.help": "공개 채널이나 프라이빗 그룹은 웹훅 페이로드를 받습니다. 웹훅 설정 시 프라이빗 그룹에 소속되어 있어야 합니다.",
- "add_incoming_webhook.channelRequired": "유효한 채널을 선택하세요.",
- "add_incoming_webhook.description": "설명",
- "add_incoming_webhook.description.help": "Incoming webhook에 대한 설명을 입력하세요.",
- "add_incoming_webhook.displayName": "표시명",
- "add_incoming_webhook.displayName.help": "Incoming webhook의 표시명을 64글자 이내로 입력하세요.",
- "add_incoming_webhook.doneHelp": "Incoming Webhook 설정이 완료되었습니다. 다음 URL로 데이터를 보내세요. (더 자세한 내용은 문서를 참고하세요).",
- "add_incoming_webhook.name": "이름",
- "add_incoming_webhook.save": "저장",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "The redirect URIs to which the service will redirect users after accepting or denying authorization of your application, and which will handle authorization codes or access tokens. Must be a valid URL and start with http:// or https://.",
- "add_oauth_app.callbackUrlsRequired": "하나 이상의 콜백 URL이 필요합니다.",
- "add_oauth_app.clientId": "클라이언트 ID: {id}",
- "add_oauth_app.clientSecret": "클라이언트 시크릿: {secret}",
- "add_oauth_app.description.help": "OAuth 2.0 애플리케이션 설명",
- "add_oauth_app.descriptionRequired": "OAuth 2.0 애플리케이션 설명은 필수 항목입니다.",
- "add_oauth_app.doneHelp": "귀하의 OAuth 2.0 애플리케이션이 설정되었습니다. 애플리케이션에 대한 승인을 요청할 때 다음과 같은 클라이언트 ID 및 클라이언트 시크릿을 사용하십시오. (더 자세한 내용은 문서를 참고하세요.)",
- "add_oauth_app.doneUrlHelp": "다음 리디렉트 URL이 승인되었습니다.",
- "add_oauth_app.header": "추가",
- "add_oauth_app.homepage.help": "The URL for the homepage of the OAuth 2.0 application. Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
- "add_oauth_app.homepageRequired": "OAuth 2.0 애플리케이션 홈페이지는 필수 항목입니다.",
- "add_oauth_app.icon.help": "(Optional) The URL of the image used for your OAuth 2.0 application. Make sure you use HTTP or HTTPS in your URL.",
- "add_oauth_app.name.help": "OAuth 2.0 어플리케이션의 표시될 이름은 최대 64문자로 구성됩니다.",
- "add_oauth_app.nameRequired": "OAuth 2.0 어플리케이션 이름이 필요합니다.",
- "add_oauth_app.trusted.help": "\"네\"를 선택하면, OAuth 2.0 애플리케이션 접근 허용을 위한 추가 과정이 필요하지 않습니다. \"아니요\" 선택 시, 추가 인증을 위한 창이 나타나 권한 허용여부를 물어보게 됩니다.",
- "add_oauth_app.url": "URL: {url}",
- "add_outgoing_webhook.callbackUrls": "콜백 URL (한 줄에 하나 씩)",
- "add_outgoing_webhook.callbackUrls.help": "메시지가 보내질 URL을 입력하세요.",
- "add_outgoing_webhook.callbackUrlsRequired": "하나 이상의 콜백 URL이 필요합니다.",
- "add_outgoing_webhook.cancel": "취소",
- "add_outgoing_webhook.channel": "채널",
- "add_outgoing_webhook.channel.help": "Public channel to receive webhook payloads. Optional if at least one Trigger Word is specified.",
- "add_outgoing_webhook.contentType.help1": "응답이 보내질 컨텐트 타입을 선택하세요.",
- "add_outgoing_webhook.contentType.help2": "If application/x-www-form-urlencoded is chosen, the server assumes you will be encoding the parameters in a URL format.",
- "add_outgoing_webhook.contentType.help3": "If applcation/json is chosen, the server assumes you will posting JSON data.",
- "add_outgoing_webhook.content_Type": "콘텐츠 형식",
- "add_outgoing_webhook.description": "설명",
- "add_outgoing_webhook.description.help": "Description for your outgoing webhook.",
- "add_outgoing_webhook.displayName": "표시명",
- "add_outgoing_webhook.displayName.help": "Outgoing webhook의 표시될 이름은 최대 64문자로 구성됩니다.",
- "add_outgoing_webhook.doneHelp": "Your outgoing webhook has been set up. The following token will be sent in the outgoing payload. Please use it to verify the request came from your Mattermost team (see documentation for further details).",
- "add_outgoing_webhook.name": "이름",
- "add_outgoing_webhook.save": "저장",
- "add_outgoing_webhook.token": "토큰: {token}",
- "add_outgoing_webhook.triggerWords": "트리거 단어 (줄 당 하나씩 입력합니다)",
- "add_outgoing_webhook.triggerWords.help": "Messages that start with one of the specified words will trigger the outgoing webhook. Optional if Channel is selected.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "유효한 채널과 트리거 단어 목록을 입력하세요",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "트리거 조건",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Choose when to trigger the outgoing webhook; if the first word of a message matches a Trigger Word exactly, or if it starts with a Trigger Word.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "First word matches a trigger word exactly",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "First word starts with a trigger word",
- "add_users_to_team.title": "{teamName}팀에 새 멤버 추가",
- "admin.advance.cluster": "High Availability",
- "admin.advance.metrics": "Performance Monitoring",
- "admin.audits.reload": "사용자 활동 기록 새로고침",
- "admin.audits.title": "사용자 활동 기록",
- "admin.authentication.email": "Email Authentication",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Note:",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "활성화 하면 Mattermost가 고 가용성 모드로 동작합니다. 고 가용성 모드 설정에 대한 자세한 내용은 이 문서를 참고하세요.",
- "admin.cluster.enableTitle": "고 가용성 모드:",
- "admin.cluster.interNodeListenAddressDesc": "The address the server will listen on for communicating with other servers.",
- "admin.cluster.interNodeListenAddressEx": "예시 \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Inter-Node Listen Address:",
- "admin.cluster.interNodeUrlsDesc": "The internal/private URLs of all the Mattermost servers separated by commas.",
- "admin.cluster.interNodeUrlsEx": "예시 \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "내부 노드 URL:",
- "admin.cluster.loadedFrom": "This configuration file was loaded from Node ID {clusterId}. Please see the Troubleshooting Guide in our documentation if you are accessing the System Console through a load balancer and experiencing issues.",
- "admin.cluster.noteDescription": "Changing properties in this section will require a server restart before taking effect. When High Availability mode is enabled, the System Console is set to read-only and can only be changed from the configuration file.",
- "admin.cluster.should_not_change": "WARNING: These settings may not sync with the other servers in the cluster. High Availability inter-node communication will not start until you modify the config.json to be identical on all servers and restart Mattermost. Please see the documentation on how to add or remove a server from the cluster. If you are accessing the System Console through a load balancer and experiencing issues, please see the Troubleshooting Guide in our documentation.",
- "admin.cluster.status_table.config_hash": "Config File MD5",
- "admin.cluster.status_table.hostname": "호스트명",
- "admin.cluster.status_table.id": "Node ID",
- "admin.cluster.status_table.reload": " Reload Cluster Status",
- "admin.cluster.status_table.status": "상태",
- "admin.cluster.status_table.url": "Gossip Address",
- "admin.cluster.status_table.version": "버전:",
- "admin.cluster.unknown": "unknown",
- "admin.compliance.directoryDescription": "Directory to which compliance reports are written. If blank, will be set to ./data/.",
- "admin.compliance.directoryExample": "예시 \"./data/\"",
- "admin.compliance.directoryTitle": "감사 보고서 경로:",
- "admin.compliance.enableDailyDesc": "When true, Mattermost will generate a daily compliance report.",
- "admin.compliance.enableDailyTitle": "일일 보고:",
- "admin.compliance.enableDesc": "When true, Mattermost allows compliance reporting from the Compliance and Auditing tab. See documentation to learn more.",
- "admin.compliance.enableTitle": "감사 보고:",
- "admin.compliance.false": "비활성화",
- "admin.compliance.noLicense": "
Note:
Compliance 는 엔터프라이즈 에디션의 기능입니다. 현재 라이센스는 Compliance 기능을 지원하지 않습니다. 이 곳에서 엔터프라이즈 라이센스에 대한 정보를 확인하세요.
\"Send generic description with sender and channel names\" includes the name of the person who sent the message and the channel it was sent in, but not the message text.
\"Send full message snippet\" includes a message excerpt in push notifications, which may contain confidential information sent in messages. If your Push Notification Service is outside your firewall, it is *highly recommended* this option only be used with an \"https\" protocol to encrypt the connection.",
- "admin.email.pushContentTitle": "푸시 알림 콘텐츠:",
- "admin.email.pushDesc": "Typically set to true in production. When true, Mattermost attempts to send iOS and Android push notifications through the push notification server.",
- "admin.email.pushOff": "Do not send push notifications",
- "admin.email.pushOffHelp": "Please see documentation on push notifications to learn more about setup options.",
- "admin.email.pushServerDesc": "Location of Mattermost push notification service you can set up behind your firewall using https://github.com/mattermost/push-proxy. For testing you can use http://push-test.mattermost.com, which connects to the sample Mattermost iOS app in the public Apple AppStore. Please do not use test service for production deployments.",
- "admin.email.pushServerEx": "예시 \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "푸시 알림 서버:",
- "admin.email.pushTitle": "모바일 푸시 알림: ",
- "admin.email.requireVerificationDescription": "Typically set to true in production. When true, Mattermost requires email verification after account creation prior to allowing login. Developers may set this field to false so skip sending verification emails for faster development.",
- "admin.email.requireVerificationTitle": "이메일 검증: ",
- "admin.email.selfPush": "Manually enter Push Notification Service location",
- "admin.email.skipServerCertificateVerification.description": "When true, Mattermost will not verify the email server certificate.",
- "admin.email.skipServerCertificateVerification.title": "인증서 검증 생략",
- "admin.email.smtpPasswordDescription": "The password associated with the SMTP username.",
- "admin.email.smtpPasswordExample": "예시 \"yourpassword\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "SMTP 서버 패스워드:",
- "admin.email.smtpPortDescription": "SMTP 이메일 서버의 포트를 입력하세요.",
- "admin.email.smtpPortExample": "E.g.: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "SMTP 서버 포트:",
- "admin.email.smtpServerDescription": "Location of SMTP email server.",
- "admin.email.smtpServerExample": "예시 \"smtp.yourcompany.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "SMTP 서버:",
- "admin.email.smtpUsernameDescription": "The username for authenticating to the SMTP server.",
- "admin.email.smtpUsernameExample": "예시 \"admin@yourcompany.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "SMTP 서버 사용자명:",
- "admin.email.testing": "테스트 중...",
- "admin.false": "비활성화",
- "admin.file.enableFileAttachments": "Allow File Sharing:",
- "admin.file.enableFileAttachmentsDesc": "When false, disables file sharing on the server. All file and image uploads on messages are forbidden across clients and devices, including mobile.",
- "admin.file.enableMobileDownloadDesc": "When false, disables file downloads on mobile apps. Users can still download files from a mobile web browser.",
- "admin.file.enableMobileDownloadTitle": "Allow File Downloads on Mobile:",
- "admin.file.enableMobileUploadDesc": "When false, disables file uploads on mobile apps. If Allow File Sharing is set to true, users can still upload files from a mobile web browser.",
- "admin.file.enableMobileUploadTitle": "Allow File Uploads on Mobile:",
- "admin.file_upload.chooseFile": "파일 선택",
- "admin.file_upload.noFile": "업로드 된 파일이 없습니다.",
- "admin.file_upload.uploadFile": "업로드",
- "admin.files.images": "이미지",
- "admin.files.storage": "저장소",
- "admin.general.configuration": "환경설정",
- "admin.general.localization": "지역화",
- "admin.general.localization.availableLocalesDescription": "Set which languages are available for users in Account Settings (leave this field blank to have all supported languages available). If you’re manually adding new languages, the Default Client Language must be added before saving this setting.
Would like to help with translations? Join the Mattermost Translation Server to contribute.",
- "admin.general.localization.availableLocalesNoResults": "No results found",
- "admin.general.localization.availableLocalesNotPresent": "The default client language must be included in the available list",
- "admin.general.localization.availableLocalesTitle": "Available Languages:",
- "admin.general.localization.clientLocaleDescription": "Default language for newly created users and pages where the user hasn't logged in.",
- "admin.general.localization.clientLocaleTitle": "클라이언트 기본 언어:",
- "admin.general.localization.serverLocaleDescription": "Default language for system messages and logs. Changing this will require a server restart before taking effect.",
- "admin.general.localization.serverLocaleTitle": "서버 기본 언어:",
- "admin.general.log": "로그",
- "admin.general.policy": "정책",
- "admin.general.policy.allowBannerDismissalDesc": "When true, users can dismiss the banner until its next update. When false, the banner is permanently visible until it is turned off by the System Admin.",
- "admin.general.policy.allowBannerDismissalTitle": "Allow Banner Dismissal:",
- "admin.general.policy.allowEditPostAlways": "Any time",
- "admin.general.policy.allowEditPostDescription": "Set policy on the length of time authors have to edit their messages after posting.",
- "admin.general.policy.allowEditPostNever": "알림 사용 안함",
- "admin.general.policy.allowEditPostTimeLimit": "seconds after posting",
- "admin.general.policy.allowEditPostTitle": "Allow users to edit their messages:",
- "admin.general.policy.bannerColorTitle": "Banner Color:",
- "admin.general.policy.bannerTextColorTitle": "Banner Text Color:",
- "admin.general.policy.bannerTextDesc": "Text that will appear in the announcement banner.",
- "admin.general.policy.bannerTextTitle": "Banner Text:",
- "admin.general.policy.enableBannerDesc": "Enable an announcement banner across all teams.",
- "admin.general.policy.enableBannerTitle": "Enable Announcement Banner:",
- "admin.general.policy.permissionsAdmin": "Team and System Admins",
- "admin.general.policy.permissionsAll": "모든 팀 회원",
- "admin.general.policy.permissionsAllChannel": "All channel members",
- "admin.general.policy.permissionsChannelAdmin": "Channel, Team and System Admins",
- "admin.general.policy.permissionsDeletePostAdmin": "Team and System Admins",
- "admin.general.policy.permissionsDeletePostAll": "Message authors can delete their own messages, and Administrators can delete any message",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "시스템 관리자",
- "admin.general.policy.permissionsSystemAdmin": "시스템 관리자",
- "admin.general.policy.restrictPostDeleteDescription": "Set policy on who has permission to delete messages.",
- "admin.general.policy.restrictPostDeleteTitle": "Allow which users to delete messages:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Set policy on who can create private channels.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Enable private channel creation for:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "command line tool",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Set policy on who can delete private channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Enable private channel deletion for:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Set policy on who can add and remove members from private channels.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Enable managing of private channel members for:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Set policy on who can create, delete, rename, and set the header or purpose for public channels.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Enable private channel renaming for:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Set policy on who can create public channels.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Enable public channel creation for:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "command line tool",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Set policy on who can delete public channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Enable public channel deletion for:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Set policy on who can create, delete, rename, and set the header or purpose for public channels.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Enable public channel renaming for:",
- "admin.general.policy.teamInviteDescription": "Set policy on who can invite others to a team using Invite New Member to invite new users by email, or the Get Team Invite Link options from the Main Menu. If Get Team Invite Link is used to share a link, you can expire the invite code from Team Settings > Invite Code after the desired users join the team.",
- "admin.general.policy.teamInviteTitle": "Enable sending team invites from:",
- "admin.general.privacy": "Privacy",
- "admin.general.usersAndTeams": "팀과 사용자",
- "admin.gitab.clientSecretDescription": "Obtain this value via the instructions above for logging into GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Log in to your GitLab account and go to Profile Settings -> Applications.
Enter Redirect URIs \"/login/gitlab/complete\" (example: http://localhost:8065/login/gitlab/complete) and \"/signup/gitlab/complete\".
Then use \"Application Secret Key\" and \"Application ID\" fields from GitLab to complete the options below.
Complete the Endpoint URLs below.
",
- "admin.gitlab.authDescription": "Enter https:///oauth/authorize (example https://example.com:3000/oauth/authorize). Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
- "admin.gitlab.authExample": "예시 \"https:///api/v3/user\"",
- "admin.gitlab.authTitle": "인증 엔드포인트:",
- "admin.gitlab.clientIdDescription": "Obtain this value via the instructions above for logging into GitLab",
- "admin.gitlab.clientIdExample": "예시 \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "애플리케이션 ID:",
- "admin.gitlab.clientSecretExample": "예시 \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "애플리케이션 시크릿 키:",
- "admin.gitlab.enableDescription": "When true, Mattermost allows team creation and account signup using GitLab OAuth.",
- "admin.gitlab.enableTitle": "GitLab 계정으로 인증: ",
- "admin.gitlab.settingsTitle": "GitLab 설정",
- "admin.gitlab.tokenDescription": "GitLab 연동을 위해 다음 URL https:///api/v3/user 을 입력하십시오. 서버 설정에 따라 HTTP와 HTTPS 중 올바른 것을 사용하여야 합니다.",
- "admin.gitlab.tokenExample": "예시 \"https:///api/v3/user\"",
- "admin.gitlab.tokenTitle": "토큰 엔드포인트:",
- "admin.gitlab.userDescription": "GitLab 연동을 위해 다음 URL https:///api/v3/user 을 입력하십시오. 서버 설정에 따라 HTTP와 HTTPS 중 올바른 것을 사용하여야 합니다.",
- "admin.gitlab.userExample": "예시 \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "사용자 API 엔드포인트:",
- "admin.google.EnableHtmlDesc": "
Go to https://console.developers.google.com, click Credentials in the left hand sidebar and enter \"Mattermost - your-company-name\" as the Project Name, then click Create.
Click the OAuth consent screen header and enter \"Mattermost\" as the Product name shown to users, then click Save.
Under the Credentials header, click Create credentials, choose OAuth client ID and select Web Application.
Under Restrictions and Authorized redirect URIs enter your-mattermost-url/signup/google/complete (example: http://localhost:8065/signup/google/complete). Click Create.
Paste the Client ID and Client Secret to the fields below, then click Save.
Finally, go to Google+ API and click Enable. This might take a few minutes to propagate through Google's systems.
",
- "admin.google.authTitle": "Auth Endpoint:",
- "admin.google.clientIdDescription": "The Client ID you received when registering your application with Google.",
- "admin.google.clientIdExample": "예시 \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "클라이언트 ID",
- "admin.google.clientSecretDescription": "The Client Secret you received when registering your application with Google.",
- "admin.google.clientSecretExample": "예시 \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "클라이언트 시크릿",
- "admin.google.tokenTitle": "토큰 엔드포인트:",
- "admin.google.userTitle": "사용자 API 엔드포인트:",
- "admin.image.amazonS3BucketDescription": "Name you selected for your S3 bucket in AWS.",
- "admin.image.amazonS3BucketExample": "예시 \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Hostname of your S3 Compatible Storage provider. Defaults to `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "E.g.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Amazon S3 Endpoint:",
- "admin.image.amazonS3IdDescription": "Obtain this credential from your Amazon EC2 administrator.",
- "admin.image.amazonS3IdExample": "예시 \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 Access Key ID:",
- "admin.image.amazonS3RegionDescription": "AWS region you selected for creating your S3 bucket.",
- "admin.image.amazonS3RegionExample": "예시 \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Amazon S3 Region:",
- "admin.image.amazonS3SSEDescription": "When true, encrypt files in Amazon S3 using server-side encryption with Amazon S3-managed keys. See documentation to learn more.",
- "admin.image.amazonS3SSEExample": "E.g.: \"false\"",
- "admin.image.amazonS3SSETitle": "Enable Server-Side Encryption for Amazon S3:",
- "admin.image.amazonS3SSLDescription": "When false, allow insecure connections to Amazon S3. Defaults to secure connections only.",
- "admin.image.amazonS3SSLExample": "E.g.: \"true\"",
- "admin.image.amazonS3SSLTitle": "Enable Secure Amazon S3 Connections:",
- "admin.image.amazonS3SecretDescription": "Obtain this credential from your Amazon EC2 administrator.",
- "admin.image.amazonS3SecretExample": "예시 \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 Secret Access Key:",
- "admin.image.localDescription": "Directory to which files and images are written. If blank, defaults to ./data/.",
- "admin.image.localExample": "예시 \"./data/\"",
- "admin.image.localTitle": "로컬 저장소 경로:",
- "admin.image.maxFileSizeDescription": "Maximum file size for message attachments in megabytes. Caution: Verify server memory can support your setting choice. Large file sizes increase the risk of server crashes and failed uploads due to network interruptions.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "최대 파일 크기:",
- "admin.image.publicLinkDescription": "32-character salt added to signing of public image links. Randomly generated on install. Click \"Regenerate\" to create new salt.",
- "admin.image.publicLinkExample": "예시 \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "공개 링크 Salt:",
- "admin.image.shareDescription": "Allow users to share public links to files and images.",
- "admin.image.shareTitle": "공개 파일 링크: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Storage system where files and image attachments are saved.
Selecting \"Amazon S3\" enables fields to enter your Amazon credentials and bucket details.
Selecting \"Local File System\" enables the field to specify a local file directory.",
- "admin.image.storeLocal": "로컬 파일 시스템",
- "admin.image.storeTitle": "파일 저장소 시스템:",
- "admin.integrations.custom": "Custom Integrations",
- "admin.integrations.external": "외부 서비스",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "The Base DN is the Distinguished Name of the location where Mattermost should start its search for users in the LDAP tree.",
- "admin.ldap.baseEx": "예시 \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Password of the user given in \"Bind Username\".",
- "admin.ldap.bindPwdTitle": "Bind Password:",
- "admin.ldap.bindUserDesc": "The username used to perform the LDAP search. This should typically be an account created specifically for use with Mattermost. It should have access limited to read the portion of the LDAP tree specified in the BaseDN field.",
- "admin.ldap.bindUserTitle": "Bind Username:",
- "admin.ldap.emailAttrDesc": "The attribute in the LDAP server that will be used to populate the email addresses of users in Mattermost.",
- "admin.ldap.emailAttrEx": "예시 \"mail\" or \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "이메일 속성:",
- "admin.ldap.enableDesc": "활성화하면, LDAP으로 접속 할 수 있습니다.",
- "admin.ldap.enableTitle": "LDAP으로 접속을 허용:",
- "admin.ldap.firstnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the first name of users in Mattermost. When set, users will not be able to edit their first name, since it is synchronized with the LDAP server. When left blank, users can set their own first name in Account Settings.",
- "admin.ldap.firstnameAttrEx": "예시 \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "이름 속성",
- "admin.ldap.idAttrDesc": "AD/LDAP 서버에서 속성(attribute)의 경우 Mattermost에서 고유한 식별자로 사용됩니다. 이는 username과 uid 등 변경되지 않는 값을 가진 AD/LDAP 속성이어야 합니다. 사용자의 ID 속성이 변경된 경우, 원래 계정과 무관한 새로운 Mattermost 계정을 생성하게 됩니다. 이는 Mattermost 로그인 페이지에서 \"AD/LDAP 사용자명\" 란에 사용되는 값입니다. 일반적으로 이 속성은 위의 \"사용자 이름 속성\" 란과 같습니다. 팀에서 AD/LDAP를 사용하는 다른 서비스에 로그인할 때 대개 domain\\\\username을 사용할 경우, 사이트 간의 일관성을 유지하기 위해 domain\\\\username을 이 란에 입력할 수 있습니다.",
- "admin.ldap.idAttrEx": "예시 \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "ID 속성: ",
- "admin.ldap.lastnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the last name of users in Mattermost. When set, users will not be able to edit their last name, since it is synchronized with the LDAP server. When left blank, users can set their own last name in Account Settings.",
- "admin.ldap.lastnameAttrEx": "예시 \"sn\"",
- "admin.ldap.lastnameAttrTitle": "성 속성:",
- "admin.ldap.ldap_test_button": "AD/LDAP 테스트",
- "admin.ldap.loginNameDesc": "The placeholder text that appears in the login field on the login page. Defaults to \"LDAP Username\".",
- "admin.ldap.loginNameEx": "예시 \"LDAP Username\"",
- "admin.ldap.loginNameTitle": "Login Field Name:",
- "admin.ldap.maxPageSizeEx": "예시 \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "한번에 AD/LDAP서버로부터 요청할 Mattermost 서버의 최대 유저 숫자 값입니다. 0은 무제한을 뜻합니다.",
- "admin.ldap.maxPageSizeTitle": "최대 페이지 크기",
- "admin.ldap.nicknameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the nickname of users in Mattermost. When set, users will not be able to edit their nickname, since it is synchronized with the LDAP server. When left blank, users can set their own nickname in Account Settings.",
- "admin.ldap.nicknameAttrEx": "예시 \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "별명 속성:",
- "admin.ldap.noLicense": "
Note:
Compliance 는 엔터프라이즈 에디션의 기능입니다. 현재 라이센스는 Compliance 기능을 지원하지 않습니다. 이 곳에서 엔터프라이즈 라이센스에 대한 정보를 확인하세요.
",
- "admin.ldap.portDesc": "Mettermost가 AD/LDAP서버에 연결할 때 사용될 포트입니다. 기본값은 389입니다.",
- "admin.ldap.portEx": "예시 \"389\"",
- "admin.ldap.portTitle": "AD/LDAP 포트:",
- "admin.ldap.positionAttrDesc": "(Optional) The attribute in the LDAP server that will be used to populate the nickname of users in Mattermost.",
- "admin.ldap.positionAttrEx": "E.g.: \"title\"",
- "admin.ldap.positionAttrTitle": "Position Attribute:",
- "admin.ldap.queryDesc": "AD/LDAP서버 조회를 할때 사용되는 timeout 값입니다.. 만양 느린 AD/LDAP 서버에 의해 timout 에러가 발생한다면 증가시키십시오.",
- "admin.ldap.queryEx": "예시 \"60\"",
- "admin.ldap.queryTitle": "Query Timeout (초):",
- "admin.ldap.serverDesc": "LDAP 서버의 도메인 또는 IP 주소",
- "admin.ldap.serverEx": "예시 \"10.0.0.23\"",
- "admin.ldap.serverTitle": "AD/LDAP 서버:",
- "admin.ldap.skipCertificateVerification": "인증서 검증 생략",
- "admin.ldap.skipCertificateVerificationDesc": "Skips the certificate verification step for TLS or STARTTLS connections. Not recommended for production environments where TLS is required. For testing only.",
- "admin.ldap.syncFailure": "동기화 실패: {error}",
- "admin.ldap.syncIntervalHelpText": "LDAP Synchronization updates Mattermost user information to reflect updates on the LDAP server. For example, when a user’s name changes on the LDAP server, the change updates in Mattermost when synchronization is performed. Accounts removed from or disabled in the LDAP server have their Mattermost accounts set to “Inactive” and have their account sessions revoked. Mattermost performs synchronization on the interval entered. For example, if 60 is entered, Mattermost synchronizes every 60 minutes.",
- "admin.ldap.syncIntervalTitle": "동기화 간격 (분)",
- "admin.ldap.syncNowHelpText": "지금 바로 LDAP 동기화를 초기화",
- "admin.ldap.sync_button": "지금 LDAP 동기화하기",
- "admin.ldap.testFailure": "AD/LDAP 테스트 실패: {error}",
- "admin.ldap.testHelpText": "Tests if the Mattermost server can connect to the AD/LDAP server specified. See log file for more detailed error messages.",
- "admin.ldap.testSuccess": "AD/LDAP 테스트가 성공하였습니다.",
- "admin.ldap.uernameAttrDesc": "The attribute in the LDAP server that will be used to populate the username field in Mattermost. This may be the same as the ID Attribute.",
- "admin.ldap.userFilterDisc": "(Optional) Enter an LDAP Filter to use when searching for user objects. Only the users selected by the query will be able to access Mattermost. For Active Directory, the query to filter out disabled users is (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "예시 \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "사용자 필터:",
- "admin.ldap.usernameAttrEx": "예시 \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "사용자명 속성:",
- "admin.license.choose": "파일 선택",
- "admin.license.chooseFile": "파일 선택",
- "admin.license.edition": "에디션: ",
- "admin.license.key": "라이센스 키: ",
- "admin.license.keyRemove": "엔터프라이즈 라이센스를 제거하고 서버를 다운그레이드 합니다.",
- "admin.license.noFile": "업로드된 파일이 없습니다.",
- "admin.license.removing": "라이센스 제거 중...",
- "admin.license.title": "라이센스와 에디션",
- "admin.license.type": "라이센스: ",
- "admin.license.upload": "업로드",
- "admin.license.uploadDesc": "Upload a license key for Mattermost Enterprise Edition to upgrade this server. Visit us online to learn more about the benefits of Enterprise Edition or to purchase a key.",
- "admin.license.uploading": "라이센스 업로드 중...",
- "admin.log.consoleDescription": "Typically set to false in production. Developers may set this field to true to output log messages to console based on the console level option. If true, server writes messages to the standard output stream (stdout).",
- "admin.log.consoleTitle": "Output logs to console: ",
- "admin.log.enableDiagnostics": "Enable Diagnostics and Error Reporting:",
- "admin.log.enableDiagnosticsDescription": "Enable this feature to improve the quality and performance of Mattermost by sending error reporting and diagnostic information to Mattermost, Inc. Read our privacy policy to learn more.",
- "admin.log.enableWebhookDebugging": "Webhook 디버깅 활성화:",
- "admin.log.enableWebhookDebuggingDescription": "비활성화하면 incoming webhook의 모든 요청 내용이 디버그 로그에 남는 것을 막을 수 있습니다.",
- "admin.log.fileDescription": "Typically set to true in production. When true, logged events are written to the mattermost.log file in the directory specified in the File Log Directory field. The logs are rotated at 10,000 lines and archived to a file in the same directory, and given a name with a datestamp and serial number. For example, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "This setting determines the level of detail at which log events are written to the log file. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.",
- "admin.log.fileLevelTitle": "파일 로그 레벨:",
- "admin.log.fileTitle": "Output logs to file: ",
- "admin.log.formatDateLong": "날짜 (2006/01/02)",
- "admin.log.formatDateShort": "날짜 (01/02/06)",
- "admin.log.formatDescription": "Format of log message output. If blank will be set to \"[%D %T] [%L] %M\", where:",
- "admin.log.formatLevel": "Level (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "메시지",
- "admin.log.formatPlaceholder": "Enter your file format",
- "admin.log.formatSource": "Source",
- "admin.log.formatTime": "시간 (15:04:05 MST)",
- "admin.log.formatTitle": "파일 로그 포맷:",
- "admin.log.levelDescription": "This setting determines the level of detail at which log events are written to the console. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.",
- "admin.log.levelTitle": "콘솔 로그 레벨:",
- "admin.log.locationDescription": "The location of the log files. If blank, they are stored in the ./logs directory. The path that you set must exist and Mattermost must have write permissions in it.",
- "admin.log.locationPlaceholder": "파일 위치를 지정하세요.",
- "admin.log.locationTitle": "파일 로그 경로:",
- "admin.log.logSettings": "로그 설정",
- "admin.logs.bannerDesc": "To look up users by User ID or Token ID, go to Reporting > Users and paste the ID into the search filter.",
- "admin.logs.reload": "새로 고침",
- "admin.logs.title": "서버 로그",
- "admin.manage_roles.additionalRoles": "Select additional permissions for the account. Read more about roles and permissions.",
- "admin.manage_roles.allowUserAccessTokens": "Allow this account to generate personal access tokens.",
- "admin.manage_roles.cancel": "취소",
- "admin.manage_roles.manageRolesTitle": "Manage Roles",
- "admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Access to post to all Mattermost channels including direct messages.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "저장",
- "admin.manage_roles.saveError": "Unable to save roles.",
- "admin.manage_roles.systemAdmin": "시스템 관리자",
- "admin.manage_roles.systemMember": "회원",
- "admin.manage_tokens.manageTokensTitle": "Manage Personal Access Tokens",
- "admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to interact with this Mattermost server. Learn more about personal access tokens.",
- "admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
- "admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see documentation to learn more about configuring performance monitoring for Mattermost.",
- "admin.metrics.enableTitle": "Enable Performance Monitoring:",
- "admin.metrics.listenAddressDesc": "The address the server will listen on to expose performance metrics.",
- "admin.metrics.listenAddressEx": "예시 \":8065\"",
- "admin.metrics.listenAddressTitle": "Listen Address:",
- "admin.mfa.bannerDesc": "Multi-factor authentication is available for accounts with AD/LDAP or email login. If other login methods are used, MFA should be configured with the authentication provider.",
- "admin.mfa.cluster": "High",
- "admin.mfa.title": "Enable Multi-factor Authentication:",
- "admin.nav.administratorsGuide": "Administrator's Guide",
- "admin.nav.commercialSupport": "Commercial Support",
- "admin.nav.help": "도움말",
- "admin.nav.logout": "로그아웃",
- "admin.nav.report": "문제 보고",
- "admin.nav.switch": "팀 선택",
- "admin.nav.troubleshootingForum": "Troubleshooting Forum",
- "admin.notifications.email": "이메일",
- "admin.notifications.push": "모바일 푸시",
- "admin.notifications.title": "알림 설정",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Do not allow sign-in via an OAuth 2.0 provider",
- "admin.oauth.office365": "Office 365 (베타)",
- "admin.oauth.providerDescription": "When true, Mattermost can act as an OAuth 2.0 service provider allowing Mattermost to authorize API requests from external applications. See documentation to learn more.",
- "admin.oauth.providerTitle": "OAuth 2.0 서비스 제공자: ",
- "admin.oauth.select": "Select OAuth 2.0 service provider:",
- "admin.office365.EnableHtmlDesc": "
여러분의 마이크로소프트 또는 오피스 365 계정에 로그인 하십시요. 로그인하는 계정은 테넌트의 >계정과 동일해야 합니다.
https://apps.dev.microsoft.com을 방문하셔서, Go to app list의 Add an app를 클릭한 다음 \"Mattermost - 여러분의 회사 이름\"을 어플리케이션 이름으로 사용하십시요.
Application Secrets에서, Generate New Password를 클릭한 다음 아래Application Secret Password 필드에 그 값을 복사하여 붙여넣으십시요.
Platforms에서, Add Platform을 클릭한 다음, Web을 선택하고 your-mattermost-url/signup/office365/complete (예시: http://localhost:8065/signup/office365/complete)을 Redirect URIs에 기입하십시요. 또한 Allow Implicit Flow의 체크를 해제하십시요.
마지막으로, Save를 클릭한 다음 아래의 Application ID붙여넣으십시요.
",
- "admin.office365.authTitle": "인증 엔드포인트:",
- "admin.office365.clientIdDescription": "The Application/Client ID you received when registering your application with Microsoft.",
- "admin.office365.clientIdExample": "예시 \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "애플리케이션 ID:",
- "admin.office365.clientSecretDescription": "The Application Secret Password you generated when registering your application with Microsoft.",
- "admin.office365.clientSecretExample": "예시 \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "애플리케이션 시크릿 패스워드:",
- "admin.office365.tokenTitle": "토큰 엔드포인트:",
- "admin.office365.userTitle": "사용자 API 엔드포인트:",
- "admin.password.lowercase": "At least one lowercase letter",
- "admin.password.minimumLength": "패스워드 최소 길이:",
- "admin.password.minimumLengthDescription": "Minimum number of characters required for a valid password. Must be a whole number greater than or equal to {min} and less than or equal to {max}.",
- "admin.password.minimumLengthExample": "예시 \"5\"",
- "admin.password.number": "At least one number",
- "admin.password.preview": "Error message preview",
- "admin.password.requirements": "Password Requirements:",
- "admin.password.requirementsDescription": "Character types required in a valid password.",
- "admin.password.symbol": "At least one symbol (예시 \"~!@#$%^&*()\")",
- "admin.password.uppercase": "At least one uppercase letter",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "When true, you can configure JIRA webhooks to post message in Mattermost. To help combat phishing attacks, all posts are labelled by a BOT tag.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "This secret is used to authenticate to Mattermost.",
- "admin.plugins.jira.secretLabel": "보안",
- "admin.plugins.jira.secretParamPlaceholder": "보안",
- "admin.plugins.jira.secretRegenerateDescription": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing JIRA integrations.",
- "admin.plugins.jira.setupDescription": "Use this webhook URL to set up the JIRA integration. See {webhookDocsLink} to learn more.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Select the username that this integration is attached to.",
- "admin.plugins.jira.userLabel": "사용자",
- "admin.plugins.jira.webhookDocsLink": "문서",
- "admin.privacy.showEmailDescription": "When false, hides the email address of members from everyone except System Administrators.",
- "admin.privacy.showEmailTitle": "이메일 표시: ",
- "admin.privacy.showFullNameDescription": "When false, hides the full name of members from everyone except System Administrators. Username is shown in place of full name.",
- "admin.privacy.showFullNameTitle": "본명 표시: ",
- "admin.purge.button": "Purge All Caches",
- "admin.purge.loading": " 로딩 중...",
- "admin.purge.purgeDescription": "This will purge all the in-memory caches for things like sessions, accounts, channels, etc. Deployments using High Availability will attempt to purge all the servers in the cluster. Purging the caches may adversly impact performance.",
- "admin.purge.purgeFail": "연결을 실패했습니다: {error}",
- "admin.rate.enableLimiterDescription": "활성화하면 API 호출이 아래에 설정된 속도로 조절됩니다.",
- "admin.rate.enableLimiterTitle": "Enable Rate Limiting: ",
- "admin.rate.httpHeaderDescription": "When filled in, vary rate limiting by HTTP header field specified (e.g. when configuring NGINX set to \"X-Real-IP\", when configuring AmazonELB set to \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "예시 \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Vary rate limit by HTTP header",
- "admin.rate.maxBurst": "Maximum Burst Size:",
- "admin.rate.maxBurstDescription": "Maximum number of requests allowed beyond the per second query limit.",
- "admin.rate.maxBurstExample": "예시 \"100\"",
- "admin.rate.memoryDescription": "Maximum number of users sessions connected to the system as determined by \"Vary rate limit by remote address\" and \"Vary rate limit by HTTP header\" settings below.",
- "admin.rate.memoryExample": "예시 \"10000\"",
- "admin.rate.memoryTitle": "Memory Store Size:",
- "admin.rate.noteDescription": "Changing properties in this section will require a server restart before taking effect.",
- "admin.rate.noteTitle": "Note:",
- "admin.rate.queriesDescription": "설정된 값만큼 초당 API 호출을 조절합니다.",
- "admin.rate.queriesExample": "예시 \"10\"",
- "admin.rate.queriesTitle": "Maximum Queries per Second:",
- "admin.rate.remoteDescription": "활성화하면 IP 주소에 따라 API 호출 속도를 조절합니다.",
- "admin.rate.remoteTitle": "Vary rate limit by remote address: ",
- "admin.rate.title": "Rate Limit Settings",
- "admin.recycle.button": "Recycle Database Connections",
- "admin.recycle.loading": " Recycling...",
- "admin.recycle.recycleDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the Reload Configuration from Disk feature to load the new settings while the server is running. The administrator should then use the Database > Recycle Database Connections feature to recycle the database connections based on the new settings.",
- "admin.recycle.recycleDescription.featureName": "Recycle Database Connections",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuration > Reload Configuration from Disk",
- "admin.recycle.reloadFail": "연결을 실패했습니다: {error}",
- "admin.regenerate": "재생성",
- "admin.reload.button": "디스크에서 설정 다시 불러오기",
- "admin.reload.loading": " 로딩 중...",
- "admin.reload.reloadDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the Reload Configuration from Disk feature to load the new settings while the server is running. The administrator should then use the Database > Recycle Database Connections feature to recycle the database connections based on the new settings.",
- "admin.reload.reloadDescription.featureName": "디스크에서 설정 다시 불러오기",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Database > Recycle Database Connections",
- "admin.reload.reloadFail": "연결을 실패했습니다: {error}",
- "admin.requestButton.loading": " 로딩 중...",
- "admin.requestButton.requestFailure": "동기화 실패: {error}",
- "admin.requestButton.requestSuccess": "설정이 완료되었습니다.",
- "admin.reset_password.close": "닫기",
- "admin.reset_password.newPassword": "새 패스워드",
- "admin.reset_password.select": "선택",
- "admin.reset_password.submit": "최소 {chars}글자 이상 입력하세요.",
- "admin.reset_password.titleReset": "패스워드 리셋",
- "admin.reset_password.titleSwitch": "이메일과 패스워드를 사용하도록 변경",
- "admin.saml.assertionConsumerServiceURLDesc": "Enter https:///login/sso/saml. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. This field is also known as the Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "예시 \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Service Provider Login URL:",
- "admin.saml.bannerDesc": "User attributes in SAML server, including user deactivation or removal, are updated in Mattermost during user login. Learn more at: https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "The attribute in the SAML Assertion that will be used to populate the email addresses of users in Mattermost.",
- "admin.saml.emailAttrEx": "예시 \"Email\" 또는 \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "이메일 속성:",
- "admin.saml.enableDescription": "When true, Mattermost allows login using SAML. Please see documentation to learn more about configuring SAML for Mattermost.",
- "admin.saml.enableTitle": "SAML 계정으로 인증:",
- "admin.saml.encryptDescription": "When false, Mattermost will not decrypt SAML Assertions encrypted with your Service Provider Public Certificate. Not recommended for production environments. For testing only.",
- "admin.saml.encryptTitle": "암호화:",
- "admin.saml.firstnameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the nickname of users in Mattermost.",
- "admin.saml.firstnameAttrEx": "예시 \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "이름 속성:",
- "admin.saml.idpCertificateFileDesc": "The public authentication certificate issued by your Identity Provider.",
- "admin.saml.idpCertificateFileRemoveDesc": "Remove the public authentication certificate issued by your Identity Provider.",
- "admin.saml.idpCertificateFileTitle": "Identity Provider Public Certificate:",
- "admin.saml.idpDescriptorUrlDesc": "The issuer URL for the Identity Provider you use for SAML requests.",
- "admin.saml.idpDescriptorUrlEx": "예시 \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "Identity Provider Issuer URL:",
- "admin.saml.idpUrlDesc": "The URL where Mattermost sends a SAML request to start login sequence.",
- "admin.saml.idpUrlEx": "예시 \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the language of users in Mattermost.",
- "admin.saml.lastnameAttrEx": "예시 \"LastName\"",
- "admin.saml.lastnameAttrTitle": "성 속성:",
- "admin.saml.localeAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the language of users in Mattermost.",
- "admin.saml.localeAttrEx": "예시 \"Locale\" 또는 \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Preferred Language Attribute:",
- "admin.saml.loginButtonTextDesc": "(Optional) The text that appears in the login button on the login page. Defaults to \"With SAML\".",
- "admin.saml.loginButtonTextEx": "예시 \"With OKTA\"",
- "admin.saml.loginButtonTextTitle": "로그인 버튼 문구:",
- "admin.saml.nicknameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the nickname of users in Mattermost.",
- "admin.saml.nicknameAttrEx": "예시 \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "별명 속성:",
- "admin.saml.positionAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the language of users in Mattermost.",
- "admin.saml.positionAttrEx": "E.g.: \"Role\"",
- "admin.saml.positionAttrTitle": "Position Attribute:",
- "admin.saml.privateKeyFileFileDesc": "The private key used to decrypt SAML Assertions from the Identity Provider.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Remove the private key used to decrypt SAML Assertions from the Identity Provider.",
- "admin.saml.privateKeyFileTitle": "Service Provider Private Key:",
- "admin.saml.publicCertificateFileDesc": "The certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
- "admin.saml.publicCertificateFileRemoveDesc": "Remove the certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
- "admin.saml.publicCertificateFileTitle": "Service Provider Public Certificate:",
- "admin.saml.remove.idp_certificate": "Remove Identity Provider Certificate",
- "admin.saml.remove.privKey": "Remove Service Provider Private Key",
- "admin.saml.remove.sp_certificate": "Remove Service Provider Certificate",
- "admin.saml.removing.certificate": "Removing Certificate...",
- "admin.saml.removing.privKey": "Removing Private Key...",
- "admin.saml.uploading.certificate": "Uploading Certificate...",
- "admin.saml.uploading.privateKey": "Uploading Private Key...",
- "admin.saml.usernameAttrDesc": "The attribute in the SAML Assertion that will be used to populate the username field in Mattermost.",
- "admin.saml.usernameAttrEx": "예시 \"Username\"",
- "admin.saml.usernameAttrTitle": "사용자명 속성:",
- "admin.saml.verifyDescription": "When false, Mattermost will not verify that the signature sent from a SAML Response matches the Service Provider Login URL. Not recommended for production environments. For testing only.",
- "admin.saml.verifyTitle": "시그니처 검증:",
- "admin.save": "저장",
- "admin.saving": "설정 저장 중...",
- "admin.security.connection": "연결",
- "admin.security.inviteSalt.disabled": "Invite salt cannot be changed while sending emails is disabled.",
- "admin.security.login": "로그인",
- "admin.security.password": "패스워드",
- "admin.security.passwordResetSalt.disabled": "Password reset salt cannot be changed while sending emails is disabled.",
- "admin.security.public_links": "공개 링크",
- "admin.security.requireEmailVerification.disabled": "Email verification cannot be changed while sending emails is disabled.",
- "admin.security.session": "세션",
- "admin.security.signup": "가입",
- "admin.select_team.close": "닫기",
- "admin.select_team.select": "선택",
- "admin.select_team.selectTeam": "팀 선택",
- "admin.service.attemptDescription": "Number of login attempts allowed before a user is locked out and required to reset their password via email.",
- "admin.service.attemptExample": "예시 \"10\"",
- "admin.service.attemptTitle": "최대 로그인 시도:",
- "admin.service.cmdsDesc": "When true, custom slash commands will be allowed. See documentation to learn more.",
- "admin.service.cmdsTitle": "커스텀 명령어: ",
- "admin.service.corsDescription": "Enable HTTP Cross origin request from a specific domain. Use \"*\" if you want to allow CORS from any domain or leave it blank to disable it.",
- "admin.service.corsEx": "http://example.com",
- "admin.service.corsTitle": "CORS 요청 허용:",
- "admin.service.developerDesc": "When true, Javascript errors are shown in a red bar at the top of the user interface. Not recommended for use in production. ",
- "admin.service.developerTitle": "개발자 모드: ",
- "admin.service.enableAPIv3": "Allow use of API v3 endpoints:",
- "admin.service.enableAPIv3Description": "Set to false to disable all version 3 endpoints of the REST API. Integrations that rely on API v3 will fail and can then be identified for migration to API v4. API v3 is deprecated and will be removed in the near future. See https://api.mattermost.com for details.",
- "admin.service.enforceMfaDesc": "When true, multi-factor authentication is required for login. New users will be required to configure MFA on signup. Logged in users without MFA configured are redirected to the MFA setup page until configuration is complete.
If your system has users with login methods other than AD/LDAP and email, MFA must be enforced with the authentication provider outside of Mattermost.",
- "admin.service.enforceMfaTitle": "Enable Multi-factor Authentication:",
- "admin.service.forward80To443": "Forward port 80 to 443:",
- "admin.service.forward80To443Description": "Forwards all insecure traffic from port 80 to secure port 443",
- "admin.service.googleDescription": "Set this key to enable the display of titles for embedded YouTube video previews. Without the key, YouTube previews will still be created based on hyperlinks appearing in messages or comments but they will not show the video title. View a Google Developers Tutorial for instructions on how to obtain a key.",
- "admin.service.googleExample": "예시 \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Google API Key:",
- "admin.service.iconDescription": "When true, webhooks, slash commands and other integrations, such as Zapier, will be allowed to change the profile picture they post with. Note: Combined with allowing integrations to override usernames, users may be able to perform phishing attacks by attempting to impersonate other users.",
- "admin.service.iconTitle": "Enable integrations to override profile picture icons:",
- "admin.service.insecureTlsDesc": "true로 설정하면 Mattermost에서 밖으로 나가는 어떤 HTTPS 요청에 대해서도 인증서 검사를 하지 않습니다. 예를 들어, self-signed TLS 인증서를 아무 도메인 이름에 대해 설정하더라도 HTTPS 통신을 진행합니다. 이 설정을 켤 때는 MITM 공격에 주의하세요.",
- "admin.service.insecureTlsTitle": "Enable Insecure Outgoing Connections: ",
- "admin.service.integrationAdmin": "Restrict managing integrations to Admins:",
- "admin.service.integrationAdminDesc": "When true, webhooks and slash commands can only be created, edited and viewed by Team and System Admins, and OAuth 2.0 applications by System Admins. Integrations are available to all users after they have been created by the Admin.",
- "admin.service.internalConnectionsDesc": "In testing environments, such as when developing integrations locally on a development machine, use this setting to specify domains, IP addresses, or CIDR notations to allow internal connections. Not recommended for use in production, since this can allow a user to extract confidential data from your server or internal network.
By default, user-supplied URLs such as those used for Open Graph metadata, webhooks, or slash commands will not be allowed to connect to reserved IP addresses including loopback or link-local addresses used for internal networks. Push notification, OAuth 2.0 and WebRTC server URLs are trusted and not affected by this setting.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Allow untrusted internal connections to: ",
- "admin.service.letsEncryptCertificateCacheFile": "Let's Encrypt Certificate Cache File:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Certificates retrieved and other data about the Let's Encrypt service will be stored in this file.",
- "admin.service.listenAddress": "Listen Address:",
- "admin.service.listenDescription": "The address and port to which to bind and listen. Specifying \":8065\" will bind to all network interfaces. Specifying \"127.0.0.1:8065\" will only bind to the network interface having that IP address. If you choose a port of a lower level (called \"system ports\" or \"well-known ports\", in the range of 0-1023), you must have permissions to bind to that port. On Linux you can use: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" to allow Mattermost to bind to well-known ports.",
- "admin.service.listenExample": "예시 \":8065\"",
- "admin.service.mfaDesc": "When true, users with AD/LDAP or email login can add multi-factor authentication to their account using Google Authenticator.",
- "admin.service.mfaTitle": "Enable Multi-factor Authentication:",
- "admin.service.mobileSessionDays": "Session length for mobile apps (days):",
- "admin.service.mobileSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.",
- "admin.service.outWebhooksDesc": "When true, outgoing webhooks will be allowed. See documentation to learn more.",
- "admin.service.outWebhooksTitle": "Outgoing Webhook: ",
- "admin.service.overrideDescription": "When true, webhooks, slash commands and other integrations, such as Zapier, will be allowed to change the username they are posting as. Note: Combined with allowing integrations to override profile picture icons, users may be able to perform phishing attacks by attempting to impersonate other users.",
- "admin.service.overrideTitle": "Enable integrations to override usernames:",
- "admin.service.readTimeout": "Read Timeout:",
- "admin.service.readTimeoutDescription": "Maximum time allowed from when the connection is accepted to when the request body is fully read.",
- "admin.service.securityDesc": "When true, System Administrators are notified by email if a relevant security fix alert has been announced in the last 12 hours. Requires email to be enabled.",
- "admin.service.securityTitle": "보안 경고: ",
- "admin.service.sessionCache": "세션 캐시 (분):",
- "admin.service.sessionCacheDesc": "The number of minutes to cache a session in memory.",
- "admin.service.sessionDaysEx": "예시 \"30\"",
- "admin.service.siteURL": "사이트 URL:",
- "admin.service.siteURLDescription": "The URL that users will use to access Mattermost. Standard ports, such as 80 and 443, can be omitted, but non-standard ports are required. For example: http://mattermost.example.com:8065. This setting is required.",
- "admin.service.siteURLExample": "예시 \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Session length for mobile apps (days):",
- "admin.service.ssoSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. If the authentication method is SAML or GitLab, the user may automatically be logged back in to Mattermost if they are already logged in to SAML or GitLab. After changing this setting, the setting will take effect after the next time the user enters their credentials.",
- "admin.service.testingDescription": "(개발자 옵션) 활성화하면 /loadtest 명령어를 사용하여 테스트를 위한 계정과 데이터를 불러들일 수 있습니다. 이 설정이 적용되려면 서버를 재시작해야 합니다.",
- "admin.service.testingTitle": "테스트 명령어: ",
- "admin.service.tlsCertFile": "TLS Certificate File:",
- "admin.service.tlsCertFileDescription": "The certificate file to use.",
- "admin.service.tlsKeyFile": "TLS Key File:",
- "admin.service.tlsKeyFileDescription": "The private key file to use.",
- "admin.service.useLetsEncrypt": "Use Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Enable the automatic retreval of certificates from the Let's Encrypt. The certificate will be retrieved when a client attempts to connect from a new domain. This will work with multiple domains.",
- "admin.service.userAccessTokensDescLabel": "이름:",
- "admin.service.userAccessTokensDescription": "When true, users can create personal access tokens for integrations in Account Settings > Security. They can be used to authenticate against the API and give full access to the account.
To manage who can create personal access tokens or to search users by token ID, go to the System Console > Users page.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Enable Personal Access Tokens: ",
- "admin.service.webSessionDays": "Session length LDAP and email (days):",
- "admin.service.webSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.",
- "admin.service.webhooksDescription": "When true, incoming webhooks will be allowed. To help combat phishing attacks, all posts from webhooks will be labelled by a BOT tag. See documentation to learn more.",
- "admin.service.webhooksTitle": "Incoming Webhook: ",
- "admin.service.writeTimeout": "Write Timeout:",
- "admin.service.writeTimeoutDescription": "If using HTTP (insecure), this is the maximum time allowed from the end of reading the request headers until the response is written. If using HTTPS, it is the total time from when the connection is accepted until the response is written.",
- "admin.sidebar.advanced": "고급",
- "admin.sidebar.audits": "활동",
- "admin.sidebar.authentication": "인증",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "High Availability",
- "admin.sidebar.compliance": "감사",
- "admin.sidebar.configuration": "환경설정",
- "admin.sidebar.connections": "연결",
- "admin.sidebar.customBrand": "커스텀 브랜딩",
- "admin.sidebar.customIntegrations": "통합 기능",
- "admin.sidebar.customization": "커스터마이징",
- "admin.sidebar.database": "데이터베이스",
- "admin.sidebar.developer": "개발자 설정",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "이메일",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "외부 서비스",
- "admin.sidebar.files": "파일",
- "admin.sidebar.general": "일반",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "통합",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "지원",
- "admin.sidebar.license": "라이센스와 에디션",
- "admin.sidebar.linkPreviews": "링크 미리보기",
- "admin.sidebar.localization": "지역화",
- "admin.sidebar.logging": "로그",
- "admin.sidebar.login": "로그인",
- "admin.sidebar.logs": "서버 로그 보기",
- "admin.sidebar.metrics": "Performance Monitoring",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Mattermost 애플리케이션 링크",
- "admin.sidebar.notifications": "알림",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "기타",
- "admin.sidebar.password": "패스워드",
- "admin.sidebar.policy": "정책",
- "admin.sidebar.privacy": "개인",
- "admin.sidebar.publicLinks": "공개 링크",
- "admin.sidebar.push": "모바일 푸시",
- "admin.sidebar.rateLimiting": "Rate Limiting",
- "admin.sidebar.reports": "보고",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "보안",
- "admin.sidebar.sessions": "세션",
- "admin.sidebar.settings": "설정",
- "admin.sidebar.signUp": "가입",
- "admin.sidebar.sign_up": "가입",
- "admin.sidebar.statistics": "통계",
- "admin.sidebar.storage": "저장소",
- "admin.sidebar.support": "지원",
- "admin.sidebar.users": "사용자",
- "admin.sidebar.usersAndTeams": "팀과 사용자",
- "admin.sidebar.view_statistics": "사이트 통계",
- "admin.sidebar.webrtc": "WebRTC (베타)",
- "admin.sidebarHeader.systemConsole": "관리자 도구",
- "admin.sql.dataSource": "Data Source:",
- "admin.sql.driverName": "Driver Name:",
- "admin.sql.keyDescription": "32-character salt available to encrypt and decrypt sensitive fields in database.",
- "admin.sql.keyExample": "예시 \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Encrypt Key:",
- "admin.sql.maxConnectionsDescription": "Maximum number of idle connections held open to the database.",
- "admin.sql.maxConnectionsExample": "예시 \"10\"",
- "admin.sql.maxConnectionsTitle": "Maximum Idle Connections:",
- "admin.sql.maxOpenDescription": "Maximum number of open connections held open to the database.",
- "admin.sql.maxOpenExample": "예시 \"10\"",
- "admin.sql.maxOpenTitle": "Maximum Open Connections:",
- "admin.sql.noteDescription": "Changing properties in this section will require a server restart before taking effect.",
- "admin.sql.noteTitle": "Note:",
- "admin.sql.queryTimeoutDescription": "The number of seconds to wait for a response from the database after opening a connection and sending the query. Errors that you see in the UI or in the logs as a result of a query timeout can vary depending on the type of query.",
- "admin.sql.queryTimeoutExample": "예시 \"30\"",
- "admin.sql.queryTimeoutTitle": "Query Timeout:",
- "admin.sql.replicas": "Data Source Replicas:",
- "admin.sql.traceDescription": "(Development Mode) When true, executing SQL statements are written to the log.",
- "admin.sql.traceTitle": "추적: ",
- "admin.sql.warning": "Warning: regenerating this salt may cause some columns in the database to return empty results.",
- "admin.support.aboutDesc": "The URL for the About link on the Mattermost login and sign-up pages. If this field is empty, the About link is hidden from users.",
- "admin.support.aboutTitle": "About link:",
- "admin.support.emailHelp": "Email address displayed on email notifications and during tutorial for end users to ask support questions.",
- "admin.support.emailTitle": "Support Email:",
- "admin.support.helpDesc": "The URL for the Help link on the Mattermost login page, sign-up pages, and Main Menu. If this field is empty, the Help link is hidden from users.",
- "admin.support.helpTitle": "Help link:",
- "admin.support.noteDescription": "If linking to an external site, URLs should begin with http:// or https://.",
- "admin.support.noteTitle": "Note:",
- "admin.support.privacyDesc": "The URL for the Privacy link on the login and sign-up pages. If this field is empty, the Privacy link is hidden from users.",
- "admin.support.privacyTitle": "Privacy Policy link:",
- "admin.support.problemDesc": "The URL for the Report a Problem link in the Main Menu. If this field is empty, the link is removed from the Main Menu.",
- "admin.support.problemTitle": "Report a Problem link:",
- "admin.support.termsDesc": "Link to the terms under which users may use your online service. By default, this includes the \"Mattermost Conditions of Use (End Users)\" explaining the terms under which Mattermost software is provided to end users. If you change the default link to add your own terms for using the service you provide, your new terms must include a link to the default terms so end users are aware of the Mattermost Conditions of Use (End User) for Mattermost software.",
- "admin.support.termsTitle": "Terms of Service link:",
- "admin.system_analytics.activeUsers": "활성 사용자(글 작성 기준)",
- "admin.system_analytics.title": "the System",
- "admin.system_analytics.totalPosts": "전체 글",
- "admin.system_users.allUsers": "모든 사용자",
- "admin.system_users.noTeams": "No Teams",
- "admin.system_users.title": "{siteName} Users",
- "admin.team.brandDesc": "Enable custom branding to show an image of your choice, uploaded below, and some help text, written below, on the login page.",
- "admin.team.brandDescriptionExample": "모든 팀 커뮤니케이션을 한 곳에서 확인하고, 검색하고, 접근할 수 있습니다.",
- "admin.team.brandDescriptionHelp": "Description of service shown in login screens and UI. When not specified, \"All team communication in one place, searchable and accessible anywhere\" is displayed.",
- "admin.team.brandDescriptionTitle": "사이트 설명",
- "admin.team.brandImageTitle": "브랜드 이미지:",
- "admin.team.brandTextDescription": "Text that will appear below your custom brand image on your login screen. Supports Markdown-formatted text. Maximum 500 characters allowed.",
- "admin.team.brandTextTitle": "브랜드 문구:",
- "admin.team.brandTitle": "커스텀 브랜딩: ",
- "admin.team.chooseImage": "이미지 선택",
- "admin.team.dirDesc": "When true, teams that are configured to show in team directory will show on main page inplace of creating a new team.",
- "admin.team.dirTitle": "Enable Team Directory: ",
- "admin.team.maxChannelsDescription": "Maximum total number of users per team, including both active and inactive users.",
- "admin.team.maxChannelsExample": "예시 \"100\"",
- "admin.team.maxChannelsTitle": "팀 당 최대 채널: ",
- "admin.team.maxNotificationsPerChannelDescription": "Maximum total number of users in a channel before users typing messages, @all, @here, and @channel no longer send notifications because of performance.",
- "admin.team.maxNotificationsPerChannelExample": "예시 \"10000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Max Notifications Per Channel:",
- "admin.team.maxUsersDescription": "Maximum total number of users per team, including both active and inactive users.",
- "admin.team.maxUsersExample": "예시 \"25\"",
- "admin.team.maxUsersTitle": "팀 최대 인원:",
- "admin.team.noBrandImage": "브랜드 이미지가 업로드되지 않았습니다.",
- "admin.team.openServerDescription": "When true, anyone can signup for a user account on this server without the need to be invited.",
- "admin.team.openServerTitle": "공개 서버: ",
- "admin.team.restrictDescription": "Teams and user accounts can only be created from a specific domain (e.g. \"mattermost.org\") or list of comma-separated domains (e.g. \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Enable users to open Direct Message channels with:",
- "admin.team.restrictDirectMessageDesc": "'Any user on the Mattermost server' enables users to open a Direct Message channel with any user on the server, even if they are not on any teams together. 'Any member of the team' limits the ability to open Direct Message channels to only users who are in the same team.",
- "admin.team.restrictExample": "예시 \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "When true, You cannot create a team name with reserved words like www, admin, support, test, channel, etc",
- "admin.team.restrictNameTitle": "팀 이름 제한: ",
- "admin.team.restrictTitle": "Restrict account creation to specified email domains:",
- "admin.team.restrict_direct_message_any": "Any user on the Mattermost server",
- "admin.team.restrict_direct_message_team": "Any member of the team",
- "admin.team.showFullname": "본명으로 보기",
- "admin.team.showNickname": "별명이 있으면 별명으로 보기, 없으면 본명으로 보기",
- "admin.team.showUsername": "사용자명으로 보기 (기본)",
- "admin.team.siteNameDescription": "Name of service shown in login screens and UI.",
- "admin.team.siteNameExample": "예시 \"Mattermost\"",
- "admin.team.siteNameTitle": "사이트 이름:",
- "admin.team.teamCreationDescription": "When false, only System Administrators can create teams.",
- "admin.team.teamCreationTitle": "팀 생성: ",
- "admin.team.teammateNameDisplay": "사용자명 표시",
- "admin.team.teammateNameDisplayDesc": "글과 대화 목록에서 사용자의 이름이 어떻게 표시될 지 선택하세요.",
- "admin.team.upload": "업로드",
- "admin.team.uploadDesc": "Customize your user experience by adding a custom image to your login screen. Recommended maximum image size is less than 2 MB.",
- "admin.team.uploaded": "업로드 완료!",
- "admin.team.uploading": "업로드 중..",
- "admin.team.userCreationDescription": "When false, the ability to create accounts is disabled. The create account button displays error when pressed.",
- "admin.team.userCreationTitle": "계정 생성: ",
- "admin.team_analytics.activeUsers": "활성 사용자(글 작성 기준)",
- "admin.team_analytics.totalPosts": "전체 글",
- "admin.true": "활성화",
- "admin.user_item.authServiceEmail": ", 인증 방식: 이메일",
- "admin.user_item.authServiceNotEmail": ", 인증 방식: {service}",
- "admin.user_item.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
- "admin.user_item.confirmDemoteRoleTitle": "Confirm demotion from System Admin role",
- "admin.user_item.confirmDemotion": "Confirm Demotion",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "이메일: {email}",
- "admin.user_item.inactive": "비활성화",
- "admin.user_item.makeActive": "Activate",
- "admin.user_item.makeInactive": "Deactivate",
- "admin.user_item.makeMember": "회원으로 변경",
- "admin.user_item.makeSysAdmin": "시스템 관리자로 변경",
- "admin.user_item.makeTeamAdmin": "팀 관리자로 변경",
- "admin.user_item.manageRoles": "Manage Roles",
- "admin.user_item.manageTeams": "Manage Teams",
- "admin.user_item.manageTokens": "Manage Tokens",
- "admin.user_item.member": "회원",
- "admin.user_item.mfaNo": ", MFA: 아니요",
- "admin.user_item.mfaYes": ", MFA: 예",
- "admin.user_item.resetMfa": "MFA 제거",
- "admin.user_item.resetPwd": "패스워드 리셋",
- "admin.user_item.switchToEmail": "이메일/패스워드로 변경",
- "admin.user_item.sysAdmin": "시스템 관리자",
- "admin.user_item.teamAdmin": "팀 관리자",
- "admin.user_item.userAccessTokenPostAll": "(with post:all personal access tokens)",
- "admin.user_item.userAccessTokenPostAllPublic": "(with post:channels personal access tokens)",
- "admin.user_item.userAccessTokenYes": "(with personal access tokens)",
- "admin.webrtc.enableDescription": "When true, Mattermost allows making one-on-one video calls. WebRTC calls are available on Chrome, Firefox and Mattermost Desktop Apps.",
- "admin.webrtc.enableTitle": "Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Enter your admin secret password to access the Gateway Admin URL.",
- "admin.webrtc.gatewayAdminSecretExample": "예시 \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Gateway Admin Secret:",
- "admin.webrtc.gatewayAdminUrlDescription": "Enter https://:/admin. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. Mattermost WebRTC uses this URL to obtain valid tokens for each peer to establish the connection.",
- "admin.webrtc.gatewayAdminUrlExample": "예시 \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Gateway Admin URL:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Enter wss://:. Make sure you use WS or WSS in your URL depending on your server configuration. This is the websocket used to signal and establish communication between the peers.",
- "admin.webrtc.gatewayWebsocketUrlExample": "예시 \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway Websocket URL:",
- "admin.webrtc.stunUriDescription": "Enter your STUN URI as stun::. STUN is a standardized network protocol to allow an end host to assist devices to access its public IP address if it is located behind a NAT.",
- "admin.webrtc.stunUriExample": "예시 \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI",
- "admin.webrtc.turnSharedKeyDescription": "Enter your TURN Server Shared Key. This is used to created dynamic passwords to establish the connection. Each password is valid for a short period of time.",
- "admin.webrtc.turnSharedKeyExample": "예시 \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "TURN Shared Key:",
- "admin.webrtc.turnUriDescription": "Enter your TURN URI as turn::. TURN is a standardized network protocol to allow an end host to assist devices to establish a connection by using a relay public IP address if it is located behind a symmetric NAT.",
- "admin.webrtc.turnUriExample": "예시 \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI",
- "admin.webrtc.turnUsernameDescription": "Enter your TURN Server Username.",
- "admin.webrtc.turnUsernameExample": "예시 \"Username\"",
- "admin.webrtc.turnUsernameTitle": "TURN Username:",
- "admin.webserverModeDisabled": "Disabled",
- "admin.webserverModeDisabledDescription": "The Mattermost server will not serve static files.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "The Mattermost server will serve static files compressed with gzip.",
- "admin.webserverModeHelpText": "gzip compression applies to static content files. It is recommended to enable gzip to improve performance unless your environment has specific restrictions, such as a web proxy that distributes gzip files poorly. This setting requires a server restart to take effect.",
- "admin.webserverModeTitle": "웹 서버 모드:",
- "admin.webserverModeUncompressed": "압축하지 않음",
- "admin.webserverModeUncompressedDescription": "The Mattermost server will serve static files uncompressed.",
- "analytics.chart.loading": "로딩 중...",
- "analytics.chart.meaningful": "Not enough data for a meaningful representation.",
- "analytics.system.activeUsers": "활성 사용자 (글 작성 기준)",
- "analytics.system.channelTypes": "Channel Types",
- "analytics.system.dailyActiveUsers": "Daily Active Users",
- "analytics.system.monthlyActiveUsers": "Monthly Active Users",
- "analytics.system.postTypes": "글, 파일, 해시태그",
- "analytics.system.privateGroups": "비공개 채널",
- "analytics.system.publicChannels": "공개 채널",
- "analytics.system.skippedIntensiveQueries": "To maximize performance, some statistics are disabled. You can re-enable them in config.json. See: https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "텍스트 글 수",
- "analytics.system.title": "시스템 통계",
- "analytics.system.totalChannels": "전체 채널",
- "analytics.system.totalCommands": "전체 명령어",
- "analytics.system.totalFilePosts": "파일이 포함된 글 수",
- "analytics.system.totalHashtagPosts": "해시태그가 포함된 글 수",
- "analytics.system.totalIncomingWebhooks": "전체 Incoming Webhook",
- "analytics.system.totalMasterDbConnections": "마스터 DB 연결",
- "analytics.system.totalOutgoingWebhooks": "전체 Outgoing Webhook",
- "analytics.system.totalPosts": "전체 글",
- "analytics.system.totalReadDbConnections": "레플리카 DB 연결",
- "analytics.system.totalSessions": "전체 세션",
- "analytics.system.totalTeams": "전체 팀",
- "analytics.system.totalUsers": "전체 사용자",
- "analytics.system.totalWebsockets": "웹소켓 연결",
- "analytics.team.activeUsers": "활성 사용자 (글 작성 기준)",
- "analytics.team.newlyCreated": "Newly Created Users",
- "analytics.team.noTeams": "There are no teams on this server for which to view statistics.",
- "analytics.team.privateGroups": "비공개 채널",
- "analytics.team.publicChannels": "공개 채널",
- "analytics.team.recentActive": "Recent Active Users",
- "analytics.team.recentUsers": "Recent Active Users",
- "analytics.team.title": "{team} 팀 통계",
- "analytics.team.totalPosts": "전체 글",
- "analytics.team.totalUsers": "전체 사용자",
- "api.channel.add_member.added": "{addedUsername} added to the channel by {username}",
- "api.channel.delete_channel.archived": "{username} has archived the channel.",
- "api.channel.join_channel.post_and_forget": "{username} has joined the channel.",
- "api.channel.leave.left": "{username} has left the channel.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} updated the channel display name from: {old} to: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} removed the channel header (was: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} updated the channel header from: {old} to: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} updated the channel header to: {new}",
- "api.channel.remove_member.removed": "{removedUsername} was removed from the channel",
- "app.channel.post_update_channel_purpose_message.removed": "{username} removed the channel purpose (was: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} updated the channel purpose from: {old} to: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} updated the channel purpose to: {new}",
- "audit_table.accountActive": "Account activated",
- "audit_table.accountInactive": "Account deactivated",
- "audit_table.action": "활동",
- "audit_table.attemptedAllowOAuthAccess": "Attempted to allow a new OAuth service access",
- "audit_table.attemptedLicenseAdd": "Attempted to add new license",
- "audit_table.attemptedLogin": "Attempted to login",
- "audit_table.attemptedOAuthToken": "Attempted to get an OAuth access token",
- "audit_table.attemptedPassword": "Attempted to change password",
- "audit_table.attemptedRegisterApp": "Attempted to register a new OAuth Application with ID {id}",
- "audit_table.attemptedReset": "Attempted to reset password",
- "audit_table.attemptedWebhookCreate": "Attempted to create a webhook",
- "audit_table.attemptedWebhookDelete": "Attempted to delete a webhook",
- "audit_table.by": " by {username}",
- "audit_table.byAdmin": " by an admin",
- "audit_table.channelCreated": "Created the {channelName} channel/group",
- "audit_table.channelDeleted": "Deleted the channel/group with the URL {url}",
- "audit_table.establishedDM": "Established a direct message channel with {username}",
- "audit_table.failedExpiredLicenseAdd": "Failed to add a new license as it has either expired or not yet been started",
- "audit_table.failedInvalidLicenseAdd": "Failed to add an invalid license",
- "audit_table.failedLogin": "실패한 로그인 시도",
- "audit_table.failedOAuthAccess": "Failed to allow a new OAuth service access - the redirect URI did not match the previously registered callback",
- "audit_table.failedPassword": "Failed to change password - tried to update user password who was logged in through oauth",
- "audit_table.failedWebhookCreate": "Failed to create a webhook - bad channel permissions",
- "audit_table.failedWebhookDelete": "Failed to delete a webhook - inappropriate conditions",
- "audit_table.headerUpdated": "Updated the {channelName} channel/group header",
- "audit_table.ip": "IP 주소",
- "audit_table.licenseRemoved": "Successfully removed a license",
- "audit_table.loginAttempt": " (Login attempt)",
- "audit_table.loginFailure": " (Login failure)",
- "audit_table.logout": "Logged out of your account",
- "audit_table.member": "회원",
- "audit_table.nameUpdated": "Updated the {channelName} channel/group name",
- "audit_table.oauthTokenFailed": "Failed to get an OAuth access token - {token}",
- "audit_table.revokedAll": "Revoked all current sessions for the team",
- "audit_table.sentEmail": "Sent an email to {email} to reset your password",
- "audit_table.session": "세션 ID",
- "audit_table.sessionRevoked": "The session with id {sessionId} was revoked",
- "audit_table.successfullLicenseAdd": "Successfully added new license",
- "audit_table.successfullLogin": "Successfully logged in",
- "audit_table.successfullOAuthAccess": "Successfully gave a new OAuth service access",
- "audit_table.successfullOAuthToken": "Successfully added a new OAuth service",
- "audit_table.successfullPassword": "Successfully changed password",
- "audit_table.successfullReset": "Successfully reset password",
- "audit_table.successfullWebhookCreate": "Successfully created a webhook",
- "audit_table.successfullWebhookDelete": "Successfully deleted a webhook",
- "audit_table.timestamp": "타임스탬프",
- "audit_table.updateGeneral": "Updated the general settings of your account",
- "audit_table.updateGlobalNotifications": "Updated your global notification settings",
- "audit_table.updatePicture": "Updated your profile picture",
- "audit_table.updatedRol": "Updated user role(s) to ",
- "audit_table.userAdded": "Added {username} to the {channelName} channel/group",
- "audit_table.userId": "사용자 ID",
- "audit_table.userRemoved": "Removed {username} to the {channelName} channel/group",
- "audit_table.verified": "Sucessfully verified your email address",
- "authorize.access": "Allow {appName} access?",
- "authorize.allow": "허용하기",
- "authorize.app": "The app {appName} would like the ability to access and modify your basic information.",
- "authorize.deny": "차단하기",
- "authorize.title": "{appName} would like to connect to your Mattermost user account",
- "backstage_list.search": "검색",
- "backstage_navbar.backToMattermost": "{siteName}(으)로 돌아가기",
- "backstage_sidebar.emoji": "커스텀 이모티콘",
- "backstage_sidebar.integrations": "통합 기능",
- "backstage_sidebar.integrations.commands": "슬래시 명령어",
- "backstage_sidebar.integrations.incoming_webhooks": "Incoming Webhook",
- "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 애플리케이션",
- "backstage_sidebar.integrations.outgoing_webhooks": "Outgoing Webhook",
- "calling_screen": "Calling",
- "center_panel.recent": "Click here to jump to recent messages. ",
- "change_url.close": "닫기",
- "change_url.endWithLetter": "Must end with a letter or number",
- "change_url.invalidUrl": "잘못된 URL",
- "change_url.longer": "URL must be two or more characters.",
- "change_url.noUnderscore": "Can not contain two underscores in a row.",
- "change_url.startWithLetter": "Must start with a letter or number",
- "change_url.urlLabel": "Channel URL",
- "channelHeader.addToFavorites": "즐겨찾기에 추가",
- "channelHeader.removeFromFavorites": "즐겨찾기에서 제거",
- "channel_flow.alreadyExist": "이미 존재하는 채널 URL입니다.",
- "channel_flow.changeUrlDescription": "일부 URL로 사용할 수 없는 문자들은 제거될 수 있습니다.",
- "channel_flow.changeUrlTitle": "Change Channel URL",
- "channel_flow.create": "채널 만들기",
- "channel_flow.handleTooShort": "Channel URL must be 2 or more lowercase alphanumeric characters",
- "channel_flow.invalidName": "잘못된 채널 이름",
- "channel_flow.set_url_title": "Set Channel URL",
- "channel_header.addChannelHeader": "Add a channel description",
- "channel_header.addMembers": "회원 추가",
- "channel_header.addToFavorites": "즐겨찾기에 추가",
- "channel_header.channelHeader": "채널 헤더 설정",
- "channel_header.channelMembers": "회원",
- "channel_header.delete": "채널 삭제",
- "channel_header.flagged": "중요 메시지",
- "channel_header.leave": "채널 떠나기",
- "channel_header.manageMembers": "회원 관리",
- "channel_header.notificationPreferences": "알림 설정",
- "channel_header.pinnedPosts": "Pinned Posts",
- "channel_header.recentMentions": "최근 멘션",
- "channel_header.removeFromFavorites": "즐겨찾기에서 제거",
- "channel_header.rename": "채널 이름 변경",
- "channel_header.setHeader": "채널 헤더 설정",
- "channel_header.setPurpose": "Edit Channel Purpose",
- "channel_header.viewInfo": "정보 보기",
- "channel_header.viewMembers": "회원 보기",
- "channel_header.webrtc.call": "영상 통화 시작하기",
- "channel_header.webrtc.offline": "사용자가 오프라인입니다",
- "channel_header.webrtc.unavailable": "New call unavailable until your existing call ends",
- "channel_info.about": "정보",
- "channel_info.close": "닫기",
- "channel_info.header": "헤더:",
- "channel_info.id": "ID: ",
- "channel_info.name": "이름:",
- "channel_info.notFound": "채널을 찾을 수 없습니다.",
- "channel_info.purpose": "설명:",
- "channel_info.url": "URL:",
- "channel_invite.add": " 추가",
- "channel_invite.addNewMembers": "새로운 회원 추가하기 ",
- "channel_invite.close": "닫기",
- "channel_loader.connection_error": "There appears to be a problem with your internet connection.",
- "channel_loader.posted": "Posted",
- "channel_loader.postedImage": " uploaded an image",
- "channel_loader.socketError": "Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.",
- "channel_loader.someone": "Someone",
- "channel_loader.something": " did something new",
- "channel_loader.unknown_error": "We received an unexpected status code from the server.",
- "channel_loader.uploadedFile": " uploaded a file",
- "channel_loader.uploadedImage": " uploaded an image",
- "channel_loader.wrote": " wrote: ",
- "channel_members_dropdown.channel_admin": "Channel Admin",
- "channel_members_dropdown.channel_member": "채널 회원",
- "channel_members_dropdown.make_channel_admin": "Make Channel Admin",
- "channel_members_dropdown.make_channel_member": "Make Channel Member",
- "channel_members_dropdown.remove_from_channel": "Remove From Channel",
- "channel_members_dropdown.remove_member": "Remove Member",
- "channel_members_modal.addNew": " 새로운 회원 추가",
- "channel_members_modal.members": " 회원",
- "channel_modal.cancel": "취소",
- "channel_modal.createNew": "새로 만들기",
- "channel_modal.descriptionHelp": "이 채널은 이렇게 사용되어야 합니다.",
- "channel_modal.displayNameError": "Channel name must be 2 or more characters",
- "channel_modal.edit": "편집",
- "channel_modal.header": "헤더",
- "channel_modal.headerEx": "E.g.: \"[Link Title](http://example.com)\"",
- "channel_modal.headerHelp": "채널 이름 옆에있는 채널의 헤더에 표시될 텍스트를 입력하십시오. 예를 들면, 다음과 같이 자주 사용되는 링크 [링크 제목] (http://example.com)를 등록할수 있습니다.",
- "channel_modal.modalTitle": "새 채널",
- "channel_modal.name": "이름",
- "channel_modal.nameEx": "예시: \"버그\", \"마케팅\", \"고객지원\"",
- "channel_modal.optional": "(선택사항)",
- "channel_modal.privateGroup1": "일부 회원만 접근할 수 있는 비공개 그룹을 만듭니다. ",
- "channel_modal.privateGroup2": "공개 채널 만들기",
- "channel_modal.publicChannel1": "공개 채널 만들기",
- "channel_modal.publicChannel2": "누구나 참여할 수 있는 새 공개 채널을 만듭니다. ",
- "channel_modal.purpose": "설명",
- "channel_modal.purposeEx": "E.g.: \"A channel to file bugs and improvements\"",
- "channel_notifications.allActivity": "모든 활동",
- "channel_notifications.allUnread": "모든 읽지않은 메시지",
- "channel_notifications.globalDefault": "전역 기본 설정 ({notifyLevel})",
- "channel_notifications.markUnread": "읽지 않은 채널 표시",
- "channel_notifications.never": "알림 사용 안함",
- "channel_notifications.onlyMentions": "멘션만",
- "channel_notifications.override": "\"전역 기본 설정\" 외 다른 옵션을 선택하면 전역으로 설정한 알림 설정이 무시됩니다. 데스크탑 알림은 Firefox, Safari, Chrome에서 사용 가능합니다.",
- "channel_notifications.overridePush": "Selecting an option other than \"Global default\" will override the global notification settings for mobile push notifications in account settings. Push notifications must be enabled by the System Admin.",
- "channel_notifications.preferences": "채널 알림 설정: ",
- "channel_notifications.push": "알림 받기",
- "channel_notifications.sendDesktop": "데스크탑 알림 받기",
- "channel_notifications.unreadInfo": "읽지 않은 채널은 사이드바에서 굵은 글씨로 표시됩니다. \"멘션만\"을 선택하면 내가 멘션된 채널만 굵게 표시됩니다.",
- "channel_select.placeholder": "--- 채널을 선택하세요 ---",
- "channel_switch_modal.dm": "(개인 메시지)",
- "channel_switch_modal.failed_to_open": "Failed to open channel.",
- "channel_switch_modal.not_found": "일치하는 채널이 없습니다.",
- "channel_switch_modal.submit": "변경",
- "channel_switch_modal.title": "채널 변경",
- "claim.account.noEmail": "No email specified",
- "claim.email_to_ldap.enterLdapPwd": "Enter the ID and password for your LDAP account",
- "claim.email_to_ldap.enterPwd": "Enter the password for your {site} email account",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "AD/LDAP ID를 입력하세요.",
- "claim.email_to_ldap.ldapPasswordError": "LDAP 패스워드를 입력하세요.",
- "claim.email_to_ldap.ldapPwd": "LDAP 패스워드",
- "claim.email_to_ldap.pwd": "패스워드",
- "claim.email_to_ldap.pwdError": "패스워드를 입력하세요.",
- "claim.email_to_ldap.ssoNote": "You must already have a valid LDAP account",
- "claim.email_to_ldap.ssoType": "Upon claiming your account, you will only be able to login with LDAP",
- "claim.email_to_ldap.switchTo": "LDAP 계정으로 변경",
- "claim.email_to_ldap.title": "이메일/패스워드 계정을 LDAP 계정으로 변경",
- "claim.email_to_oauth.enterPwd": "Enter the password for your {site} account",
- "claim.email_to_oauth.pwd": "패스워드",
- "claim.email_to_oauth.pwdError": "패스워드를 입력하세요.",
- "claim.email_to_oauth.ssoNote": "You must already have a valid {type} account",
- "claim.email_to_oauth.ssoType": "Upon claiming your account, you will only be able to login with {type} SSO",
- "claim.email_to_oauth.switchTo": "Switch account to {uiType}",
- "claim.email_to_oauth.title": "이메일/패스워드 계정을 {uiType} 계정으로 변경",
- "claim.ldap_to_email.confirm": "패스워드 확인",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "LDAP 패스워드를 입력하세요.",
- "claim.ldap_to_email.ldapPwd": "LDAP 패스워드",
- "claim.ldap_to_email.pwd": "패스워드",
- "claim.ldap_to_email.pwdError": "패스워드를 입력하세요.",
- "claim.ldap_to_email.pwdNotMatch": "패스워드가 일치하지 않습니다.",
- "claim.ldap_to_email.switchTo": "Switch account to email/password",
- "claim.ldap_to_email.title": "Switch LDAP Account to Email/Password",
- "claim.oauth_to_email.confirm": "패스워드 확인",
- "claim.oauth_to_email.description": "Upon changing your account type, you will only be able to login with your email and password.",
- "claim.oauth_to_email.enterNewPwd": "Enter a new password for your {site} email account",
- "claim.oauth_to_email.enterPwd": "패스워드를 입력하세요.",
- "claim.oauth_to_email.newPwd": "새로운 패스워드",
- "claim.oauth_to_email.pwdNotMatch": "패스워드가 일치하지 않습니다.",
- "claim.oauth_to_email.switchTo": "Switch {type} to email and password",
- "claim.oauth_to_email.title": "Switch {type} Account to Email",
- "confirm_modal.cancel": "취소",
- "connecting_screen": "연결",
- "create_comment.addComment": "답글 달기...",
- "create_comment.comment": "답글 달기",
- "create_comment.commentLength": "답글의 길이는 {max}글자를 초과할 수 없습니다.",
- "create_comment.commentTitle": "답글",
- "create_comment.file": "파일 업로드 중",
- "create_comment.files": "파일 업로드 중",
- "create_post.comment": "답글",
- "create_post.error_message": "Your message is too long. Character count: {length}/{limit}",
- "create_post.post": "글",
- "create_post.shortcutsNotSupported": "Keyboard shortcuts are not supported on your device.",
- "create_post.tutorialTip": "
메시지 보내기
보내고 싶은 메시지를 작성하고 Enter키를 눌러 보내세요.
첨부 버튼을 눌러 이미지나 파일을 업로드하세요.
",
- "create_post.write": "메시지를 입력하세요...",
- "create_team.agreement": "계정을 만들고 {siteName}을 (를) 사용하면 서비스 이용 약관 및 개인 정보 취급 방침 에 동의하게됩니다. 동의하지 않으면 {siteName}을 (를) 사용할 수 없습니다.",
- "create_team.display_name.charLength": "Name must be {min} or more characters up to a maximum of {max}. You can add a longer team description later.",
- "create_team.display_name.nameHelp": "팀 이름을 자유롭게 입력하세요. 설정한 팀 이름은 메뉴와 상단의 헤더에 표시됩니다.",
- "create_team.display_name.next": "다음",
- "create_team.display_name.required": "필수 항목입니다.",
- "create_team.display_name.teamName": "팀 이름",
- "create_team.team_url.back": "이전 단계로 돌아가기",
- "create_team.team_url.charLength": "이름은 최소 {min} 이상 최대 {max} 자까지 입니다.",
- "create_team.team_url.creatingTeam": "팀 생성 중...",
- "create_team.team_url.finish": "완료",
- "create_team.team_url.hint": "
Short and memorable is best
Use lowercase letters, numbers and dashes
Must start with a letter and can't end in a dash
",
- "create_team.team_url.regex": "Use only lower case letters, numbers and dashes. Must start with a letter and can't end in a dash.",
- "create_team.team_url.required": "필수 항목입니다.",
- "create_team.team_url.taken": "This URL starts with a reserved word or is unavailable. Please try another.",
- "create_team.team_url.teamUrl": "팀 URL",
- "create_team.team_url.unavailable": "This URL is unavailable. Please try another.",
- "create_team.team_url.webAddress": "팀의 웹 주소:",
- "custom_emoji.empty": "커스텀 이모티콘이 없습니다.",
- "custom_emoji.header": "커스텀 이모티콘",
- "custom_emoji.search": "커스텀 이모티콘 검색",
- "deactivate_member_modal.cancel": "취소",
- "deactivate_member_modal.deactivate": "Deactivate",
- "deactivate_member_modal.desc": "This action deactivates {username}. They will be logged out and not have access to any teams or channels on this system. Are you sure you want to deactivate {username}?",
- "deactivate_member_modal.title": "Deactivate {username}",
- "default_channel.purpose": "Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.",
- "delete_channel.cancel": "취소",
- "delete_channel.confirm": "채널 삭제 확인",
- "delete_channel.del": "삭제",
- "delete_channel.question": "이렇게하면 팀에서 채널이 삭제되고 모든 사용자가 해당 채널의 내용에 액세스 할 수 없게됩니다. 정말 {display_name} 채널을 삭제 하시겠습니까?",
- "delete_post.cancel": "취소",
- "delete_post.comment": "답글",
- "delete_post.confirm": "{term} 삭제 확인",
- "delete_post.del": "삭제",
- "delete_post.post": "글",
- "delete_post.question": "정말 {term}을 삭제하시겠습니까?",
- "delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
- "edit_channel_header.editHeader": "Edit the Channel Header...",
- "edit_channel_header.previewHeader": "헤더 편집",
- "edit_channel_header_modal.cancel": "취소",
- "edit_channel_header_modal.description": "상단 채널 이름 옆에 표시될 글자를 편집하세요.",
- "edit_channel_header_modal.error": "채널 헤더가 너무 깁니다. 더 짧은 헤더를 사용하세요.",
- "edit_channel_header_modal.save": "저장",
- "edit_channel_header_modal.title": "{channel}의 헤더 편집",
- "edit_channel_header_modal.title_dm": "헤더 편집",
- "edit_channel_private_purpose_modal.body": "This text appears in the \"View Info\" modal of the private channel.",
- "edit_channel_purpose_modal.body": "이 채널을 어떻게 사용해야하는지 설명하십시오. 이 텍스트는 채널 목록의 '더보기 ...' 메뉴에 표시되며 다른 사용자가 가입할지 여부를 결정하는 데 도움이됩니다.",
- "edit_channel_purpose_modal.cancel": "취소",
- "edit_channel_purpose_modal.error": "채널 설명이 너무 깁니다. 더 짧은 채널 설명을 사용하세요.",
- "edit_channel_purpose_modal.save": "저장",
- "edit_channel_purpose_modal.title1": "설명 편집",
- "edit_channel_purpose_modal.title2": "설명 편집: ",
- "edit_command.save": "Update",
- "edit_post.cancel": "취소",
- "edit_post.edit": "{title} 편집",
- "edit_post.editPost": "글 편집하기...",
- "edit_post.save": "저장",
- "email_signup.address": "이메일 주소",
- "email_signup.createTeam": "팀 만들기",
- "email_signup.emailError": "유효한 이메일 주소를 입력하세요.",
- "email_signup.find": "나의 팀 찾기",
- "email_verify.almost": "{siteName}: 거의 완료되었습니다.",
- "email_verify.failed": " 검증메일 발송을 실패했습니다.",
- "email_verify.notVerifiedBody": "Please verify your email address. Check your inbox for an email.",
- "email_verify.resend": "다시 보내기",
- "email_verify.sent": " 검증 메일을 보냈습니다.",
- "email_verify.verified": "{siteName} 이메일 검증됨",
- "email_verify.verifiedBody": "
",
- "email_verify.verifyFailed": "이메일 검증을 실패했습니다.",
- "emoji_list.actions": "액션",
- "emoji_list.add": "이모티콘 추가",
- "emoji_list.creator": "만든 사람",
- "emoji_list.delete": "삭제",
- "emoji_list.delete.confirm.button": "삭제",
- "emoji_list.delete.confirm.msg": "This action permanently deletes the custom emoji. Are you sure you want to delete it?",
- "emoji_list.delete.confirm.title": "Delete Custom Emoji",
- "emoji_list.empty": "커스텀 이모티콘이 없습니다.",
- "emoji_list.header": "커스텀 이모티콘",
- "emoji_list.help": "커스텀 이모티콘은 서버의 모두가 사용할 수 있습니다. 메시지 창에 ':'를 입력하여 이모티콘 선택 메뉴를 활성화 할 수 있습니다. 새로운 이모티콘을 등록하면 다른 사용자들은 사용하기 위해 페이지를 새로고침 해야할 수 있습니다.",
- "emoji_list.help2": "팁: 첫 글자로 #, ##, ### 를 입력하면 이모티콘을 더 크게 새로운 행에서 사용할 수 있습니다. '# :smile:'로 메시지를 보내 확인해보세요.",
- "emoji_list.image": "이미지",
- "emoji_list.name": "이름",
- "emoji_list.search": "커스텀 이모티콘 검색",
- "emoji_list.somebody": "다른 팀의 사용자",
- "emoji_picker.activity": "Activity",
- "emoji_picker.custom": "Custom",
- "emoji_picker.emojiPicker": "Emoji Picker",
- "emoji_picker.flags": "중요 지정",
- "emoji_picker.foods": "Foods",
- "emoji_picker.nature": "Nature",
- "emoji_picker.objects": "Objects",
- "emoji_picker.people": "People",
- "emoji_picker.places": "Places",
- "emoji_picker.recent": "Recently Used",
- "emoji_picker.search": "검색",
- "emoji_picker.symbols": "Symbols",
- "error.local_storage.help1": "Enable cookies",
- "error.local_storage.help2": "Turn off private browsing",
- "error.local_storage.help3": "Use a supported browser (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost was unable to load because a setting in your browser prevents the use of its local storage features. To allow Mattermost to load, try the following actions:",
- "error.not_found.link_message": "Mattermost(으)로 돌아가기",
- "error.not_found.message": "The page you were trying to reach does not exist",
- "error.not_found.title": "페이지를 찾을 수 없습니다.",
- "error_bar.expired": "Enterprise license is expired and some features may be disabled. Please renew.",
- "error_bar.expiring": "Enterprise license expires on {date}. Please renew.",
- "error_bar.past_grace": "Enterprise license is expired and some features may be disabled. Please contact your System Administrator for details.",
- "error_bar.preview_mode": "미리보기 모드: 이메일 알림이 설정되지 않았습니다.",
- "error_bar.site_url": "Please configure your {docsLink} in the {link}.",
- "error_bar.site_url.docsLink": "사이트 URL:",
- "error_bar.site_url.link": "관리자 도구",
- "error_bar.site_url_gitlab": "Please configure your {docsLink} in the System Console or in gitlab.rb if you're using GitLab Mattermost.",
- "file_attachment.download": "다운로드",
- "file_info_preview.size": "용량 ",
- "file_info_preview.type": "파일 형식 ",
- "file_upload.disabled": "File attachments are disabled.",
- "file_upload.fileAbove": "File above {max}MB cannot be uploaded: {filename}",
- "file_upload.filesAbove": "Files above {max}MB cannot be uploaded: {filenames}",
- "file_upload.limited": "업로드는 {count, number} 개의 파일로 제한됩니다. 더 많은 파일을 보려면 추가 게시물을 사용하십시오.",
- "file_upload.pasted": "Image Pasted at ",
- "filtered_channels_list.search": "Search channels",
- "filtered_user_list.any_team": "모든 사용자",
- "filtered_user_list.count": "{count, number} {count, plural, one {member} other {members}}",
- "filtered_user_list.countTotal": "{startCount, number} - {endCount, number} {count, plural, =0 {0 members} one {member} other {members}} of {total} total",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 members} one {member} other {members}} of {total} total",
- "filtered_user_list.member": "회원",
- "filtered_user_list.next": "다음",
- "filtered_user_list.prev": "Previous",
- "filtered_user_list.search": "Search users",
- "filtered_user_list.searchButton": "검색",
- "filtered_user_list.show": "필터:",
- "filtered_user_list.team_only": "팀의 회원",
- "find_team.email": "이메일",
- "find_team.findDescription": "An email was sent with links to any teams to which you are a member.",
- "find_team.findTitle": "팀 찾기",
- "find_team.getLinks": "Get an email with links to any teams to which you are a member.",
- "find_team.placeholder": "you@domain.com",
- "find_team.send": "보내기",
- "find_team.submitError": "유효한 이메일 주소를 입력하세요.",
- "flag_post.flag": "중요 메시지로 지정",
- "flag_post.unflag": "중요 메시지 해제",
- "general_tab.chooseDescription": "사용자명을 선택하세요.",
- "general_tab.codeDesc": "가입 링크를 변경하려면 '편집'을 클릭하세요.",
- "general_tab.codeLongDesc": "초대 코드는 메인 메뉴의 {getTeamInviteLink}에서 만든 팀 초대 링크의 URL 일부로 사용됩니다. 재생성하면 새 팀 초대 링크가 만들어지고 이전 링크가 무효화됩니다.",
- "general_tab.codeTitle": "가입 링크",
- "general_tab.emptyDescription": "Click 'Edit' to add a team description.",
- "general_tab.getTeamInviteLink": "가입 링크",
- "general_tab.includeDirDesc": "Including this team will display the team name from the Team Directory section of the Home Page, and provide a link to the sign-in page.",
- "general_tab.no": "아니요",
- "general_tab.openInviteDesc": "When allowed, a link to this team will be included on the landing page allowing anyone with an account to join this team.",
- "general_tab.openInviteTitle": "계정이 있는 사용자가 이 팀에 가입하는 것을 허용합니까?",
- "general_tab.regenerate": "재성성",
- "general_tab.required": "필수 항목입니다.",
- "general_tab.teamDescription": "Team Description",
- "general_tab.teamDescriptionInfo": "Team description provides additional information to help users select the right team. Maximum of 50 characters.",
- "general_tab.teamName": "팀 이름",
- "general_tab.teamNameInfo": "설정한 팀 이름은 로그인 화면과 왼쪽 사이드바 상단에 표시됩니다.",
- "general_tab.title": "일반 설정",
- "general_tab.yes": "네",
- "get_app.alreadyHaveIt": "Already have it?",
- "get_app.androidAppName": "Mattermost for Android",
- "get_app.androidHeader": "Mattermost works best if you switch to our Android app",
- "get_app.continue": "계속하기",
- "get_app.continueWithBrowser": "Or {link}",
- "get_app.continueWithBrowserLink": "브라우저로 계속하기",
- "get_app.iosHeader": "Mattermost works best if you switch to our iPhone app",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Mattermost 열기",
- "get_link.clipboard": " Link copied",
- "get_link.close": "닫기",
- "get_link.copy": "링크 복사",
- "get_post_link_modal.help": "아래 링크를 통해 허용된 사용자가 내 글을 볼 수 있습니다.",
- "get_post_link_modal.title": "바로가기 링크 복사",
- "get_public_link_modal.help": "The link below allows anyone to see this file without being registered on this server.",
- "get_public_link_modal.title": "공개 링크 보기",
- "get_team_invite_link_modal.help": "아래 링크를 통해 팀에 가입할 수 있습니다. 가입 링크는 여러 사람들에게 공유될 수 있고, 팀 관리자에 의해 변경될 수 있습니다.",
- "get_team_invite_link_modal.helpDisabled": "팀의 신규 사용자 가입이 비활성화 되어있습니다. 팀 관리자에게 문의하세요.",
- "get_team_invite_link_modal.title": "가입 링크",
- "help.attaching.downloading": "#### Downloading Files\nDownload an attached file by clicking the download icon next to the file thumbnail or by opening the file previewer and clicking **Download**.",
- "help.attaching.dragdrop": "#### Drag and Drop\nUpload a file or selection of files by dragging the files from your computer into the RHS or center pane. Dragging and dropping attaches the files to the message input box, then you can optionally type a message and press **ENTER** to post.",
- "help.attaching.icon": "#### Attachment Icon\nAlternatively, upload files by clicking the grey paperclip icon inside the message input box. This opens up your system file viewer where you can navigate to the desired files and then click **Open** to upload the files to the message input box. Optionally type a message and then press **ENTER** to post.",
- "help.attaching.limitations": "## File Size Limitations\nMattermost supports a maximum of five attached files per post, each with a maximum file size of 50Mb.",
- "help.attaching.methods": "## Attachment Methods\nAttach a file by drag and drop or by clicking the attachment icon in the message input box.",
- "help.attaching.notSupported": "Document preview (Word, Excel, PPT) is not yet supported.",
- "help.attaching.pasting": "#### Pasting Images\nOn Chrome and Edge browsers, it is also possible to upload files by pasting them from the clipboard. This is not yet supported on other browsers.",
- "help.attaching.previewer": "## File Previewer\nMattermost has a built in file previewer that is used to view media, download files and share public links. Click the thumbnail of an attached file to open it in the file previewer.",
- "help.attaching.publicLinks": "#### Sharing Public Links\nPublic links allow you to share file attachments with people outside your Mattermost team. Open the file previewer by clicking on the thumbnail of an attachment, then click **Get Public Link**. This opens a dialog box with a link to copy. When the link is shared and opened by another user, the file will automatically download.",
- "help.attaching.publicLinks2": "If **Get Public Link** is not visible in the file previewer and you prefer the feature enabled, you can request that your System Admin enable the feature from the System Console under **Security** > **Public Links**.",
- "help.attaching.supported": "#### Supported Media Types\nIf you are trying to preview a media type that is not supported, the file previewer will open a standard media attachment icon. Supported media formats depend heavily on your browser and operating system, but the following formats are supported by Mattermost on most browsers:",
- "help.attaching.supportedList": "- Images: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Documents: PDF",
- "help.attaching.title": "# 파일 첨부하기\n_____",
- "help.commands.builtin": "## Built-in Commands\nThe following slash commands are available on all Mattermost installations:",
- "help.commands.builtin2": "Begin by typing `/` and a list of slash command options appears above the text input box. The autocomplete suggestions help by providing a format example in black text and a short description of the slash command in grey text.",
- "help.commands.custom": "## Custom Commands\nCustom slash commands integrate with external applications. For example, a team might configure a custom slash command to check internal health records with `/patient joe smith` or check the weekly weather forcast in a city with `/weather toronto week`. Check with your System Admin or open the autocomplete list by typing `/` to determine if your team configured any custom slash commands.",
- "help.commands.custom2": "Custom slash commands are disabled by default and can be enabled by the System Admin in the **System Console** > **Integrations** > **Webhooks and Commands**. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Slash commands perform operations in Mattermost by typing into the text input box. Enter a `/` followed by a command and some arguments to perform actions.\n\nBuilt-in slash commands come with all Mattermost installations and custom slash commands are configurable to interact with external applications. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# 명령어 실행하기\n___",
- "help.composing.deleting": "## Deleting a message\nDelete a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Delete**. System and Team Admins can delete any message on their system or team.",
- "help.composing.editing": "## Editing a Message\nEdit a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Edit**. After making modifications to the message text, press **ENTER** to save the modifications. Message edits do not trigger new @mention notifications, desktop notifications or notification sounds.",
- "help.composing.linking": "## Linking to a message\nThe **Permalink** feature creates a link to any message. Sharing this link with other users in the channel lets them view the linked message in the Message Archives. Users who are not a member of the channel where the message was posted cannot view the permalink. Get the permalink to any message by clicking the **[...]** icon next to the message text > **Permalink** > **Copy Link**.",
- "help.composing.posting": "## Posting a Message\nWrite a message by typing into the text input box, then press **ENTER** to send it. Use **Shift + ENTER** to create a new line without sending a message. To send messages by pressing **CTRL+ENTER** go to **Main Menu > Account Settings > Send messages on CTRL + ENTER**.",
- "help.composing.posts": "#### Posts\nPosts can be considered parent messages. They are the messages that often start a thread of replies. Posts are composed and sent from the text input box at the bottom of the center pane.",
- "help.composing.replies": "#### Replies\nReply to a message by clicking the reply icon next to any message text. This action opens the right-hand-side (RHS) where you can see the message thread, then compose and send your reply. Replies are indented slightly in the center pane to indicate that they are child messages of a parent post.\n\nWhen composing a reply in the right-hand side, click the expand/collapse icon with two arrows at the top of the sidebar to make things easier to read.",
- "help.composing.title": "# 메시지 보내기\n_____",
- "help.composing.types": "## Message Types\nReply to posts to keep conversations organized in threads.",
- "help.formatting.checklist": "Make a task list by including square brackets:",
- "help.formatting.checklistExample": "- [ ] Item one\n- [ ] Item two\n- [x] Completed item",
- "help.formatting.code": "## Code Block\n\nCreate a code block by indenting each line by four spaces, or by placing ``` on the line above and below your code.",
- "help.formatting.codeBlock": "code block",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nOpen the emoji autocomplete by typing `:`. A full list of emojis can be found [here](http://www.emoji-cheat-sheet.com/). It is also possible to create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html) if the emoji you want to use doesn't exist.",
- "help.formatting.example": "예시:",
- "help.formatting.githubTheme": "**GitHub Theme**",
- "help.formatting.headings": "## Headings\n\nMake a heading by typing # and a space before your title. For smaller headings, use more #’s.",
- "help.formatting.headings2": "Alternatively, you can underline the text using `===` or `---` to create headings.",
- "help.formatting.headings2Example": "Large Heading\n-------------",
- "help.formatting.headingsExample": "## Large Heading\n### Smaller Heading\n#### Even Smaller Heading",
- "help.formatting.images": "## In-line Images\n\nCreate in-line images using an `!` followed by the alt text in square brackets and the link in normal brackets. Add hover text by placing it in quotes after the link.",
- "help.formatting.imagesExample": "\n\nand\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## In-line Code\n\nCreate in-line monospaced font by surrounding it with backticks.",
- "help.formatting.intro": "Markdown makes it easy to format messages. Type a message as you normally would, and use these rules to render it with special formatting.",
- "help.formatting.lines": "## Lines\n\nCreate a line by using three `*`, `_`, or `-`.",
- "help.formatting.linkEx": "[Check out Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Links\n\nCreate labeled links by putting the desired text in square brackets and the associated link in normal brackets.",
- "help.formatting.listExample": "* list item one\n* list item two\n * item two sub-point",
- "help.formatting.lists": "## Lists\n\nCreate a list by using `*` or `-` as bullets. Indent a bullet point by adding two spaces in front of it.",
- "help.formatting.monokaiTheme": "**Monokai Theme**",
- "help.formatting.ordered": "Make it an ordered list by using numbers instead:",
- "help.formatting.orderedExample": "1. Item one\n2. Item two",
- "help.formatting.quotes": "## Block quotes\n\nCreate block quotes using `>`.",
- "help.formatting.quotesExample": "`> block quotes` renders as:",
- "help.formatting.quotesRender": "> block quotes",
- "help.formatting.renders": "Renders as:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark Theme**",
- "help.formatting.solirizedLightTheme": "**Solarized Light Theme**",
- "help.formatting.style": "## Text Style\n\nYou can use either `_` or `*` around a word to make it italic. Use two to make it bold.\n\n* `_italics_` renders as _italics_\n* `**bold**` renders as **bold**\n* `**_bold-italic_**` renders as **_bold-italics_**\n* `~~strikethrough~~` renders as ~~strikethrough~~",
- "help.formatting.supportedSyntax": "Supported languages are:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Syntax Highlighting\n\nTo add syntax highlighting, type the language to be highlighted after the ``` at the beginning of the code block. Mattermost also offers four different code themes (GitHub, Solarized Dark, Solarized Light, Monokai) that can be changed in **Account Settings** > **Display** > **Theme** > **Custom Theme** > **Center Channel Styles**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| 왼쪽 정렬 | 가운데 정렬 | 오른쪽 정렬 |\n| :------------ |:---------------:| -----:|\n| Left column 1 | this text | $100 |\n| Left column 2 | is | $10 |\n| Left column 3 | centered | $1 |",
- "help.formatting.tables": "## Tables\n\nCreate a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.",
- "help.formatting.title": "# Formatting Text\n_____",
- "help.learnMore": "더 자세히 알아보기:",
- "help.link.attaching": "파일 첨부하기",
- "help.link.commands": "명령어 실행하기",
- "help.link.composing": "Composing Messages and Replies",
- "help.link.formatting": "마크다운으로 글 작성하기",
- "help.link.mentioning": "Mentioning Teammates",
- "help.link.messaging": "메시지 기본 사용법",
- "help.mentioning.channel": "#### @Channel\nYou can mention an entire channel by typing `@channel`. All members of the channel will receive a mention notification that behaves the same way as if the members had been mentioned personally.",
- "help.mentioning.channelExample": "@channel great work on interviews this week. I think we found some excellent potential candidates!",
- "help.mentioning.mentions": "## @Mentions\nUse @mentions to get the attention of specific team members.",
- "help.mentioning.recent": "## Recent Mentions\nClick `@` next to the search box to query for your most recent @mentions and words that trigger mentions. Click **Jump** next to a search result in the RHS to jump the center pane to the channel and location of the message with the mention.",
- "help.mentioning.title": "# Mentioning Teammates\n_____",
- "help.mentioning.triggers": "## Words That Trigger Mentions\nIn addition to being notified by @username and @channel, you can customize words that trigger mention notifications in **Account Settings** > **Notifications** > **Words that trigger mentions**. By default, you will receive mention notifications on your first name, and you can add more words by typing them into the input box separated by commas. This is useful if you want to be notified of all posts on certain topics, for example, “interviewing” or “marketing”.",
- "help.mentioning.username": "#### @Username\nYou can mention a teammate by using the `@` symbol plus their username to send them a mention notification.\n\nType `@` to bring up a list of team members who can be mentioned. To filter the list, type the first few letters of any username, first name, last name, or nickname. The **Up** and **Down** arrow keys can then be used to scroll through entries in the list, and pressing **ENTER** will select which user to mention. Once selected, the username will automatically replace the full name or nickname.\nThe following example sends a special mention notification to **alice** that alerts her of the channel and message where she has been mentioned. If **alice** is away from Mattermost and has [email notifications](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) turned on, then she will receive an email alert of her mention along with the message text.",
- "help.mentioning.usernameCont": "If the user you mentioned does not belong to the channel, a System Message will be posted to let you know. This is a temporary message only seen by the person who triggered it. To add the mentioned user to the channel, go to the dropdown menu beside the channel name and select **Add Members**.",
- "help.mentioning.usernameExample": "@alice how did your interview go with the new candidate?",
- "help.messaging.attach": "**Attach files** by dragging and dropping into Mattermost or clicking the attachment icon in the text input box.",
- "help.messaging.emoji": "\":\"를 눌러 **이모티콘을 추가**하세요. 사용할 수 있는 이모티콘 목록이 나타나고 자동완성 됩니다. 당신이 원하는 이모티콘이 목록에 없다면, 새로운 [커스텀 이모티콘](http://docs.mattermost.com/help/settings/custom-emoji.html)을 추가하여 사용하세요.",
- "help.messaging.format": "**마크다운으로 글을 작성**하여 제목, 목록, 링크, 이모티콘, 코드, 인용문, 표, 이미지 등을 삽입할 수 있습니다.",
- "help.messaging.notify": "**팀원에게 알리기** 위해 `@username`과 같이 입력해보세요.",
- "help.messaging.reply": "**답글 쓰기:** 글 옆의 화살표 버튼을 눌러 답글을 작성할 수 있습니다.",
- "help.messaging.title": "# 메시지 도움말\n_____",
- "help.messaging.write": "**글 쓰기:** Mattermost 하단의 입력 창에 원하는 메시지를 입력하고 **ENTER**를 눌러 글을 등록하세요. **Shift+ENTER**를 눌러 등록하는 대신 줄바꿈을 할 수 있습니다.",
- "installed_command.header": "슬래시 명령어",
- "installed_commands.add": "슬래시 명령어 추가",
- "installed_commands.delete.confirm": "This action permanently deletes the slash command and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_commands.empty": "명령어가 없습니다.",
- "installed_commands.header": "슬래시 명령어",
- "installed_commands.help": "Use slash commands to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_commands.help.appDirectory": "App Directory",
- "installed_commands.help.buildYourOwn": "Build your own",
- "installed_commands.search": "슬래시 명령어 검색",
- "installed_commands.unnamed_command": "이름없는 슬래시 명령어",
- "installed_incoming_webhooks.add": "Incoming Webhook 추가하기",
- "installed_incoming_webhooks.delete.confirm": "This action permanently deletes the incoming webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_incoming_webhooks.empty": "Incoming Webhook이 없습니다.",
- "installed_incoming_webhooks.header": "Incoming Webhook",
- "installed_incoming_webhooks.help": "Use incoming webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_incoming_webhooks.help.appDirectory": "App Directory",
- "installed_incoming_webhooks.help.buildYourOwn": "Build your own",
- "installed_incoming_webhooks.search": "Incoming Webhook 검색",
- "installed_incoming_webhooks.unknown_channel": "비공개 Webhook",
- "installed_integrations.callback_urls": "콜백 URL: {urls}",
- "installed_integrations.client_id": "클라이언트 ID: {clientId}",
- "installed_integrations.client_secret": "클라이언트 시크릿: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "{creator}(이)가 {createAt, date, full}에 생성",
- "installed_integrations.delete": "삭제",
- "installed_integrations.edit": "편집",
- "installed_integrations.hideSecret": "시크릿 숨기기",
- "installed_integrations.regenSecret": "시크릿 재생성하기",
- "installed_integrations.regenToken": "토큰 재생성하기",
- "installed_integrations.showSecret": "시크릿 보기",
- "installed_integrations.token": "토큰: {token}",
- "installed_integrations.triggerWhen": "트리거 조건: {triggerWhen}",
- "installed_integrations.triggerWords": "트리거 단어: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "이름 없는 OAuth 2.0 애플리케이션",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "애플리케이션 추가하기",
- "installed_oauth_apps.callbackUrls": "콜백 URL (줄 당 하나씩)",
- "installed_oauth_apps.cancel": "취소",
- "installed_oauth_apps.delete.confirm": "This action permanently deletes the OAuth 2.0 application and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_oauth_apps.description": "설명",
- "installed_oauth_apps.empty": "OAuth 2.0 애플리케이션이 없습니다",
- "installed_oauth_apps.header": "OAuth 2.0 애플리케이션",
- "installed_oauth_apps.help": "Create {oauthApplications} to securely integrate bots and third-party apps with Mattermost. Visit the {appDirectory} to find available self-hosted apps.",
- "installed_oauth_apps.help.appDirectory": "App Directory",
- "installed_oauth_apps.help.oauthApplications": "OAuth 2.0 애플리케이션",
- "installed_oauth_apps.homepage": "홈페이지",
- "installed_oauth_apps.iconUrl": "아이콘 URL",
- "installed_oauth_apps.is_trusted": "신뢰함: {isTrusted}",
- "installed_oauth_apps.name": "표시명",
- "installed_oauth_apps.save": "저장",
- "installed_oauth_apps.search": "OAuth 2.0 애플리케이션 검색",
- "installed_oauth_apps.trusted": "신뢰함",
- "installed_oauth_apps.trusted.no": "아니요",
- "installed_oauth_apps.trusted.yes": "네",
- "installed_outgoing_webhooks.add": "Outgoing Webhook 추가하기",
- "installed_outgoing_webhooks.delete.confirm": "This action permanently deletes the outgoing webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_outgoing_webhooks.empty": "Outgoing Webhook이 없습니다.",
- "installed_outgoing_webhooks.header": "Outgoing Webhook",
- "installed_outgoing_webhooks.help": "Use outgoing webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_outgoing_webhooks.help.appDirectory": "App Directory",
- "installed_outgoing_webhooks.help.buildYourOwn": "Build your own",
- "installed_outgoing_webhooks.search": "Outgoing Webhook 검색",
- "installed_outgoing_webhooks.unknown_channel": "비공개 Webhook",
- "integrations.add": "추가",
- "integrations.command.description": "슬래시 명령어는 외부에 연결한 서비스에 이벤트를 보냅니다.",
- "integrations.command.title": "슬래시 명령어",
- "integrations.delete.confirm.button": "삭제",
- "integrations.delete.confirm.title": "Delete Integration",
- "integrations.done": "확인",
- "integrations.edit": "편집",
- "integrations.header": "통합 기능",
- "integrations.help": "Visit the {appDirectory} to find self-hosted, third-party apps and integrations for Mattermost.",
- "integrations.help.appDirectory": "App Directory",
- "integrations.incomingWebhook.description": "Incoming Webhook은 외부 시스템에서 메시지를 받을 수 있게합니다.",
- "integrations.incomingWebhook.title": "Incoming Webhook",
- "integrations.oauthApps.description": "OAuth 2.0 allows external applications to make authorized requests to the Mattermost API.",
- "integrations.oauthApps.title": "OAuth 2.0 애플리케이션",
- "integrations.outgoingWebhook.description": "Outgoing Webhook은 외부 시스템에 메시지를 보내고 응답받을 수 있게합니다.",
- "integrations.outgoingWebhook.title": "Outgoing Webhook",
- "integrations.successful": "설정이 완료되었습니다.",
- "intro_messages.DM": "{teammate}와 개인 메시지의 시작입니다. 개인 메시지나 여기서 공유된 파일들은 외부에서 보여지지 않습니다.",
- "intro_messages.GM": "{names}와 그룹 메시지의 시작입니다. 개인 메시지나 여기서 공유된 파일들은 외부에서 보여지지 않습니다.",
- "intro_messages.anyMember": " 모든 회원이 채널에 가입하고 글을 읽을 수 있습니다.",
- "intro_messages.beginning": "{name}의 시작",
- "intro_messages.channel": "채널",
- "intro_messages.creator": "이것은 {date}에 {creator} 님이 작성한 {name} {type}의 시작입니다.",
- "intro_messages.default": "
Beginning of {display_name}
Welcome to {display_name}!
Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.
",
- "intro_messages.group": "비공개 채널",
- "intro_messages.group_message": "This is the start of your direct message history with this teammate. Direct messages and files shared here are not shown to people outside this area.",
- "intro_messages.invite": "{type}에 사용자 초대하기",
- "intro_messages.inviteOthers": "팀에 사용자 초대하기",
- "intro_messages.noCreator": "{name} {type}입니다. 만들어진 날짜: {date}.",
- "intro_messages.offTopic": "
{display_name}의 시작
{display_name}(은)는 비업무 대화를 위한 공간입니다.
",
- "intro_messages.onlyInvited": " 초대받은 회원만 이 비공개 그룹을 볼 수 있습니다.",
- "intro_messages.purpose": " This {type}'s purpose is: {purpose}.",
- "intro_messages.setHeader": "헤더 설정",
- "intro_messages.teammate": "This is the start of your direct message history with this teammate. Direct messages and files shared here are not shown to people outside this area.",
- "invite_member.addAnother": "더 초대하기",
- "invite_member.autoJoin": "{channel} 채널에 자동으로 초대됩니다.",
- "invite_member.cancel": "취소",
- "invite_member.content": "이메일과 이메일 초대 기능이 비활성화 되어있습니다. 시스템 관리자에게 문의하세요.",
- "invite_member.disabled": "팀의 신규 사용자 가입이 비활성화 되어있습니다. 팀 관리자에게 문의하세요.",
- "invite_member.emailError": "유효한 이메일 주소를 입력하세요.",
- "invite_member.firstname": "이름",
- "invite_member.inviteLink": "가입 링크",
- "invite_member.lastname": "성",
- "invite_member.modalButton": "네, 취소합니다.",
- "invite_member.modalMessage": "You have unsent invitations, are you sure you want to discard them?",
- "invite_member.modalTitle": "초대를 취소하시겠습니까?",
- "invite_member.newMember": "초대 메일 발송",
- "invite_member.send": "보내기",
- "invite_member.send2": "보내기",
- "invite_member.sending": " 보내는 중",
- "invite_member.teamInviteLink": "{link}로도 초대할 수 있습니다.",
- "ldap_signup.find": "나의 팀 찾기",
- "ldap_signup.ldap": "GitLab 계정으로 팀 만들기",
- "ldap_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
- "ldap_signup.teamName": "팀 이름을 입력하세요.",
- "ldap_signup.team_error": "팀 이름을 입력하세요.",
- "leave_private_channel_modal.leave": "Yes, leave channel",
- "leave_private_channel_modal.message": "Are you sure you wish to leave the private channel {channel}? You must be re-invited in order to re-join this channel in the future.",
- "leave_private_channel_modal.title": "Leave Private Channel {channel}",
- "leave_team_modal.desc": "You will be removed from all public channels and private groups. If the team is private you will not be able to rejoin the team. Are you sure?",
- "leave_team_modal.no": "아니요",
- "leave_team_modal.title": "Leave the team?",
- "leave_team_modal.yes": "네",
- "loading_screen.loading": "불러오는 중",
- "login.changed": " 인증 방식이 성공적으로 변경되었습니다.",
- "login.create": "Create one now",
- "login.createTeam": "팀 만들기",
- "login.createTeamAdminOnly": "This option is only available for System Administrators, and does not show up for other users.",
- "login.email": "이메일",
- "login.find": "다른 팀 찾기",
- "login.forgot": "패스워드를 잊어버리셨나요?",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "패스워드가 일치하지 않습니다.",
- "login.ldapUsername": "AD/LDAP 사용자명",
- "login.ldapUsernameLower": "AD/LDAP 사용자명",
- "login.noAccount": "계정이 없으신가요? ",
- "login.noEmail": "이메일을 입력하세요.",
- "login.noEmailLdapUsername": "이메일 또는 {ldapUsername}을 입력하세요.",
- "login.noEmailUsername": "이메일 또는 사용자명을 입력하세요.",
- "login.noEmailUsernameLdapUsername": "이메일, 사용자명 또는 {ldapUsername}을 입력하세요.",
- "login.noLdapUsername": "{ldapUsername}을 입력하세요.",
- "login.noMethods": "활성화된 접속방식이 없습니다. 시스템 관리자에게 문의해보세요.",
- "login.noPassword": "패스워드를 입력하세요.",
- "login.noUsername": "사용자명을 입력하세요.",
- "login.noUsernameLdapUsername": "사용자명 또는 {ldapUsername}을 입력하세요.",
- "login.office365": "Office 365",
- "login.on": "on {siteName}",
- "login.or": "또는",
- "login.password": "패스워드",
- "login.passwordChanged": " 패스워드가 성공적으로 변경되었습니다.",
- "login.placeholderOr": " or ",
- "login.session_expired": " 세션이 만료되었습니다. 다시 로그인 하세요.",
- "login.signIn": "로그인",
- "login.signInLoading": "Signing in...",
- "login.signInWith": "다음으로 로그인하기:",
- "login.userNotFound": "입력된 계정과 일치하는 사용자 정보를 찾을 수 없습니다.",
- "login.username": "사용자명",
- "login.verified": " 이메일 검증됨",
- "login_mfa.enterToken": "To complete the sign in process, please enter a token from your smartphone's authenticator",
- "login_mfa.submit": "제출",
- "login_mfa.token": "MFA 토큰",
- "login_mfa.tokenReq": "MFA 토큰을 입력하세요.",
- "member_item.makeAdmin": "관리자로 설정하기",
- "member_item.member": "회원",
- "member_list.noUsersAdd": "추가할 유저가 없습니다.",
- "members_popover.manageMembers": "회원 관리",
- "members_popover.msg": "메시지",
- "members_popover.title": "채널 회원",
- "members_popover.viewMembers": "회원 보기",
- "mfa.confirm.complete": "Set up complete!",
- "mfa.confirm.okay": "확인",
- "mfa.confirm.secure": "Your account is now secure. Next time you sign in, you will be asked to enter a code from the Google Authenticator app on your phone.",
- "mfa.setup.badCode": "Invalid code. If this issue persists, contact your System Administrator.",
- "mfa.setup.code": "MFA Code",
- "mfa.setup.codeError": "Please enter the code from Google Authenticator.",
- "mfa.setup.required": "Multi-factor authentication is required on {siteName}.",
- "mfa.setup.save": "저장",
- "mfa.setup.secret": "Secret: {secret}",
- "mfa.setup.step1": "Step 1: On your phone, download Google Authenticator from iTunes or Google Play",
- "mfa.setup.step2": "Step 2: Use Google Authenticator to scan this QR code, or manually type in the secret key",
- "mfa.setup.step3": "Step 3: Enter the code generated by Google Authenticator",
- "mfa.setupTitle": "Enable Multi-factor Authentication:",
- "mobile.about.appVersion": "App Version: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved",
- "mobile.about.database": "Database: {type}",
- "mobile.about.serverVersion": "Server Version: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Server Version: {version}",
- "mobile.account.notifications.email.footer": "When offline or away for more than five minutes",
- "mobile.account_notifications.mentions_footer": "Your username (\"@{username}\") will always trigger mentions.",
- "mobile.account_notifications.non-case_sensitive_words": "Other non-case sensitive words...",
- "mobile.account_notifications.reply.header": "Send reply notifications for",
- "mobile.account_notifications.threads_mentions": "Mentions in threads",
- "mobile.account_notifications.threads_start": "Threads that I start",
- "mobile.account_notifications.threads_start_participate": "Threads that I start or participate in",
- "mobile.advanced_settings.reset_button": "Reset",
- "mobile.advanced_settings.reset_message": "\nThis will reset all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.advanced_settings.reset_title": "Reset Cache",
- "mobile.advanced_settings.title": "고급 설정",
- "mobile.channel_drawer.search": "Jump to a conversation",
- "mobile.channel_info.alertMessageDeleteChannel": "{term} {name}을 (를) 삭제 하시겠습니까?",
- "mobile.channel_info.alertMessageLeaveChannel": "{term} {name}을 (를) 종료 하시겠습니까?",
- "mobile.channel_info.alertNo": "아니요",
- "mobile.channel_info.alertTitleDeleteChannel": "{term} 삭제...",
- "mobile.channel_info.alertTitleLeaveChannel": "{term} 떠나기",
- "mobile.channel_info.alertYes": "네",
- "mobile.channel_info.delete_failed": "We couldn't delete the channel {displayName}. Please check your connection and try again.",
- "mobile.channel_info.privateChannel": "비공개 채널",
- "mobile.channel_info.publicChannel": "공개 채널",
- "mobile.channel_list.alertMessageLeaveChannel": "{term} {name}을 (를) 종료 하시겠습니까?",
- "mobile.channel_list.alertNo": "아니요",
- "mobile.channel_list.alertTitleLeaveChannel": "{term} 떠나기",
- "mobile.channel_list.alertYes": "네",
- "mobile.channel_list.closeDM": "Close Direct Message",
- "mobile.channel_list.closeGM": "Close Group Message",
- "mobile.channel_list.dm": "개인 메시지",
- "mobile.channel_list.gm": "Group Message",
- "mobile.channel_list.not_member": "NOT A MEMBER",
- "mobile.channel_list.open": "Open {term}",
- "mobile.channel_list.openDM": "Open Direct Message",
- "mobile.channel_list.openGM": "Open Group Message",
- "mobile.channel_list.privateChannel": "비공개 채널",
- "mobile.channel_list.publicChannel": "공개 채널",
- "mobile.channel_list.unreads": "UNREADS",
- "mobile.components.channels_list_view.yourChannels": "Your channels:",
- "mobile.components.error_list.dismiss_all": "Dismiss All",
- "mobile.components.select_server_view.continue": "계속하기",
- "mobile.components.select_server_view.enterServerUrl": "Enter Server URL",
- "mobile.components.select_server_view.proceed": "Proceed",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Create",
- "mobile.create_channel.private": "새 비공개 채널",
- "mobile.create_channel.public": "공개 채널",
- "mobile.custom_list.no_results": "No Results",
- "mobile.drawer.teamsTitle": "서비스 약관",
- "mobile.edit_post.title": "Editing Message",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Relaunch",
- "mobile.error_handler.description": "\nClick relaunch to open the app again. After restart, you can report the problem from the settings menu.\n",
- "mobile.error_handler.title": "Unexpected error occurred",
- "mobile.file_upload.camera": "Take Photo or Video",
- "mobile.file_upload.library": "Photo Library",
- "mobile.file_upload.more": "더 보기",
- "mobile.file_upload.video": "Video Library",
- "mobile.help.title": "도움말",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "{teammate}와 개인 메시지의 시작입니다. 개인 메시지나 여기서 공유된 파일들은 외부에서 보여지지 않습니다.",
- "mobile.intro_messages.default_message": "This is the first channel teammates see when they sign up - use it for posting updates everyone needs to know.",
- "mobile.intro_messages.default_welcome": "Welcome to {name}!",
- "mobile.join_channel.error": "We couldn't join the channel {displayName}. Please check your connection and try again.",
- "mobile.loading_channels": "Loading Channels...",
- "mobile.loading_members": "Loading Members...",
- "mobile.loading_posts": "메시지 더 보기",
- "mobile.login_options.choose_title": "Choose your login method",
- "mobile.managed.blocked_by": "Blocked by {vendor}",
- "mobile.managed.exit": "편집",
- "mobile.managed.jailbreak": "Jailbroken devices are not trusted by {vendor}, please exit the app.",
- "mobile.managed.secured_by": "Secured by {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Start",
- "mobile.more_dms.title": "New Conversation",
- "mobile.notice_mobile_link": "mobile apps",
- "mobile.notice_platform_link": "platform",
- "mobile.notice_text": "Mattermost is made possible by the open source software used in our {platform} and {mobile}.",
- "mobile.notification.in": " in ",
- "mobile.offlineIndicator.connected": "Connected",
- "mobile.offlineIndicator.connecting": "연결",
- "mobile.offlineIndicator.offline": "No internet connection",
- "mobile.open_dm.error": "We couldn't open a direct message with {displayName}. Please check your connection and try again.",
- "mobile.open_gm.error": "We couldn't open a group message with those users. Please check your connection and try again.",
- "mobile.post.cancel": "취소",
- "mobile.post.delete_question": "정말 게시물을 삭제하시겠습니까?",
- "mobile.post.delete_title": "Delete Post",
- "mobile.post.failed_delete": "Delete Message",
- "mobile.post.failed_retry": "Try Again",
- "mobile.post.failed_title": "Unable to send your message",
- "mobile.post.retry": "Refresh",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Received invalid response from the server.",
- "mobile.routes.channelInfo": "Info",
- "mobile.routes.channelInfo.createdBy": "Created by {creator} on ",
- "mobile.routes.channelInfo.delete_channel": "채널 삭제",
- "mobile.routes.channelInfo.favorite": "즐겨찾기",
- "mobile.routes.channel_members.action": "Remove Members",
- "mobile.routes.channel_members.action_message": "You must select at least one member to remove from the channel.",
- "mobile.routes.channel_members.action_message_confirm": "Are you sure you want to remove the selected members from the channel?",
- "mobile.routes.channels": "채널",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Enter Server URL",
- "mobile.routes.login": "로그인",
- "mobile.routes.loginOptions": "Login Chooser",
- "mobile.routes.mfa": "Enable Multi-factor Authentication:",
- "mobile.routes.postsList": "Posts List",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "팀 선택",
- "mobile.routes.settings": "Settings",
- "mobile.routes.sso": "Single Sign-On",
- "mobile.routes.thread": "{channelName} Thread",
- "mobile.routes.thread_dm": "Direct Message Thread",
- "mobile.routes.user_profile": "Profile",
- "mobile.routes.user_profile.send_message": "Send Message",
- "mobile.search.jump": "JUMP",
- "mobile.search.no_results": "No Results Found",
- "mobile.select_team.choose": "가입한 팀: ",
- "mobile.select_team.join_open": "Open teams you can join",
- "mobile.select_team.no_teams": "There are no available teams for you to join.",
- "mobile.server_ping_failed": "Cannot connect to the server. Please check your server URL and internet connection.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nA server upgrade is required to use the Mattermost app. Please ask your System Administrator for details.\n",
- "mobile.server_upgrade.title": "Server upgrade required",
- "mobile.server_url.invalid_format": "URL 주소는 http:// 또는 https:// 로 시작되어야 합니다",
- "mobile.session_expired": "Session Expired: Please log in to continue receiving notifications.",
- "mobile.settings.clear": "Clear Offline Store",
- "mobile.settings.clear_button": "Clear",
- "mobile.settings.clear_message": "\nThis will clear all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.settings.team_selection": "팀 선택",
- "mobile.suggestion.members": "회원",
- "modal.manaul_status.ask": "Do not ask me again",
- "modal.manaul_status.button": "Yes, set my status to \"Online\"",
- "modal.manaul_status.cancel": "No, keep it as \"{status}\"",
- "modal.manaul_status.message": "Would you like to switch your status to \"Online\"?",
- "modal.manaul_status.title": "Your status is set to \"{status}\"",
- "more_channels.close": "닫기",
- "more_channels.create": "새로 만들기",
- "more_channels.createClick": "'새로 만들기'를 클릭하여 새로운 채널을 만드세요",
- "more_channels.join": "가입하기",
- "more_channels.next": "다음",
- "more_channels.noMore": "가입할 수 있는 채널이 없습니다",
- "more_channels.prev": "Previous",
- "more_channels.title": "채널 더보기",
- "more_direct_channels.close": "닫기",
- "more_direct_channels.message": "메시지",
- "more_direct_channels.new_convo_note": "This will start a new conversation. If you’re adding a lot of people, consider creating a private channel instead.",
- "more_direct_channels.new_convo_note.full": "You’ve reached the maximum number of people for this conversation. Consider creating a private channel instead.",
- "more_direct_channels.title": "개인 메시지",
- "msg_typing.areTyping": "{users}, {last}(이)가 입력중입니다...",
- "msg_typing.isTyping": "{user}(이)가 입력중입니다...",
- "msg_typing.someone": "Someone",
- "multiselect.add": "추가",
- "multiselect.go": "Go",
- "multiselect.list.notFound": "사용자를 찾을 수 없습니다 :(",
- "multiselect.numPeopleRemaining": "Use ↑↓ to browse, ↵ to select. You can add {num, number} more {num, plural, one {person} other {people}}. ",
- "multiselect.numRemaining": "You can add {num, number} more",
- "multiselect.placeholder": "Search and add members",
- "navbar.addMembers": "회원 추가",
- "navbar.click": "클릭하기",
- "navbar.delete": "채널 삭제",
- "navbar.leave": "채널 떠나기",
- "navbar.manageMembers": "회원 관리",
- "navbar.noHeader": "채널 헤더가 없습니다.{newline}{link} to add one.",
- "navbar.preferences": "알림 설정",
- "navbar.rename": "채널 이름 변경",
- "navbar.setHeader": "채널 헤더 설정",
- "navbar.setPurpose": "채널 설명 설정",
- "navbar.toggle1": "사이드바 토글",
- "navbar.toggle2": "사이드바 토글",
- "navbar.viewInfo": "정보 보기",
- "navbar.viewPinnedPosts": "View Pinned Posts",
- "navbar_dropdown.about": "Mattermost 정보",
- "navbar_dropdown.accountSettings": "계정 설정",
- "navbar_dropdown.addMemberToTeam": "팀 멤버 추가",
- "navbar_dropdown.console": "관리자 도구",
- "navbar_dropdown.create": "팀 만들기",
- "navbar_dropdown.emoji": "커스텀 이모티콘",
- "navbar_dropdown.help": "도움말",
- "navbar_dropdown.integrations": "통합 기능",
- "navbar_dropdown.inviteMember": "초대 메일 발송",
- "navbar_dropdown.join": "Join Another Team",
- "navbar_dropdown.keyboardShortcuts": "키보드 단축키",
- "navbar_dropdown.leave": "팀 떠나기",
- "navbar_dropdown.logout": "로그아웃",
- "navbar_dropdown.manageMembers": "회원 관리",
- "navbar_dropdown.nativeApps": "애플리케이션 다운로드",
- "navbar_dropdown.report": "문제 보고",
- "navbar_dropdown.switchTeam": "{team}(으)로 돌아가기",
- "navbar_dropdown.switchTo": "팀 변경: ",
- "navbar_dropdown.teamLink": "가입 링크",
- "navbar_dropdown.teamSettings": "팀 설정",
- "navbar_dropdown.viewMembers": "회원 목록",
- "notification.dm": "개인 메시지",
- "notify_all.confirm": "Confirm",
- "notify_all.question": "By using @all or @channel you are about to send notifications to {totalMembers} people. Are you sure you want to do this?",
- "notify_all.title.confirm": "Confirm sending notifications to entire channel",
- "passwordRequirements": "Password Requirements:",
- "password_form.change": "패스워드 변경하기",
- "password_form.click": "Click here to log in.",
- "password_form.enter": "Enter a new password for your {siteName} account.",
- "password_form.error": "최소 {chars}글자 이상 입력하세요.",
- "password_form.pwd": "패스워드",
- "password_form.title": "패스워드 재설정",
- "password_form.update": "Your password has been updated successfully.",
- "password_send.checkInbox": "이메일을 확인하세요.",
- "password_send.description": "To reset your password, enter the email address you used to sign up",
- "password_send.email": "이메일",
- "password_send.error": "유효한 이메일 주소를 입력하세요.",
- "password_send.link": "If the account exists, a password reset email will be sent to: {email}
",
- "password_send.reset": "Reset my password",
- "password_send.title": "Password Reset",
- "pdf_preview.max_pages": "Download to read more pages",
- "pending_post_actions.cancel": "취소",
- "pending_post_actions.retry": "다시 시도",
- "permalink.error.access": "Permalink belongs to a deleted message or to a channel to which you do not have access.",
- "permalink.error.title": "Message Not Found",
- "post_attachment.collapse": "Show less...",
- "post_attachment.more": "더 보기...",
- "post_body.commentedOn": "Commented on {name}{apostrophe} message: ",
- "post_body.deleted": "(삭제된 메시지)",
- "post_body.plusMore": " plus {count, number} other {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Comment could not be posted",
- "post_delete.okay": "확인",
- "post_delete.someone": "Someone deleted the message on which you tried to post a comment.",
- "post_focus_view.beginning": "채널의 시작",
- "post_info.del": "삭제",
- "post_info.edit": "편집",
- "post_info.message.visible": "(Only visible to you)",
- "post_info.message.visible.compact": " (Only visible to you)",
- "post_info.mobile.flag": "중요 지정",
- "post_info.mobile.unflag": "중요 해제",
- "post_info.permalink": "링크",
- "post_info.pin": "Pin to channel",
- "post_info.pinned": "Pinned",
- "post_info.reply": "답글",
- "post_info.system": "System",
- "post_info.unpin": "Un-pin from channel",
- "post_message_view.edited": "(edited)",
- "posts_view.loadMore": "메시지 더 보기",
- "posts_view.loadingMore": "메시지 더 보기",
- "posts_view.newMsg": "새로운 메시지",
- "posts_view.newMsgBelow": "New {count, plural, one {message} other {messages}}",
- "quick_switch_modal.channels": "채널",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Start typing then use TAB to toggle channels/teams, ↑↓ to browse, ↵ to select, and ESC to dismiss.",
- "quick_switch_modal.help_mobile": "Type to find a channel.",
- "quick_switch_modal.help_no_team": "Type to find a channel. Use ↑↓ to browse, ↵ to select, ESC to dismiss.",
- "quick_switch_modal.teams": "서비스 약관",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(click to add)",
- "reaction.clickToRemove": "(click to remove)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {user} other {users}}",
- "reaction.reacted": "{users} {reactionVerb} with {emoji}",
- "reaction.reactionVerb.user": "reacted",
- "reaction.reactionVerb.users": "reacted",
- "reaction.reactionVerb.you": "reacted",
- "reaction.reactionVerb.youAndUsers": "reacted",
- "reaction.usersAndOthersReacted": "{users} and {otherUsers, number} other {otherUsers, plural, one {user} other {users}}",
- "reaction.usersReacted": "{users} and {lastUser}",
- "reaction.you": "You",
- "removed_channel.channelName": "the channel",
- "removed_channel.from": "Removed from ",
- "removed_channel.okay": "확인",
- "removed_channel.remover": "{remover} removed you from {channel}",
- "removed_channel.someone": "Someone",
- "rename_channel.cancel": "취소",
- "rename_channel.defaultError": " - 기본 채널의 URL은 변경할 수 없습니다.",
- "rename_channel.displayName": "표시명",
- "rename_channel.displayNameHolder": "표시명을 입력하세요.",
- "rename_channel.handleHolder": "Must be lowercase alphanumeric characters",
- "rename_channel.lowercase": "Must be lowercase alphanumeric characters",
- "rename_channel.maxLength": "This field must be less than {maxLength, number} characters",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "필수 항목입니다.",
- "rename_channel.save": "저장",
- "rename_channel.title": "채널 이름 변경",
- "rename_channel.url": "URL:",
- "rhs_comment.comment": "답글",
- "rhs_comment.del": "삭제",
- "rhs_comment.edit": "편집",
- "rhs_comment.mobile.flag": "중요 지정",
- "rhs_comment.mobile.unflag": "중요 해제",
- "rhs_comment.permalink": "바로가기",
- "rhs_header.backToCallTooltip": "Back to Call",
- "rhs_header.backToFlaggedTooltip": "중요 메시지로 돌아가기",
- "rhs_header.backToPinnedTooltip": "중요 메시지로 돌아가기",
- "rhs_header.backToResultsTooltip": "검색결과로 돌아가기",
- "rhs_header.closeSidebarTooltip": "사이드바 닫기",
- "rhs_header.closeTooltip": "사이드바 닫기",
- "rhs_header.details": "메시지 세부사항",
- "rhs_header.expandSidebarTooltip": "사이드바 펴기",
- "rhs_header.expandTooltip": "사이드바 접기",
- "rhs_header.shrinkSidebarTooltip": "사이드바 접기",
- "rhs_root.del": "삭제",
- "rhs_root.direct": "개인 메시지",
- "rhs_root.edit": "편집",
- "rhs_root.mobile.flag": "중요 지정",
- "rhs_root.mobile.unflag": "중요 해제",
- "rhs_root.permalink": "바로가기",
- "rhs_root.pin": "Pin to channel",
- "rhs_root.unpin": "Un-pin from channel",
- "search_bar.search": "검색",
- "search_bar.usage": "
검색 옵션
\"따옴표\"를 사용해서 문구를 검색할 수 있습니다.
from: 를 사용해서 특정 사용자의 포스트를 검색하거나, in:을 사용하여 특정 채널의 포스트를 검색할 수 있습니다.
메인 메뉴에서 회원 초대를 하거나, 계정 설정에 진입하여 테마 색상을 변경할 수 있습니다.
팀 관리자는 메뉴에서 팀 설정에 진입할 수 있습니다.
시스템 관리자는 관리자 도구 메뉴를 통해 시스템을 전체 설정을 관리할 수 있습니다.
",
- "sidebar_right_menu.accountSettings": "계정 설정",
- "sidebar_right_menu.addMemberToTeam": "팀 멤버 추가",
- "sidebar_right_menu.console": "관리자 도구",
- "sidebar_right_menu.flagged": "중요 메시지",
- "sidebar_right_menu.help": "도움말",
- "sidebar_right_menu.inviteNew": "초대 메일 발송",
- "sidebar_right_menu.logout": "로그아웃",
- "sidebar_right_menu.manageMembers": "회원 관리하기",
- "sidebar_right_menu.nativeApps": "애플리케이션 다운로드",
- "sidebar_right_menu.recentMentions": "최근 멘션",
- "sidebar_right_menu.report": "문제 보고",
- "sidebar_right_menu.teamLink": "가입 링크",
- "sidebar_right_menu.teamSettings": "팀 설정",
- "sidebar_right_menu.viewMembers": "회원 보기",
- "signup.email": "이메일과 패스워드",
- "signup.gitlab": "GitLab SSO",
- "signup.google": "Google 계정",
- "signup.ldap": "AD/LDAP Credentials",
- "signup.office365": "Office 365",
- "signup.title": "다음 계정으로 가입하기:",
- "signup_team.createTeam": "팀 생성하기",
- "signup_team.disabled": "팀을 생성할 수 없습니다. 시스템 관리자에게 문의하세요.",
- "signup_team.join_open": "가입할 수 있는 팀: ",
- "signup_team.noTeams": "There are no teams included in the Team Directory and team creation has been disabled.",
- "signup_team.no_open_teams": "No teams are available to join. Please ask your administrator for an invite.",
- "signup_team.no_open_teams_canCreate": "No teams are available to join. Please create a new team or ask your administrator for an invite.",
- "signup_team.no_teams": "No teams have been created. Please contact your administrator.",
- "signup_team.no_teams_canCreate": "No teams have been created. You may create one by clicking \"Create a new team\".",
- "signup_team.none": "No team creation method has been enabled. Please contact an administrator for access.",
- "signup_team_complete.completed": "You've already completed the signup process for this invitation or this invitation has expired.",
- "signup_team_confirm.checkEmail": "Please check your email: {email} Your email contains a link to set up your team",
- "signup_team_confirm.title": "가입 완료",
- "signup_team_system_console": "관리자 도구로 바로가기",
- "signup_user_completed.choosePwd": "패스워드를 입력하세요.",
- "signup_user_completed.chooseUser": "사용자명을 입력하세요.",
- "signup_user_completed.create": "계정 만들기",
- "signup_user_completed.emailHelp": "가입을 위해 유효한 이메일 계정이 필요합니다.",
- "signup_user_completed.emailIs": "Your email address is {email}. You'll use this address to sign in to {siteName}.",
- "signup_user_completed.expired": "You've already completed the signup process for this invitation or this invitation has expired.",
- "signup_user_completed.gitlab": "GitLab 계정으로 가입하기",
- "signup_user_completed.google": "Google 계정으로 가입하기",
- "signup_user_completed.haveAccount": "이미 계정이 있나요?",
- "signup_user_completed.invalid_invite": "The invite link was invalid. Please speak with your Administrator to receive an invitation.",
- "signup_user_completed.lets": "계정을 생성하고 시작해보세요!",
- "signup_user_completed.no_open_server": "This server does not allow open signups. Please speak with your Administrator to receive an invitation.",
- "signup_user_completed.none": "No user creation method has been enabled. Please contact an administrator for access.",
- "signup_user_completed.office365": "Office 365 계정으로 가입하기",
- "signup_user_completed.onSite": "on {siteName}",
- "signup_user_completed.or": "또는",
- "signup_user_completed.passwordLength": "Please enter between {min} and {max} characters",
- "signup_user_completed.required": "필수 항목입니다.",
- "signup_user_completed.reserved": "이미 사용중인 이름입니다.",
- "signup_user_completed.signIn": "이 곳을 클릭해서 로그인하세요.",
- "signup_user_completed.userHelp": "사용자명은 반드시 영문자로 시작하여야 하며, {min}글자 이상 {max}글자 이하 영문자, 숫자, 특수기호 '.', '-', '_'를 포함할 수 있습니다.",
- "signup_user_completed.usernameLength": "사용자명은 반드시 영문자로 시작하여야 하며, {min}글자 이상 {max}글자 이하 영문자, 숫자, 특수기호 '.', '-', '_'를 포함할 수 있습니다.",
- "signup_user_completed.validEmail": "유효한 이메일 주소를 입력해주세요.",
- "signup_user_completed.welcome": "환영합니다!",
- "signup_user_completed.whatis": "이메일 주소를 입력하세요.",
- "signup_user_completed.withLdap": "With your LDAP credentials",
- "sso_signup.find": "팀 찾기",
- "sso_signup.gitlab": "GitLab 계정으로 팀 만들기",
- "sso_signup.google": "Google 계정으로 팀 만들기",
- "sso_signup.length_error": "이름이 반드시 3글자 이상 15글자 이하가 되어야 합니다.",
- "sso_signup.teamName": "팀 이름을 입력하세요.",
- "sso_signup.team_error": "팀 이름을 입력하세요.",
- "status_dropdown.set_away": "Away",
- "status_dropdown.set_offline": "오프라인",
- "status_dropdown.set_online": "Online",
- "suggestion.loading": "로딩 중...",
- "suggestion.mention.all": "CAUTION: This mentions everyone in channel",
- "suggestion.mention.channel": "모든 채널 회원들에게 알림을 보냅니다",
- "suggestion.mention.channels": "채널 더보기",
- "suggestion.mention.here": "채널에 접속 중인 회원들에게 알림을 보냅니다",
- "suggestion.mention.in_channel": "채널",
- "suggestion.mention.members": "채널 회원",
- "suggestion.mention.morechannels": "Other Channels",
- "suggestion.mention.nonmembers": "Not in Channel",
- "suggestion.mention.not_in_channel": "Other Channels",
- "suggestion.mention.special": "Special Mentions",
- "suggestion.search.private": "비공개 채널",
- "suggestion.search.public": "공개 채널",
- "system_users_list.count": "{count, number} {count, plural, one {user} other {users}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 members} one {member} other {members}} of {total} total",
- "system_users_list.countSearch": "{startCount, number} - {endCount, number} {count, plural, =0 {0 members} one {member} other {members}} of {total} total",
- "team_export_tab.download": "다운로드",
- "team_export_tab.export": "내보내기",
- "team_export_tab.exportTeam": "팀 내보내기",
- "team_export_tab.exporting": " 내보내는 중...",
- "team_export_tab.ready": " Ready for ",
- "team_export_tab.unable": " 내보낼 수 없습니다: {error}",
- "team_import_tab.failure": " 가져오기 실패: ",
- "team_import_tab.import": "가져오기",
- "team_import_tab.importHelpDocsLink": "문서",
- "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
- "team_import_tab.importHelpExporterLink": "Slack Advanced Exporter",
- "team_import_tab.importHelpLine1": "Slack import to Mattermost supports importing of messages in your Slack team's public channels.",
- "team_import_tab.importHelpLine2": "To import a team from Slack, go to {exportInstructions}. See {uploadDocsLink} to learn more.",
- "team_import_tab.importHelpLine3": "To import posts with attached files, see {slackAdvancedExporterLink} for details.",
- "team_import_tab.importSlack": "Slack에서 가져오기 (Beta)",
- "team_import_tab.importing": " 가져오는 중...",
- "team_import_tab.successful": " 가져오기 성공: ",
- "team_import_tab.summary": "요약",
- "team_member_modal.close": "닫기",
- "team_member_modal.members": "{team} 회원",
- "team_members_dropdown.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Confirm demotion from System Admin role",
- "team_members_dropdown.confirmDemotion": "Confirm Demotion",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "비활성",
- "team_members_dropdown.leave_team": "팀에서 추방하기",
- "team_members_dropdown.makeActive": "Activate",
- "team_members_dropdown.makeAdmin": "팀 관리자로 설정하기",
- "team_members_dropdown.makeInactive": "Deactivate",
- "team_members_dropdown.makeMember": "회원으로 설정하기",
- "team_members_dropdown.member": "회원",
- "team_members_dropdown.systemAdmin": "시스템 관리자",
- "team_members_dropdown.teamAdmin": "팀 관리자",
- "team_settings_modal.exportTab": "내보내기",
- "team_settings_modal.generalTab": "일반",
- "team_settings_modal.importTab": "가져오기",
- "team_settings_modal.title": "팀 설정",
- "team_sidebar.join": "Other teams you can join.",
- "textbox.bold": "**굵게**",
- "textbox.edit": "메시지 편집",
- "textbox.help": "도움말",
- "textbox.inlinecode": "`인라인 코드`",
- "textbox.italic": "_기울게_",
- "textbox.preformatted": "```코드 블럭```",
- "textbox.preview": "미리보기",
- "textbox.quote": "> 인용",
- "textbox.strike": "취소선",
- "tutorial_intro.allSet": "모든 준비가 끝났습니다",
- "tutorial_intro.end": "“다음” 을 눌러 {channel}에 입장합니다. 이 곳은 팀에 가입한 회원들이 가장 먼저 보게되는 채널입니다. 모두가 알아야 할 내용을 공지할 때 이 채널을 사용하세요.",
- "tutorial_intro.invite": "회원을 초대",
- "tutorial_intro.mobileApps": "{link} 애플리케이션을 설치하여 접근성과 알림을 향상시키세요.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS, Android",
- "tutorial_intro.next": "다음",
- "tutorial_intro.screenOne": "
환영합니다!
Mattermost
모든 팀 커뮤니케이션 활동을 한 곳에 모아 빠르게 찾고 공유할 수 있습니다.
팀 커뮤니케이션을 연결하여 가장 중요한 목표를 공유하세요.
",
- "tutorial_intro.screenTwo": "
Mattermost를 활용하는 법:
공개된 논의 채널, 비공개 그룹, 또는 개인 메시지를 통해 이야기를 나눌 수 있습니다.
모든 내용은 저장되고, 웹페이지를 볼 수 있는 곳이라면 어디서든 검색 가능합니다.
",
- "tutorial_intro.skip": "튜토리얼 생략",
- "tutorial_intro.support": "도움이 필요하면 아래 이메일로 문의주세요 ",
- "tutorial_intro.teamInvite": "회원을 초대",
- "tutorial_intro.whenReady": "하여 시작하세요.",
- "tutorial_tip.next": "다음",
- "tutorial_tip.ok": "확인",
- "tutorial_tip.out": "이 팁 더이상 보지 않기.",
- "tutorial_tip.seen": "이미 알고 계신가요? ",
- "update_command.cancel": "취소",
- "update_command.confirm": "슬래시 명령어 추가",
- "update_command.question": "Your changes may break the existing slash command. Are you sure you would like to update it?",
- "update_command.update": "Update",
- "update_incoming_webhook.update": "Update",
- "update_outgoing_webhook.confirm": "Outgoing Webhook 추가하기",
- "update_outgoing_webhook.question": "Your changes may break the existing outgoing webhook. Are you sure you would like to update it?",
- "update_outgoing_webhook.update": "Update",
- "upload_overlay.info": "이 곳에 파일을 끌어 업로드하세요.",
- "user.settings.advance.embed_preview": "For the first web link in a message, display a preview of website content below the message, if available",
- "user.settings.advance.embed_toggle": "미리보기 토글 버튼 보여주기",
- "user.settings.advance.enabledFeatures": "{count, number}개 기능 활성화",
- "user.settings.advance.formattingDesc": "활성화 하면 링크, 이모티콘, 글자 스타일 등을 사용할 수 있습니다. 기본적으로 활성화 되있습니다. 설정을 변경하려면 페이지 새로고침이 필요합니다.",
- "user.settings.advance.formattingTitle": "마크다운으로 글쓰기",
- "user.settings.advance.joinLeaveDesc": "\"켜기\"를 선택하면 사용자가 채널에 입장하거나 퇴장했을 때 시스템 메시지가 표시됩니다. \"끄기\"를 선택하면, 입장/퇴장 메시지가 화면에 표시되지 않습니다. 이 설정과 관계없이 채널 초대되었을 때 알림을 받을 수 있습니다.",
- "user.settings.advance.joinLeaveTitle": "입장/퇴장 메시지 표시",
- "user.settings.advance.markdown_preview": "메시지 입력창에 마크다운 미리보기 옵션을 표시",
- "user.settings.advance.off": "끄기",
- "user.settings.advance.on": "켜기",
- "user.settings.advance.preReleaseDesc": "사용하고 싶은 시험판 기능을 선택하세요. 기능 활성화를 위해 페이지 새로고침이 필요할 수도 있습니다.",
- "user.settings.advance.preReleaseTitle": "시험판 기능 미리보기",
- "user.settings.advance.sendDesc": "활성화 하면 'Enter'키로 줄바꿈, 'Ctrl + Enter'키로 메시지를 보내게 됩니다.",
- "user.settings.advance.sendTitle": "Ctrl + Enter로 메시지 보내기",
- "user.settings.advance.slashCmd_autocmp": "외부 어플리케이션을 활성화하면 슬래시 명령어 자동 완성을 제안할 수 있습니다",
- "user.settings.advance.title": "고급 설정",
- "user.settings.advance.webrtc_preview": "Enable the ability to make and receive one-on-one WebRTC calls",
- "user.settings.custom_theme.awayIndicator": "Away Indicator",
- "user.settings.custom_theme.buttonBg": "Button BG",
- "user.settings.custom_theme.buttonColor": "Button Text",
- "user.settings.custom_theme.centerChannelBg": "Center Channel BG",
- "user.settings.custom_theme.centerChannelColor": "Center Channel Text",
- "user.settings.custom_theme.centerChannelTitle": "채널 영역 스타일",
- "user.settings.custom_theme.codeTheme": "Code Theme",
- "user.settings.custom_theme.copyPaste": "다음 테마 색상을 복사하여 공유:",
- "user.settings.custom_theme.linkButtonTitle": "링크, 버튼 스타일",
- "user.settings.custom_theme.linkColor": "Link Color",
- "user.settings.custom_theme.mentionBj": "Mention Jewel BG",
- "user.settings.custom_theme.mentionColor": "Mention Jewel Text",
- "user.settings.custom_theme.mentionHighlightBg": "Mention Highlight BG",
- "user.settings.custom_theme.mentionHighlightLink": "Mention Highlight Link",
- "user.settings.custom_theme.newMessageSeparator": "New Message Separator",
- "user.settings.custom_theme.onlineIndicator": "Online Indicator",
- "user.settings.custom_theme.sidebarBg": "Sidebar BG",
- "user.settings.custom_theme.sidebarHeaderBg": "Sidebar Header BG",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Sidebar Header Text",
- "user.settings.custom_theme.sidebarText": "Sidebar Text",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Sidebar Text Active Border",
- "user.settings.custom_theme.sidebarTextActiveColor": "Sidebar Text Active Color",
- "user.settings.custom_theme.sidebarTextHoverBg": "Sidebar Text Hover BG",
- "user.settings.custom_theme.sidebarTitle": "사이드바 스타일",
- "user.settings.custom_theme.sidebarUnreadText": "Sidebar Unread Text",
- "user.settings.display.channelDisplayTitle": "채널 화면 모드",
- "user.settings.display.channeldisplaymode": "채널 영역의 너비를 선택하세요.",
- "user.settings.display.clockDisplay": "시간 표시",
- "user.settings.display.collapseDesc": "Set whether previews of image links show as expanded or collapsed by default. This setting can also be controlled using the slash commands /expand and /collapse.",
- "user.settings.display.collapseDisplay": "Default appearance of image link previews",
- "user.settings.display.collapseOff": "Collapsed",
- "user.settings.display.collapseOn": "Expanded",
- "user.settings.display.fixedWidthCentered": "고정 너비, 가운데",
- "user.settings.display.fullScreen": "전체 너비",
- "user.settings.display.language": "언어",
- "user.settings.display.messageDisplayClean": "표준",
- "user.settings.display.messageDisplayCleanDes": "읽기 쉽게 표시합니다.",
- "user.settings.display.messageDisplayCompact": "압축",
- "user.settings.display.messageDisplayCompactDes": "화면에 더 많은 메시지가 보이도록 압축해서 표시합니다.",
- "user.settings.display.messageDisplayDescription": "화면에 메시지가 어떻게 보여질지 선택합니다.",
- "user.settings.display.messageDisplayTitle": "메시지 표시",
- "user.settings.display.militaryClock": "24시간으로 보이기 (예: 16:00)",
- "user.settings.display.nameOptsDesc": "글과 대화 목록에서 사용자의 이름이 어떻게 표시될 지 선택하세요.",
- "user.settings.display.normalClock": "12시간으로 보이기 (예: 4:00 PM)",
- "user.settings.display.preferTime": "시간이 어떻게 표시될지 선택하세요.",
- "user.settings.display.theme.applyToAllTeams": "가입한 모든 팀에서 새로운 테마를 적용합니다.",
- "user.settings.display.theme.customTheme": "커스텀 테마",
- "user.settings.display.theme.describe": "내 테마 관리하기",
- "user.settings.display.theme.import": "Slack 테마 불러오기",
- "user.settings.display.theme.otherThemes": "다른 테마 보기",
- "user.settings.display.theme.themeColors": "테마 선택",
- "user.settings.display.theme.title": "테마",
- "user.settings.display.title": "화면 설정",
- "user.settings.general.checkEmail": "Check your email at {email} to verify the address.",
- "user.settings.general.checkEmailNoAddress": "Check your email to verify your new address",
- "user.settings.general.close": "닫기",
- "user.settings.general.confirmEmail": "이메일 확인",
- "user.settings.general.currentEmail": "Current Email",
- "user.settings.general.email": "이메일",
- "user.settings.general.emailGitlabCantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailHelp1": "이메일은 접속, 알림 수신, 패스워드 변경 등에 사용됩니다. 이메일을 변경하면 재검증이 필요합니다.",
- "user.settings.general.emailHelp2": "이메일 기능이 시스템 관리자에 의해 비활성화 되었습니다. 활성화 되기 전까진 알림 메일이 발송되지 않습니다.",
- "user.settings.general.emailHelp3": "이메일은 접속, 알림 수신, 패스워드 변경 등에 사용됩니다.",
- "user.settings.general.emailHelp4": "{email}(으)로 검증메일이 발송됐습니다.",
- "user.settings.general.emailLdapCantUpdate": "Login occurs through LDAP. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailMatch": "The new emails you entered do not match.",
- "user.settings.general.emailOffice365CantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailSamlCantUpdate": "Login occurs through SAML. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailUnchanged": "새로 입력한 이메일 주소가 기존과 동일합니다.",
- "user.settings.general.emptyName": "'편집'을 클릭하여 본명을 설정",
- "user.settings.general.emptyNickname": "'편집'을 클릭하여 별명을 설정",
- "user.settings.general.emptyPosition": "Click 'Edit' to add your job title / position",
- "user.settings.general.field_handled_externally": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
- "user.settings.general.firstName": "이름",
- "user.settings.general.fullName": "본명",
- "user.settings.general.imageTooLarge": "이미지를 업로드 할 수 없습니다. 파일이 너무 큽니다.",
- "user.settings.general.imageUpdated": "Image last updated {date}",
- "user.settings.general.lastName": "성",
- "user.settings.general.loginGitlab": "Login done through GitLab ({email})",
- "user.settings.general.loginGoogle": "Login done through GitLab ({email})",
- "user.settings.general.loginLdap": "Login done through LDAP ({email})",
- "user.settings.general.loginOffice365": "Login done through GitLab ({email})",
- "user.settings.general.loginSaml": "Login done through SAML ({email})",
- "user.settings.general.mobile.emptyName": "'편집'을 클릭하여 본명을 설정",
- "user.settings.general.mobile.emptyNickname": "'편집'을 클릭하여 별명을 설정",
- "user.settings.general.mobile.emptyPosition": "Click to add your job title / position",
- "user.settings.general.mobile.uploadImage": "'편집'을 클릭하여 사진 업로드",
- "user.settings.general.newAddress": "New Address: {email} Check your email to verify the above address.",
- "user.settings.general.newEmail": "New Email",
- "user.settings.general.nickname": "별명",
- "user.settings.general.nicknameExtra": "본명과 사용자명과는 다르게 불리는 고유한 이름을 사용하세요. 비슷한 이름을 가진 사람들이 모여있을 때 자주 사용됩니다.",
- "user.settings.general.notificationsExtra": "기본적으로 이 곳에 설정된 이름으로 언급되었을 때 멘션 알림을 받게됩니다. {notify}에서 기본 설정을 변경하세요.",
- "user.settings.general.notificationsLink": "알림",
- "user.settings.general.position": "Position",
- "user.settings.general.positionExtra": "Use Position for your role or job title. This will be shown in your profile popover.",
- "user.settings.general.profilePicture": "프로필 사진",
- "user.settings.general.title": "일반 설정",
- "user.settings.general.uploadImage": "'편집'을 클릭하여 사진 업로드",
- "user.settings.general.username": "사용자명",
- "user.settings.general.usernameInfo": "팀원들에게 불리기 쉬운 이름을 선택하세요.",
- "user.settings.general.usernameReserved": "예약된 사용자명입니다. 다른 이름을 선택하세요.",
- "user.settings.general.usernameRestrictions": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-', and '_'.",
- "user.settings.general.validEmail": "유효한 이메일 주소를 입력하세요.",
- "user.settings.general.validImage": "JPG 또는 PNG 이미지만 프로필 사진으로 사용할 수 있습니다.",
- "user.settings.import_theme.cancel": "취소",
- "user.settings.import_theme.importBody": "Slack 의 팀 메뉴에서 “Preferences -> Sidebar Theme”를 선택하세요. Custom theme 옵션을 선택 후, 테마 색상 값들을 복사하여 이 곳에 붙여넣으세요.",
- "user.settings.import_theme.importHeader": "Slack 테마 불러오기",
- "user.settings.import_theme.submit": "적용",
- "user.settings.import_theme.submitError": "Invalid format, please try copying and pasting in again.",
- "user.settings.languages.change": "언어 변경",
- "user.settings.languages.promote": "어떤 언어로 Mattermost 인터페이스를 표시할지 선택하세요.
? Mattermost 번역 서버에 가입하여 번역 품질에 기여해주세요.",
- "user.settings.mfa.add": "Add MFA to your account",
- "user.settings.mfa.addHelp": "Adding multi-factor authentication will make your account more secure by requiring a code from your mobile phone each time you sign in.",
- "user.settings.mfa.addHelpQr": "Please scan the bar code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app.",
- "user.settings.mfa.enterToken": "토큰 (숫자만)",
- "user.settings.mfa.qrCode": "바코드",
- "user.settings.mfa.remove": "Remove MFA from your account",
- "user.settings.mfa.removeHelp": "Removing multi-factor authentication means you will no longer require a phone-based passcode to sign-in to your account.",
- "user.settings.mfa.requiredHelp": "Multi-factor authentication is required on this server. Resetting is only recommended when you need to switch code generation to a new mobile device. You will be required to set it up again immediately.",
- "user.settings.mfa.reset": "Remove MFA from your account",
- "user.settings.mfa.secret": "보안",
- "user.settings.mfa.title": "Enable Multi-factor Authentication:",
- "user.settings.modal.advanced": "고급",
- "user.settings.modal.confirmBtns": "네, 취소합니다.",
- "user.settings.modal.confirmMsg": "저장되지 않은 변경사항이 있습니다, 저장하지 않고 취소하겠습니까?",
- "user.settings.modal.confirmTitle": "변경을 취소하시겠습니까?",
- "user.settings.modal.display": "화면",
- "user.settings.modal.general": "일반",
- "user.settings.modal.notifications": "알림",
- "user.settings.modal.security": "보안",
- "user.settings.modal.title": "계정 설정",
- "user.settings.notifications.allActivity": "모든 활동",
- "user.settings.notifications.channelWide": "채널 전체 멘션 \"@channel\", \"@all\"",
- "user.settings.notifications.close": "닫기",
- "user.settings.notifications.comments": "답글 알림",
- "user.settings.notifications.commentsAny": "등록하거나 답변했던 모든 스레드의 답변에 대해 알림",
- "user.settings.notifications.commentsInfo": "답글에 대한 알림 옵션을 선택해주세요.",
- "user.settings.notifications.commentsNever": "사용 안함",
- "user.settings.notifications.commentsRoot": "등록한 모든 스레드의 답변에 대해 알림",
- "user.settings.notifications.desktop": "알림 받기",
- "user.settings.notifications.desktop.allNoSoundForever": "모든 활동에 대해, 소리 없이 무기한 보여줍니다.",
- "user.settings.notifications.desktop.allNoSoundTimed": "모든 활동에 대해, 소리 없이 {seconds}초 동안 보여줍니다.",
- "user.settings.notifications.desktop.allSoundForever": "모든 활동에 대해 무기한 보여줍니다.",
- "user.settings.notifications.desktop.allSoundHiddenForever": "모든 활동에 대해 무기한 보여줍니다.",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "모든 활동에 대해, {seconds}초 동안 보여줍니다.",
- "user.settings.notifications.desktop.allSoundTimed": "모든 활동에 대해 {seconds}초 동안 보여줍니다.",
- "user.settings.notifications.desktop.duration": "알림 지속시간",
- "user.settings.notifications.desktop.durationInfo": "Sets how long desktop notifications will remain on screen when using Firefox or Chrome. Desktop notifications in Edge and Safari can only stay on screen for a maximum of 5 seconds.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "개인 메시지와 멘션에 대해, 소리 없이 무기한 보여줍니다.",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "개인 메시지와 멘션에 대해, 소리 없이 {seconds}초 동안 보여줍니다.",
- "user.settings.notifications.desktop.mentionsSoundForever": "개인 메시지와 멘션에 대해 무기한 보여줍니다.",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "개인 메시지와 멘션에 대해 무기한 보여줍니다",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "개인 메시지와 멘션에 대해, {seconds}초 동안 보여줍니다.",
- "user.settings.notifications.desktop.mentionsSoundTimed": "개인 메시지와 멘션에 대해, {seconds}초 동안 보여줍니다.",
- "user.settings.notifications.desktop.seconds": "{seconds}초 동안",
- "user.settings.notifications.desktop.sound": "알림음",
- "user.settings.notifications.desktop.title": "데스크탑 알림",
- "user.settings.notifications.desktop.unlimited": "제한 없음",
- "user.settings.notifications.desktopSounds": "데스크탑 알림음",
- "user.settings.notifications.email.disabled": "시스템 관리자에 의해 비활성화 됨",
- "user.settings.notifications.email.disabled_long": "Email notifications have been disabled by your System Administrator.",
- "user.settings.notifications.email.everyHour": "매 시간마다",
- "user.settings.notifications.email.everyXMinutes": "Every {count, plural, one {minute} other {{count, number} minutes}}",
- "user.settings.notifications.email.immediately": "바로",
- "user.settings.notifications.email.never": "사용 안함",
- "user.settings.notifications.email.send": "알림 받기",
- "user.settings.notifications.emailBatchingInfo": "Notifications received over the time period selected are combined and sent in a single email.",
- "user.settings.notifications.emailInfo": "이메일 알림은 멘션 혹은 개인 메세지를 받았을때, 당신이 {siteName}로부터 오프라인 상태로 60초가 지났거나 자리비움상태로 5분 이상 지났을때 알림이 갑니다.",
- "user.settings.notifications.emailNotifications": "이메일 알림",
- "user.settings.notifications.header": "알림",
- "user.settings.notifications.info": "Desktop notifications are available on Edge, Firefox, Safari, Chrome and Mattermost Desktop Apps.",
- "user.settings.notifications.mentionsInfo": "Mentions trigger when someone sends a message that includes your username (\"@{username}\") or any of the options selected above.",
- "user.settings.notifications.never": "사용 안함",
- "user.settings.notifications.noWords": "설정한 단어가 없습니다",
- "user.settings.notifications.off": "사용 안함",
- "user.settings.notifications.on": "사용함",
- "user.settings.notifications.onlyMentions": "개인 메시지와 멘션",
- "user.settings.notifications.push": "모바일 푸시 알림",
- "user.settings.notifications.push_notification.status": "지정한 상태일 때 모바일 푸시 알림",
- "user.settings.notifications.sensitiveName": "내 이름 \"{first_name}\" (대소문자 구별 안함)",
- "user.settings.notifications.sensitiveUsername": "내 사용자명 \"{username}\" (대소문자 구별 안함)",
- "user.settings.notifications.sensitiveWords": "다른 알림받을 단어들을 쉼표로 구분하여 입력: (대소문자 구별 안함)",
- "user.settings.notifications.soundConfig": "브라우저 설정에서 알림 소리를 변경하세요",
- "user.settings.notifications.sounds_info": "Notification sounds are available on IE11, Safari, Chrome and Mattermost Desktop Apps.",
- "user.settings.notifications.teamWide": "팀 전체 멘션 \"@all\"",
- "user.settings.notifications.title": "알림 설정",
- "user.settings.notifications.wordsTrigger": "멘션 알림",
- "user.settings.push_notification.allActivity": "For all activity",
- "user.settings.push_notification.allActivityAway": "오프라인이거나 자리비움 상태일 때의 모든 활동",
- "user.settings.push_notification.allActivityOffline": "오프라인일 때의 모든 활동",
- "user.settings.push_notification.allActivityOnline": "온라인, 오프라인, 자리비움 상태의 모든 활동",
- "user.settings.push_notification.away": "오프라인이거나 자리비움",
- "user.settings.push_notification.disabled": "시스템 관리자에 의해 비활성화 됨",
- "user.settings.push_notification.disabled_long": "모바일 기기를 위한 푸시 알림 기능이 시스템 관리자에 의해 비활성화 되었습니다.",
- "user.settings.push_notification.info": "지정한 활동에 대해서만 모바일 푸시 알림을 받습니다.",
- "user.settings.push_notification.off": "끄기",
- "user.settings.push_notification.offline": "오프라인",
- "user.settings.push_notification.online": "온라인, 오프라인, 자리비움",
- "user.settings.push_notification.onlyMentions": "For mentions and direct messages",
- "user.settings.push_notification.onlyMentionsAway": "오프라인이거나 자리를 비웠을 때, 개인 메시지와 멘션에 대해 알림",
- "user.settings.push_notification.onlyMentionsOffline": "오프라인일 때, 개인 메시지와 멘션에 대해 알림",
- "user.settings.push_notification.onlyMentionsOnline": "모든 개인 메시지와 멘션에 대해 알림",
- "user.settings.push_notification.send": "알림 받기",
- "user.settings.push_notification.status": "지정한 상태일 때 모바일 푸시 알림",
- "user.settings.push_notification.status_info": "지정한 상태일때만 모바일 푸시 알림을 받습니다.",
- "user.settings.security.active": "Active",
- "user.settings.security.close": "닫기",
- "user.settings.security.currentPassword": "현재 패스워드",
- "user.settings.security.currentPasswordError": "현재 패스워드를 입력해주세요",
- "user.settings.security.deauthorize": "Deauthorize",
- "user.settings.security.emailPwd": "이메일과 패스워드",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "비활성화",
- "user.settings.security.lastUpdated": "{date} {time} 에 마지막으로 변경됨",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Gitlab을 통해 로그인 되었습니다.",
- "user.settings.security.loginGoogle": "Login done through Google Apps",
- "user.settings.security.loginLdap": "LDAP을 통해 로그인 되었습니다.",
- "user.settings.security.loginOffice365": "Login done through Office 365",
- "user.settings.security.loginSaml": "Gitlab을 통해 로그인 되었습니다.",
- "user.settings.security.logoutActiveSessions": "활성화 된 세션 보기/로그아웃 하기",
- "user.settings.security.method": "접속 방식",
- "user.settings.security.newPassword": "새로운 패스워드",
- "user.settings.security.noApps": "허가된 OAuth 2.0 애플리케이션이 없습니다.",
- "user.settings.security.oauthApps": "OAuth 2.0 애플리케이션",
- "user.settings.security.oauthAppsDescription": "'편집'을 눌러 OAuth 2.0 애플리케이션을 관리하세요",
- "user.settings.security.oauthAppsHelp": "Applications act on your behalf to access your data based on the permissions you grant them.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "You may only have one sign-in method at a time. Switching sign-in method will send an email notifying you if the change was successful.",
- "user.settings.security.password": "패스워드",
- "user.settings.security.passwordError": "단어가 {min}글자 이상, {max}글자 이하여야 합니다.",
- "user.settings.security.passwordErrorLowercase": "Your password must contain at least {min} characters made up of at least one lowercase letter.",
- "user.settings.security.passwordErrorLowercaseNumber": "Your password must contain at least {min} characters made up of at least one lowercase letter and at least one number.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Your password must contain at least {min} characters made up of at least one lowercase letter and at least one uppercase letter.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one uppercase letter, and at least one number.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one uppercase letter, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Your password must contain at least {min} characters made up of at least one number.",
- "user.settings.security.passwordErrorNumberSymbol": "Your password must contain at least {min} characters made up of at least one number and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Your password must contain at least {min} characters made up of at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Your password must contain at least {min} characters made up of at least one uppercase letter.",
- "user.settings.security.passwordErrorUppercaseNumber": "Your password must contain at least {min} characters made up of at least one uppercase letter and at least one number.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Your password must contain at least {min} characters made up of at least one uppercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Login occurs through GitLab. Password cannot be updated.",
- "user.settings.security.passwordGoogleCantUpdate": "Login occurs through GitLab. Password cannot be updated.",
- "user.settings.security.passwordLdapCantUpdate": "Login occurs through LDAP. Password cannot be updated.",
- "user.settings.security.passwordMatchError": "다시 입력한 새로운 패스워드가 일치하지 않습니다.",
- "user.settings.security.passwordMinLength": "Invalid minimum length, cannot show preview.",
- "user.settings.security.passwordOffice365CantUpdate": "Login occurs through GitLab. Password cannot be updated.",
- "user.settings.security.passwordSamlCantUpdate": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
- "user.settings.security.retypePassword": "새로운 패스워드 확인",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "이메일과 패스워드를 사용하도록 변경",
- "user.settings.security.switchGitlab": "GitLab SSO을 사용하도록 변경",
- "user.settings.security.switchGoogle": "Google SSO을 사용하도록 변경",
- "user.settings.security.switchLdap": "LDAP을 사용하도록 변경",
- "user.settings.security.switchOffice365": "Office 365 SSO을 사용하도록 변경",
- "user.settings.security.switchSaml": "SAML SSO을 사용하도록 변경",
- "user.settings.security.title": "보안 설정",
- "user.settings.security.viewHistory": "접속 내역 보기",
- "user.settings.tokens.cancel": "취소",
- "user.settings.tokens.clickToEdit": "Click 'Edit' to manage your personal access tokens",
- "user.settings.tokens.confirmCreateButton": "Yes, Create",
- "user.settings.tokens.confirmCreateMessage": "You are generating a personal access token with System Admin permissions. Are you sure want to create this token?",
- "user.settings.tokens.confirmCreateTitle": "Create System Admin Personal Access Token",
- "user.settings.tokens.confirmDeleteButton": "Yes, Delete",
- "user.settings.tokens.confirmDeleteMessage": "Any integrations using this token will no longer be able to access the Mattermost API. You cannot undo this action.
Are you sure want to delete the {description} token?",
- "user.settings.tokens.confirmDeleteTitle": "Delete Token?",
- "user.settings.tokens.copy": "Please copy the access token below. You won't be able to see it again!",
- "user.settings.tokens.create": "Create New Token",
- "user.settings.tokens.delete": "삭제",
- "user.settings.tokens.description": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API.",
- "user.settings.tokens.description_mobile": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API. Create new tokens on your desktop.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "사이트 설명",
- "user.settings.tokens.nameHelp": "Enter a description for your token to remember what it does.",
- "user.settings.tokens.nameRequired": "Please enter a description.",
- "user.settings.tokens.save": "저장",
- "user.settings.tokens.title": "Personal Access Tokens",
- "user.settings.tokens.token": "Access Token: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
- "user_list.notFound": "사용자를 찾을 수 없습니다 :(",
- "user_profile.send.dm": "Send Message",
- "user_profile.webrtc.call": "영상통화 시작",
- "user_profile.webrtc.offline": "사용자가 오프라인입니다",
- "user_profile.webrtc.unavailable": "New call unavailable until your existing call ends",
- "view_image.loading": "로딩 중 ",
- "view_image_popover.download": "다운로드",
- "view_image_popover.file": "File {count, number} of {total, number}",
- "view_image_popover.publicLink": "공개 링크 보기",
- "web.footer.about": "알아보기",
- "web.footer.help": "도움말",
- "web.footer.privacy": "정책",
- "web.footer.terms": "서비스 약관",
- "web.header.back": "돌아가기",
- "web.header.logout": "로그아웃",
- "web.root.signup_info": "모든 팀 커뮤니케이션 활동을 한 곳에 모아 빠르게 찾고 공유할 수 있습니다.",
- "webrtc.busy": "{username} is busy.",
- "webrtc.call": "통화",
- "webrtc.callEnded": "{username}과/와의 통화가 종료되었습니다.",
- "webrtc.cancel": "통화 취소",
- "webrtc.cancelled": "{username} cancelled the call.",
- "webrtc.declined": "Your call has been declined by {username}.",
- "webrtc.disabled": "{username} has WebRTC disabled, and cannot receive calls. To enable the feature, they must go to Account Settings > Advanced > Preview pre-release features and turn on WebRTC.",
- "webrtc.failed": "There was a problem connecting the video call.",
- "webrtc.hangup": "끊어짐",
- "webrtc.header": "{username}과/와의 통화",
- "webrtc.inProgress": "You have a call in progress. Please hangup first.",
- "webrtc.mediaError": "Unable to access camera or microphone.",
- "webrtc.mute_audio": "마이크 음소거",
- "webrtc.noAnswer": "{username} is not answering the call.",
- "webrtc.notification.answer": "응답",
- "webrtc.notification.decline": "거부",
- "webrtc.notification.incoming_call": "{username} is calling you.",
- "webrtc.notification.returnToCall": "Return to ongoing call with {username}",
- "webrtc.offline": "{username}(이)가 오프라인입니다.",
- "webrtc.pause_video": "카메라 끄기",
- "webrtc.unmute_audio": "Unmute microphone",
- "webrtc.unpause_video": "카메라 켜기",
- "webrtc.unsupported": "{username}의 클라이언트가 영상통화를 지원하지 않습니다.",
- "youtube_video.notFound": "패스워드를 찾을 수 없습니다."
-}
diff --git a/webapp/i18n/nl.json b/webapp/i18n/nl.json
deleted file mode 100644
index f6beaf7798d..00000000000
--- a/webapp/i18n/nl.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Afsluiten",
- "about.copyright": "Copyright 2016 Mattermost, Inc. Alle rechten voorbehouden",
- "about.database": "Database:",
- "about.date": "Compilatiedatum:",
- "about.enterpriseEditionLearn": "Meer informatie over de Enterprise-Editie op",
- "about.enterpriseEditionSt": "Moderne communicatie achter de eigen firewall.",
- "about.enterpriseEditione1": "Enterprise-Editie",
- "about.hash": "Compilatiehash:",
- "about.hashee": "EE Compilatiehash:",
- "about.licensed": "Licentie verleend aan:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Compilatienummer:",
- "about.teamEditionLearn": "Kom bij de Mattermost-gemeenschap op ",
- "about.teamEditionSt": "Alle team-communicatie op één plaats, doorzoekbaar en van overal bereikbaar.",
- "about.teamEditiont0": "Team-Editie",
- "about.teamEditiont1": "Enterprise-Editie",
- "about.title": "Over Mattermost",
- "about.version": "Versie:",
- "access_history.title": "Toegang geschiedenis",
- "activity_log.activeSessions": "Actieve sessies",
- "activity_log.browser": "Webbrowser: {browser}",
- "activity_log.firstTime": "Eerste keer actief: {date}, {time}",
- "activity_log.lastActivity": "Laatste activiteit: {date}, {time}",
- "activity_log.logout": "Afmelden",
- "activity_log.moreInfo": "Meer informatie",
- "activity_log.os": "OS: {os}",
- "activity_log.sessionId": "Sessie ID: {id}",
- "activity_log.sessionsDescription": "Sessies worden gemaakt wanneer je inlogt met een nieuwe webbrowser. Met een sessie kan Mattermost je gebruiken zonder dat je opnieuw hoeft in te loggen tijdens de ingestelde periode. Om eerder uit te loggen, gebruik je de 'Afmelden'-knop hieronder.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Android-applicatie",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Native Desktop App",
- "activity_log_modal.iphoneNativeApp": "iPhone-app",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "Automatisch aanvullen",
- "add_command.autocomplete.help": "(Optioneel) Toon slash-commando's bij het automatisch aanvullen.",
- "add_command.autocompleteDescription": "Automatisch aanvullen omgeschrijving",
- "add_command.autocompleteDescription.help": "(Optionele) Korte omschrijving van de 'slash'-opdracht die wordt getoond bij het automatisch aanvullen.",
- "add_command.autocompleteDescription.placeholder": "Bijvoorbeeld: \"Geeft zoekresultaten op patiëntendossiers\"",
- "add_command.autocompleteHint": "Automatisch-aanvullen-tip",
- "add_command.autocompleteHint.help": "(Optioneel) Argumenten gerelateerd tot jouw slash commando, worden getoond als help in de autocompleet lijst",
- "add_command.autocompleteHint.placeholder": "Bijvoorbeeld: [Patiëntnaam]",
- "add_command.cancel": "Annuleren",
- "add_command.description": "Omschrijving",
- "add_command.description.help": "Omschrijving van jouw inkomende webhook.",
- "add_command.displayName": "Weergavenaam",
- "add_command.displayName.help": "Weergavenaam van je slash-commando, maximaal 64 tekens.",
- "add_command.doneHelp": "Je slash-commando is aangemaakt. Het onderstaande token zal verstuurd worden in de uitgaande payload. Gebruik het om te verifiëren dat het verzoek kwam van jouw Mattermost-team (zie de documentatie voor meer informatie).",
- "add_command.iconUrl": "Reactie-icoon",
- "add_command.iconUrl.help": "Kies een alternatieve profielafbeelding om bij de berichten uit slash opdrachten te plaatsen. Kies een URL die naar een .png of .jpg bestand wijst, die minstens 128 bij 128 pixels groot is.",
- "add_command.iconUrl.placeholder": "https://www.example.com/mijnicoon.png",
- "add_command.method": "Aanvraagmethode",
- "add_command.method.get": "GET",
- "add_command.method.help": "Het type opdracht dat aangevraagd is via de aanvraag URL.",
- "add_command.method.post": "POST",
- "add_command.save": "Opslaan",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Sleutelwoord voor opdracht",
- "add_command.trigger.help": "Het sleutelwoord moet uniek zijn, en kan niet beginnen met een slash of spaties bevatten.",
- "add_command.trigger.helpExamples": "Voorbeelden: klant, werknemer, patiënt, weer",
- "add_command.trigger.helpReserved": "Gereserveerd: {link}",
- "add_command.trigger.helpReservedLinkText": "bekijk een lijst van ingebouwde slash commando's",
- "add_command.trigger.placeholder": "Sleutelwoord, bv. \"hallo\"",
- "add_command.triggerInvalidLength": "Een activeer-woord moet minimaal {min} en maximaam {max} tekens bevatten",
- "add_command.triggerInvalidSlash": "Een activeer-woord kan niet met een / beginnen",
- "add_command.triggerInvalidSpace": "Een activeer-woord kan geen spaties bevatten",
- "add_command.triggerRequired": "Een activeer woord is vereist",
- "add_command.url": "Aanvraag-URL",
- "add_command.url.help": "De URL waarnaar het HTTP-POST- of -GET-verzoek gestuurd wordt wanneer het slash-commando gebruikt wordt.",
- "add_command.url.placeholder": "Moet beginnen met http:// of https://",
- "add_command.urlRequired": "Een aanvraag-URL is vereist",
- "add_command.username": "Gebruikersnaam voor de reactie",
- "add_command.username.help": "(Optioneel) Kies een gebruikersnaam waarmee die slash opdracht kan reageren. Gebruikersnamen kunnen bestaan uit maximaal 22 kleine letters, cijfers en de symbolen \"-\", \"_\", en \".\" .",
- "add_command.username.placeholder": "Gebruikersnaam",
- "add_emoji.cancel": "Annuleren",
- "add_emoji.header": "Toevoegen",
- "add_emoji.image": "Afbeelding",
- "add_emoji.image.button": "Selecteer",
- "add_emoji.image.help": "Choose the image for your emoji. The image can be a gif, png, or jpeg file with a max size of 1 MB. Dimensions will automatically resize to fit 128 by 128 pixels but keeping aspect ratio.",
- "add_emoji.imageRequired": "Een afbeelding is verplicht voor de emoji",
- "add_emoji.name": "Naam",
- "add_emoji.name.help": "Kies een naam voor je emoji, van maximaal 64 karakters met kleine letters, cijfers en de symbolen '-' en '_'.",
- "add_emoji.nameInvalid": "Een naam van een emoji kan alleen cijfers, letters en de symbolen '-' en '_' bevatten.",
- "add_emoji.nameRequired": "Een naam is verplicht voor de emoji",
- "add_emoji.nameTaken": "Deze naam is al in gebruik door een systeememoji. Kies een andere naam.",
- "add_emoji.preview": "Voorbeeld",
- "add_emoji.preview.sentence": "Deze zin bevat {image}.",
- "add_emoji.save": "Opslaan",
- "add_incoming_webhook.cancel": "Annuleren",
- "add_incoming_webhook.channel": "Kanaal",
- "add_incoming_webhook.channel.help": "Publiek kanaal of privé groep wat webhook payloads ontvangt. Je moet lid zijn van de privé groep om deze webhook in te stellen.",
- "add_incoming_webhook.channelRequired": "Een geldig kanaal is vereist",
- "add_incoming_webhook.description": "Omschrijving",
- "add_incoming_webhook.description.help": "Omschrijving van jouw inkomende webhook.",
- "add_incoming_webhook.displayName": "Weergavenaam",
- "add_incoming_webhook.displayName.help": "Weergavenaam voor jouw inkomende webhook van maximaal 64 karakters.",
- "add_incoming_webhook.doneHelp": "De inkomende webhook is ingesteld. Stuur data naar de onderstaande URL (zie de documentatie voor meer informatie).",
- "add_incoming_webhook.name": "Naam",
- "add_incoming_webhook.save": "Opslaan",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "De doorstuur URL's waarnaar de service zal doorsturen nadat gebruikers de autorisatie van de applicatie hebben afgewezen of toegestaan, welke de autorisatie codes of tokens zal afhandelen. Moet een geldige URL zijn en beginnen met http:// of https://.",
- "add_oauth_app.callbackUrlsRequired": "En of meerdere callback URL's zijn vereist",
- "add_oauth_app.clientId": "Client ID: {id}",
- "add_oauth_app.clientSecret": "Client Secret: {secret}",
- "add_oauth_app.description.help": "Omschrijving voor jouw OAuth 2.0 applicatie.",
- "add_oauth_app.descriptionRequired": "Omschrijving voor jouw OAuth 2.0 applicatie is verplicht.",
- "add_oauth_app.doneHelp": "Your OAuth 2.0 application has been set up. Please use the following Client ID and Client Secret when requesting authorization for your application (see documentation for further details).",
- "add_oauth_app.doneUrlHelp": "De volgende zijn jouw geautoriseerde doorstuur URL(s).",
- "add_oauth_app.header": "Toevoegen",
- "add_oauth_app.homepage.help": "De URL van de homepagina van de OAuth 2.0 applicatie. Gebruik HTTP of HTTPS in de URL afhankelijk van de configuratie.",
- "add_oauth_app.homepageRequired": "Homepagina van de OAuth 2.0 applicatie is verplicht. ",
- "add_oauth_app.icon.help": "(Optioneel) De URL van de afbeelding die gebruikt word voor jouw OAuth 2.0 applicatie. Gebruik HTTP of HTTPS in jouw URL.",
- "add_oauth_app.name.help": "Weergavenaam voor jouw OAuth 2.0 applicatie van maximaal 64 karakters.",
- "add_oauth_app.nameRequired": "Naam van de OAuth 2.0 applicatie is verplicht.",
- "add_oauth_app.trusted.help": "Wanneer waar, de OAuth 2.0 applicatie is vertrouwd door de Mattermost server en verplicht de gebruiker niet om autorisatie te accepteren. Wanneer niet waar, zal er additioneel venster verschijnen, met de vraag of de gebruiker dit verzoek wil toestaan of afwijzen.",
- "add_oauth_app.url": "URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "Aanvraag URL's (Een per regel)",
- "add_outgoing_webhook.callbackUrls.help": "De URL waar berichten naartoe worden gezonden.",
- "add_outgoing_webhook.callbackUrlsRequired": "En of meerdere aanvraag URL's zijn vereist",
- "add_outgoing_webhook.cancel": "Annuleren",
- "add_outgoing_webhook.channel": "Kanaal",
- "add_outgoing_webhook.channel.help": "Publiek kanaal wat webhook payloads ontvangt. Optioneel als er minimaal 1 Trigger Woord is gespecificeerd. ",
- "add_outgoing_webhook.contentType.help1": "Kies de content type van de te verzenden antwoord.",
- "add_outgoing_webhook.contentType.help2": "Als application/x-www-form-urlencoded is gekozen, dan zal de server aannemen dat je de parameters in een URL formaat stuurt. ",
- "add_outgoing_webhook.contentType.help3": "Als application/json is gekozen, neemt de server aan dat je JSON data zult posten.",
- "add_outgoing_webhook.content_Type": "Content Type",
- "add_outgoing_webhook.description": "Omschrijving",
- "add_outgoing_webhook.description.help": "Omschrijving van jouw uitgaande webhook.",
- "add_outgoing_webhook.displayName": "Weergavenaam",
- "add_outgoing_webhook.displayName.help": "Weergavenaam voor jouw uitgaande webhook van maximaal 64 karakters.",
- "add_outgoing_webhook.doneHelp": "Jouw uitgaande webhook is ingesteld. Het onderstaande token zal worden verstuurd in de uitgaande payload. Wees er zeker van dat het verzoek kwam van jouw Mattermost team (zie documentatie voor meer informatie). ",
- "add_outgoing_webhook.name": "Naam",
- "add_outgoing_webhook.save": "Opslaan",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Activeer woorden (één per regel)",
- "add_outgoing_webhook.triggerWords.help": "Berichten die starten met 1 van de gespecificeerde woorden zullen de uitgaande webhook triggeren. Optioneel als het Kanaal is geselecteerd.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Een geldig kanaal, of een lijst van activeer-woorden is vereist",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Activatiewoord",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Kies wanneer de activatie voor uitgaande webhook in werking treed; wanneer het eerste woord van het bericht overeenkomt met een trigger-woord, of wanneer het start met een trigger-woord.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "Eerste trigger woord komt exact overeen",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "Eerste woord start met een trigger woord",
- "add_users_to_team.title": "Add New Members To {teamName} Team",
- "admin.advance.cluster": "High Availability",
- "admin.advance.metrics": "Performance Monitoring",
- "admin.audits.reload": "Laad de gebruikeractiviteit logs opnieuw",
- "admin.audits.title": "Gebruiker activiteits logs",
- "admin.authentication.email": "Email Authentication",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Opmerking:",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "Mattermost SAML logins toestaan. Lees hier de documentatie over het configureren van SAML voor Mattermost.",
- "admin.cluster.enableTitle": "High Availability modus aanzetten:",
- "admin.cluster.interNodeListenAddressDesc": "Het adres waarop de server zal luisteren voor communicatie met andere servers.",
- "admin.cluster.interNodeListenAddressEx": "Bijv.: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Inter-Node Listen Adres:",
- "admin.cluster.interNodeUrlsDesc": "De interne/privé URL's van alle Mattermost servers gescheiden door komma's. ",
- "admin.cluster.interNodeUrlsEx": "Bijv.: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Inter-Node URL's:",
- "admin.cluster.loadedFrom": "Het configuratiebestand was geladen van Node ID {clusterId}. Zie de Troubleshooting Guide in onze documentatie als je problemen ondervind bij de toegang tot de Systeem Console via een loadbalancer.",
- "admin.cluster.noteDescription": "Het veranderen van configuratie in deze sectie zal een server herstart vereisen voordat het in werking treed. Wanneer High Availability mode geactiveerd is, zal System Console op alleen-lezen gezet worden en kan alleen gewijzigd worden via het configuratie bestand.",
- "admin.cluster.should_not_change": "Waarschuwing: Deze instellingen zullen waarschijnlijk niet in sync staat met andere servers in het cluster. High Availability inter-node communicatie zal niet starten tot config.json gelijk is op alle servers en Mattermost is herstart. Bekijk de documentatie om te zien hoe je een server aan het cluster toevoegt of verwijdert. Wanneer u de Systeem Console via een load balancer benadert en problemen ervaart, lees de Troubleshooting Guide in onze documentatie.",
- "admin.cluster.status_table.config_hash": "Configuratie Bestand MD5",
- "admin.cluster.status_table.hostname": "Hostnaam",
- "admin.cluster.status_table.id": "Node ID",
- "admin.cluster.status_table.reload": " Herlaad Cluster Status",
- "admin.cluster.status_table.status": "Status",
- "admin.cluster.status_table.url": "Gossip Address",
- "admin.cluster.status_table.version": "Versie",
- "admin.cluster.unknown": "unknown",
- "admin.compliance.directoryDescription": "De directory waar de \"compliance\" rapporten worden weggeschreven. Indien leeg, word ./data/ gebruikt.",
- "admin.compliance.directoryExample": "Bijv.: \"./data/\"",
- "admin.compliance.directoryTitle": "Nalevingsrapport Map:",
- "admin.compliance.enableDailyDesc": "Indien gekozen, dan zal Mattermost dagenlijks een \"compliance\" rapport genereren.",
- "admin.compliance.enableDailyTitle": "Schakel dagenlijkse rapportages in:",
- "admin.compliance.enableDesc": "Wanneer aanstaat, Mattermost staat toe om te rapporteren vanaf de Compliance and Auditing tab. Bekijk de documentatie om meer te lezen.",
- "admin.compliance.enableTitle": "Inschakelen Nalevingsrapport:",
- "admin.compliance.false": "uitgeschakeld",
- "admin.compliance.noLicense": "
Noot:
'Compliance' is een enterprise optie, welke geen deel uitmaakt van de huidige licentie. Klink hier voor meer informatie en prijzen van de enterprise licentie(s).
\"Send generic description with sender and channel names\" includes the name of the person who sent the message and the channel it was sent in, but not the message text.
\"Send full message snippet\" includes a message excerpt in push notifications, which may contain confidential information sent in messages. If your Push Notification Service is outside your firewall, it is *highly recommended* this option only be used with an \"https\" protocol to encrypt the connection.",
- "admin.email.pushContentTitle": "Push meldings-berichten:",
- "admin.email.pushDesc": "Meestal ingesteld op ingeschakeld in productie. Wanneer dit ingeschakeld is, zal Mattermost iOS-en Android-push-berichten verzenden via de push meldings-server.",
- "admin.email.pushOff": "Verstuur geen meldings-notificaties",
- "admin.email.pushOffHelp": "Zie de documentatie over push-meldingen voor meer informatie over setup-opties.",
- "admin.email.pushServerDesc": "Locatie van Mattermost push meldingen service kunt u achter uw firewall gebruiken via https://github.com/mattermost/push-proxy. Voor het testen kunt u gebruik maken van http://push-test.mattermost.com die een verbinding maakt van de voorbeeld Mattermost iOS-app in de openbare AppStore van Apple. Gebruik geen test service voor productie-implementaties.",
- "admin.email.pushServerEx": "Bijv.: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Push meldingen-server:",
- "admin.email.pushTitle": "Inschakelen Push Meldingen: ",
- "admin.email.requireVerificationDescription": "Meestal ingesteld op ingeschakeld in productie. Wanneer dit ingeschakeld is, zal Mattermost een e-mail verificatie versturen na het aanmaken van een account voor het maken van een account. Ontwikkelaars kunnen dit veld op uitgeschakeld zetten om het versturen van de verificatie-e-mails over te slaan voor een snellere ontwikkeling.",
- "admin.email.requireVerificationTitle": "Vereist e-mail verificatie: ",
- "admin.email.selfPush": "Voer de locatie van de push meldingen service handmatig in",
- "admin.email.skipServerCertificateVerification.description": "When true, Mattermost will not verify the email server certificate.",
- "admin.email.skipServerCertificateVerification.title": "Overslaan van certificaat verificatie:",
- "admin.email.smtpPasswordDescription": "The password associated with the SMTP username.",
- "admin.email.smtpPasswordExample": "Bijv. \"uwwachtwoord\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "SMTP server wachtwoord:",
- "admin.email.smtpPortDescription": "De poort van de SMTP (mailserver).",
- "admin.email.smtpPortExample": "E.g.: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "SMTP server poort :",
- "admin.email.smtpServerDescription": "Naam of ip adres van de SMTP (mail)server.",
- "admin.email.smtpServerExample": "Bijv. \"smtp.uwbedrijf.nl\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "SMTP (mail)server:",
- "admin.email.smtpUsernameDescription": "The username for authenticating to the SMTP server.",
- "admin.email.smtpUsernameExample": "Bv. \"beheerder@uwbedrijf.nl\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "SMTP server gebruikersnaam:",
- "admin.email.testing": "Testen...",
- "admin.false": "uitgeschakeld",
- "admin.file.enableFileAttachments": "Allow File Sharing:",
- "admin.file.enableFileAttachmentsDesc": "When false, disables file sharing on the server. All file and image uploads on messages are forbidden across clients and devices, including mobile.",
- "admin.file.enableMobileDownloadDesc": "When false, disables file downloads on mobile apps. Users can still download files from a mobile web browser.",
- "admin.file.enableMobileDownloadTitle": "Allow File Downloads on Mobile:",
- "admin.file.enableMobileUploadDesc": "When false, disables file uploads on mobile apps. If Allow File Sharing is set to true, users can still upload files from a mobile web browser.",
- "admin.file.enableMobileUploadTitle": "Allow File Uploads on Mobile:",
- "admin.file_upload.chooseFile": "Kies een bestand",
- "admin.file_upload.noFile": "Geen bestand geüpload",
- "admin.file_upload.uploadFile": "Upload",
- "admin.files.images": "Afbeeldingen",
- "admin.files.storage": "Opslag",
- "admin.general.configuration": "Configuratie",
- "admin.general.localization": "Lokalisatie",
- "admin.general.localization.availableLocalesDescription": "Stel in welke talen beschikbaar zijn om tussen te wisselen in de Acount Instellingen (laat dit veld leeg om alle ondersteunde talen beschikbaar te stellen). Als je handmatig nieuwe talen opgeeft, de Standaard Taal moet worden toegevoegd voor je dit opslaat.
Wil je helpen met vertalen? Word lid van de Mattermost Vertaal Server.",
- "admin.general.localization.availableLocalesNoResults": "No results found",
- "admin.general.localization.availableLocalesNotPresent": "The default client language must be included in the available list",
- "admin.general.localization.availableLocalesTitle": "Beschikbare talen:",
- "admin.general.localization.clientLocaleDescription": "Standaard taal voor nieuw aangemaakte gebruikers en pagina's bij eerste bezoek.",
- "admin.general.localization.clientLocaleTitle": "Standaard client taal:",
- "admin.general.localization.serverLocaleDescription": "Standaard taal voor de systeem-berichten en logboeken. Indien dit wordt gewijzigd moet de server opnieuw worden opgestart.",
- "admin.general.localization.serverLocaleTitle": "Standaard server taal:",
- "admin.general.log": "Loggen",
- "admin.general.policy": "Beleid",
- "admin.general.policy.allowBannerDismissalDesc": "When true, users can dismiss the banner until its next update. When false, the banner is permanently visible until it is turned off by the System Admin.",
- "admin.general.policy.allowBannerDismissalTitle": "Allow Banner Dismissal:",
- "admin.general.policy.allowEditPostAlways": "Any time",
- "admin.general.policy.allowEditPostDescription": "Set policy on the length of time authors have to edit their messages after posting.",
- "admin.general.policy.allowEditPostNever": "Nooit",
- "admin.general.policy.allowEditPostTimeLimit": "seconds after posting",
- "admin.general.policy.allowEditPostTitle": "Allow users to edit their messages:",
- "admin.general.policy.bannerColorTitle": "Banner Color:",
- "admin.general.policy.bannerTextColorTitle": "Banner Text Color:",
- "admin.general.policy.bannerTextDesc": "Text that will appear in the announcement banner.",
- "admin.general.policy.bannerTextTitle": "Banner Text:",
- "admin.general.policy.enableBannerDesc": "Enable an announcement banner across all teams.",
- "admin.general.policy.enableBannerTitle": "Enable Announcement Banner:",
- "admin.general.policy.permissionsAdmin": "Team en Systeem Admins",
- "admin.general.policy.permissionsAll": "Alle teamleden",
- "admin.general.policy.permissionsAllChannel": "All channel members",
- "admin.general.policy.permissionsChannelAdmin": "Channel, Team and System Admins",
- "admin.general.policy.permissionsDeletePostAdmin": "Team en Systeem Admins",
- "admin.general.policy.permissionsDeletePostAll": "Message authors can delete their own messages, and Administrators can delete any message",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Systeem beheerders",
- "admin.general.policy.permissionsSystemAdmin": "Systeem beheerders",
- "admin.general.policy.restrictPostDeleteDescription": "Set policy on who has permission to delete messages.",
- "admin.general.policy.restrictPostDeleteTitle": "Allow which users to delete messages:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Set policy on who can create private channels.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Enable private channel creation for:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "command line tool",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Set policy on who can delete private channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Enable private channel deletion for:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Set policy on who can add and remove members from private channels.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Enable managing of private channel members for:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Stel in wie publieke kanalen kan maken, verwijderen, hernoemen, en de koptekst en het doel ervan instellen.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Enable private channel renaming for:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Set policy on who can create public channels.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Enable public channel creation for:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "command line tool",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Set policy on who can delete public channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Enable public channel deletion for:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Stel in wie publieke kanalen kan maken, verwijderen, hernoemen, en de koptekst en het doel ervan instellen.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Enable public channel renaming for:",
- "admin.general.policy.teamInviteDescription": "Zet een policy op wie er anderen kan uitnodigen om lid te worden van een team met Nodig Nieuw Lid Uit om uit te nodigen per email, of de Krijg Team Uitnodigings Link opties vanuit het Hoofdmenu. Als Krijg Team Uitnodigings Link is gebruikt om een link te delen, kan je de link laten verlopen in de Team Instellingen > Uitnodigings Code nadat de gewenste gebruikers lid zijn geworden van het team.",
- "admin.general.policy.teamInviteTitle": "Versturen van team uitnodigingen toestaan vanaf:",
- "admin.general.privacy": "Privacy",
- "admin.general.usersAndTeams": "Gebruikers en Teams",
- "admin.gitab.clientSecretDescription": "Gebruik bovenstaande instructies om de waarde te bepalen, zodat via GitLab ingelogt kan worden.",
- "admin.gitlab.EnableHtmlDesc": "
Log in op uw GitLab account en ga naar Profiel Instellingen -> Toepassingen.
Voer redirect URI's \"/login/gitlab/complete\" (bijv.: http://localhost:8065/login/gitlab/complete) en \"/signup/gitlab/complete\".
en gebruik vervolgens de \"Geheim\" en \"Id\" velden van GitLab om op onderstaande opties te voltooien.
Het voltooien van de eindpunt-URL's hieronder.
",
- "admin.gitlab.authDescription": "Geef https:///oauth/authorize in (bijvoorbeeld https://example.com:3000/oauth/authorize). Zorg ervoor dat u HTTP of HTTPS in de URL gebruikt, afhankelijk van de configuratie van uw server.",
- "admin.gitlab.authExample": "Bijv.: \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Auth eindpunt:",
- "admin.gitlab.clientIdDescription": "Bepaal deze waarde via de instructies hierboven, zodat ingelogt kan worden via GitLab",
- "admin.gitlab.clientIdExample": "Bijv.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "Applicatie ID:",
- "admin.gitlab.clientSecretExample": "Bijv.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Applicatie Geheime Sleutel:",
- "admin.gitlab.enableDescription": "Indien gezet, dan kunnen teams en gebruikers binnen Mattermost worden aangemaakt via Gitlab OAuth.",
- "admin.gitlab.enableTitle": "Inschakelen authenticatie met GitLab: ",
- "admin.gitlab.settingsTitle": "GitLab instellingen",
- "admin.gitlab.tokenDescription": "Geef https:///oauth/token in. Zorg ervoor dat u HTTP of HTTPS in de URL gebruikt, afhankelijk van de configuratie van uw server.",
- "admin.gitlab.tokenExample": "Bijv.: \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Token eindpunt:",
- "admin.gitlab.userDescription": "Geef https:///api/v3/user. Zorg ervoor dat u HTTP of HTTPS in de URL gebruikt, afhankelijk van de configuratie van uw server.",
- "admin.gitlab.userExample": "Bijv.: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "Gebruikers API eindpunt:",
- "admin.google.EnableHtmlDesc": "
Ga naar https://console.developers.google.com, klik op Credentials in het linker menu en voer \"Mattermost - uw-bedrijfsnaam\" in als Project Name, klik daarna op Create.
Klik op OAuth consent screen en voer \"Mattermost\" in als Product name shown to users, klik daarna op Save.
Onder de kop Credentials, klik Create credentials, kies OAuth client ID en selecteer Web Application.
Onder Restrictions en Authorized redirect URIs voer in jouw-mattermost-url/signup/google/complete (bijv.: http://localhost:8065/signup/google/complete). Klik Create.
Plak de Client ID en Client Secret in onderstaande velden, klik daarna op Save.
Als laatste stap, ga naar Google+ API en klik Enable. Het kan een aantal minuten duren voordat het de systemen van Google actief is.
",
- "admin.google.authTitle": "Auth Eindpunt:",
- "admin.google.clientIdDescription": "Het Client ID wat je hebt ontvangen bij het registreren van je applicatie bij Google.",
- "admin.google.clientIdExample": "Bijv.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "Client ID:",
- "admin.google.clientSecretDescription": "Het Client Secret wat je hebt ontvangen bij het registreren van je applicatie bij Google.",
- "admin.google.clientSecretExample": "Bijv.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Client Geheim:",
- "admin.google.tokenTitle": "Token Eindpunt:",
- "admin.google.userTitle": "Gebruikers API Eindpunt:",
- "admin.image.amazonS3BucketDescription": "De naam die gekozen is voor de S3 bucket op AWS.",
- "admin.image.amazonS3BucketExample": "Bijv.: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Hostname of your S3 Compatible Storage provider. Defaults to `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "E.g.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Amazon S3 Endpoint:",
- "admin.image.amazonS3IdDescription": "Verkrijg de credentials van uw Amazon EC2 beheerder.",
- "admin.image.amazonS3IdExample": "Bijv.: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 toegangs sleutel ID:",
- "admin.image.amazonS3RegionDescription": "AWS regie die gekozen is tijdens het aanmaken van uw S3 bucket.",
- "admin.image.amazonS3RegionExample": "Bijv.: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Amazon S3 Regio:",
- "admin.image.amazonS3SSEDescription": "When true, encrypt files in Amazon S3 using server-side encryption with Amazon S3-managed keys. See documentation to learn more.",
- "admin.image.amazonS3SSEExample": "E.g.: \"false\"",
- "admin.image.amazonS3SSETitle": "Enable Server-Side Encryption for Amazon S3:",
- "admin.image.amazonS3SSLDescription": "When false, allow insecure connections to Amazon S3. Defaults to secure connections only.",
- "admin.image.amazonS3SSLExample": "E.g.: \"true\"",
- "admin.image.amazonS3SSLTitle": "Enable Secure Amazon S3 Connections:",
- "admin.image.amazonS3SecretDescription": "Verkrijg deze credential van de Amazon EC2 beheerder.",
- "admin.image.amazonS3SecretExample": "Bijv.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 geheime toegangs sleutel:",
- "admin.image.localDescription": "Map waar bestanden en afbeeldingen worden ogeslagen. Wanneer leeg, standaard is ./data/.",
- "admin.image.localExample": "Bijv.: \"./data/\"",
- "admin.image.localTitle": "Lokale opslagmap:",
- "admin.image.maxFileSizeDescription": "Maximale bestandsgroote voor bijlages in megabytes. Let Op: Controleer server geheugen voor jouw keuze. Grote bestanden kunnen het risico op server crashes en gefaalde uploads vergroten door netwerk interrupties.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Maximale bestandsgrootte:",
- "admin.image.publicLinkDescription": "'salt' van 32 tekens welke wordt gebruikt voor het signeren van publieke afbeeldingen. Deze worden willekeurig gegenereerd tijdens de installatie. Klik op \"Opnieuw genereren\" om een nieuwe 'salt' te maken.",
- "admin.image.publicLinkExample": "Bijv.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Publieke link 'salt':",
- "admin.image.shareDescription": "Sta gebruikers toe om publieke links naar bestanden en figuren te delen.",
- "admin.image.shareTitle": "Inschakelen publieke bestand links: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Opslagsysteem waar bestanden en afbeeldingen opgeslagen worden.
Het selecteren van \"Amazon S3\" maakt de velden beschikbaar om uw Amazon gegevens en bucket details in te vullen.
Het selecteren van \"Lokaal bestandssysteem\" maakt het veld beschikbaar om een locale directory op te geven.",
- "admin.image.storeLocal": "Lokaal bestandssysteem",
- "admin.image.storeTitle": "Bestand Opslagsysteem:",
- "admin.integrations.custom": "Aangepaste Intergraties",
- "admin.integrations.external": "Externe services",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "De Base DN is de DN-Naam van de locatie waar Mattermost moet beginnen met het zoeken naar gebruikers in de AD/LDAP-boom.",
- "admin.ldap.baseEx": "Bijv.: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Wachtwoord van de gebruiker in \"Bind Username\".",
- "admin.ldap.bindPwdTitle": "Bind-wachtwoord:",
- "admin.ldap.bindUserDesc": "De gebruikersnaam om de AD/LDAP-zoekopdracht uit te voeren. Dit is doorgaans een account speciaal gemaakt voor het gebruik met Mattermost. Dit account moet alleen leestoegang hebben tot het gedeelte van AD/LDAP zoals opgegeven in het veld BaseDN.",
- "admin.ldap.bindUserTitle": "Bind gebruikersnaam:",
- "admin.ldap.emailAttrDesc": "Het attribuut in de AD/LDAP-server die wordt gebruikt voor het vullen van de e-mailadressen van gebruikers in Mattermost.",
- "admin.ldap.emailAttrEx": "Bijv.: \"mail\" of \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Email attribuut:",
- "admin.ldap.enableDesc": "Wanneer 'waar', kunt u in Mattermost inloggen met behulp van AD/LDAP",
- "admin.ldap.enableTitle": "Inschakelen van inloggen met AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the first name of users in Mattermost. When set, users will not be able to edit their first name, since it is synchronized with the LDAP server. When left blank, users can set their own first name in Account Settings.",
- "admin.ldap.firstnameAttrEx": "Bijv.: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Voornaam attribuut",
- "admin.ldap.idAttrDesc": "Het attribuut in de AD/LDAP server dat zal worden gebruikt als unieke identificatie sleutel in Mattermost. Het zou een AD/LDAP attribuut moeten zijn wat niet veranderd, zoals 'username' of 'uid'. Als het 'ID' attribuut van een gebruiker veranderd, zal een nieuw Mattermost account worden gemaakt en dat is niet verbonden met het oude account. Dit is de waarde wat gebruikt wordt om in te loggen in het \"AD/LDAP Username\" veld op de inlog pagina. Normaal is dit attribuut hetzelfde als het \"Username Attribuut\" hierboven. Als jouw team normaal inlogt met 'domain\\username', kies je waarschijnlijk 'domain\\\\username' in dit veld.",
- "admin.ldap.idAttrEx": "Bijv.: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "ID Attribuut: ",
- "admin.ldap.lastnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the last name of users in Mattermost. When set, users will not be able to edit their last name, since it is synchronized with the LDAP server. When left blank, users can set their own last name in Account Settings.",
- "admin.ldap.lastnameAttrEx": "Bijv.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Achternaam attribuut:",
- "admin.ldap.ldap_test_button": "AD/LDAP Test",
- "admin.ldap.loginNameDesc": "De tijdelijke tekst die wordt weergegeven in het veld 'login' op de login pagina. Standaard ingesteld op \"AD/LDAP-Gebruikersnaam\".",
- "admin.ldap.loginNameEx": "Bijv.: \"AD/LDAP Gebruikersnaam\"",
- "admin.ldap.loginNameTitle": "Login veld naam:",
- "admin.ldap.maxPageSizeEx": "Bijv.: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Het maximaal aantal gebruikers die de Mattermost server zal opvragen bij de AD/LDAP server in 1 keer. 0 is ongelimiteerd.",
- "admin.ldap.maxPageSizeTitle": "Maximale Pagina Grootte:",
- "admin.ldap.nicknameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the nickname of users in Mattermost. When set, users will not be able to edit their nickname, since it is synchronized with the LDAP server. When left blank, users can set their own nickname in Account Settings.",
- "admin.ldap.nicknameAttrEx": "Bijv.: \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Nickname attribuut:",
- "admin.ldap.noLicense": "
Nota:
AD/LDAP is an enterprise optie, welke geen deel uitmaakt van de huidige licentie. Klink hier voor meer informatie en prijzen van de enterprise licentie(s).
",
- "admin.ldap.portDesc": "De poort die Mattermost zal gebruiken om verbinding te maken met de AD/LDAP-server. Standaard is 389.",
- "admin.ldap.portEx": "Bijv.: \"389\"",
- "admin.ldap.portTitle": "AD/LDAP poort:",
- "admin.ldap.positionAttrDesc": "(Optioneel) Het attribuut in de AD/LDAP-server dat wordt gebruikt voor het vullen van de bijnaam van de gebruikers in Mattermost.",
- "admin.ldap.positionAttrEx": "E.g.: \"title\"",
- "admin.ldap.positionAttrTitle": "Position Attribute:",
- "admin.ldap.queryDesc": "De time-out waarde voor query's naar de AD/LDAP-server. Vergroot deze waarde indien u timeout-fouten krijgt door een trage AD/LDAP-server.",
- "admin.ldap.queryEx": "Bijv.: \"60\"",
- "admin.ldap.queryTitle": "Time-out voor Query (seconden):",
- "admin.ldap.serverDesc": "Het domein of het IP-adres van de AD/LDAP-server.",
- "admin.ldap.serverEx": "Bijv.: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "AD/LDAP-Server:",
- "admin.ldap.skipCertificateVerification": "Overslaan van certificaat verificatie:",
- "admin.ldap.skipCertificateVerificationDesc": "Slaat de certificaat verificatie stap over voor TLS of STARTTLS verbindingen. Niet aanbevolen voor productie omgevingen waar TLS is vereist. Gebruik dit enkel voor testdoeleinden.",
- "admin.ldap.syncFailure": "Sync Mislukt: {error}",
- "admin.ldap.syncIntervalHelpText": "AD/LDAP Synchronisatie werkt Mattermost gebruikers-informatie bij met updates van de AD/LDAP server. Bijvoorbeeld, in geval van een gebruikersnaam wijziging op de AD/LDAP server, wordt de wijziging in Mattermost doorgevoerd wanneer de sychronisatie plaatsvindt. Accounts die verwijderd of uitgeschakeld zijn op de AD/LDAP server, zullen in Mattermost op \"Inactief\" gezet worden en bijbehorende sessies beeindigd. Mattermost zal de synchronisaties uitvoeren op de ingevulde intervals. Bijvoorbeeld, wanneer 60 is ingevuld, zal Mattermost elke 60 minuten een synchronisatie uitvoeren.",
- "admin.ldap.syncIntervalTitle": "Synchronisatie-Interval (in minuten):",
- "admin.ldap.syncNowHelpText": "Initieer een AD/LDAP synchronisatie meteen.",
- "admin.ldap.sync_button": "Synchroniseer AD/LDAP Nu",
- "admin.ldap.testFailure": "AD//LDAP Test Mislukt: {error}",
- "admin.ldap.testHelpText": "Testen of de Mattermost server verbinding kan maken met de opgegeven AD/LDAP server. Bekijk de log voor meer gedetailleerde foutmeldingen. ",
- "admin.ldap.testSuccess": "AD/LDAP Test Succesvol",
- "admin.ldap.uernameAttrDesc": "Het attribuut in the AD/LDAP-server dat wordt gebruikt voor het vullen van het veld gebruikersnaam in Mattermost. Dit kan hetzelfde zijn als het ID-attribuut.",
- "admin.ldap.userFilterDisc": "Voer eventueel een AD/LDAP filter in om te gebruiken bij het zoeken naar de gebruiker objecten. Alleen de gebruikers geselecteerd door deze query zullen in staat zijn om toegang te krijgen tot Mattermost. Voor Active Directory is de query om gebruikers te filteren (&(objectCategory=Persoon)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Bijv. \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Gebruiker Filter:",
- "admin.ldap.usernameAttrEx": "Bijv.: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Gebruikersnaam attribuut:",
- "admin.license.choose": "Kies een bestand",
- "admin.license.chooseFile": "Kies een bestand",
- "admin.license.edition": "Editie: ",
- "admin.license.key": "Licentie sleutel: ",
- "admin.license.keyRemove": "Verwijder de Enterprise Licentie en Downgrade de server",
- "admin.license.noFile": "Geen bestand geüpload",
- "admin.license.removing": "De licentie wordt verwijderd...",
- "admin.license.title": "Editie en Licentie",
- "admin.license.type": "Licentie: ",
- "admin.license.upload": "Upload",
- "admin.license.uploadDesc": "Upload een licentiesleutel voor Mattermost Enterprise Edition om deze server te upgraden. Bezoek ons online om meer te leren over de voordelen van de Enterprise Editie of voor de aankoop van een sleutel.",
- "admin.license.uploading": "De licentie wordt geüpload...",
- "admin.log.consoleDescription": "Meestal uitgeschakeld in de productie. Ontwikkelaars kunnen dit veld op ingeschakeld zetten om de uitvoer van de log boodschappen naar de console te sturen, gebaseerd op de console niveau optie. Als dit ingeschakeld is, schrijft de server berichten naar de standaard output stroom (stdout).",
- "admin.log.consoleTitle": "Log naar console:",
- "admin.log.enableDiagnostics": "Aanzetten van Diagnostiek en Fout Rapporteren:",
- "admin.log.enableDiagnosticsDescription": "Zet dit aan om de kwaliteit en snelheid te optimaliseren van Mattermost door versturen van fout rapporten en diagnostieke informatie naar Mattermost, Inc. Lees onze privacy policy om meer te lezen.",
- "admin.log.enableWebhookDebugging": "Webhook debugging inschakelen:",
- "admin.log.enableWebhookDebuggingDescription": "Zet debug logging uit voor alle inkomende webhook requests.",
- "admin.log.fileDescription": "Typically set to true in production. When true, logged events are written to the mattermost.log file in the directory specified in the File Log Directory field. The logs are rotated at 10,000 lines and archived to a file in the same directory, and given a name with a datestamp and serial number. For example, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "Deze instelling bepaalt de mate van detail waarin log berichten naar het logboekbestand geschreven worden. FOUT: Geeft alleen maar foutmeldingen. INFO: Geeft de fout berichten en informatie rond het opstarten en initialisatie. DEBUG: Afdrukken van hoge mate van detail voor ontwikkelaars die werken aan het debuggen van problemen.",
- "admin.log.fileLevelTitle": "Bestand log-niveau:",
- "admin.log.fileTitle": "Log naar bestand:",
- "admin.log.formatDateLong": "Datum (2006/01/02)",
- "admin.log.formatDateShort": "Datum (01/02/06)",
- "admin.log.formatDescription": "Indeling van de logberichten. Indien leeg wordt ingesteld op \"[%D %T] [%L] %M\", waarbij:",
- "admin.log.formatLevel": "Level (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Bericht",
- "admin.log.formatPlaceholder": "Voer uw bestandsformaat in",
- "admin.log.formatSource": "Bron",
- "admin.log.formatTime": "Tijd (15:04:05 MST)",
- "admin.log.formatTitle": "Bestand Log Formaat:",
- "admin.log.levelDescription": "Deze instelling bepaalt de mate van detail waarin log berichten naar het logboekbestand geschreven worden. FOUT: Geeft alleen maar foutmeldingen. INFO: Geeft de fout berichten en informatie rond het opstarten en initialisatie. DEBUG: Afdrukken van hoge mate van detail voor ontwikkelaars die werken aan het debuggen van problemen.",
- "admin.log.levelTitle": "Console Log Level:",
- "admin.log.locationDescription": "The location of the log files. If blank, they are stored in the ./logs directory. The path that you set must exist and Mattermost must have write permissions in it.",
- "admin.log.locationPlaceholder": "Voer uw bestand locatie in",
- "admin.log.locationTitle": "Map voor logs:",
- "admin.log.logSettings": "Log instellingen",
- "admin.logs.bannerDesc": "To look up users by User ID or Token ID, go to Reporting > Users and paste the ID into the search filter.",
- "admin.logs.reload": "Herladen",
- "admin.logs.title": "Server Logs",
- "admin.manage_roles.additionalRoles": "Select additional permissions for the account. Read more about roles and permissions.",
- "admin.manage_roles.allowUserAccessTokens": "Allow this account to generate personal access tokens.",
- "admin.manage_roles.cancel": "Annuleren",
- "admin.manage_roles.manageRolesTitle": "Manage Roles",
- "admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Access to post to all Mattermost channels including direct messages.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Opslaan",
- "admin.manage_roles.saveError": "Unable to save roles.",
- "admin.manage_roles.systemAdmin": "Systeem beheerder",
- "admin.manage_roles.systemMember": "Lid",
- "admin.manage_tokens.manageTokensTitle": "Manage Personal Access Tokens",
- "admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to interact with this Mattermost server. Learn more about personal access tokens.",
- "admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
- "admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see documentation to learn more about configuring performance monitoring for Mattermost.",
- "admin.metrics.enableTitle": "Enable Performance Monitoring:",
- "admin.metrics.listenAddressDesc": "The address the server will listen on to expose performance metrics.",
- "admin.metrics.listenAddressEx": "Bijv.: \":8065\"",
- "admin.metrics.listenAddressTitle": "Luister Adres:",
- "admin.mfa.bannerDesc": "Multi-factor authentication is available for accounts with AD/LDAP or email login. If other login methods are used, MFA should be configured with the authentication provider.",
- "admin.mfa.cluster": "High",
- "admin.mfa.title": "Multi-factor Authenticatie:",
- "admin.nav.administratorsGuide": "Administrator's Guide",
- "admin.nav.commercialSupport": "Commercial Support",
- "admin.nav.help": "Help",
- "admin.nav.logout": "Afmelden",
- "admin.nav.report": "Een probleem melden",
- "admin.nav.switch": "Team Selectie",
- "admin.nav.troubleshootingForum": "Troubleshooting Forum",
- "admin.notifications.email": "E-mail",
- "admin.notifications.push": "Mobiele push meldingen",
- "admin.notifications.title": "Notificatie-instellingen",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Sta niet toe in te loggen via een OAuth 2.0 provider",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "When true, Mattermost can act as an OAuth 2.0 service provider allowing Mattermost to authorize API requests from external applications. See documentation to learn more.",
- "admin.oauth.providerTitle": "Aanzetten van OAuth 2.0 Service Provider:",
- "admin.oauth.select": "Selecteer OAuth 2.0 service provider:",
- "admin.office365.EnableHtmlDesc": "
Log in to your Microsoft or Office 365 account. Make sure it's the account on the same tenant that you would like users to log in with.
Go to https://apps.dev.microsoft.com, click Go to app list > Add an app and use \"Mattermost - your-company-name\" as the Application Name.
Under Application Secrets, click Generate New Password and paste it to the Application Secret Password field below.
Under Platforms, click Add Platform, choose Web and enter your-mattermost-url/signup/office365/complete (example: http://localhost:8065/signup/office365/complete) under Redirect URIs. Also uncheck Allow Implicit Flow.
Finally, click Save and then paste the Application ID below.
",
- "admin.office365.authTitle": "Auth Eindpunt:",
- "admin.office365.clientIdDescription": "Het Spplicatie/Client ID wat je hebt ontvangen bij het registreren van je applicatie bij Microsoft.",
- "admin.office365.clientIdExample": "Bijv.: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "Applicatie ID:",
- "admin.office365.clientSecretDescription": "Het Applicatie Secret Wachtwoord wat je hebt ontvangen bij het registreren van je applicatie bij Microsoft.",
- "admin.office365.clientSecretExample": "Bijv.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Applicatie Geheim Wachtwoord:",
- "admin.office365.tokenTitle": "Token Eindpunt:",
- "admin.office365.userTitle": "Gebruikers API eindpunt:",
- "admin.password.lowercase": "Minimaal 1 kleine letter",
- "admin.password.minimumLength": "Minimale Wachtwoordlengte",
- "admin.password.minimumLengthDescription": "Het wachtwoord moet minimaal uit {{.Min}} karakters bestaan. Het moet een lengte hebben groter of gelijk aan {min} tekens en maximaal {max}",
- "admin.password.minimumLengthExample": "Bijv.: \"5\"",
- "admin.password.number": "Minimaal 1 cijfer",
- "admin.password.preview": "Foutboodschap voorbeeld",
- "admin.password.requirements": "Wachtwoord Vereisten: ",
- "admin.password.requirementsDescription": "Karakter types voor een geldig wachtwoord.",
- "admin.password.symbol": "Ten minstens een van de volgende symbolen: \"~!@#$%^&*()\"",
- "admin.password.uppercase": "Minimaal 1 hoofdletter",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "When true, you can configure JIRA webhooks to post message in Mattermost. To help combat phishing attacks, all posts are labelled by a BOT tag.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "This secret is used to authenticate to Mattermost.",
- "admin.plugins.jira.secretLabel": "Geheim:",
- "admin.plugins.jira.secretParamPlaceholder": "Geheim:",
- "admin.plugins.jira.secretRegenerateDescription": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing JIRA integrations.",
- "admin.plugins.jira.setupDescription": "Use this webhook URL to set up the JIRA integration. See {webhookDocsLink} to learn more.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Select the username that this integration is attached to.",
- "admin.plugins.jira.userLabel": "Gebruikers",
- "admin.plugins.jira.webhookDocsLink": "documentatie",
- "admin.privacy.showEmailDescription": "When false, hides the email address of members from everyone except System Administrators.",
- "admin.privacy.showEmailTitle": "Toon e-mail adres: ",
- "admin.privacy.showFullNameDescription": "When false, hides the full name of members from everyone except System Administrators. Username is shown in place of full name.",
- "admin.privacy.showFullNameTitle": "Toon de volledige naam: ",
- "admin.purge.button": "Purge All Caches",
- "admin.purge.loading": "Laden...",
- "admin.purge.purgeDescription": "This will purge all the in-memory caches for things like sessions, accounts, channels, etc. Deployments using High Availability will attempt to purge all the servers in the cluster. Purging the caches may adversly impact performance.",
- "admin.purge.purgeFail": "Recycling was niet succesvol: {error}",
- "admin.rate.enableLimiterDescription": "Wanneer ingeschakeld worden APIs beperkt tot de frequentie die hieronder staat.",
- "admin.rate.enableLimiterTitle": "Aanzetting Beperking: ",
- "admin.rate.httpHeaderDescription": "Wanneer ingevuld, zal rate limiting door HTTP hoofd veld worden gespecificeerd (bv. wanneer NGINX is geconfigureerd met \"X-Real-IP\", wanneer AmazonELB is geconfigureerd met \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Bijv.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Vary rate limit by HTTP header",
- "admin.rate.maxBurst": "Maximum Burst Size:",
- "admin.rate.maxBurstDescription": "Maximum number of requests allowed beyond the per second query limit.",
- "admin.rate.maxBurstExample": "Bijv.: \"100\" ",
- "admin.rate.memoryDescription": "Maximum aantal geberuikers sessies verbonden met het systeem als \"Vary By Remote Address\" and \"Vary By Header\" instellingen hieronder",
- "admin.rate.memoryExample": "Bijv.: \"10000\"",
- "admin.rate.memoryTitle": "Geheugen opslag grootte:",
- "admin.rate.noteDescription": "Wanneer u wijzigingen aanbrengt in deze sectie moet de server opnieuw worden opgestart.",
- "admin.rate.noteTitle": "Let op:",
- "admin.rate.queriesDescription": "Beperk API oproepen tot dit aantal opvragingen per seconde.",
- "admin.rate.queriesExample": "Bijv.: \"10\"",
- "admin.rate.queriesTitle": "Maximaal Queries per Seconde:",
- "admin.rate.remoteDescription": "Wanneer aan, limiteer API toegang op basis van IP adres.",
- "admin.rate.remoteTitle": "Vary rate limit by remote address: ",
- "admin.rate.title": "Snelheidslimiet instellingen",
- "admin.recycle.button": "Recycle database verbindingen",
- "admin.recycle.loading": " Recyclen...",
- "admin.recycle.recycleDescription": "Deployments die gebruik maken van meerdere databases kunnen omschakelen van 1 hoofd database naar een andere zonder het herstarten van de Mattermost server door het bijwerken van de \"config.json\" met de nieuwe configuratie en gebruik makend van de Configuration > Herlaad Configuratie van Disk terwijl de server draait. De beheerder zal dan gebruik moeten maken van Database > Recycle Database Connecties om de database connecties te herladen met de nieuwe instellingen.",
- "admin.recycle.recycleDescription.featureName": "Recycle database verbindingen",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuration > Reload Configuration from Disk",
- "admin.recycle.reloadFail": "Recycling was niet succesvol: {error}",
- "admin.regenerate": "Opnieuw genereren",
- "admin.reload.button": "Configuratiebestand herladen",
- "admin.reload.loading": "Laden...",
- "admin.reload.reloadDescription": "Deployments die gebruik maken van meerdere databases kunnen omschakelen van 1 hoofd database naar een andere zonder het herstarten van de Mattermost server door het bijwerken van de \"config.json\" met de nieuwe configuratie en gebruik makend van de Configuration > Herlaad Configuratie van Disk terwijl de server draait. De beheerder zal dan gebruik moeten maken van Database > Recycle Database Connecties om de database connecties te herladen met de nieuwe instellingen.",
- "admin.reload.reloadDescription.featureName": "Configuratiebestand herladen",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Database > Recycle Database Connections",
- "admin.reload.reloadFail": "Verbinding was niet succesvol: {error}",
- "admin.requestButton.loading": "Laden...",
- "admin.requestButton.requestFailure": "Sync Mislukt: {error}",
- "admin.requestButton.requestSuccess": "Installatie Succesvol",
- "admin.reset_password.close": "Afsluiten",
- "admin.reset_password.newPassword": "Nieuw wachtwoord",
- "admin.reset_password.select": "Selecteer",
- "admin.reset_password.submit": "Voert u alstublieft minstens {chars} tekens in.",
- "admin.reset_password.titleReset": "Reset wachtwoord",
- "admin.reset_password.titleSwitch": "Overschakelen naar e-mail/wachtwoord",
- "admin.saml.assertionConsumerServiceURLDesc": "Voer https:///login/sso/saml in. Zorg ervoor dat HTTP of HTTPS in de URL staat. Dit staat ook bekend als \"Assertion Consumer Service URL\".",
- "admin.saml.assertionConsumerServiceURLEx": "Bijv.: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Service Provider Inlog URL:",
- "admin.saml.bannerDesc": "User attributes in SAML server, including user deactivation or removal, are updated in Mattermost during user login. Learn more at: https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "De attribute in the SAML-server die wordt gebruikt voor het vullen van de e-mailadressen van gebruikers in Mattermost.",
- "admin.saml.emailAttrEx": "Bijv.: \"Email\" of \"Primaire Email\"",
- "admin.saml.emailAttrTitle": "Email Attribuut:",
- "admin.saml.enableDescription": "Mattermost SAML logins toestaan. Lees hier de documentatie over het configureren van SAML voor Mattermost.",
- "admin.saml.enableTitle": "Inschakelen van inloggen met SAML:",
- "admin.saml.encryptDescription": "When false, Mattermost will not decrypt SAML Assertions encrypted with your Service Provider Public Certificate. Not recommended for production environments. For testing only.",
- "admin.saml.encryptTitle": "Inschakelen van Versleuteling: ",
- "admin.saml.firstnameAttrDesc": "(Optioneel) Het attribuut in the SAML-server dat wordt gebruikt voor het vullen van de voornaam van de gebruikers in Mattermost.",
- "admin.saml.firstnameAttrEx": "Bijv.: \"Voornaam\"",
- "admin.saml.firstnameAttrTitle": "Voornaam attribuut:",
- "admin.saml.idpCertificateFileDesc": "Het publieke authenticatie certificaat gebruikt door uw Identity Provider.",
- "admin.saml.idpCertificateFileRemoveDesc": "Verwijder het publieke authenticatie certificaat uitgegeven door uw Identity Provider.",
- "admin.saml.idpCertificateFileTitle": "Identity Provider publiek certificaat:",
- "admin.saml.idpDescriptorUrlDesc": "De URL voor uitgifte van de SAML verzoeken van uw Identity Provider.",
- "admin.saml.idpDescriptorUrlEx": "Bijv.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "Identity Provider Issuer URL:",
- "admin.saml.idpUrlDesc": "De URL waar Mattermost een login poging start met een SAML request.",
- "admin.saml.idpUrlEx": "Bijv.: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Optioneel) Het attribuut in the SAML-server dat wordt gebruikt voor het vullen van de achternaam van de gebruikers in Mattermost.",
- "admin.saml.lastnameAttrEx": "Bijv.: \"Achternaam\"",
- "admin.saml.lastnameAttrTitle": "Achternaam Attribuut:",
- "admin.saml.localeAttrDesc": "(Optioneel) Het attribuut in the SAM:-server dat wordt gebruikt voor het vullen van de taal van de gebruikers in Mattermost.",
- "admin.saml.localeAttrEx": "Bijv.: \"Taal\" of \"PrimaireTaal\"",
- "admin.saml.localeAttrTitle": "Voorkeur Taal Attribuut:",
- "admin.saml.loginButtonTextDesc": "(Optioneel) De tekst op de login knop op de login pagina. Standaard \"Met SAML\"",
- "admin.saml.loginButtonTextEx": "Bijv.: \"Met OKTA\"",
- "admin.saml.loginButtonTextTitle": "Inlog Knop Tekst:",
- "admin.saml.nicknameAttrDesc": "(Optioneel) Het attribuut in the SAML-server dat wordt gebruikt voor het vullen van de bijnaam van de gebruikers in Mattermost.",
- "admin.saml.nicknameAttrEx": "Bijv.: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Nickname Attribuut:",
- "admin.saml.positionAttrDesc": "(Optioneel) Het attribuut in the SAML-server dat wordt gebruikt voor het vullen van de achternaam van de gebruikers in Mattermost.",
- "admin.saml.positionAttrEx": "E.g.: \"Role\"",
- "admin.saml.positionAttrTitle": "Position Attribute:",
- "admin.saml.privateKeyFileFileDesc": "Private sleuten om SAML Assertions van de Identidy Provider mee te decoderen",
- "admin.saml.privateKeyFileFileRemoveDesc": "Verwijder de private sleutel welke gebruikt is voor decoderen van de SAML Assertions van de Identity Provider",
- "admin.saml.privateKeyFileTitle": "Service Provider Privé Sleutel:",
- "admin.saml.publicCertificateFileDesc": "Het certificaat dat gebruikt wordt voor het genereren van een handtekening op een SAML request aan de Identiteitsprovider voor een serviceprovider gestarte SAML login, waar Mattermost de service provider is.",
- "admin.saml.publicCertificateFileRemoveDesc": "Verwijder het certificaat dat gebruikt wordt voor het genereren van een handtekening op een SAML request aan de Identiteitsprovider voor een serviceprovider gestarte SAML login, waar Mattermost de service provider is.",
- "admin.saml.publicCertificateFileTitle": "Service Provider Publiek Certificaat:",
- "admin.saml.remove.idp_certificate": "Verwijder Identity Provider Certificaat",
- "admin.saml.remove.privKey": "Service Provider Privé Sleutel:",
- "admin.saml.remove.sp_certificate": "Verwijder Service Provider Certificaat",
- "admin.saml.removing.certificate": "Verwijderen van Certificaat ...",
- "admin.saml.removing.privKey": "Verwijderen van Privé Sleutel... ",
- "admin.saml.uploading.certificate": "Uploaden van Certificaat...",
- "admin.saml.uploading.privateKey": "Uploaden Privé Sleutel...",
- "admin.saml.usernameAttrDesc": "Het attribuut in the SAML-server dat wordt gebruikt voor het invullen van de gebruikersnaam in Mattermost.",
- "admin.saml.usernameAttrEx": "Bijv.: \"Gebruikersnaam\"",
- "admin.saml.usernameAttrTitle": "Gebruikersnaam Attribuut:",
- "admin.saml.verifyDescription": "When false, Mattermost will not verify that the signature sent from a SAML Response matches the Service Provider Login URL. Not recommended for production environments. For testing only.",
- "admin.saml.verifyTitle": "Ondertekening verifiëren",
- "admin.save": "Opslaan",
- "admin.saving": "Configuratie opslaan...",
- "admin.security.connection": "Verbindingen",
- "admin.security.inviteSalt.disabled": "Uitnodiging salt kan niet veranderd worden wanneer het verzenden van e-mails is uitgeschakeld.",
- "admin.security.login": "Inloggen",
- "admin.security.password": "Wachtwoord",
- "admin.security.passwordResetSalt.disabled": "Het resetten van de wachtwoord salt uitgevoerd worden als het verzenden van e-mail is uitgeschakeld.",
- "admin.security.public_links": "Publieke links",
- "admin.security.requireEmailVerification.disabled": "Email verificatie kan niet veranderd worden als het verzenden van e-mail is uitgeschakeld.",
- "admin.security.session": "Sessies",
- "admin.security.signup": "Registreren",
- "admin.select_team.close": "Afsluiten",
- "admin.select_team.select": "Selecteer",
- "admin.select_team.selectTeam": "Selecteer team",
- "admin.service.attemptDescription": "Aantal aanmeldingspogingen die zijn toegestaan voordat de gebruiker is vergrendeld en het wachtwoord gereset moet worden via e-mail.",
- "admin.service.attemptExample": "Bijv.: \"10\"",
- "admin.service.attemptTitle": "Maximum aantal aanmeldingspogingen:",
- "admin.service.cmdsDesc": "Wanneer dit aanstaat, aangepaste slash commando's zijn toegestaan. Bekijk de documentatie om hier meer over te leren.",
- "admin.service.cmdsTitle": "Inschakelen van Slash opdrachten: ",
- "admin.service.corsDescription": "HTTP \"Cross origin request\" van een specifiek domein inschakelen. Gebruik \"*\" als je CORS van elk domein wilt toestaan, of laat leeg om uit te schakelen.",
- "admin.service.corsEx": "http://voorbeeld.nl",
- "admin.service.corsTitle": "Cross-origin Requests toestaan van:",
- "admin.service.developerDesc": "Javascript fout worden weergeven in een rode bar boven in de user interface. Niet aangeraden voor productie.",
- "admin.service.developerTitle": "Developer mode inschakelen: ",
- "admin.service.enableAPIv3": "Allow use of API v3 endpoints:",
- "admin.service.enableAPIv3Description": "Set to false to disable all version 3 endpoints of the REST API. Integrations that rely on API v3 will fail and can then be identified for migration to API v4. API v3 is deprecated and will be removed in the near future. See https://api.mattermost.com for details.",
- "admin.service.enforceMfaDesc": "When true, multi-factor authentication is required for login. New users will be required to configure MFA on signup. Logged in users without MFA configured are redirected to the MFA setup page until configuration is complete.
If your system has users with login methods other than AD/LDAP and email, MFA must be enforced with the authentication provider outside of Mattermost.",
- "admin.service.enforceMfaTitle": "Aanzetten multi-factor authenticatie:",
- "admin.service.forward80To443": "Forward port 80 to 443:",
- "admin.service.forward80To443Description": "Forwards all insecure traffic from port 80 to secure port 443",
- "admin.service.googleDescription": "Zet deze sleutel om de titel van ingevoegde Youtube video's te tonen. Zonder deze sleutel zullen Youtube previews nog steeds gemaakt worden op basis van links die in berichten en reacties worden geplaatst, maar er word geen titel getoond. Bekijken een Google Developers Tutorial voor instructies over hoe deze sleutel te krijgen.",
- "admin.service.googleExample": "Bijv.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Google API Sleutel:",
- "admin.service.iconDescription": "Wanneer aangezet, webhooks, slash commando's en andere integraties, zoals Zapier, kunnen de profiel afbeelding wijzigen waar mee geplaatst word. Let op: Gecombineerd met toestaan dat integraties gebruikersnamen kunnen overschrijven, kunnen gebruikers zich voordoen als iemand anders.",
- "admin.service.iconTitle": "Aanzetten van integraties die overschrijven van profiel afbeeldingen mogelijk maakt:",
- "admin.service.insecureTlsDesc": "Wanneer dit aanstaat, alle uitgaande HTTPS verzoeken zullen ongeverifieerde en self-signed certificaten accepteren. Bijvoorbeeld, uitgaande webhooks naar een server met een self-signed TLS certificaat, gebruik makend van een willekeurig domein, zullen worden toegestaan. Let op, dit maakt deze verbindingen vatbaar voor man-in-the-middle aanvallen.",
- "admin.service.insecureTlsTitle": "Schakel onbeveiligde uitgaande verbindingen in: ",
- "admin.service.integrationAdmin": "Beperk beheer van integraties alleen voor Admins:",
- "admin.service.integrationAdminDesc": "Wanneer aangezet, webhooks en slash commando's kunnen alleen gemaakt, bewerkt en bekeken worden door Team en Systeem Beheerders, en OAuth 2.0 applicaties door Systeem Beheerders. Integraties zijn beschikbaar voor alle gebruikers als ze zijn gemaakt door de Beheerder.",
- "admin.service.internalConnectionsDesc": "In testing environments, such as when developing integrations locally on a development machine, use this setting to specify domains, IP addresses, or CIDR notations to allow internal connections. Not recommended for use in production, since this can allow a user to extract confidential data from your server or internal network.
By default, user-supplied URLs such as those used for Open Graph metadata, webhooks, or slash commands will not be allowed to connect to reserved IP addresses including loopback or link-local addresses used for internal networks. Push notification, OAuth 2.0 and WebRTC server URLs are trusted and not affected by this setting.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Allow untrusted internal connections to: ",
- "admin.service.letsEncryptCertificateCacheFile": "Let's Encrypt Certificate Cache File:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Certificates retrieved and other data about the Let's Encrypt service will be stored in this file.",
- "admin.service.listenAddress": "Luister Adres:",
- "admin.service.listenDescription": "The address and port to which to bind and listen. Specifying \":8065\" will bind to all network interfaces. Specifying \"127.0.0.1:8065\" will only bind to the network interface having that IP address. If you choose a port of a lower level (called \"system ports\" or \"well-known ports\", in the range of 0-1023), you must have permissions to bind to that port. On Linux you can use: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" to allow Mattermost to bind to well-known ports.",
- "admin.service.listenExample": "Bijv.: \":8065\"",
- "admin.service.mfaDesc": "When true, users with AD/LDAP or email login can add multi-factor authentication to their account using Google Authenticator.",
- "admin.service.mfaTitle": "Aanzetten multi-factor authenticatie:",
- "admin.service.mobileSessionDays": "Sessie duur voor mobiel (dagen):",
- "admin.service.mobileSessionDaysDesc": "Het aantal dagen dat de gebruiker voor het laatst zijn credentials heeft ingevoerd voordat gebruikers sessie verloopt. Nadat deze instelling is gewijzigd, zal de nieuwe sessie lengte plaatsvinden de volgende keer de gebruiker zijn credentials invult. ",
- "admin.service.outWebhooksDesc": "Wanneer dit aanstaat, uitgaande webhooks worden toegestaan. Bekijk de documentatie om hier meer over te lezen.",
- "admin.service.outWebhooksTitle": "Inschakelen uitgaande webhooks: ",
- "admin.service.overrideDescription": "Wanneer aangezet, webhooks, slash commando's en andere integraties, zoals Zapier, kunnen de profiel afbeelding wijzigen waar mee geplaatst word. Let op: Gecombineerd met toestaan dat integraties gebruikersnamen kunnen overschrijven, kunnen gebruikers zich voordoen als iemand anders. Phishing attacks.",
- "admin.service.overrideTitle": "Aanzetten van integraties die overschrijven van gebruikersnaam mogelijk maakt:",
- "admin.service.readTimeout": "Read Timeout:",
- "admin.service.readTimeoutDescription": "Maximum time allowed from when the connection is accepted to when the request body is fully read.",
- "admin.service.securityDesc": "Wanneer ingeschakeld, worden systeembeheerders per e-mail verwittigd wanneer er een relevante security fix alert is aangekondigd in de laatste 12 uur. Vereist dat e-mail is ingeschakeld.",
- "admin.service.securityTitle": "Schakel beveiligings alarmen in: ",
- "admin.service.sessionCache": "Sessie cache in minuten:",
- "admin.service.sessionCacheDesc": "Het aantal minuten dat een sessie in het geheugen wordt gecached.",
- "admin.service.sessionDaysEx": "Bijv.: \"30\"",
- "admin.service.siteURL": "Site URL:",
- "admin.service.siteURLDescription": "The URL that users will use to access Mattermost. Standard ports, such as 80 and 443, can be omitted, but non-standard ports are required. For example: http://mattermost.example.com:8065. This setting is required.",
- "admin.service.siteURLExample": "Bijv.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Sessie duur voor SSO (dagen):",
- "admin.service.ssoSessionDaysDesc": "Het aantal dagen dat de gebruiker voor het laatst zijn credentials heeft ingevoerd voordat gebruikers sessie verloopt. Als de authenticatie SAML of GitLab is, kan de gebruiker automatisch worden terug ingelogd in Mattermost omdat ze al waren ingelogd in SAML of GitLab. Nadat deze instelling is gewijzigd, zal de nieuwe sessie lengte plaatsvinden de volgende keer de gebruiker zijn credentials invult. ",
- "admin.service.testingDescription": "Wanneer dit aanstaat, het /loadtest slash commando is aan om accounts te testen. Veranderen van deze instelling vraagt een herstart van de server voor dit effect heeft.",
- "admin.service.testingTitle": "Aanzetten van test commands:",
- "admin.service.tlsCertFile": "TLS Certificate File:",
- "admin.service.tlsCertFileDescription": "The certificate file to use.",
- "admin.service.tlsKeyFile": "TLS Key File:",
- "admin.service.tlsKeyFileDescription": "The private key file to use.",
- "admin.service.useLetsEncrypt": "Use Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Enable the automatic retreval of certificates from the Let's Encrypt. The certificate will be retrieved when a client attempts to connect from a new domain. This will work with multiple domains.",
- "admin.service.userAccessTokensDescLabel": "Naam:",
- "admin.service.userAccessTokensDescription": "When true, users can create personal access tokens for integrations in Account Settings > Security. They can be used to authenticate against the API and give full access to the account.
To manage who can create personal access tokens or to search users by token ID, go to the System Console > Users page.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Enable Personal Access Tokens: ",
- "admin.service.webSessionDays": "Sessie duur voor AD/LDAP en email (dagen):",
- "admin.service.webSessionDaysDesc": "Het aantal dagen dat de gebruiker voor het laatst zijn credentials heeft ingevoerd voordat gebruikers sessie verloopt. Nadat deze instelling is gewijzigd, zal de nieuwe sessie lengte plaatsvinden de volgende keer de gebruiker zijn credentials invult. ",
- "admin.service.webhooksDescription": "Wanneer dit aanstaat, inkomende webhooks worden toegestaan. Om combat phishing aanvallen tegen te gaan zullen alle berichten worden gelabeld met een BOT tag. Bekijk de documentatie om hier meer over te lezen.",
- "admin.service.webhooksTitle": "Inschakelen inkomende webhooks: ",
- "admin.service.writeTimeout": "Write Timeout:",
- "admin.service.writeTimeoutDescription": "If using HTTP (insecure), this is the maximum time allowed from the end of reading the request headers until the response is written. If using HTTPS, it is the total time from when the connection is accepted until the response is written.",
- "admin.sidebar.advanced": "Geavanceerd",
- "admin.sidebar.audits": "Compliance en Auditing",
- "admin.sidebar.authentication": "Authenticatie",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "High Availability",
- "admin.sidebar.compliance": "Voldoet aan",
- "admin.sidebar.configuration": "Configuratie",
- "admin.sidebar.connections": "Verbindingen",
- "admin.sidebar.customBrand": "Aangepast huisstijl",
- "admin.sidebar.customIntegrations": "Aangepaste Intergraties",
- "admin.sidebar.customization": "Customisatie",
- "admin.sidebar.database": "Database",
- "admin.sidebar.developer": "Ontwikkelaar",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "E-mail",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "Externe services",
- "admin.sidebar.files": "Bestanden",
- "admin.sidebar.general": "Algemeen",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integraties",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Wettelijk en Ondersteuning",
- "admin.sidebar.license": "Editie en Licentie",
- "admin.sidebar.linkPreviews": "Link voorvertoningen",
- "admin.sidebar.localization": "Lokalisatie",
- "admin.sidebar.logging": "Loggen",
- "admin.sidebar.login": "Login",
- "admin.sidebar.logs": "Logs",
- "admin.sidebar.metrics": "Performance Monitoring",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Mattermost App Links",
- "admin.sidebar.notifications": "Meldingen",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "ANDERE",
- "admin.sidebar.password": "Wachtwoord",
- "admin.sidebar.policy": "Beleid",
- "admin.sidebar.privacy": "Privacy",
- "admin.sidebar.publicLinks": "Publieke links",
- "admin.sidebar.push": "Mobiele meldingen",
- "admin.sidebar.rateLimiting": "Snelheidsbeperking",
- "admin.sidebar.reports": "RAPPORTEREN",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Beveiliging",
- "admin.sidebar.sessions": "Sessies",
- "admin.sidebar.settings": "INSTELLINGEN",
- "admin.sidebar.signUp": "Aanmelden",
- "admin.sidebar.sign_up": "Inschrijven",
- "admin.sidebar.statistics": "Team Statistieken",
- "admin.sidebar.storage": "Opslag",
- "admin.sidebar.support": "Wettelijk en Ondersteuning",
- "admin.sidebar.users": "Gebruikers",
- "admin.sidebar.usersAndTeams": "Gebruikers en Teams",
- "admin.sidebar.view_statistics": "Site statistieken",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Systeem console",
- "admin.sql.dataSource": "Gegevensbron:",
- "admin.sql.driverName": "Stuurprogrammanaam:",
- "admin.sql.keyDescription": "salt van 32 tekens, beschikbaar voor het coderen en decoderen van gevoelige velden in de database.",
- "admin.sql.keyExample": "Bijv.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Encrypt Key:",
- "admin.sql.maxConnectionsDescription": "Maximum aantal actieve verbindingen open gehouden naar de database.",
- "admin.sql.maxConnectionsExample": "Bijv.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Maximum aantal vrije verbindingen:",
- "admin.sql.maxOpenDescription": "Maximum aantal open verbindingen open gehouden naar de database.",
- "admin.sql.maxOpenExample": "Bijv.: \"10\"",
- "admin.sql.maxOpenTitle": "Maximum aantal open verbindingen:",
- "admin.sql.noteDescription": "Wanneer u wijzigingen aanbrengt in deze sectie moet de server opnieuw worden opgestart.",
- "admin.sql.noteTitle": "Let op:",
- "admin.sql.queryTimeoutDescription": "The number of seconds to wait for a response from the database after opening a connection and sending the query. Errors that you see in the UI or in the logs as a result of a query timeout can vary depending on the type of query.",
- "admin.sql.queryTimeoutExample": "Bijv.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Query Timeout:",
- "admin.sql.replicas": "Data Source Replicas:",
- "admin.sql.traceDescription": "(Ontwikkelaar mode) Wanneer ingeschakeld worden alle SQL statments naar een logbestand geschreven.",
- "admin.sql.traceTitle": "Stacktrace: ",
- "admin.sql.warning": "Waarschuwing: het opnieuw genereren van deze salt kan ervoor zorgen dat de database lege resultaten teruggeeft.",
- "admin.support.aboutDesc": "The URL for the About link on the Mattermost login and sign-up pages. If this field is empty, the About link is hidden from users.",
- "admin.support.aboutTitle": "Over link:",
- "admin.support.emailHelp": "E-mail adres dat wordt weergegeven op meldingen via e-mail en tijdens de lessen voor eindgebruikers bij ondersteunings-vragen.",
- "admin.support.emailTitle": "Support e-mail:",
- "admin.support.helpDesc": "The URL for the Help link on the Mattermost login page, sign-up pages, and Main Menu. If this field is empty, the Help link is hidden from users.",
- "admin.support.helpTitle": "Help link:",
- "admin.support.noteDescription": "Wanneer u linkt naar een externe site moet de URL beginnen met http:// of https://.",
- "admin.support.noteTitle": "Let op:",
- "admin.support.privacyDesc": "The URL for the Privacy link on the login and sign-up pages. If this field is empty, the Privacy link is hidden from users.",
- "admin.support.privacyTitle": "Privacy beleid link:",
- "admin.support.problemDesc": "The URL for the Report a Problem link in the Main Menu. If this field is empty, the link is removed from the Main Menu.",
- "admin.support.problemTitle": "Meld een link met een probleem:",
- "admin.support.termsDesc": "Link naar de algemene voorwaarden voor uw gebruikers. Standaard bevat dit de \"Mattermost Conditions of Use (End Users)\" welke voorwaarden beschrijft waaronder Mattermost software beschikbaar gesteld voor eind gebruikers. Indien u de standaard link vervangt door uw eigen algemene voorwaarden voor de service, neem dan een link op naar de standaard algemene voorwaarden van Mattermost Conditions of Use (End User) voor Mattermost software.",
- "admin.support.termsTitle": "Servicevoorwaarden link:",
- "admin.system_analytics.activeUsers": "Actieve gebruikers met berichten",
- "admin.system_analytics.title": "het systeem",
- "admin.system_analytics.totalPosts": "Totaal aantal berichten",
- "admin.system_users.allUsers": "Alle gebruikers",
- "admin.system_users.noTeams": "No Teams",
- "admin.system_users.title": "{siteName} Users",
- "admin.team.brandDesc": "Aanzetten van aangepast logo om een afbeelding naar keuze te tonen, hieronder geüpload, en tekst, hieronder ingevuld, om te tonen op de inlog pagina.",
- "admin.team.brandDescriptionExample": "Alle team communicatie op een plaats, doorzoekbaar en van overal bereikbaar",
- "admin.team.brandDescriptionHelp": "Description of service shown in login screens and UI. When not specified, \"All team communication in one place, searchable and accessible anywhere\" is displayed.",
- "admin.team.brandDescriptionTitle": "Site Omschrijving: ",
- "admin.team.brandImageTitle": "Aangepast Logo Afbeelding:",
- "admin.team.brandTextDescription": "Text that will appear below your custom brand image on your login screen. Supports Markdown-formatted text. Maximum 500 characters allowed.",
- "admin.team.brandTextTitle": "Aangepaste huisstijl tekst:",
- "admin.team.brandTitle": "Aangepaste huisstijl gebruiken: ",
- "admin.team.chooseImage": "Kies een nieuwe afbeelding",
- "admin.team.dirDesc": "Wanneer dit aanstaat, teams die geconfigureerd zijn om zichtbaar te zijn in de team directory zullen zichtbaar zijn op de hoofdpagina in plaats van het maken van een nieuw team.",
- "admin.team.dirTitle": "Inschakelen Team Directory: ",
- "admin.team.maxChannelsDescription": "Maximum aantal gebruikers per team, inclusief actieve en niet-actieve gebruikers.",
- "admin.team.maxChannelsExample": "Bijv.: \"100\"",
- "admin.team.maxChannelsTitle": "Max Channels Per Team:",
- "admin.team.maxNotificationsPerChannelDescription": "Maximum total number of users in a channel before users typing messages, @all, @here, and @channel no longer send notifications because of performance.",
- "admin.team.maxNotificationsPerChannelExample": "Bijv.: \"10000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Max Notifications Per Channel:",
- "admin.team.maxUsersDescription": "Maximum aantal gebruikers per team, inclusief actieve en niet-actieve gebruikers.",
- "admin.team.maxUsersExample": "Bijv.: \"25\"",
- "admin.team.maxUsersTitle": "Maximaal aantal gebruikers per team:",
- "admin.team.noBrandImage": "Geen beeldmerk geupload.",
- "admin.team.openServerDescription": "Wanneer ingeschakeld, kan iedereen een gebruikers account maken op deze server zonder uitnodiging.",
- "admin.team.openServerTitle": "Open server activeren: ",
- "admin.team.restrictDescription": "Teams en gebruiker accounts kunnen alleen aangemaakt worden van een specifiek domeinnaam (v.b. \"mattermost.org\") of van een lijst van domeinnamen gescheiden met een komma (zoals. \"corp.mattermost.org, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Sta gebruikers to om Direct Message kanalen te openen met:",
- "admin.team.restrictDirectMessageDesc": "'Iedere gebruiker op de Mattermost server' maakt het mogelijk dat het iedere gebruiker een Direct Bericht kanaal met iedere andere gebruiker kan openen, zelfs als ze niet bij elkaar in het team zitten. 'Ieder lid van het team' kunnen alleen gebruikers van hetzelfde team deze Direct Bericht kanalen openen.",
- "admin.team.restrictExample": "Bijv.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Wanneer ingeschakeld, kunt u geen teams maken met gereserveerde namen zoals www, administratie, ondersteuning, testen, kanaal, enz.",
- "admin.team.restrictNameTitle": "Beperken team namen: ",
- "admin.team.restrictTitle": "Beperkt het aanmaken van accounts tot de volgende e-mail domeinen:",
- "admin.team.restrict_direct_message_any": "Elke gebruiker van de Mattermost server",
- "admin.team.restrict_direct_message_team": "Elke gebruiker van het team",
- "admin.team.showFullname": "Toon voornaam en achternaam",
- "admin.team.showNickname": "Toon bijnaam, indien aanwezig, anders voor- en achternaam",
- "admin.team.showUsername": "Toon gebruikersnaam (standaard)",
- "admin.team.siteNameDescription": "Naam van de site welke getoond wordt op inlog- en andere schermen.",
- "admin.team.siteNameExample": "Bijv.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Site naam:",
- "admin.team.teamCreationDescription": "Wanneer uitgeschakeld kunnen alleen Systeem Beheerders teams maken.",
- "admin.team.teamCreationTitle": "Team maken inschakelen: ",
- "admin.team.teammateNameDisplay": "Naamweergave van teamgenoten",
- "admin.team.teammateNameDisplayDesc": "Geef aan hoe de gebruikersnaam word weergegeven in berichten en de Directe Berichten lijst. ",
- "admin.team.upload": "Upload",
- "admin.team.uploadDesc": "Customize your user experience by adding a custom image to your login screen. Recommended maximum image size is less than 2 MB.",
- "admin.team.uploaded": "Geupload!",
- "admin.team.uploading": "Bezig met uploaden..",
- "admin.team.userCreationDescription": "Wanneer uitgeschakeld, kunnen geen accounts worden aangemaakt. De 'maak account' knop toont dan een foutbookschap.",
- "admin.team.userCreationTitle": "Accounts aanmaken toestaan:",
- "admin.team_analytics.activeUsers": "Actieve gebruikers met berichten",
- "admin.team_analytics.totalPosts": "Totaal aantal berichten",
- "admin.true": "ingeschakeld",
- "admin.user_item.authServiceEmail": ", Aanmeld-methode: Email",
- "admin.user_item.authServiceNotEmail": ", Aanmeld-methode: {service}",
- "admin.user_item.confirmDemoteDescription": "Als je jezelf degradeert vanaf de System Admin rol en er is geen andere gebruiker met de System Admin rechten, zal je jezelf System Admin moeten maken door in te loggen op de Mattermost server en het volgende commando uit te voeren.",
- "admin.user_item.confirmDemoteRoleTitle": "Bevestig demotie van Systeem Admin rol",
- "admin.user_item.confirmDemotion": "Bevestig degradatie",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "E-mail: {email}",
- "admin.user_item.inactive": "Inactief",
- "admin.user_item.makeActive": "Activate",
- "admin.user_item.makeInactive": "Deactivate",
- "admin.user_item.makeMember": "Maak lid",
- "admin.user_item.makeSysAdmin": "Maak systeembeheerder",
- "admin.user_item.makeTeamAdmin": "Maak team beheerder",
- "admin.user_item.manageRoles": "Manage Roles",
- "admin.user_item.manageTeams": "Manage Teams",
- "admin.user_item.manageTokens": "Manage Tokens",
- "admin.user_item.member": "Lid",
- "admin.user_item.mfaNo": ", MFA: Nee",
- "admin.user_item.mfaYes": ", MFA: Ja",
- "admin.user_item.resetMfa": "Verwijder MFA",
- "admin.user_item.resetPwd": "Reset wachtwoord",
- "admin.user_item.switchToEmail": "Overschakelen naar e-mail/wachtwoord",
- "admin.user_item.sysAdmin": "Systeem beheerder",
- "admin.user_item.teamAdmin": "Team beheerder",
- "admin.user_item.userAccessTokenPostAll": "(with post:all personal access tokens)",
- "admin.user_item.userAccessTokenPostAllPublic": "(with post:channels personal access tokens)",
- "admin.user_item.userAccessTokenYes": "(with personal access tokens)",
- "admin.webrtc.enableDescription": "When true, Mattermost allows making one-on-one video calls. WebRTC calls are available on Chrome, Firefox and Mattermost Desktop Apps.",
- "admin.webrtc.enableTitle": "Aanzetten Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Enter your admin secret password to access the Gateway Admin URL.",
- "admin.webrtc.gatewayAdminSecretExample": "Bijv.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Gateway Admin Secret:",
- "admin.webrtc.gatewayAdminUrlDescription": "Enter https://:/admin. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. Mattermost WebRTC uses this URL to obtain valid tokens for each peer to establish the connection.",
- "admin.webrtc.gatewayAdminUrlExample": "Bijv.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Gateway Admin URL:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Enter wss://:. Make sure you use WS or WSS in your URL depending on your server configuration. This is the WebSocket used to signal and establish communication between the peers.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Bijv.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway Websocket URL:",
- "admin.webrtc.stunUriDescription": "Enter your STUN URI as stun::. STUN is a standardized network protocol to allow an end host to assist devices to access its public IP address if it is located behind a NAT.",
- "admin.webrtc.stunUriExample": "Bijv.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI",
- "admin.webrtc.turnSharedKeyDescription": "Enter your TURN Server Shared Key. This is used to created dynamic passwords to establish the connection. Each password is valid for a short period of time.",
- "admin.webrtc.turnSharedKeyExample": "Bijv.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "TURN Shared Key:",
- "admin.webrtc.turnUriDescription": "Enter your TURN URI as turn::. TURN is a standardized network protocol to allow an end host to assist devices to establish a connection by using a relay public IP address if it is located behind a symmetric NAT.",
- "admin.webrtc.turnUriExample": "Bijv.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI",
- "admin.webrtc.turnUsernameDescription": "Geef jouw TURN Server Gebruikersnaam",
- "admin.webrtc.turnUsernameExample": "Bijv.: \"mijngebruikersnaam\"",
- "admin.webrtc.turnUsernameTitle": "TURN Gebruikersnaam:",
- "admin.webserverModeDisabled": "Uitgeschakeld",
- "admin.webserverModeDisabledDescription": "Mattermost server zal geen statische file serveren.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Mattermost server zal static files met gzip compressie serveren.",
- "admin.webserverModeHelpText": "gzip compressie geld voor statische content bestanden. Het is aangeraden om gzip aan te zetten om de performance te verbeteren, behalve als jouw omgeving specifieke restricties heeft, zoals een web proxy die gzip bestanden slecht weergeeft. ",
- "admin.webserverModeTitle": "Webserver modus:",
- "admin.webserverModeUncompressed": "Ongecomprimeerd",
- "admin.webserverModeUncompressedDescription": "Mattermost server zal statische bestanden ongecomprimeerd serveren.",
- "analytics.chart.loading": "Laden...",
- "analytics.chart.meaningful": "Niet genoeg gegevens voor een zinvolle weergave.",
- "analytics.system.activeUsers": "Actieve gebruikers met berichten",
- "analytics.system.channelTypes": "Kanaal types",
- "analytics.system.dailyActiveUsers": "Daily Active Users",
- "analytics.system.monthlyActiveUsers": "Monthly Active Users",
- "analytics.system.postTypes": "Berichten, bestanden en hashtags",
- "analytics.system.privateGroups": "Verlaat kanaal",
- "analytics.system.publicChannels": "Publieke kanalen",
- "analytics.system.skippedIntensiveQueries": "To maximize performance, some statistics are disabled. You can re-enable them in config.json. See: https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Berichten met enkel tekst",
- "analytics.system.title": "Systeem-statistieken",
- "analytics.system.totalChannels": "Totaal aantal kanalen",
- "analytics.system.totalCommands": "Totaal aantal opdrachten",
- "analytics.system.totalFilePosts": "Berichten met bestanden",
- "analytics.system.totalHashtagPosts": "Berichten met hashtags",
- "analytics.system.totalIncomingWebhooks": "Inkomende webhooks",
- "analytics.system.totalMasterDbConnections": "Master DB Conns",
- "analytics.system.totalOutgoingWebhooks": "Uitgaande webhooks",
- "analytics.system.totalPosts": "Totaal aantal berichten",
- "analytics.system.totalReadDbConnections": "Replica DB Conns",
- "analytics.system.totalSessions": "Totaal aantal sessies",
- "analytics.system.totalTeams": "Totaal aantal teams",
- "analytics.system.totalUsers": "Totaal aantal gebruikers",
- "analytics.system.totalWebsockets": "WebSocket Conns",
- "analytics.team.activeUsers": "Actieve gebruikers met berichten",
- "analytics.team.newlyCreated": "Nieuw gemaakte gebruikers",
- "analytics.team.noTeams": "There are no teams on this server for which to view statistics.",
- "analytics.team.privateGroups": "Verlaat kanaal",
- "analytics.team.publicChannels": "Publieke kanalen",
- "analytics.team.recentActive": "Recent actieve gebruikers",
- "analytics.team.recentUsers": "Recent actieve gebruikers",
- "analytics.team.title": "Team statistieken voor {team}",
- "analytics.team.totalPosts": "Totaal aantal berichten",
- "analytics.team.totalUsers": "Totaal aantal gebruikers",
- "api.channel.add_member.added": "{addedUsername} added to the channel by {username}",
- "api.channel.delete_channel.archived": "{username} has archived the channel.",
- "api.channel.join_channel.post_and_forget": "{username} has joined the channel.",
- "api.channel.leave.left": "{username} has left the channel.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} updated the channel display name from: {old} to: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} removed the channel header (was: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} updated the channel header from: {old} to: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} updated the channel header to: {new}",
- "api.channel.remove_member.removed": "{removedUsername} was removed from the channel",
- "app.channel.post_update_channel_purpose_message.removed": "{username} removed the channel purpose (was: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} updated the channel purpose from: {old} to: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} updated the channel purpose to: {new}",
- "audit_table.accountActive": "Account activated",
- "audit_table.accountInactive": "Account deactivated",
- "audit_table.action": "Actie",
- "audit_table.attemptedAllowOAuthAccess": "Poging om een nieuwe OAuth dienst toegang te verlenen",
- "audit_table.attemptedLicenseAdd": "Poging om een nieuwe licentie toe te voegen",
- "audit_table.attemptedLogin": "Inlogpoging",
- "audit_table.attemptedOAuthToken": "Poging om een nieuwe OAuth token op te vragen",
- "audit_table.attemptedPassword": "Poging tot wachtwoord reset",
- "audit_table.attemptedRegisterApp": "Poging om een nieuwe OAuth applicatie te registreren met ID {id}",
- "audit_table.attemptedReset": "Poging tot wachtwoord reset",
- "audit_table.attemptedWebhookCreate": "Poging om een webhook aan te maken",
- "audit_table.attemptedWebhookDelete": "Poging om een webhook te verwijderen",
- "audit_table.by": " door {username}",
- "audit_table.byAdmin": " door een systeembeheerder",
- "audit_table.channelCreated": "De {channelName} kanaal of groep is gemaakt",
- "audit_table.channelDeleted": "De kanaal of groep met URL {url} is verwijderd",
- "audit_table.establishedDM": "Verbinding gelegd met {username} in een direct message kanaal.",
- "audit_table.failedExpiredLicenseAdd": "Toevoegen van een nieuwe licentie is mislukt omdat deze is verlopen of nog niet is begonnen",
- "audit_table.failedInvalidLicenseAdd": "Toevoegen van een ongeldige licentie mislukt",
- "audit_table.failedLogin": "MISLUKTE inlog poging",
- "audit_table.failedOAuthAccess": "Toestaan van een nieuwe OAuth dienst mislukt - de redirect URI is niet gelijk aan de eerder geregistreerde callback",
- "audit_table.failedPassword": "De wachtwoord-wijziging is mislukt - een wachtwoord-wijziging werd gedaan met een gebruiker die ingelogd is via OAuth",
- "audit_table.failedWebhookCreate": "Toevoegen van webhook mislukt - geen kanaal rechten",
- "audit_table.failedWebhookDelete": "Mislukt om een webhook te verwijderen - onvoldoende condities",
- "audit_table.headerUpdated": "De kanaal- of groepskoptekst van {channelName} is bijgewerkt",
- "audit_table.ip": "IP adres",
- "audit_table.licenseRemoved": "De licentie is succesvol verwijderd",
- "audit_table.loginAttempt": " (Login poging)",
- "audit_table.loginFailure": " (Login gefaald)",
- "audit_table.logout": "U bent uitgelogd",
- "audit_table.member": "lid",
- "audit_table.nameUpdated": "De {channelName} kanaal of groep naam is bijgewerkt",
- "audit_table.oauthTokenFailed": "Mislukt om een OAuth toegangs token te verkrijgen - {token}",
- "audit_table.revokedAll": "Toegang ingetrokken voor alle huidige sessies van het team",
- "audit_table.sentEmail": "Er is een e-mail verzonden naar {email} om je wachtwoord te resetten",
- "audit_table.session": "Sessie ID",
- "audit_table.sessionRevoked": "De sessie met id {sessionId} werd ingetrokken",
- "audit_table.successfullLicenseAdd": "De nieuwe licentie is met succes toegevoegd",
- "audit_table.successfullLogin": "Aanmelding succesvol",
- "audit_table.successfullOAuthAccess": "Succesvol een nieuwe OAuth service toegang gegeven",
- "audit_table.successfullOAuthToken": "Succesvol een nieuwe OAuth service toegevoegd",
- "audit_table.successfullPassword": "Wachtwoord met succes gewijzigd",
- "audit_table.successfullReset": "Wachtwoord reset succesvol",
- "audit_table.successfullWebhookCreate": "Aanmaken webhook succesvol",
- "audit_table.successfullWebhookDelete": "Verwijderen webhook succesvol",
- "audit_table.timestamp": "Tijdaanduiding",
- "audit_table.updateGeneral": "De algemene instellingen van uw account zijn bijgewerkt",
- "audit_table.updateGlobalNotifications": "De algemene melding-instellingen zijn bijgewerkt",
- "audit_table.updatePicture": "Uw profiel-afbeelding is bijgewerkt",
- "audit_table.updatedRol": "De user rol(len) zijn bijgewerkt naar ",
- "audit_table.userAdded": "Gebruiker {username} is verwijderd uit het {channelName} kanaal / groep",
- "audit_table.userId": "Gebruikers ID",
- "audit_table.userRemoved": "Gebruiker {username} is verwijderd uit de {channelName} kanaal / groep",
- "audit_table.verified": "Uw e-mail adres is succesvol geverifiëerd",
- "authorize.access": "Wilt u {appName} toegang verlenen?",
- "authorize.allow": "Toestaan",
- "authorize.app": "De applicatie {appName} wil uw toestemming om uw basis informatie te bekijken en te bewerken.",
- "authorize.deny": "Weigeren",
- "authorize.title": "{appName} wil verbinding maken met jouw Mattermost gebruikers account",
- "backstage_list.search": "Zoeken",
- "backstage_navbar.backToMattermost": "Terug naar {siteName}",
- "backstage_sidebar.emoji": "Aangepaste emoji",
- "backstage_sidebar.integrations": "Integraties",
- "backstage_sidebar.integrations.commands": "Slash opdrachten",
- "backstage_sidebar.integrations.incoming_webhooks": "Inkomende webhooks",
- "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 Applicaties",
- "backstage_sidebar.integrations.outgoing_webhooks": "Uitgaande webhooks",
- "calling_screen": "Oproep",
- "center_panel.recent": "Klik hier om naar uw recente berichten te gaan. ",
- "change_url.close": "Afsluiten",
- "change_url.endWithLetter": "Moet eindigen met een letter of een cijfer",
- "change_url.invalidUrl": "Ongeldige URL",
- "change_url.longer": "URL must be two or more characters.",
- "change_url.noUnderscore": "Het niet is toegestaan om 2 underscores na elkaar te gebruiken.",
- "change_url.startWithLetter": "Moet beginnen met een letter of een cijfer",
- "change_url.urlLabel": "Kanaal URL:",
- "channelHeader.addToFavorites": "Add to Favorites",
- "channelHeader.removeFromFavorites": "Remove from Favorites",
- "channel_flow.alreadyExist": "Een kanaal met die URL bestaat reeds",
- "channel_flow.changeUrlDescription": "Sommige tekens zijn ongeldig in een URL en worden verwijderd.",
- "channel_flow.changeUrlTitle": "Change Channel URL",
- "channel_flow.create": "Verlaat kanaal",
- "channel_flow.handleTooShort": "Kanaal URL moet 2 of meer kleine alfanumerieke karakters bevatten",
- "channel_flow.invalidName": "Ongeldige kanaal naam",
- "channel_flow.set_url_title": "Set Channel URL",
- "channel_header.addChannelHeader": "Add a channel description",
- "channel_header.addMembers": "Leden toevoegen",
- "channel_header.addToFavorites": "Add to Favorites",
- "channel_header.channelHeader": "Edit Channel Header",
- "channel_header.channelMembers": " Leden",
- "channel_header.delete": "Verwijder kanaal...",
- "channel_header.flagged": "Gemarkeerde Berichten",
- "channel_header.leave": "Verlaat kanaal",
- "channel_header.manageMembers": "Leden beheren",
- "channel_header.notificationPreferences": "Meldings-voorkeuren",
- "channel_header.pinnedPosts": "Pinned Posts",
- "channel_header.recentMentions": "Recente vermeldingen",
- "channel_header.removeFromFavorites": "Remove from Favorites",
- "channel_header.rename": "Hernoem kanaal...",
- "channel_header.setHeader": "Edit Channel Header",
- "channel_header.setPurpose": "Edit Channel Purpose",
- "channel_header.viewInfo": "Bekijk informatie",
- "channel_header.viewMembers": "Bekijk Leden",
- "channel_header.webrtc.call": "Een video-oproep starten",
- "channel_header.webrtc.offline": "The user is offline",
- "channel_header.webrtc.unavailable": "New call unavailable until your existing call ends",
- "channel_info.about": "Over",
- "channel_info.close": "Afsluiten",
- "channel_info.header": "Kop:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Naam:",
- "channel_info.notFound": "Geen kanaal gevonden",
- "channel_info.purpose": "Doel:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Toevoegen",
- "channel_invite.addNewMembers": "Nieuwe leden toevoegen aan ",
- "channel_invite.close": "Afsluiten",
- "channel_loader.connection_error": "Er lijkt een probleem te zijn met uw internet verbinding, gelieve dit te controleren.",
- "channel_loader.posted": "Verzonden",
- "channel_loader.postedImage": " heeft een afbeelding geüpload",
- "channel_loader.socketError": "Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.",
- "channel_loader.someone": "Iemand",
- "channel_loader.something": " deed iets nieuws",
- "channel_loader.unknown_error": "We kregen een onverwachte statuscode van de server.",
- "channel_loader.uploadedFile": " heeft een bestand geüpload",
- "channel_loader.uploadedImage": " heeft een afbeelding geüpload",
- "channel_loader.wrote": " schreef: ",
- "channel_members_dropdown.channel_admin": "Channel Admin",
- "channel_members_dropdown.channel_member": "Kanaal Leden",
- "channel_members_dropdown.make_channel_admin": "Make Channel Admin",
- "channel_members_dropdown.make_channel_member": "Make Channel Member",
- "channel_members_dropdown.remove_from_channel": "Remove From Channel",
- "channel_members_dropdown.remove_member": "Remove Member",
- "channel_members_modal.addNew": "Leden toevoegen",
- "channel_members_modal.members": " Leden",
- "channel_modal.cancel": "Annuleren",
- "channel_modal.createNew": "Maak een nieuw kanaal",
- "channel_modal.descriptionHelp": "Beschrijf hoe deze {term} gebruikt moet worden.",
- "channel_modal.displayNameError": "Channel name must be 2 or more characters",
- "channel_modal.edit": "Bewerken",
- "channel_modal.header": "Kop",
- "channel_modal.headerEx": "E.g.: \"[Link Title](http://example.com)\"",
- "channel_modal.headerHelp": "Geef de tekst die zal verschijnen in het hoofd van de {term} naast de {term} naam. Bijvoorbeeld, veelgebruikte links door het opgeven van [Link Titel](http://example.com).",
- "channel_modal.modalTitle": "New Channel",
- "channel_modal.name": "Naam",
- "channel_modal.nameEx": "Bijv.: \"Bugs\", \"Marketing\", \"客户支持\"",
- "channel_modal.optional": "(optioneel)",
- "channel_modal.privateGroup1": "Maak een nieuwe privé groep met beperkt lidmaatschap. ",
- "channel_modal.privateGroup2": "Maak een publiek kanaal",
- "channel_modal.publicChannel1": "Maak een publiek kanaal",
- "channel_modal.publicChannel2": "Maak een publiek kanaal waar iedereen lid van kan worden. ",
- "channel_modal.purpose": "Doel",
- "channel_modal.purposeEx": "E.g.: \"A channel to file bugs and improvements\"",
- "channel_notifications.allActivity": "Voor alle activiteiten",
- "channel_notifications.allUnread": "Voor alle ongelezen berichten",
- "channel_notifications.globalDefault": "Globale standaard ({notifyLevel})",
- "channel_notifications.markUnread": "Markeer het kanaal als ongelezen",
- "channel_notifications.never": "Nooit",
- "channel_notifications.onlyMentions": "Enkel voor vermeldingen",
- "channel_notifications.override": "Het selecteren van een andere optie dan \"Standaard\" heeft voorrang op de globale instellingen voor meldingen. Desktop meldingen zijn beschikbaar op Firefox, Safari en Chrome.",
- "channel_notifications.overridePush": "Selecting an option other than \"Global default\" will override the global notification settings for mobile push notifications in account settings. Push notifications must be enabled by the System Admin.",
- "channel_notifications.preferences": "Meldings-voorkeuren voor ",
- "channel_notifications.push": "Stuur mobiele push notificaties",
- "channel_notifications.sendDesktop": "Stuur desktop meldingen",
- "channel_notifications.unreadInfo": "De kanaal-naam is vet in de navigatiekolom wanneer er ongelezen berichten zijn. Wanneer \"Enkel bij vermeldingen\" is geselecteerd, zal het kanaal enkel vet zijn wanneer uw naam vermeld is.",
- "channel_select.placeholder": "--- Selecteer een kanaal ---",
- "channel_switch_modal.dm": "(Privé bericht)",
- "channel_switch_modal.failed_to_open": "Failed to open channel.",
- "channel_switch_modal.not_found": "Geen overeenkomsten gevonden.",
- "channel_switch_modal.submit": "Wisselen",
- "channel_switch_modal.title": "Kanalen wisselen",
- "claim.account.noEmail": "Geen e-mail adres opgegeven",
- "claim.email_to_ldap.enterLdapPwd": "Voer de ID en het wachtwoord van uw AD/LDAP-account in",
- "claim.email_to_ldap.enterPwd": "Voer het wachtwoord in voor uw {site} e-mail account",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "Vul uw AD/LDAP-ID in.",
- "claim.email_to_ldap.ldapPasswordError": "Voer uw AD/LDAP wachtwoord in.",
- "claim.email_to_ldap.ldapPwd": "AD/LDAP wachtwoord",
- "claim.email_to_ldap.pwd": "Wachtwoord",
- "claim.email_to_ldap.pwdError": "Vul uw wachtwoord in.",
- "claim.email_to_ldap.ssoNote": "U moet een geldig AD/LDAP-account hebben",
- "claim.email_to_ldap.ssoType": "Wanneer je je account claimt, kan je alleen inloggen met AD/LDAP",
- "claim.email_to_ldap.switchTo": "Wissel uw account naar AD/LDAP",
- "claim.email_to_ldap.title": "Wissel e-mail/wachtwoord account naar AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Voer het wachtwoord in voor uw {site} account",
- "claim.email_to_oauth.pwd": "Wachtwoord",
- "claim.email_to_oauth.pwdError": "Vul uw wachtwoord in.",
- "claim.email_to_oauth.ssoNote": "U moet een geldig {type} account hebben",
- "claim.email_to_oauth.ssoType": "Wanneer je je account claimt, kan je alleen kiezen voor {type} 'Single Sign On'",
- "claim.email_to_oauth.switchTo": "Wissel account naar {uiType}",
- "claim.email_to_oauth.title": "Wissel e-mail/wachtwoord account naar {uiType}",
- "claim.ldap_to_email.confirm": "Bevestig het wachtwoord",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "Voer uw AD/LDAP wachtwoord in.",
- "claim.ldap_to_email.ldapPwd": "AD/LDAP wachtwoord",
- "claim.ldap_to_email.pwd": "Wachtwoord",
- "claim.ldap_to_email.pwdError": "Voer uw wachtwoord in.",
- "claim.ldap_to_email.pwdNotMatch": "De wachtwoorden zijn niet gelijk.",
- "claim.ldap_to_email.switchTo": "Schakel account naar e-mail/wachtwoord",
- "claim.ldap_to_email.title": "Schakel AD/LDAP account naar e-mail/wachtwoord",
- "claim.oauth_to_email.confirm": "Bevestig uw wachtwoord",
- "claim.oauth_to_email.description": "Bij het aanpassen van je account type, kan je alleen inloggen met je emailadres en wachtwoord.",
- "claim.oauth_to_email.enterNewPwd": "Voer een nieuw wachtwoord in voor uw {site} e-mail account",
- "claim.oauth_to_email.enterPwd": "Voer een wachtwoord in.",
- "claim.oauth_to_email.newPwd": "Nieuw wachtwoord",
- "claim.oauth_to_email.pwdNotMatch": "Wachtwoorden zijn niet gelijk.",
- "claim.oauth_to_email.switchTo": "Overschakelen van {type} naar het gebruik van email en password",
- "claim.oauth_to_email.title": "Wissen {type} account naar e-mail",
- "confirm_modal.cancel": "Annuleren",
- "connecting_screen": "Verbindingen",
- "create_comment.addComment": "Voeg commentaar toe...",
- "create_comment.comment": "Voeg commentaar toe",
- "create_comment.commentLength": "De lengte van het commentaar moet minder dan {max} tekens zijn.",
- "create_comment.commentTitle": "Commentaar",
- "create_comment.file": "Bestand uploaden",
- "create_comment.files": "Bestand uploaden",
- "create_post.comment": "Commentaar",
- "create_post.error_message": "Your message is too long. Character count: {length}/{limit}",
- "create_post.post": "Bericht",
- "create_post.shortcutsNotSupported": "Toetsenbord snelkoppelingen worden niet ondersteund op jouw apparaat.",
- "create_post.tutorialTip": "
Versturen van berichten
Tik hier om een bericht te maken en druk op Enter op het te versturen.
Klik de Bijlage knop om een beeld of bestand te uploaden.
",
- "create_post.write": "Schrijf een bericht...",
- "create_team.agreement": "Door verder te gaan maak je jouw account en gebruik je {siteName}, je gaat akkoord met onze Voorwaarden en Privacy Policy. Als je niet akkoord gaat, kan je geen gebruik maken van {siteName}.",
- "create_team.display_name.charLength": "Name must be {min} or more characters up to a maximum of {max}. You can add a longer team description later.",
- "create_team.display_name.nameHelp": "Geef uw team een naam – in eender welke taal. De naam van uw team wordt in menu's en kopteksten getoond.",
- "create_team.display_name.next": "Volgende",
- "create_team.display_name.required": "Dit is een verplicht veld",
- "create_team.display_name.teamName": "Team naam",
- "create_team.team_url.back": "Terug naar de vorige stap",
- "create_team.team_url.charLength": "Uw naam moet langer zijn dan {min} tekens met een maximum van {max}",
- "create_team.team_url.creatingTeam": "Maken van team...",
- "create_team.team_url.finish": "Voltooien",
- "create_team.team_url.hint": "
Kort en gemakkelijk te onthouden is het beste
Gebruik kleine letter, nummers en streepjes
Een teamnaam moet met een letter beginnen en mag niet met een streepje eindigen
",
- "create_team.team_url.regex": "Gebruik enkel kleine letters, nummers en streepjes. De naam moet met een letter beginnen en mag niet met een streepje eindigen.",
- "create_team.team_url.required": "Dit is een verplicht veld",
- "create_team.team_url.taken": "This URL starts with a reserved word or is unavailable. Please try another.",
- "create_team.team_url.teamUrl": "Team URL",
- "create_team.team_url.unavailable": "Deze URL is niet beschikbaar, probleer een andere.",
- "create_team.team_url.webAddress": "Kies het web adres van uw nieuw team:",
- "custom_emoji.empty": "Geen custom emoji gevonden",
- "custom_emoji.header": "Aangepaste emoji",
- "custom_emoji.search": "Zoek custom Emoji",
- "deactivate_member_modal.cancel": "Annuleren",
- "deactivate_member_modal.deactivate": "Deactivate",
- "deactivate_member_modal.desc": "This action deactivates {username}. They will be logged out and not have access to any teams or channels on this system. Are you sure you want to deactivate {username}?",
- "deactivate_member_modal.title": "Deactivate {username}",
- "default_channel.purpose": "Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.",
- "delete_channel.cancel": "Annuleren",
- "delete_channel.confirm": "Bevestig het WISSEN van het kanaal",
- "delete_channel.del": "Verwijderen",
- "delete_channel.question": "This will delete the channel from the team and make its contents inaccessible for all users.
Are you sure you wish to delete the {display_name} channel?",
- "delete_post.cancel": "Annuleren",
- "delete_post.comment": "Commentaar",
- "delete_post.confirm": "Bevestig {term} verwijdering",
- "delete_post.del": "Verwijderen",
- "delete_post.post": "Bericht",
- "delete_post.question": "Weet u zeker dat u deze {term} wilt verwijderen?",
- "delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
- "edit_channel_header.editHeader": "Edit the Channel Header...",
- "edit_channel_header.previewHeader": "Koptekst bewerken",
- "edit_channel_header_modal.cancel": "Annuleren",
- "edit_channel_header_modal.description": "Bewerk de tekst die naast de kanaalnaam in de hoofding getoond wordt.",
- "edit_channel_header_modal.error": "De kanaalkoptekst is te lang, gelieve een kortere tekst in te geven",
- "edit_channel_header_modal.save": "Opslaan",
- "edit_channel_header_modal.title": "Bewerk de koptekst voor {channel}",
- "edit_channel_header_modal.title_dm": "Koptekst bewerken",
- "edit_channel_private_purpose_modal.body": "This text appears in the \"View Info\" modal of the private channel.",
- "edit_channel_purpose_modal.body": "Omschrijf hoe dit {type} zal worden gebruikt. Deze tekst word zichtbaar in de kanalen lijst in het \"Meer...\" menu en zal anderen helpen te beslissen of zij willen joinen.",
- "edit_channel_purpose_modal.cancel": "Annuleren",
- "edit_channel_purpose_modal.error": "Het kanaaldoel is te lang, gelieve een kortere tekst in te geven",
- "edit_channel_purpose_modal.save": "Opslaan",
- "edit_channel_purpose_modal.title1": "Bewerk doel",
- "edit_channel_purpose_modal.title2": "Doeleinden bewerken voor ",
- "edit_command.save": "Update",
- "edit_post.cancel": "Annuleren",
- "edit_post.edit": "{title} bewerken",
- "edit_post.editPost": "Bewerk het bericht...",
- "edit_post.save": "Opslaan",
- "email_signup.address": "E-mail adres",
- "email_signup.createTeam": "Team aanmaken",
- "email_signup.emailError": "Vul een geldig e-mail adres in. ",
- "email_signup.find": "Vind mijn teams",
- "email_verify.almost": "{siteName}: U bent bijna klaar",
- "email_verify.failed": " Mislukt om een verificatie mail te sturen.",
- "email_verify.notVerifiedBody": "Controleer uw mailbox voor het mailtje om uw e-mailadres te verifiëren.",
- "email_verify.resend": "Email opnieuw sturen",
- "email_verify.sent": "Verificatie e-mail is verzonden.",
- "email_verify.verified": "{siteName} email is geverifieerd.",
- "email_verify.verifiedBody": "
",
- "email_verify.verifyFailed": "Verificatie van uw e-mail is gefaald.",
- "emoji_list.actions": "Acties",
- "emoji_list.add": "Aangepaste emoji",
- "emoji_list.creator": "Aangemaakt door",
- "emoji_list.delete": "Verwijderen",
- "emoji_list.delete.confirm.button": "Verwijderen",
- "emoji_list.delete.confirm.msg": "This action permanently deletes the custom emoji. Are you sure you want to delete it?",
- "emoji_list.delete.confirm.title": "Delete Custom Emoji",
- "emoji_list.empty": "Geen Custom Emoji Gevonden",
- "emoji_list.header": "Aangepaste emoji",
- "emoji_list.help": "Aangepaste emoji zijn beschikbaar voor iedereen op jouw server. Type ':' in een bericht venster om het emoji selectie menu zichtbaar te maken. Andere gebruikers zullen de pagina moeten verversen voordat de nieuwe emojis zichtbaar zijn.",
- "emoji_list.help2": "Tip: Als je #,## of ### als eerste karakter op een nieuwe lijn met een emoji gebruikt, kan je een grotere versie van de emoji versturen. Om te proberen, stuur een bericht als: '# :smile:'.",
- "emoji_list.image": "Afbeelding",
- "emoji_list.name": "Naam",
- "emoji_list.search": "Zoek Aangepaste Emoji",
- "emoji_list.somebody": "Iemand op een ander team",
- "emoji_picker.activity": "Activity",
- "emoji_picker.custom": "Custom",
- "emoji_picker.emojiPicker": "Emoji Picker",
- "emoji_picker.flags": "Markeer",
- "emoji_picker.foods": "Foods",
- "emoji_picker.nature": "Nature",
- "emoji_picker.objects": "Objects",
- "emoji_picker.people": "People",
- "emoji_picker.places": "Places",
- "emoji_picker.recent": "Recently Used",
- "emoji_picker.search": "Zoeken",
- "emoji_picker.symbols": "Symbols",
- "error.local_storage.help1": "Enable cookies",
- "error.local_storage.help2": "Turn off private browsing",
- "error.local_storage.help3": "Use a supported browser (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost was unable to load because a setting in your browser prevents the use of its local storage features. To allow Mattermost to load, try the following actions:",
- "error.not_found.link_message": "Terug naar Mattermost",
- "error.not_found.message": "De pagina die u probeerde op te halen bestaat niet",
- "error.not_found.title": "Pagina niet gevonden",
- "error_bar.expired": "Enterprise license is expired and some features may be disabled. Please renew.",
- "error_bar.expiring": "Enterprise license expires on {date}. Please renew.",
- "error_bar.past_grace": "Enterprise license is expired and some features may be disabled. Please contact your System Administrator for details.",
- "error_bar.preview_mode": "Preview Modus: Email notificaties zijn niet geconfigureerd",
- "error_bar.site_url": "Please configure your {docsLink} in the {link}.",
- "error_bar.site_url.docsLink": "Site URL:",
- "error_bar.site_url.link": "Systeem console",
- "error_bar.site_url_gitlab": "Please configure your {docsLink} in the System Console or in gitlab.rb if you're using GitLab Mattermost.",
- "file_attachment.download": "Downloaden",
- "file_info_preview.size": "Grootte ",
- "file_info_preview.type": "Bestandstype ",
- "file_upload.disabled": "File attachments are disabled.",
- "file_upload.fileAbove": "Het bestand groter dan {max} MB kan niet worden geüploaded: {filename}",
- "file_upload.filesAbove": "Bestanden groter dan {max}MB kunnen niet worden geüpload: {filenames}",
- "file_upload.limited": "Uploads gelimiteerd op maximum {count} bestanden. Gebruik additionele berichten voor meer bestanden.",
- "file_upload.pasted": "Afbeelding Geplakt in ",
- "filtered_channels_list.search": "Kanalen zoeken",
- "filtered_user_list.any_team": "Alle gebruikers",
- "filtered_user_list.count": "{count, number} {count, plural, one {member} other {members}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {member} other {members}} of {total, number} total",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {member} other {members}} of {total, number} total",
- "filtered_user_list.member": "Lid",
- "filtered_user_list.next": "Volgende",
- "filtered_user_list.prev": "Previous",
- "filtered_user_list.search": "Search users",
- "filtered_user_list.searchButton": "Zoeken",
- "filtered_user_list.show": "Filter:",
- "filtered_user_list.team_only": "Leden van dit team",
- "find_team.email": "E-mail",
- "find_team.findDescription": "Een email was verstuurd met links naar ieder team waar je lid van bent. ",
- "find_team.findTitle": "Vind jouw team",
- "find_team.getLinks": "Krijg een email met links naar ieder team waar je lid van bent. ",
- "find_team.placeholder": "uw.naam@domein.nl",
- "find_team.send": "Verzenden",
- "find_team.submitError": "Vul een geldig e-mail adres in",
- "flag_post.flag": "Markeren voor vervolgactie",
- "flag_post.unflag": "Demarkeer",
- "general_tab.chooseDescription": "Kies een nieuwe naam voor uw team",
- "general_tab.codeDesc": "Klik op 'Bewerken' om de uitnodigings-code opnieuw te genereren.",
- "general_tab.codeLongDesc": "De Uitnodigings Code is onderdeel van de URL in de team uitnodigings link gemaakt door de Krijg Team Uitnodigings Link\" in het hoofdmenu. Hergenereren maakt een nieuwe team uitnodiging en zal de vorige link onbruikbaar maken.",
- "general_tab.codeTitle": "Uitnodigings-code",
- "general_tab.emptyDescription": "Click 'Edit' to add a team description.",
- "general_tab.getTeamInviteLink": "Verkrijg de team uitnodigings-link",
- "general_tab.includeDirDesc": "Invoegen van dit team zal de team naam zichtbaar maken in de Team Directory sectie op de hoofdpaginam en zal een link naar de login pagina maken.",
- "general_tab.no": "Nee",
- "general_tab.openInviteDesc": "Wanneer dit is toegestaan, zal een link naar dit team worden opgenomen op de landings-pagina, zodat iedereen met een account mee kan doen met dit team.",
- "general_tab.openInviteTitle": "Sta iedere gebruiker met een account op deze server om lid te worden van dit team",
- "general_tab.regenerate": "Opnieuw genereren",
- "general_tab.required": "Dit veld is verplicht",
- "general_tab.teamDescription": "Team Description",
- "general_tab.teamDescriptionInfo": "Team description provides additional information to help users select the right team. Maximum of 50 characters.",
- "general_tab.teamName": "Team naam",
- "general_tab.teamNameInfo": "Zet de teamnaam zoals die zal verschijnen op uw login scherm en bovenaan de navigatiekolom aan de linkerkant.",
- "general_tab.title": "Algemene instellingen",
- "general_tab.yes": "Ja",
- "get_app.alreadyHaveIt": "Heb je het al?",
- "get_app.androidAppName": "Mattermost voor Android",
- "get_app.androidHeader": "Mattermost werkt het beste als je overschakelt naar onze Android app",
- "get_app.continue": "doorgaan",
- "get_app.continueWithBrowser": "Of {link}",
- "get_app.continueWithBrowserLink": "doorgaan met de browser",
- "get_app.iosHeader": "Mattermost werkt het beste als je overschakelt naar onze iPhone app",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Open Matermost",
- "get_link.clipboard": " Link copied",
- "get_link.close": "Afsluiten",
- "get_link.copy": "Kopieer link",
- "get_post_link_modal.help": "De link hieronder staat geautoriseerde gebruikers toe om jouw bericht te bekijken.",
- "get_post_link_modal.title": "Kopieer permanente link",
- "get_public_link_modal.help": "The link below allows anyone to see this file without being registered on this server.",
- "get_public_link_modal.title": "Openbare link ophalen",
- "get_team_invite_link_modal.help": "Stuur teamleden de link hieronder om zichzelf in te schrijven bij dit team. De Team Uitnodigings Link kan worden gedeeld met zoveel teamleden als nodig is en zal niet veranderen tenzij het is hergenereerd in de Team Instellingen door een Team Admin. ",
- "get_team_invite_link_modal.helpDisabled": "Het maken van gebruikers is uitgeschakeld voor uw team. Vraag uw team beheerder voor meer informatie. ",
- "get_team_invite_link_modal.title": "Team uitnodigingslink",
- "help.attaching.downloading": "#### Downloaden van Bestanden\nDownload een bijgevoegd bestand door op het download ikoon te klikken naast het bestands-pictogram of open de bestands-voorvertoner en klik **Download**.",
- "help.attaching.dragdrop": "#### Slepen en Neerzetten\nUpload een bestand of een selectie van bestanden door de bestanden te slepen van jouw computer in het RHS in het midden. Slepen en neerzetten voegt het bestand aan het bericht in het invoer veld, dan kan je optioneel een bericht typen en op **ENTER** drukken om te plaatsen.",
- "help.attaching.icon": "### Bijlage Ikoon\nAlternatief, upload bestanden door op het grijze paperclip ikoon te drukken in het bericht venster. Dit opent een systeem bestand weergave waar je kan navigeren naar het gewenste bestand en dan klikken op **Open** om de bestanden te uploaden. Optioneel een bericht typen en op **ENTER** drukken om te plaatsen.",
- "help.attaching.limitations": "## Bestandsgroote Limieten\nMattermost ondersteund een maximum van vijf bijgevoegde bestanden per bericht, met een grootte van maximaal ieder 50Mb.",
- "help.attaching.methods": "## Bijlage Methodes\nVoeg een bestand toe via slepen en neerzetten of door op het bijlage icoon te drukken in het bericht veld.",
- "help.attaching.notSupported": "Document voorvertonen (Word, Excel, PPT) is nog niet ondersteund.",
- "help.attaching.pasting": "#### Plakken van Afbeeldingen\nIn Chrome en Edge browsers, is het ook mogelijk om bestanden te plakken vanaf het clipboard. Dit word nog niet ondersteund door andere browsers.",
- "help.attaching.previewer": "## Bestand-Voorvertoner\nMattermost heeft een ingebouwde bestand-voorvertoner om media, gedownloade bestanden en publieke links voor te vertonen. Klik op het pictogram van een bijgevoegd bestand en open het in de bestand-voorvertoner.",
- "help.attaching.publicLinks": "#### Delen Publieke Links\nPublieke links staan je toe om bestanden te delen met mensen buiten jouw Mattermost team. Open de bestand-voorvertoner door op het pictogram van de bijlage te drikken, en dan drukken op **Krijg Publieke Link**. Dit zal een venster openen met een link om te kopiëren. Wanneer deze link word gedeeld en geopend door iemand anders, dan zal het bestand automatisch worden gedownload.",
- "help.attaching.publicLinks2": "Als **Krijg Publieke Link** niet zichtbaar is in de bestand-voorvertoner en je wilt deze optie, kan je je Systeem Beheerder vragen om deze optie aan te zetten in de Systeem Console onder **Beveiliging** > **Publieke LInks**.",
- "help.attaching.supported": "#### Ondersteunde Bestands-soorten\nAls je probeert een niet ondersteunde bestands-soort te voorvertonen, de bestands-voorvertoner zal dan een standaard media bijlage icoon openen. Ondersteunde bestands-soorten hangt sterk af van jouw browser en operating systeem, maar de volgende bestands-soorten zijn ondersteund door Mattermost op de meeste browsers:",
- "help.attaching.supportedList": "- Afbeeldingen: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Documenten: PDF",
- "help.attaching.title": "# Bestanden bijvoegen\n_____",
- "help.commands.builtin": "## Ingebouwde Commando's\nDe volgende slash commando's zijn beschikbaar op alle Mattermost installaties:",
- "help.commands.builtin2": "Begin met het typen van een `/` en er zal een lijst van slash commando's verschijnen boven het tekst invoer veld. De autocomplete suggesties helpen met een formaat voorbeeld in zwarte tekst en een korte omschrijving van het slash commando in grijze tekst.",
- "help.commands.custom": "## Aangepaste Commando's\nAangepaste slash commando's integreren met externe applicaties.Bijvoorbeeld, een team kan een aangepast slash commando configureren om de interne gezonheidsstatus te controleren met `/patient joe smith` of controleer het wekelijkse weerbericht in een stad met `/weather rotterdam week`. Vraag bij Uw Systeem Beheerder of open de autocomplete lijst door `/` te typen, en kijk of jouw team aangepaste commando's heeft geconfigureerd.",
- "help.commands.custom2": "Aangepaste slash commando's zijn standaard uitgeschakeld en kunnen worden aangezet door de Systeem Beheerder in de **Systeem Console** > **Integraties** > **Webhooks en Commando's**. Lees meer over aangepaste commondo's op [developer slash command documentatie pagina](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Slash commando's voeren operaties uit in Mattermost door het typen van tekst in het tekst invoer veld. Typ een `/` gevolgd door een commando en paramaters om acties uit te voeren\n\nIngebouwde slash commando's zitten in alle Mattermost installaties en aangepaste slash commando's zijn te configureren met externe applicaties. Lees meer over het configureren van aangepaste slash commando's op de [developer slash command documentatie pagina](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Commando's Uitvoeren\n___",
- "help.composing.deleting": "## Verwijder een bericht\nVerwijder een bericht door op het **[...]** icoon naast een willekeurig bericht te klikken, en klik dan op **Verwijder**. Systeem en Team Beheerders kunnen ieder bericht verwijderen op het systeem.",
- "help.composing.editing": "## Bewerk een Bericht\nBewerk een bericht door op het **[...]** icoon naast een willekeurig bericht te klikken, en klik dan op **Bewerk**. Nadat je klaar bent met wijzigen, druk dan op **ENTER** om de wijziging te bewaren. Bericht bewerkingen triggeren niet opnieuw @mention notificaties, desktop notificaties of notificatie geluiden.",
- "help.composing.linking": "## Link naar een bericht\nDe **Permalink** optie maakt een link naar ieder bericht. Deel deze link met andere gebruikers in het kanaal en laat hun het bericht lezen in het Bericht Archief. Gebruikers, die geen lid van het kanaal waar het bericht in geplaatst is, kunnen het bericht niet zien. Krijg de permalink naar een bericht door op het **[...]** icoon te klikken naast een bericht en klik op **Permalink** > **Kopieer Link**.",
- "help.composing.posting": "## Plaats een bericht\nSchrijf een bericht door tekst te typen in het tekst invoer veld, en druk dan op **ENTER** om te versturen. Gebruik **Shift + ENTER** om een nieuwe lijn te maken zonder het bericht te versturen. Om berichten te versturen met **CTRL+ENTER** ga naar het **Hoofd Menu > Account Instellingen > Berichten Versturen met CTRL + ENTER**.",
- "help.composing.posts": "#### Berichten\nBerichten kunnen worden gezien als threads. Dat zijn berichten die een ketting van antwoorden kunnen starten. Berichten worden gemaakt en verstuurd vanaf het tekst invoer veld onderaar het middelste paneel.",
- "help.composing.replies": "#### Antwoorden\nAntwoord op een bericht door te klikken op het antwoord icoon naast een bericht. Deze actie opent de rechter-hand-side (RHS) waar je de berichten lijst kan zien, en dan maak en stuur jouw antwoord. Antwoorden zijn een klein beetje schuin zodat je kan zien dat het een antwoord op een ander bericht is.\n\nWanneer je een antwoord maakt, klik op de invouw/uitvouw icoon met de twee pijltjes bovenaan de zijbalk om ze makkelijker leesbaar te maken.",
- "help.composing.title": "# Berichten Versturen\n_____",
- "help.composing.types": "## Bericht Types\nAntwoord op berichten om gesprekken georganiseerd te houden.",
- "help.formatting.checklist": "Maak een takenlijst door vierkante haken toe te voegen:",
- "help.formatting.checklistExample": "- [ ] Onderdeel een\n- [ ] Onderdeel twee\n- [x] Afgemaakt Onderdeel",
- "help.formatting.code": "## Code Blok\n\nMaak een code blok door iedere lijn te beginnen met vier spaties of door ``` op de lijn boven en onder jouw code blok te plaatsen.",
- "help.formatting.codeBlock": "Codeblok",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nOpen het emoji autocomplete door een `:` te typen. Een lijst met emojis kan [hier](http://www.emoji-cheat-sheet.com/) gevonden worden. Het is ook mogelijk om een [Aangepaste Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html) te maken.",
- "help.formatting.example": "Voorbeeld:",
- "help.formatting.githubTheme": "**GitHub Thema**",
- "help.formatting.headings": "## Kopteksten\n\nMaak een koptekst door een # en een spatie te typen. Gebruik meer #’s voor lagere niveaus van kopteksten.",
- "help.formatting.headings2": "Je kan ook de tekst onderlijnen met `===` of `---` om kopteksten te maken.",
- "help.formatting.headings2Example": "Grote koptekst\n-------------",
- "help.formatting.headingsExample": "## Grote koptekst\n### Kleinere koptekst\n#### Nog kleinere koptekst",
- "help.formatting.images": "## In-line Afbeeldingen\n\nMaak in-line afbeeldingen door gebruik te maken van een `!`gevolgd door de tekst in rechte haken, en de link in normale haken. ",
- "help.formatting.imagesExample": "\n\nen\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## In-line Code\n\nMaak in-line monospaced font door het te omgeven door backticks.",
- "help.formatting.intro": "Markdown maakt het makkelijk berichten vorm te geven. Type een bericht zoals je normaal zou doen, en gebruik deze regels om het in speciaal formaat weer te geven.",
- "help.formatting.lines": "## Lijnen\n\nMaak een lijn door gebruik te maken van drie `*`, `_`, of `-`.",
- "help.formatting.linkEx": "[Check out Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Links\n\nMaak gelabelde links door de tekst tussen rechte haken te zetten, en de link tussen normale haken.",
- "help.formatting.listExample": "* lijst onderdeel eene\n* lijst onderdeel twee\n * onderdeel twee sub-punt",
- "help.formatting.lists": "## Lijsten\n\nMaak een lijst door `*` of `-` te gebruiken als punten. Tab een punt door 2 spaties ervoor te zetten.",
- "help.formatting.monokaiTheme": "**Monokai Thema**",
- "help.formatting.ordered": "Maak een geordende lijst door gebruik te maken van nummers:",
- "help.formatting.orderedExample": "1. Onderdeel een\n2. Onderdeel twee",
- "help.formatting.quotes": "## Blok Aanhaling\n\nMaak Blok Aanhalingen door `>` te gebruiken.",
- "help.formatting.quotesExample": "`> blok aanhalingen` word weergegeven als:",
- "help.formatting.quotesRender": "> blok aanhalingen",
- "help.formatting.renders": "Word weergegeven als:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark Thema**",
- "help.formatting.solirizedLightTheme": "**Solarized Light Thema**",
- "help.formatting.style": "## Text Style\n\nJe kan `_` of `*` om een woord heen plaatsen om het cursief te maken. Gebruik er twee om ze vet te maken.\n\n* `_cursief_` renders as _xursief_\n* `**vet**` renders as **vet**\n* `**_bold-italic_**` renders as **_bold-italics_**\n* `~~strikethrough~~` renders as ~~strikethrough~~",
- "help.formatting.supportedSyntax": "Ondersteunde talen zijn:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Syntax Highlighting\n\nTo add syntax highlighting, type the language to be highlighted after the ``` at the beginning of the code block. Mattermost also offers four different code themes (GitHub, Solarized Dark, Solarized Light, Monokai) that can be changed in **Account Settings** > **Display** > **Theme** > **Custom Theme** > **Center Channel Styles**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| Links-Uitgelijnd | Midden Uitgelijnd | Rechts Uitgelijnd |\n| :------------ |:---------------:| -----:|\n| Linker kolom 1 | deze tekst | $100 |\n| Linker kolom 2 | is | $10 |\n| Linker kolom 3 | gecentreerd | $1 |",
- "help.formatting.tables": "## Tables\n\nCreate a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.",
- "help.formatting.title": "# Formateren van Tekst\n _____",
- "help.learnMore": "Meer te weten komen over:",
- "help.link.attaching": "Bestanden Bijvoegen",
- "help.link.commands": "Commando's Uitvoeren",
- "help.link.composing": "Berichten en Antwoorden Opstellen",
- "help.link.formatting": "Opmaak Berichten met gebruik van Markdown",
- "help.link.mentioning": "Teamleden Vermelden",
- "help.link.messaging": "Standaard Berichten",
- "help.mentioning.channel": "#### @Channel\nYou can mention an entire channel by typing `@channel`. All members of the channel will receive a mention notification that behaves the same way as if the members had been mentioned personally.",
- "help.mentioning.channelExample": "@channel great work on interviews this week. I think we found some excellent potential candidates!",
- "help.mentioning.mentions": "## @Vermeldingen\nGebruik @vermeldingen om de aandacht van specifieke team leden te krijgen. ",
- "help.mentioning.recent": "## Recent Mentions\nClick `@` next to the search box to query for your most recent @mentions and words that trigger mentions. Click **Jump** next to a search result in the right-hand sidebar to jump the center pane to the channel and location of the message with the mention.",
- "help.mentioning.title": "# Teamleden Vermelden\n _____",
- "help.mentioning.triggers": "## Words That Trigger Mentions\nIn addition to being notified by @username and @channel, you can customize words that trigger mention notifications in **Account Settings** > **Notifications** > **Words that trigger mentions**. By default, you will receive mention notifications on your first name, and you can add more words by typing them into the input box separated by commas. This is useful if you want to be notified of all posts on certain topics, for example, \"interviewing\" or \"marketing\".",
- "help.mentioning.username": "#### @Username\nYou can mention a teammate by using the `@` symbol plus their username to send them a mention notification.\n\nType `@` to bring up a list of team members who can be mentioned. To filter the list, type the first few letters of any username, first name, last name, or nickname. The **Up** and **Down** arrow keys can then be used to scroll through entries in the list, and pressing **ENTER** will select which user to mention. Once selected, the username will automatically replace the full name or nickname.\nThe following example sends a special mention notification to **alice** that alerts her of the channel and message where she has been mentioned. If **alice** is away from Mattermost and has [email notifications](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) turned on, then she will receive an email alert of her mention along with the message text.",
- "help.mentioning.usernameCont": "If the user you mentioned does not belong to the channel, a System Message will be posted to let you know. This is a temporary message only seen by the person who triggered it. To add the mentioned user to the channel, go to the dropdown menu beside the channel name and select **Add Members**.",
- "help.mentioning.usernameExample": "@alice hoe ging het sollicitatiegesprek met de nieuwe kandidaat? ",
- "help.messaging.attach": "**Attach files** by dragging and dropping into Mattermost or clicking the attachment icon in the text input box.",
- "help.messaging.emoji": "**Quickly add emoji** by typing \":\", which will open an emoji autocomplete. If the existing emoji don't cover what you want to express, you can also create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Format your messages** using Markdown that supports text styling, headings, links, emoticons, code blocks, block quotes, tables, lists and in-line images.",
- "help.messaging.notify": "**Notify teammates** when they are needed by typing `@username`.",
- "help.messaging.reply": "**Reply to messages** by clicking the reply arrow next to the message text.",
- "help.messaging.title": "# Berichten Basics\n _____",
- "help.messaging.write": "**Write messages** using the text input box at the bottom of Mattermost. Press ENTER to send a message. Use SHIFT+ENTER to create a new line without sending a message.",
- "installed_command.header": "Slash opdrachten",
- "installed_commands.add": "Slash opdracht toevoegen",
- "installed_commands.delete.confirm": "This action permanently deletes the slash command and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_commands.empty": "Geen opdrachten gevonden",
- "installed_commands.header": "Slash opdrachten",
- "installed_commands.help": "Use slash commands to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_commands.help.appDirectory": "App Directory",
- "installed_commands.help.buildYourOwn": "Build your own",
- "installed_commands.search": "Zoek Slash Commando's",
- "installed_commands.unnamed_command": "Slash opdracht zonder naam",
- "installed_incoming_webhooks.add": "Inkomende webhook toevoegen",
- "installed_incoming_webhooks.delete.confirm": "This action permanently deletes the incoming webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_incoming_webhooks.empty": "Geen inkomende webhooks gevonden",
- "installed_incoming_webhooks.header": "Inkomende webhooks",
- "installed_incoming_webhooks.help": "Use incoming webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_incoming_webhooks.help.appDirectory": "App Directory",
- "installed_incoming_webhooks.help.buildYourOwn": "Build your own",
- "installed_incoming_webhooks.search": "Zoek Inkomende Webhooks",
- "installed_incoming_webhooks.unknown_channel": "Een privé webhook",
- "installed_integrations.callback_urls": "Callback URLs: {urls}",
- "installed_integrations.client_id": "Client ID: {clientId}",
- "installed_integrations.client_secret": "Client Secret: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Gemaakt door {creator} op {createAt, date, full}",
- "installed_integrations.delete": "Verwijderen",
- "installed_integrations.edit": "Bewerken",
- "installed_integrations.hideSecret": "Verberg Secret",
- "installed_integrations.regenSecret": "Regenereer Secret",
- "installed_integrations.regenToken": "Token opnieuw genereren",
- "installed_integrations.showSecret": "Toon Secret",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Trigger Wanneer: {triggerWhen}",
- "installed_integrations.triggerWords": "Trigger Woorden: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Naamloze OAuth 2.0 Applicatie",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "OAuth 2.0 Applicatie Toevoegen",
- "installed_oauth_apps.callbackUrls": "Callback URL's (Een per regel)",
- "installed_oauth_apps.cancel": "Annuleren",
- "installed_oauth_apps.delete.confirm": "This action permanently deletes the OAuth 2.0 application and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_oauth_apps.description": "Omschrijving",
- "installed_oauth_apps.empty": "Geen OAuth 2.0 Applicaties gevonden",
- "installed_oauth_apps.header": "OAuth 2.0 Applicaties",
- "installed_oauth_apps.help": "Create {oauthApplications} to securely integrate bots and third-party apps with Mattermost. Visit the {appDirectory} to find available self-hosted apps.",
- "installed_oauth_apps.help.appDirectory": "App Directory",
- "installed_oauth_apps.help.oauthApplications": "OAuth 2.0 Applicaties",
- "installed_oauth_apps.homepage": "Homepagina",
- "installed_oauth_apps.iconUrl": "Pictogram-URL",
- "installed_oauth_apps.is_trusted": "Is Vertrouwd: {isTrusted}",
- "installed_oauth_apps.name": "Weergavenaam",
- "installed_oauth_apps.save": "Opslaan",
- "installed_oauth_apps.search": "Zoek OAuth 2.0 Applicaties",
- "installed_oauth_apps.trusted": "Is Vertrouwd",
- "installed_oauth_apps.trusted.no": "Nee",
- "installed_oauth_apps.trusted.yes": "Ja",
- "installed_outgoing_webhooks.add": "Uitgaande webhook toevoegen",
- "installed_outgoing_webhooks.delete.confirm": "This action permanently deletes the outgoing webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_outgoing_webhooks.empty": "Geen uitgaande webhooks gevonden",
- "installed_outgoing_webhooks.header": "Uitgaande webhooks",
- "installed_outgoing_webhooks.help": "Use outgoing webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_outgoing_webhooks.help.appDirectory": "App Directory",
- "installed_outgoing_webhooks.help.buildYourOwn": "Build your own",
- "installed_outgoing_webhooks.search": "Zoek Uitgaande Webhooks",
- "installed_outgoing_webhooks.unknown_channel": "Een privé webhook",
- "integrations.add": "Toevoegen",
- "integrations.command.description": "Slash opdrachten sturen events naar externe integraties",
- "integrations.command.title": "Slash opdracht",
- "integrations.delete.confirm.button": "Verwijderen",
- "integrations.delete.confirm.title": "Delete Integration",
- "integrations.done": "Gereed",
- "integrations.edit": "Bewerken",
- "integrations.header": "Integraties",
- "integrations.help": "Visit the {appDirectory} to find self-hosted, third-party apps and integrations for Mattermost.",
- "integrations.help.appDirectory": "App Directory",
- "integrations.incomingWebhook.description": "Inkomende webhooks laten externel integraties toe om berichten te sturen",
- "integrations.incomingWebhook.title": "Inkomende webhook",
- "integrations.oauthApps.description": "OAuth 2.0 staat externe applicaties toe om geautoriseerde verzoeken te sturen naar de Mattermost API.",
- "integrations.oauthApps.title": "OAuth 2.0 Applicaties",
- "integrations.outgoingWebhook.description": "Uitgaande webhooks laten externe integraties toe om berichten te ontvangen en hierop te antwoorden",
- "integrations.outgoingWebhook.title": "Uitgaande webhook",
- "integrations.successful": "Installatie Succesvol",
- "intro_messages.DM": "Dit is de start van uw privé berichten historiek met teamlid {teammate}. Privé berichten en bestanden die hier gedeeld worden zijn niet zichtbaar voor anderen.",
- "intro_messages.GM": "Dit is de start van uw privé berichten historiek met teamlid {teammate}. Privé berichten en bestanden die hier gedeeld worden zijn niet zichtbaar voor anderen.",
- "intro_messages.anyMember": "Ieder lid kan dit kanaal lezen en volgen.",
- "intro_messages.beginning": "Begin van {name}",
- "intro_messages.channel": "kanaal",
- "intro_messages.creator": "Dit is de start van {name} {type}, gemaakt door {creator} op {date}.",
- "intro_messages.default": "
Beginning of {display_name}
Welcome to {display_name}!
Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.
",
- "intro_messages.group": "Verlaat kanaal",
- "intro_messages.group_message": "Dit is de start van uw privé berichten historiek met dit teamlid. Privé berichten en bestanden die hier gedeeld worden zijn niet zichtbaar voor anderen.",
- "intro_messages.invite": "Nodig anderen uit voor: {type}",
- "intro_messages.inviteOthers": "Nodig anderen uit voor dit team",
- "intro_messages.noCreator": "Dit is de start van {name} {type}, gemaakt op {date}.",
- "intro_messages.offTopic": "
Begin van {display_name}
Dit is het begin van {display_name}, een kanaal voor niet-werk gerelateerde discussies.
",
- "intro_messages.onlyInvited": " Alleen uitgenodigde deelnemers kunnen deze privé groep bekijken.",
- "intro_messages.purpose": " This {type}'s purpose is: {purpose}.",
- "intro_messages.setHeader": "Stel een koptekst in",
- "intro_messages.teammate": "Dit is de start van uw privé berichten historiek met dit teamlid. Privé berichten en bestanden die hier gedeeld worden zijn niet zichtbaar voor anderen.",
- "invite_member.addAnother": "Nog iemand toevoegen",
- "invite_member.autoJoin": "Uitgenodigde personen worden automatisch lid van het {channel} kanaal.",
- "invite_member.cancel": "Annuleren",
- "invite_member.content": "E-mail is momenteel uitgeschakeld voor uw team, en een uitnodiging per e-mail kan niet worden verzonden. Neem contact op met uw systeembeheerder voor het inschakelen van e-mail en e-mail uitnodigingen.",
- "invite_member.disabled": "Het maken van gebruikers is uitgeschakeld voor uw team. Vraag uw team beheerder voor meer informatie. ",
- "invite_member.emailError": "Vul een geldig e-mail adres in",
- "invite_member.firstname": "Voornaam",
- "invite_member.inviteLink": "Team uitnodigings-link",
- "invite_member.lastname": "Achternaam",
- "invite_member.modalButton": "Ja, verwijderen",
- "invite_member.modalMessage": "U hebt niet-verzonden uitnodigingen, weet u zeker dat u deze wilt verwijderen?",
- "invite_member.modalTitle": "Uitnodigingen verwijderen?",
- "invite_member.newMember": "Send Email Invite",
- "invite_member.send": "Verstuur uitnodiging",
- "invite_member.send2": "Verstuur uitnodigingen",
- "invite_member.sending": " Versturen",
- "invite_member.teamInviteLink": "U kunt ook mensen uitnodigen met deze {link} link.",
- "ldap_signup.find": "Vind mijn teams",
- "ldap_signup.ldap": "Maak een team met een AD/LDAP account",
- "ldap_signup.length_error": "De naam moet 3 of meer tekens zijn met een maximum van 15",
- "ldap_signup.teamName": "Voer de team naam in",
- "ldap_signup.team_error": "Voer de team naam in",
- "leave_private_channel_modal.leave": "Yes, leave channel",
- "leave_private_channel_modal.message": "Are you sure you wish to leave the private channel {channel}? You must be re-invited in order to re-join this channel in the future.",
- "leave_private_channel_modal.title": "Leave Private Channel {channel}",
- "leave_team_modal.desc": "Je zal worden verwijdert uit alle publieke kanalen en prive groepen. Als het team prive is kan je niet terugkeren in het team. Weet je het zeker?",
- "leave_team_modal.no": "Nee",
- "leave_team_modal.title": "Verlaat het team?",
- "leave_team_modal.yes": "Ja",
- "loading_screen.loading": "Bezig met laden",
- "login.changed": " Inlog methode succesvol gewijzigd",
- "login.create": "Maak er nu een",
- "login.createTeam": "Maak een nieuw team",
- "login.createTeamAdminOnly": "Deze optie is alleen beschikbaar voor Systeem Beheerders, en word niet getoond aan andere gebruikers.",
- "login.email": "E-mail",
- "login.find": "Zoek uw andere teams",
- "login.forgot": "Ik ben mijn wachtwoord vergeten",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Uw wachtwoord is niet juist.",
- "login.ldapUsername": "AD/LDAP Gebruikersnaam",
- "login.ldapUsernameLower": "AD/LDAP gebruikersnaam",
- "login.noAccount": "Heeft u geen account? ",
- "login.noEmail": "Geen uw e-mail adres in",
- "login.noEmailLdapUsername": "Geef uw e-mail adres of {ldapUsername} in",
- "login.noEmailUsername": "Geeft uw e-mail adres of gebruikersnaam in",
- "login.noEmailUsernameLdapUsername": "Geeft uw e-mail adres, gebruikersnaam of {ldapUsername} in",
- "login.noLdapUsername": "Geef uw {ldapUsername} in",
- "login.noMethods": "Er zijn geen inlog-methodes geconfigureerd, neem contact op met uw systeembeheerder.",
- "login.noPassword": "Geef uw wachtwoord in",
- "login.noUsername": "Geef uw gebruikersnaam in",
- "login.noUsernameLdapUsername": "Geef uw gebruikersnaam of {ldapUsername} in",
- "login.office365": "Office 365",
- "login.on": "op {siteName}",
- "login.or": "of",
- "login.password": "Wachtwoord",
- "login.passwordChanged": " Wachtwoord succesvol bijgewerkt",
- "login.placeholderOr": " or ",
- "login.session_expired": " Uw sessie is verlopen. Log opnieuw in.",
- "login.signIn": "Log in",
- "login.signInLoading": "Signing in...",
- "login.signInWith": "Log in met:",
- "login.userNotFound": "We konden geen account vinden met jouw inlog gegevens.",
- "login.username": "Gebruikersnaam",
- "login.verified": " Email Geverifieerd ",
- "login_mfa.enterToken": "Om inloggen te voltooien, voer de token in van je smartphone authenticator.",
- "login_mfa.submit": "Verstuur",
- "login_mfa.token": "MFA Token",
- "login_mfa.tokenReq": "Geef een MFA token op",
- "member_item.makeAdmin": "Maak Admin",
- "member_item.member": "Lid",
- "member_list.noUsersAdd": "Geen gebruikers om toe te voegen.",
- "members_popover.manageMembers": "Leden beheren",
- "members_popover.msg": "Bericht",
- "members_popover.title": "Kanaal Leden",
- "members_popover.viewMembers": "Bekijk Leden",
- "mfa.confirm.complete": "Set up complete!",
- "mfa.confirm.okay": "OK",
- "mfa.confirm.secure": "Your account is now secure. Next time you sign in, you will be asked to enter a code from the Google Authenticator app on your phone.",
- "mfa.setup.badCode": "Invalid code. If this issue persists, contact your System Administrator.",
- "mfa.setup.code": "MFA Code",
- "mfa.setup.codeError": "Please enter the code from Google Authenticator.",
- "mfa.setup.required": "Multi-factor authentication is required on {siteName}.",
- "mfa.setup.save": "Opslaan",
- "mfa.setup.secret": "Secret: {secret}",
- "mfa.setup.step1": "Step 1: On your phone, download Google Authenticator from iTunes or Google Play",
- "mfa.setup.step2": "Step 2: Use Google Authenticator to scan this QR code, or manually type in the secret key",
- "mfa.setup.step3": "Step 3: Enter the code generated by Google Authenticator",
- "mfa.setupTitle": "Multi-factor Authenticatie:",
- "mobile.about.appVersion": "App Version: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2016 Mattermost, Inc. Alle rechten voorbehouden",
- "mobile.about.database": "Database: {type}",
- "mobile.about.serverVersion": "Server Version: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Server Version: {version}",
- "mobile.account.notifications.email.footer": "When offline or away for more than five minutes",
- "mobile.account_notifications.mentions_footer": "Your username (\"@{username}\") will always trigger mentions.",
- "mobile.account_notifications.non-case_sensitive_words": "Other non-case sensitive words...",
- "mobile.account_notifications.reply.header": "Send reply notifications for",
- "mobile.account_notifications.threads_mentions": "Mentions in threads",
- "mobile.account_notifications.threads_start": "Threads that I start",
- "mobile.account_notifications.threads_start_participate": "Threads that I start or participate in",
- "mobile.advanced_settings.reset_button": "Reset",
- "mobile.advanced_settings.reset_message": "\nThis will reset all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.advanced_settings.reset_title": "Reset Cache",
- "mobile.advanced_settings.title": "Geavanceerde instellingen",
- "mobile.channel_drawer.search": "Jump to a conversation",
- "mobile.channel_info.alertMessageDeleteChannel": "Weet u zeker dat u deze {term} wilt verwijderen?",
- "mobile.channel_info.alertMessageLeaveChannel": "Weet u zeker dat u deze {term} wilt verwijderen?",
- "mobile.channel_info.alertNo": "Nee",
- "mobile.channel_info.alertTitleDeleteChannel": "Verwijder {term}...",
- "mobile.channel_info.alertTitleLeaveChannel": "Verlaat {term}",
- "mobile.channel_info.alertYes": "Ja",
- "mobile.channel_info.delete_failed": "We couldn't delete the channel {displayName}. Please check your connection and try again.",
- "mobile.channel_info.privateChannel": "Verlaat kanaal",
- "mobile.channel_info.publicChannel": "Publieke kanalen",
- "mobile.channel_list.alertMessageLeaveChannel": "Weet u zeker dat u deze {term} wilt verwijderen?",
- "mobile.channel_list.alertNo": "Nee",
- "mobile.channel_list.alertTitleLeaveChannel": "Verlaat {term}",
- "mobile.channel_list.alertYes": "Ja",
- "mobile.channel_list.closeDM": "Close Direct Message",
- "mobile.channel_list.closeGM": "Close Group Message",
- "mobile.channel_list.dm": "Privé bericht",
- "mobile.channel_list.gm": "Group Message",
- "mobile.channel_list.not_member": "NOT A MEMBER",
- "mobile.channel_list.open": "Open {term}",
- "mobile.channel_list.openDM": "Open Direct Message",
- "mobile.channel_list.openGM": "Open Group Message",
- "mobile.channel_list.privateChannel": "Verlaat kanaal",
- "mobile.channel_list.publicChannel": "Publieke kanalen",
- "mobile.channel_list.unreads": "UNREADS",
- "mobile.components.channels_list_view.yourChannels": "Your channels:",
- "mobile.components.error_list.dismiss_all": "Dismiss All",
- "mobile.components.select_server_view.continue": "doorgaan",
- "mobile.components.select_server_view.enterServerUrl": "Enter Server URL",
- "mobile.components.select_server_view.proceed": "Proceed",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Create",
- "mobile.create_channel.private": "Verlaat kanaal",
- "mobile.create_channel.public": "Publieke kanalen",
- "mobile.custom_list.no_results": "No Results",
- "mobile.drawer.teamsTitle": "Termen",
- "mobile.edit_post.title": "Editing Message",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Relaunch",
- "mobile.error_handler.description": "\nClick relaunch to open the app again. After restart, you can report the problem from the settings menu.\n",
- "mobile.error_handler.title": "Unexpected error occurred",
- "mobile.file_upload.camera": "Take Photo or Video",
- "mobile.file_upload.library": "Photo Library",
- "mobile.file_upload.more": "Meer",
- "mobile.file_upload.video": "Video Library",
- "mobile.help.title": "Help",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "Dit is de start van uw privé berichten historiek met teamlid {teammate}. Privé berichten en bestanden die hier gedeeld worden zijn niet zichtbaar voor anderen.",
- "mobile.intro_messages.default_message": "This is the first channel teammates see when they sign up - use it for posting updates everyone needs to know.",
- "mobile.intro_messages.default_welcome": "Welcome to {name}!",
- "mobile.join_channel.error": "We couldn't join the channel {displayName}. Please check your connection and try again.",
- "mobile.loading_channels": "Loading Channels...",
- "mobile.loading_members": "Loading Members...",
- "mobile.loading_posts": "Laad meer berichten",
- "mobile.login_options.choose_title": "Choose your login method",
- "mobile.managed.blocked_by": "Blocked by {vendor}",
- "mobile.managed.exit": "Bewerken",
- "mobile.managed.jailbreak": "Jailbroken devices are not trusted by {vendor}, please exit the app.",
- "mobile.managed.secured_by": "Secured by {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Start",
- "mobile.more_dms.title": "New Conversation",
- "mobile.notice_mobile_link": "mobile apps",
- "mobile.notice_platform_link": "platform",
- "mobile.notice_text": "Mattermost is made possible by the open source software used in our {platform} and {mobile}.",
- "mobile.notification.in": " in ",
- "mobile.offlineIndicator.connected": "Connected",
- "mobile.offlineIndicator.connecting": "Verbindingen",
- "mobile.offlineIndicator.offline": "No internet connection",
- "mobile.open_dm.error": "We couldn't open a direct message with {displayName}. Please check your connection and try again.",
- "mobile.open_gm.error": "We couldn't open a group message with those users. Please check your connection and try again.",
- "mobile.post.cancel": "Annuleren",
- "mobile.post.delete_question": "Weet u zeker dat u deze {term} wilt verwijderen?",
- "mobile.post.delete_title": "Delete Post",
- "mobile.post.failed_delete": "Delete Message",
- "mobile.post.failed_retry": "Try Again",
- "mobile.post.failed_title": "Unable to send your message",
- "mobile.post.retry": "Refresh",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Received invalid response from the server.",
- "mobile.routes.channelInfo": "Info",
- "mobile.routes.channelInfo.createdBy": "Created by {creator} on ",
- "mobile.routes.channelInfo.delete_channel": "Verwijder kanaal...",
- "mobile.routes.channelInfo.favorite": "Favorite",
- "mobile.routes.channel_members.action": "Remove Members",
- "mobile.routes.channel_members.action_message": "You must select at least one member to remove from the channel.",
- "mobile.routes.channel_members.action_message_confirm": "Are you sure you want to remove the selected members from the channel?",
- "mobile.routes.channels": "Kanalen",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Enter Server URL",
- "mobile.routes.login": "Inloggen",
- "mobile.routes.loginOptions": "Login Chooser",
- "mobile.routes.mfa": "Multi-factor Authenticatie:",
- "mobile.routes.postsList": "Posts List",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "Selecteer team",
- "mobile.routes.settings": "Settings",
- "mobile.routes.sso": "Single Sign-On",
- "mobile.routes.thread": "{channelName} Thread",
- "mobile.routes.thread_dm": "Direct Message Thread",
- "mobile.routes.user_profile": "Profile",
- "mobile.routes.user_profile.send_message": "Send Message",
- "mobile.search.jump": "JUMP",
- "mobile.search.no_results": "No Results Found",
- "mobile.select_team.choose": "Je teams:",
- "mobile.select_team.join_open": "Open teams you can join",
- "mobile.select_team.no_teams": "There are no available teams for you to join.",
- "mobile.server_ping_failed": "Cannot connect to the server. Please check your server URL and internet connection.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nA server upgrade is required to use the Mattermost app. Please ask your System Administrator for details.\n",
- "mobile.server_upgrade.title": "Server upgrade required",
- "mobile.server_url.invalid_format": "Moet beginnen met http:// of https://",
- "mobile.session_expired": "Session Expired: Please log in to continue receiving notifications.",
- "mobile.settings.clear": "Clear Offline Store",
- "mobile.settings.clear_button": "Clear",
- "mobile.settings.clear_message": "\nThis will clear all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.settings.team_selection": "Team Selectie",
- "mobile.suggestion.members": " Leden",
- "modal.manaul_status.ask": "Do not ask me again",
- "modal.manaul_status.button": "Yes, set my status to \"Online\"",
- "modal.manaul_status.cancel": "No, keep it as \"{status}\"",
- "modal.manaul_status.message": "Would you like to switch your status to \"Online\"?",
- "modal.manaul_status.title": "Your status is set to \"{status}\"",
- "more_channels.close": "Afsluiten",
- "more_channels.create": "Maak een nieuw kanaal",
- "more_channels.createClick": "Klik 'Maak nieuw kanaal' om een nieuw kanaal te maken",
- "more_channels.join": "Deelnemen",
- "more_channels.next": "Volgende",
- "more_channels.noMore": "Geen kanalen beschikbaar waar aan deelgenomen kan worden.",
- "more_channels.prev": "Previous",
- "more_channels.title": "Meer kanalen",
- "more_direct_channels.close": "Afsluiten",
- "more_direct_channels.message": "Bericht",
- "more_direct_channels.new_convo_note": "This will start a new conversation. If you’re adding a lot of people, consider creating a private channel instead.",
- "more_direct_channels.new_convo_note.full": "You’ve reached the maximum number of people for this conversation. Consider creating a private channel instead.",
- "more_direct_channels.title": "Privé bericht",
- "msg_typing.areTyping": "{users} en {last} zijn aan het typen...",
- "msg_typing.isTyping": "{user} typt...",
- "msg_typing.someone": "Iemand",
- "multiselect.add": "Toevoegen",
- "multiselect.go": "Go",
- "multiselect.list.notFound": "Geen gebruikers gevonden",
- "multiselect.numPeopleRemaining": "Use ↑↓ to browse, ↵ to select. You can add {num, number} more {num, plural, one {person} other {people}}. ",
- "multiselect.numRemaining": "You can add {num, number} more",
- "multiselect.placeholder": "Search and add members",
- "navbar.addMembers": "Leden toevoegen",
- "navbar.click": "Klik hier",
- "navbar.delete": "Verwijder kanaal...",
- "navbar.leave": "Verlaat kanaal",
- "navbar.manageMembers": "Leden beheren",
- "navbar.noHeader": "Nog geen kanaalkoptekst.{newline}{link} om er een toe te voegen.",
- "navbar.preferences": "Meldings-voorkeuren",
- "navbar.rename": "Hernoem kanaal...",
- "navbar.setHeader": "Stel kanaalkoptekst in...",
- "navbar.setPurpose": "Zet het doel van het kanaal...",
- "navbar.toggle1": "Schakel de navigatiekolom in / uit",
- "navbar.toggle2": "Schakel de navigatiekolom in / uit",
- "navbar.viewInfo": "Bekijk Info",
- "navbar.viewPinnedPosts": "View Pinned Posts",
- "navbar_dropdown.about": "Over Mattermost",
- "navbar_dropdown.accountSettings": "Account-instellingen",
- "navbar_dropdown.addMemberToTeam": "Add Members to Team",
- "navbar_dropdown.console": "Systeem-console",
- "navbar_dropdown.create": "Maak een nieuw team",
- "navbar_dropdown.emoji": "Aangepaste emoji",
- "navbar_dropdown.help": "Help",
- "navbar_dropdown.integrations": "Integraties",
- "navbar_dropdown.inviteMember": "Send Email Invite",
- "navbar_dropdown.join": "Join Another Team",
- "navbar_dropdown.keyboardShortcuts": "Keyboard Shortcuts",
- "navbar_dropdown.leave": "Team verlaten",
- "navbar_dropdown.logout": "Afmelden",
- "navbar_dropdown.manageMembers": "Leden beheren",
- "navbar_dropdown.nativeApps": "Download Apps",
- "navbar_dropdown.report": "Een probleem melden",
- "navbar_dropdown.switchTeam": "Schakel naar {team}",
- "navbar_dropdown.switchTo": "Omschakelen naar ",
- "navbar_dropdown.teamLink": "Verkrijg de team uitnodigings-link",
- "navbar_dropdown.teamSettings": "Team instellingen",
- "navbar_dropdown.viewMembers": "Bekijk Leden",
- "notification.dm": "Privé bericht",
- "notify_all.confirm": "Confirm",
- "notify_all.question": "By using @all or @channel you are about to send notifications to {totalMembers} people. Are you sure you want to do this?",
- "notify_all.title.confirm": "Confirm sending notifications to entire channel",
- "passwordRequirements": "Wachtwoord Vereisten: ",
- "password_form.change": "Verander mijn wachtwoord",
- "password_form.click": "Klik hier om in te loggen.",
- "password_form.enter": "Voer een nieuw wachtwoord in voor uw {siteName} account",
- "password_form.error": "Voert u alstublieft minstens {chars} tekens in.",
- "password_form.pwd": "Wachtwoord",
- "password_form.title": "Wachtwoord reset",
- "password_form.update": "Wachtwoord succesvol bijgewerkt.",
- "password_send.checkInbox": "Controleer je inbox.",
- "password_send.description": "Om uw wachtwoord opnieuw in te stellen voert u het e-mailadres in dat u heeft gebruikt om uzelf aan te melden",
- "password_send.email": "E-mail",
- "password_send.error": "Vul een geldig e-mail adres in.",
- "password_send.link": "If the account exists, a password reset email will be sent to: {email}
",
- "password_send.reset": "Reset wachtwoord",
- "password_send.title": "Wachtwoord reset",
- "pdf_preview.max_pages": "Download om meer pagina's te lezen",
- "pending_post_actions.cancel": "Annuleren",
- "pending_post_actions.retry": "Probeer opnieuw",
- "permalink.error.access": "Permalink behoort toe aan een verwijderd bericht of aan een kanaal waar je geen toegang tot hebt.",
- "permalink.error.title": "Message Not Found",
- "post_attachment.collapse": "Minder tonen...",
- "post_attachment.more": "Meer tonen...",
- "post_body.commentedOn": "Reageerde op bericht van {name}{apostrophe}:",
- "post_body.deleted": "(bericht verwijderd)",
- "post_body.plusMore": " plus {count, number} other {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Bericht kon niet verzonden worden",
- "post_delete.okay": "OK",
- "post_delete.someone": "Iemand heeft het bericht verwijderd waarop u een commentaar schreef.",
- "post_focus_view.beginning": "Begin van de kanaal archieven",
- "post_info.del": "Verwijderen",
- "post_info.edit": "Bewerken",
- "post_info.message.visible": "(Only visible to you)",
- "post_info.message.visible.compact": " (Only visible to you)",
- "post_info.mobile.flag": "Markeer",
- "post_info.mobile.unflag": "Demarkeer ",
- "post_info.permalink": "Permanente koppeling",
- "post_info.pin": "Pin to channel",
- "post_info.pinned": "Pinned",
- "post_info.reply": "Antwoord",
- "post_info.system": "System",
- "post_info.unpin": "Un-pin from channel",
- "post_message_view.edited": "(edited)",
- "posts_view.loadMore": "Laad meer berichten",
- "posts_view.loadingMore": "Laad meer berichten",
- "posts_view.newMsg": "Nieuwe berichten",
- "posts_view.newMsgBelow": "New {count, plural, one {message} other {messages}}",
- "quick_switch_modal.channels": "Kanalen",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Start typing then use TAB to toggle channels/teams, ↑↓ to browse, ↵ to select, and ESC to dismiss.",
- "quick_switch_modal.help_mobile": "Type to find a channel.",
- "quick_switch_modal.help_no_team": "Type to find a channel. Use ↑↓ to browse, ↵ to select, ESC to dismiss.",
- "quick_switch_modal.teams": "Termen",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(click to add)",
- "reaction.clickToRemove": "(click to remove)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {user} other {users}}",
- "reaction.reacted": "{users} {reactionVerb} with {emoji}",
- "reaction.reactionVerb.user": "reacted",
- "reaction.reactionVerb.users": "reacted",
- "reaction.reactionVerb.you": "reacted",
- "reaction.reactionVerb.youAndUsers": "reacted",
- "reaction.usersAndOthersReacted": "{users} and {otherUsers, number} other {otherUsers, plural, one {user} other {users}}",
- "reaction.usersReacted": "{users} and {lastUser}",
- "reaction.you": "You",
- "removed_channel.channelName": "het kanaal",
- "removed_channel.from": "Verwijderd van ",
- "removed_channel.okay": "OK",
- "removed_channel.remover": "{remover} verwijderde u van {channel}",
- "removed_channel.someone": "Iemand",
- "rename_channel.cancel": "Annuleren",
- "rename_channel.defaultError": " - Kan niet worden verandert voor het standaard kanaal",
- "rename_channel.displayName": "Weergavenaam",
- "rename_channel.displayNameHolder": "Voer de weergavenaam in",
- "rename_channel.handleHolder": "Kan enkel kleine letters en nummers zijn",
- "rename_channel.lowercase": "Kan enkel kleine letters en nummers zijn",
- "rename_channel.maxLength": "This field must be less than {maxLength, number} characters",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "Dit veld is verplicht",
- "rename_channel.save": "Opslaan",
- "rename_channel.title": "Hernoem kanaal...",
- "rename_channel.url": "URL:",
- "rhs_comment.comment": "Commentaar",
- "rhs_comment.del": "Verwijder",
- "rhs_comment.edit": "Bewerken",
- "rhs_comment.mobile.flag": "Markeer",
- "rhs_comment.mobile.unflag": "Demarkeer",
- "rhs_comment.permalink": "Permanente koppeling",
- "rhs_header.backToCallTooltip": "Back to Call",
- "rhs_header.backToFlaggedTooltip": "Terug naar Gemarkeerde Berichten",
- "rhs_header.backToPinnedTooltip": "Terug naar Gemarkeerde Berichten",
- "rhs_header.backToResultsTooltip": "Terug naar Zoekresultaten",
- "rhs_header.closeSidebarTooltip": "Zijbalk Sluiten",
- "rhs_header.closeTooltip": "Zijbalk Sluiten",
- "rhs_header.details": "Bericht details",
- "rhs_header.expandSidebarTooltip": "Zijbalk Uitvouwen",
- "rhs_header.expandTooltip": "Zijbalk Invouwen",
- "rhs_header.shrinkSidebarTooltip": "Zijbalk Invouwen",
- "rhs_root.del": "Verwijderen",
- "rhs_root.direct": "Privé bericht",
- "rhs_root.edit": "Bewerken",
- "rhs_root.mobile.flag": "Markeer",
- "rhs_root.mobile.unflag": "Demarkeer",
- "rhs_root.permalink": "Permanente koppeling",
- "rhs_root.pin": "Pin to channel",
- "rhs_root.unpin": "Un-pin from channel",
- "search_bar.search": "Zoeken",
- "search_bar.usage": "
Zoekopties
Gebruik \"aanhalingstekens\" om naar zinnen te zoeken
Gebruik from: om berichten van een specifieke gebruiker te vinden en in: om berichten in een specifiek kanaal te vinden
Wanneer u op zoek bent naar een gedeeltelijk woord (bijv. zoek naar \"tele\", op zoek naar \"telefooon\" of \"televisie\"), moet u een * aan de zoekterm toevoegen
Zoekopdrachten van 2 letters en algemene woorden zoals \"dit\", \"een\", \"het\" verschijnen niet in de zoekresultaten
Gebruik \"aanhalingstekens\" om hele zinnen te zoeken
Gebruik van: om berichten van specifieke gebruikers te zoeken en in: om berichten in specifieke kanalen te zoeken
",
- "search_results.usageFlag1": "Je hebt nog geen berichten gemarkeerd.",
- "search_results.usageFlag2": "Je kan berichten en reacties markeren door te klikken op het ",
- "search_results.usageFlag3": " icoon naast het datum/tijd veld.",
- "search_results.usageFlag4": "Flags are a way to mark messages for follow up. Your flags are personal, and cannot be seen by other users.",
- "search_results.usagePin1": "There are no pinned messages yet.",
- "search_results.usagePin2": "All members of this channel can pin important or useful messages.",
- "search_results.usagePin3": "Pinned messages are visible to all channel members.",
- "search_results.usagePin4": "To pin a message: Go to the message that you want to pin and click [...] > \"Pin to channel\".",
- "setting_item_max.cancel": "Annuleren",
- "setting_item_max.save": "Opslaan",
- "setting_item_min.edit": "Bewerken",
- "setting_picture.cancel": "Annuleren",
- "setting_picture.help": "Upload een profiel foto in JPG of PNG formaat, van minimaal {width}px breed en {height}px hoog.",
- "setting_picture.save": "Opslaan",
- "setting_picture.select": "Selecteer",
- "setting_upload.import": "Importeer",
- "setting_upload.noFile": "Geen bestand geselecteerd.",
- "setting_upload.select": "Selecteer een bestand",
- "shortcuts.browser.channel_next": "Forward in history:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Forward in history:\t⌘|]",
- "shortcuts.browser.channel_prev": "Back in history:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Back in history:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom out:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom out:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom in:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom in:\t⌘|+",
- "shortcuts.browser.header": "Built-in Browser Commands",
- "shortcuts.browser.highlight_next": "Highlight text to the next line:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Highlight text to the previous line:\tShift|Up",
- "shortcuts.browser.input.header": "Works inside an input field",
- "shortcuts.browser.newline": "Create a new line:\tShift|Enter",
- "shortcuts.files.header": "Bestanden",
- "shortcuts.files.upload": "Upload files:\tCtrl|U",
- "shortcuts.files.upload.mac": "Upload files:\t⌘|U",
- "shortcuts.header": "Keyboard Shortcuts",
- "shortcuts.info": "Begin a message with / for a list of all the commands at your disposal.",
- "shortcuts.msgs.comp.channel": "Channel:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Automatisch aanvullen",
- "shortcuts.msgs.comp.username": "Username:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Edit last message in channel:\tUp",
- "shortcuts.msgs.header": "Bericht",
- "shortcuts.msgs.input.header": "Works inside an empty input field",
- "shortcuts.msgs.mark_as_read": "Mark current channel as read:\tEsc",
- "shortcuts.msgs.reply": "Reply to last message in channel:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Reprint next message:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Reprint next message:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Reprint previous message:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Reprint previous message:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Direct messages menu:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Direct messages menu:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigation",
- "shortcuts.nav.next": "Next channel:\tAlt|Down",
- "shortcuts.nav.next.mac": "Next channel:\t⌥|Down",
- "shortcuts.nav.prev": "Previous channel:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Previous channel:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Recent mentions:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Recent mentions:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Account settings:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Account settings:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Quick channel switcher:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Quick channel switcher:\t⌘|K",
- "shortcuts.nav.unread_next": "Next unread channel:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Next unread channel:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Previous unread channel:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Previous unread channel:\t⌥|Shift|Up",
- "sidebar.channels": "PUBLIC CHANNELS",
- "sidebar.createChannel": "Maak een publiek kanaal",
- "sidebar.createGroup": "Maak een publiek kanaal",
- "sidebar.direct": "DIRECT MESSAGES",
- "sidebar.favorite": "FAVORITE CHANNELS",
- "sidebar.leave": "Verlaat kanaal",
- "sidebar.mainMenu": "Main Menu",
- "sidebar.more": "Meer",
- "sidebar.moreElips": "Meer...",
- "sidebar.otherMembers": "Buiten dit team",
- "sidebar.pg": "PRIVATE CHANNELS",
- "sidebar.removeList": "Uit de lijst verwijderen",
- "sidebar.tutorialScreen1": "
Kanalen
Kanalen organiseren conversaties in verschillende onderwerpen. Ze zijn open voor iedereen in je team. Om privéberichten te sturen, gebruik Directe Berichten voor een enkel persoon of Privé Groepen voor meerdere personen.
",
- "sidebar.tutorialScreen2": "
\"{townsquare}\" en \"{offtopic}\" kanalen
Hier zijn 2 publieke kanalen om te starten:
{townsquare} is een plaats voor team wijde communicatie. Iedereen in jouw team is lid van dit kanaal.
{offtopic} is een plaats voor ontspanning en humor buiten werk gerelateerde zaken en kanalen. Jij en jouw team kunnen beslissen wel andere kanalen er gemaakt moeten worden.
",
- "sidebar.tutorialScreen3": "
Kanalen maken en lid worden
Klik op \"Meer...\" om een nieuw kanaal te maken of lid te worden van een bestaand kanaal.
Je kan ook een nieuw kanaal of privégroep maken door op het \"+\"-teken naast het kanaal of de privégroep te drukken.
Het Hoofdmenu is waar je kan Uitnodigen van Nieuwe Leden, toegang tot jouw Account Instellingen en instellen van jouw Thema Kleur.
Team admins kunnen ook hun Team Instellngen instellen via dit menu.
Systeem admins vinden hier een Systeem Console optie om het hele systeem te beheren.
",
- "sidebar_right_menu.accountSettings": "Account instellingen",
- "sidebar_right_menu.addMemberToTeam": "Add Members to Team",
- "sidebar_right_menu.console": "Systeem console",
- "sidebar_right_menu.flagged": "Gemarkeerde Berichten",
- "sidebar_right_menu.help": "Help",
- "sidebar_right_menu.inviteNew": "Send Email Invite",
- "sidebar_right_menu.logout": "Afmelden",
- "sidebar_right_menu.manageMembers": "Leden beheren",
- "sidebar_right_menu.nativeApps": "Download Apps",
- "sidebar_right_menu.recentMentions": "Recente vermeldingen",
- "sidebar_right_menu.report": "Een probleem melden",
- "sidebar_right_menu.teamLink": "Verkrijg team uitnodigings-link",
- "sidebar_right_menu.teamSettings": "Team instellingen",
- "sidebar_right_menu.viewMembers": "Bekijk Leden",
- "signup.email": "E-mail en Wachtwoord",
- "signup.gitlab": "GitLab Single-Sign-On",
- "signup.google": "Google Account",
- "signup.ldap": "AD/LDAP Credentials",
- "signup.office365": "Office 365",
- "signup.title": "Maak een account met:",
- "signup_team.createTeam": "Of maak een team",
- "signup_team.disabled": "Het aanmaken van nieuwe teams is uigeschakeld. Neem contact op met een beheerder voor toegang.",
- "signup_team.join_open": "Teams waaraan je kunt deelnemen:",
- "signup_team.noTeams": "Er zijn teams in de Team Directory en teams maken is uitgeschakeld.",
- "signup_team.no_open_teams": "Er zijn geen teams beschikbaar om aan deel te nemen. Vraag de beheerder voor een uitnodiging.",
- "signup_team.no_open_teams_canCreate": "Er zijn geen teams beschikbaar om aan deel te nemen. Maak een nieuw team aan of vraag de beheerder voor een uitnodiging.",
- "signup_team.no_teams": "Er zijn nog geen teams aangemaakt. Neem alstublieft contact op met de beheerder.",
- "signup_team.no_teams_canCreate": "Er zijn nog geen teams aangemaakt. Je kunt een team aanmaken door te klikken op \"Nieuw team aanmaken\"",
- "signup_team.none": "Er is geen mogelijkheid ingeschakeld om teams aan te maken. Neem contact op met een beheerder voor toegang.",
- "signup_team_complete.completed": "Er is al succesvol ingelogd via deze uitnodiging, of de uitnodiging is verlopen.",
- "signup_team_confirm.checkEmail": "Bekijk uw email: {email} Uw email bevat een link om een nieuw team te maken",
- "signup_team_confirm.title": "Registratie compleet",
- "signup_team_system_console": "Ga naar Systeem Console",
- "signup_user_completed.choosePwd": "Voer uw wachtwoord in",
- "signup_user_completed.chooseUser": "Voer uw gebruikersnaam in",
- "signup_user_completed.create": "Maak account aan",
- "signup_user_completed.emailHelp": "Een geldig e-mailadres is vereist voor het aanmelden",
- "signup_user_completed.emailIs": "Uw e-mail adres is {email}. U maakt gebruik van dit adres om in te loggen bij {siteName}.",
- "signup_user_completed.expired": "Er is al succesvol ingelogd via deze uitnodiging, of de uitnodiging is verlopen.",
- "signup_user_completed.gitlab": "met GitLab",
- "signup_user_completed.google": "met Google",
- "signup_user_completed.haveAccount": "Heb je al een account?",
- "signup_user_completed.invalid_invite": "De uitnodigings link was verkeerd. Praat alstublieft met jouw beheerder om een uitnodiging te krijgen.",
- "signup_user_completed.lets": "Laten we uw account aanmaken",
- "signup_user_completed.no_open_server": "De server staat geen open inschrijvingen toe. Praat alstublieft met jouw beheerder om een uitnodiging te krijgen. ",
- "signup_user_completed.none": "Er is geen mogelijkheid ingeschakeld om gebruikers aan te maken. Neem contact op met een beheerder voor toegang.",
- "signup_user_completed.office365": "met Office 365",
- "signup_user_completed.onSite": "op {siteName}",
- "signup_user_completed.or": "of",
- "signup_user_completed.passwordLength": "Please enter between {min} and {max} characters",
- "signup_user_completed.required": "Dit veld is verplicht",
- "signup_user_completed.reserved": "Deze gebruikersnaam is gereserveerd, kiest u alstublieft een nieuwe.",
- "signup_user_completed.signIn": "Klik hier om in te loggen.",
- "signup_user_completed.userHelp": "De gebruikersnaam moet beginnen met een letter, en tussen {min} en {max} tekens bevatten in kleine letters, cijfers en de symbolen '.', de '-' en '_'",
- "signup_user_completed.usernameLength": "De gebruikersnaam moet beginnen met een letter, en tussen {min} en {max} tekens bevatten in kleine letters, cijfers en de symbolen '.', de '-' en '_'.",
- "signup_user_completed.validEmail": "Vul een geldig e-mail adres in",
- "signup_user_completed.welcome": "Welkom bij:",
- "signup_user_completed.whatis": "Wat is uw e-mail adres?",
- "signup_user_completed.withLdap": "Met uw AD/LDAP gegevens",
- "sso_signup.find": "Vind mijn teams",
- "sso_signup.gitlab": "Maak een team met een GitLab account",
- "sso_signup.google": "Maak een team met een Google Apps account",
- "sso_signup.length_error": "De naam moet 3 of meer tekens lang zijn met een maximum van 15",
- "sso_signup.teamName": "Voer de naam in van het nieuwe team",
- "sso_signup.team_error": "Voer de naam in van het team",
- "status_dropdown.set_away": "Away",
- "status_dropdown.set_offline": "Offline",
- "status_dropdown.set_online": "Online",
- "suggestion.loading": "Laden...",
- "suggestion.mention.all": "CAUTION: This mentions everyone in channel",
- "suggestion.mention.channel": "Notificeer iedereen in het kanaal",
- "suggestion.mention.channels": "Mijn Kanalen",
- "suggestion.mention.here": "Notificeert iedereen in het kanaal en online",
- "suggestion.mention.in_channel": "Kanalen",
- "suggestion.mention.members": "Kanaal Leden",
- "suggestion.mention.morechannels": "Andere Kanalen",
- "suggestion.mention.nonmembers": "Niet in kanaal",
- "suggestion.mention.not_in_channel": "Andere Kanalen",
- "suggestion.mention.special": "Speciale Vermeldingen",
- "suggestion.search.private": "Verlaat kanaal",
- "suggestion.search.public": "Publieke kanalen",
- "system_users_list.count": "{count, number} {count, plural, one {user} other {users}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {user} other {users}} of {total, number} total",
- "system_users_list.countSearch": "{count, number} {count, plural, one {user} other {users}} of {total, number} total",
- "team_export_tab.download": "downloaden",
- "team_export_tab.export": "Exporteer",
- "team_export_tab.exportTeam": "Exporteer uw team",
- "team_export_tab.exporting": " Exporteren...",
- "team_export_tab.ready": " klaar voor ",
- "team_export_tab.unable": " Kan niet exporteren: {error}",
- "team_import_tab.failure": " Importeren mislukt: ",
- "team_import_tab.import": "Importeer",
- "team_import_tab.importHelpDocsLink": "documentatie",
- "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
- "team_import_tab.importHelpExporterLink": "Slack Advanced Exporter",
- "team_import_tab.importHelpLine1": "Slack import to Mattermost supports importing of messages in your Slack team's public channels.",
- "team_import_tab.importHelpLine2": "To import a team from Slack, go to {exportInstructions}. See {uploadDocsLink} to learn more.",
- "team_import_tab.importHelpLine3": "To import posts with attached files, see {slackAdvancedExporterLink} for details.",
- "team_import_tab.importSlack": "Importeer van Slack (beta)",
- "team_import_tab.importing": " Importeren...",
- "team_import_tab.successful": " Importeren is gelukt: ",
- "team_import_tab.summary": "Bekijk de samenvatting",
- "team_member_modal.close": "Afsluiten",
- "team_member_modal.members": "{team} leden",
- "team_members_dropdown.confirmDemoteDescription": "Als je jezelf degradeert vanaf de Systeem Administrator rol en er is geen andere gebruiker met de System Admininistrator rechten, zal je jezelf System Admininistrator moeten maken door in te loggen op de Mattermost server en het volgende commando uit te voeren.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Bevestig degradatie van de Systeem Admininistrator rol",
- "team_members_dropdown.confirmDemotion": "Bevestig degradatie",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "Inactief",
- "team_members_dropdown.leave_team": "Uit team verwijderen",
- "team_members_dropdown.makeActive": "Activate",
- "team_members_dropdown.makeAdmin": "Maak team beheerder",
- "team_members_dropdown.makeInactive": "Deactivate",
- "team_members_dropdown.makeMember": "Maak lid",
- "team_members_dropdown.member": "Lid",
- "team_members_dropdown.systemAdmin": "Systeem beheerder",
- "team_members_dropdown.teamAdmin": "Team beheerder",
- "team_settings_modal.exportTab": "Export",
- "team_settings_modal.generalTab": "Algemeen",
- "team_settings_modal.importTab": "Import",
- "team_settings_modal.title": "Team instellingen",
- "team_sidebar.join": "Other teams you can join.",
- "textbox.bold": "**vet**",
- "textbox.edit": "Bericht bewerken",
- "textbox.help": "Help",
- "textbox.inlinecode": "`inline code`",
- "textbox.italic": "_cursief_",
- "textbox.preformatted": "```voorgeformatteerd```",
- "textbox.preview": "Voorbeeld",
- "textbox.quote": ">citaat",
- "textbox.strike": "doorhalen",
- "tutorial_intro.allSet": "Alles is gereed",
- "tutorial_intro.end": "Klik op \"Volgende\" om {channel} in te gaan. Dit is het eerste kanaal teamgenoten zien wanneer ze zich aanmelden. Gebruik dit kanaal voor het posten van updates voor iedereen.",
- "tutorial_intro.invite": "Nodig uw teamleden uit",
- "tutorial_intro.mobileApps": "Installeer de apps voor {link} voor makkelijke toegang en notificaties onderweg.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS en Android",
- "tutorial_intro.next": "Volgende",
- "tutorial_intro.screenOne": "
Welkom bij:
Mattermost
Al je team communicatie op één plek, direct doorzoekbaar en overal beschikbaar
Houd uw team verbonden en help hen te bereiken wat er het meest toe doet.
",
- "tutorial_intro.screenTwo": "
Hoe Mattermost werkt:
Communicatie gebeurt in publieke discussie kanalen, privé groepen en directe berichten.
Alles wordt gearchiveerd en is doorzoekbaar vanaf elke web-enabled desktop, laptop of telefoon.
",
- "tutorial_intro.skip": "Inleiding overslaan",
- "tutorial_intro.support": "Voor ondersteuning, stuur een email naar ",
- "tutorial_intro.teamInvite": "Nodig uw teamleden uit",
- "tutorial_intro.whenReady": " wanneer je klaar bent.",
- "tutorial_tip.next": "Volgende",
- "tutorial_tip.ok": "OK",
- "tutorial_tip.out": "Schakel deze tips uit.",
- "tutorial_tip.seen": "Heeft u dit al gezien? ",
- "update_command.cancel": "Annuleren",
- "update_command.confirm": "Slash opdracht toevoegen",
- "update_command.question": "Your changes may break the existing slash command. Are you sure you would like to update it?",
- "update_command.update": "Update",
- "update_incoming_webhook.update": "Update",
- "update_outgoing_webhook.confirm": "Uitgaande webhook toevoegen",
- "update_outgoing_webhook.question": "Your changes may break the existing outgoing webhook. Are you sure you would like to update it?",
- "update_outgoing_webhook.update": "Update",
- "upload_overlay.info": "Sleep hier een bestand om te uploaden.",
- "user.settings.advance.embed_preview": "For the first web link in a message, display a preview of website content below the message, if available",
- "user.settings.advance.embed_toggle": "Toon schakel optie voor alle ingesloten voorbeelden",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Feature} other {Features}} Ingeschakeld",
- "user.settings.advance.formattingDesc": "Indien ingeschakeld, worden berichten opgemaakt met links, emoji, stijl van de tekst, en regeleinden toevoegen. Standaard is deze instelling ingeschakeld. Het wijzigen van deze instelling vereist dat de pagina vernieuwd wordt.",
- "user.settings.advance.formattingTitle": "Bericht opmaak inschakelen",
- "user.settings.advance.joinLeaveDesc": "When \"On\", System Messages saying a user has joined or left a channel will be visible. When \"Off\", the System Messages about joining or leaving a channel will be hidden. A message will still show up when you are added to a channel, so you can receive a notification.",
- "user.settings.advance.joinLeaveTitle": "Aanzetten van Deelnemen/Verlaten Berichten",
- "user.settings.advance.markdown_preview": "Toon markdown voorbeeld optie in bericht invoerveld",
- "user.settings.advance.off": "Uit",
- "user.settings.advance.on": "Aan",
- "user.settings.advance.preReleaseDesc": "Selecteer een pre-released feature die je wilt bekijken. Je moet waarschijnlijk de pagina herladen voordat de veranderingen zichtbaar zijn.",
- "user.settings.advance.preReleaseTitle": "Preview pre-release features",
- "user.settings.advance.sendDesc": "Indien ingeschakeld zal 'ENTER' een nieuwe regel toevoegen en 'CTRL + ENTER' het bericht versturen.",
- "user.settings.advance.sendTitle": "Stuur berichten wanner u op CTRL + ENTER drukt",
- "user.settings.advance.slashCmd_autocmp": "Aanzetten van externe applicatie om slash commando autocomplete te gebruiken",
- "user.settings.advance.title": "Geavanceerde instellingen",
- "user.settings.advance.webrtc_preview": "Enable the ability to make and receive one-on-one WebRTC calls",
- "user.settings.custom_theme.awayIndicator": "Weg Indicator",
- "user.settings.custom_theme.buttonBg": "Knop achtergrond",
- "user.settings.custom_theme.buttonColor": "Knoptekst",
- "user.settings.custom_theme.centerChannelBg": "Midden Kanaal BG",
- "user.settings.custom_theme.centerChannelColor": "Midden Kanaal Tekst",
- "user.settings.custom_theme.centerChannelTitle": "Midden Kanaal Stijlen",
- "user.settings.custom_theme.codeTheme": "Code thema",
- "user.settings.custom_theme.copyPaste": "Kopieer en plak om thema kleuren te delen:",
- "user.settings.custom_theme.linkButtonTitle": "Link en Knoppen Stijlen",
- "user.settings.custom_theme.linkColor": "Link kleur",
- "user.settings.custom_theme.mentionBj": "Vermelding Juweel BG",
- "user.settings.custom_theme.mentionColor": "Vermelding Juweel Tekst",
- "user.settings.custom_theme.mentionHighlightBg": "Vermelding Oplicht BG",
- "user.settings.custom_theme.mentionHighlightLink": "Vermelding Oplicht Link",
- "user.settings.custom_theme.newMessageSeparator": "Scheidingsteken voor nieuwe berichten",
- "user.settings.custom_theme.onlineIndicator": "Online indicator",
- "user.settings.custom_theme.sidebarBg": "Navigatiekolom achtergrond",
- "user.settings.custom_theme.sidebarHeaderBg": "Navigatiekolom kop achtergrond",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Navigatiekolom kop tekst",
- "user.settings.custom_theme.sidebarText": "Navigatiekolom tekst",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Navigatiekolom tekst actieve rand",
- "user.settings.custom_theme.sidebarTextActiveColor": "Navigatiekolom tekst actieve rand",
- "user.settings.custom_theme.sidebarTextHoverBg": "Navigatiekolom tekst 'hover' achtergrond",
- "user.settings.custom_theme.sidebarTitle": "Zijbalk Stijlen",
- "user.settings.custom_theme.sidebarUnreadText": "Navigatiekolom ongelezen tekst",
- "user.settings.display.channelDisplayTitle": "Kanaal Schermmodus",
- "user.settings.display.channeldisplaymode": "Kies de breedte van het center kanaal.",
- "user.settings.display.clockDisplay": "Klok weergave",
- "user.settings.display.collapseDesc": "Set whether previews of image links show as expanded or collapsed by default. This setting can also be controlled using the slash commands /expand and /collapse.",
- "user.settings.display.collapseDisplay": "Default appearance of image link previews",
- "user.settings.display.collapseOff": "Collapsed",
- "user.settings.display.collapseOn": "Expanded",
- "user.settings.display.fixedWidthCentered": "Vaste breedte, gecentreerd",
- "user.settings.display.fullScreen": "Volledige breedte",
- "user.settings.display.language": "Taal",
- "user.settings.display.messageDisplayClean": "Standaard",
- "user.settings.display.messageDisplayCleanDes": "Makkelijk te scannen en te lezen.",
- "user.settings.display.messageDisplayCompact": "Compact",
- "user.settings.display.messageDisplayCompactDes": "Zoveel berichten als passen op het scherm.",
- "user.settings.display.messageDisplayDescription": "Selecteer hoe berichten in een kanaal moeten worden afgebeeld.",
- "user.settings.display.messageDisplayTitle": "Bericht weergave",
- "user.settings.display.militaryClock": "24 uren klok (bijvoorbeeld: 16:00)",
- "user.settings.display.nameOptsDesc": "Geef aan hoe de gebruikersnaam word weergegeven in berichten en de Directe Berichten lijst. ",
- "user.settings.display.normalClock": "12 uren klok (bijvoorbeeld: 4:00 PM)",
- "user.settings.display.preferTime": "Selecteer hoe u de tijd wilt zien.",
- "user.settings.display.theme.applyToAllTeams": "Apply new theme to all my teams",
- "user.settings.display.theme.customTheme": "Aangepast thema",
- "user.settings.display.theme.describe": "Open om uw thema te beheren",
- "user.settings.display.theme.import": "Importeer thema-kleuren van Slack",
- "user.settings.display.theme.otherThemes": "Bekijk de andere thema's",
- "user.settings.display.theme.themeColors": "Thema kleuren",
- "user.settings.display.theme.title": "Thema",
- "user.settings.display.title": "Afbeeldings instellingen",
- "user.settings.general.checkEmail": "Controleer uw e-mail op {email} om het adres te controleren.",
- "user.settings.general.checkEmailNoAddress": "Controleer uw e-mail voor uw nieuwe adres",
- "user.settings.general.close": "Afsluiten",
- "user.settings.general.confirmEmail": "Bevestig e-mail",
- "user.settings.general.currentEmail": "Current Email",
- "user.settings.general.email": "E-mail",
- "user.settings.general.emailGitlabCantUpdate": "Login gebeurt via GitLab. Het e-mail adres kan niet bijgewerkt worden. Het e-mail adres dat gebruikt wordt voor meldingen is {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Login gebeurt via Google. Het e-mail adres kan niet bijgewerkt worden. Het e-mail adres dat gebruikt wordt voor meldingen is {email}.",
- "user.settings.general.emailHelp1": "E-mail wordt gebruikt voor aanmelden, meldingen en wachtwoord te resetten. E-mail vereist verificatie indien gewijzigd.",
- "user.settings.general.emailHelp2": "E-mail is uitgeschakeld door de systeembeheerder. Geen meldings-e-mails worden verzonden totdat deze optie is ingeschakeld. ",
- "user.settings.general.emailHelp3": "E-mail wordt gebruikt om in te loggen, meldingen en wachtwoord reset.",
- "user.settings.general.emailHelp4": "Een verificatie-e-mail is verzonden naar {email}.",
- "user.settings.general.emailLdapCantUpdate": "Login gebeurt via AD/LDAP. Het e-mail adres kan niet bijgewerkt worden. Het e-mail adres dat gebruikt wordt voor meldingen is {email}.",
- "user.settings.general.emailMatch": "De wachtwoorden die u ingaf zijn niet identiek.",
- "user.settings.general.emailOffice365CantUpdate": "Login gebeurt via Office 365. Het e-mail adres kan niet bijgewerkt worden. Het e-mail adres dat gebruikt wordt voor meldingen is {email}.",
- "user.settings.general.emailSamlCantUpdate": "Login gebeurt via SAML. Het e-mail adres kan niet bijgewerkt worden. Het e-mail adres dat gebruikt wordt voor meldingen is {email}.",
- "user.settings.general.emailUnchanged": "Uw nieuw e-mail adres is hetzelfde als uw oude e-mailadres.",
- "user.settings.general.emptyName": "Klik 'Bewerken' om uw naam toe te voegen",
- "user.settings.general.emptyNickname": "Klik 'Bewerken' om uw bijnaam toe te voegen",
- "user.settings.general.emptyPosition": "Click 'Edit' to add your job title / position",
- "user.settings.general.field_handled_externally": "Dit veld word gebruikt door jouw login provider. Als je het wilt veranderen, moet je dat via de login provider doen. ",
- "user.settings.general.firstName": "Voornaam",
- "user.settings.general.fullName": "Voor- en achternaam",
- "user.settings.general.imageTooLarge": "Kan de profiel-afbeelding niet uploaden. Het bestand is te groot.",
- "user.settings.general.imageUpdated": "Afbeelding laatst bijgewerkt op {date}",
- "user.settings.general.lastName": "Achternaam",
- "user.settings.general.loginGitlab": "Login via GitLab ({email})",
- "user.settings.general.loginGoogle": "Login via Google ({email})",
- "user.settings.general.loginLdap": "Login via AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Login via Office 365 ({email})",
- "user.settings.general.loginSaml": "Login via SAML ({email})",
- "user.settings.general.mobile.emptyName": "Klik 'Bewerken' om uw naam toe te voegen",
- "user.settings.general.mobile.emptyNickname": "Klik 'Bewerken' om uw bijnaam toe te voegen",
- "user.settings.general.mobile.emptyPosition": "Click to add your job title / position",
- "user.settings.general.mobile.uploadImage": "Klik 'Bewerken' om een afbeelding up te loaden.",
- "user.settings.general.newAddress": "Nieuw adres: {email} Controleer uw e-mail om dit adres te valideren.",
- "user.settings.general.newEmail": "New Email",
- "user.settings.general.nickname": "Bijnaam",
- "user.settings.general.nicknameExtra": "Gebruik Bijnaam om een naam te gebruiken hoe je wilt worden genoemd die verschillend is van je voornaam en je gebruikersnaam. Dit word vaak gebruikt als 2 of meer mensen een zelfde naam of gebruikersnaam hebben. ",
- "user.settings.general.notificationsExtra": "Standaard ontvang je een vermelding notificatie wanneer iemand jouw voornaam typt. Ga naar {notify} instellingen om deze standaard te veranderen.",
- "user.settings.general.notificationsLink": "Meldingen",
- "user.settings.general.position": "Position",
- "user.settings.general.positionExtra": "Use Position for your role or job title. This will be shown in your profile popover.",
- "user.settings.general.profilePicture": "Profiel afbeelding",
- "user.settings.general.title": "Algemene instellingen",
- "user.settings.general.uploadImage": "Klik 'Bewerken' om een afbeelding up te loaden.",
- "user.settings.general.username": "Gebruikersnaam",
- "user.settings.general.usernameInfo": "Kies iets gemakkelijks zodat teamgenoten je makkelijk kunnen herkennen en herinneren.",
- "user.settings.general.usernameReserved": "Deze gebruikersnaam is gereserveerd, kiest u alstublieft een nieuwe.",
- "user.settings.general.usernameRestrictions": "De gebruikersnaam moet beginnen met een letter, en bevatten tussen {min} en {max} tekens in kleine letters, cijfers, en de symbolen '.', de ' - ' en '_'.",
- "user.settings.general.validEmail": "Vul een geldig e-mail adres in",
- "user.settings.general.validImage": "Alleen JPG-of PNG-afbeeldingen kunnen worden gebruikt voor de profiel afbeeldingen",
- "user.settings.import_theme.cancel": "Annuleren",
- "user.settings.import_theme.importBody": "Om een thema te importeren, ga naar een Slack team en kijk naar “Preferences -> Sidebar Theme”. Open de aangepaste thema optie, kopieer de thema kleur waardes en plak ze hier: ",
- "user.settings.import_theme.importHeader": "Importeer een Slack thema",
- "user.settings.import_theme.submit": "Verstuur",
- "user.settings.import_theme.submitError": "Ongeldig formaat, probeer het kopiëren en plakken opnieuw.",
- "user.settings.languages.change": "Taal van de interface wijzigen",
- "user.settings.languages.promote": "Selecteer welke taal Mattermost moet weergeven in de gebruikersinterface.
Wil je helpen met vertalen? Word lid van de Mattermost Translation Server.",
- "user.settings.mfa.add": "Toevoegen van MFA aan jouw account",
- "user.settings.mfa.addHelp": "Adding multi-factor authentication will make your account more secure by requiring a code from your mobile phone each time you sign in.",
- "user.settings.mfa.addHelpQr": "Please scan the QR code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app. If you are unable to scan the code, you can manually enter the secret provided.",
- "user.settings.mfa.enterToken": "Token (enkel nummers)",
- "user.settings.mfa.qrCode": "Streepjescode",
- "user.settings.mfa.remove": "Verwijderen van MFA van jouw account",
- "user.settings.mfa.removeHelp": "Verwijderen van multi-factor autenticatie betekent dat je niet langer verplicht een telefoon gebaseerde toegangscode nodig hebt om in te loggen op jouw account. ",
- "user.settings.mfa.requiredHelp": "Multi-factor authentication is required on this server. Resetting is only recommended when you need to switch code generation to a new mobile device. You will be required to set it up again immediately.",
- "user.settings.mfa.reset": "Verwijderen van MFA van jouw account",
- "user.settings.mfa.secret": "Geheim:",
- "user.settings.mfa.title": "Multi-factor Authenticatie:",
- "user.settings.modal.advanced": "Geavanceerd",
- "user.settings.modal.confirmBtns": "Ja, verwijderen",
- "user.settings.modal.confirmMsg": "U niet-opgeslagen wijzigingen, weet u zeker dat u deze wilt verwijderen?",
- "user.settings.modal.confirmTitle": "Wijzigingen verwijderen?",
- "user.settings.modal.display": "Weergave",
- "user.settings.modal.general": "Algemeen",
- "user.settings.modal.notifications": "Meldingen",
- "user.settings.modal.security": "Beveiliging",
- "user.settings.modal.title": "Account-instellingen",
- "user.settings.notifications.allActivity": "Voor alle activiteiten",
- "user.settings.notifications.channelWide": "Kanaal-brede vermeldingen \"@\"kanaal\", \"@all\"",
- "user.settings.notifications.close": "Afsluiten",
- "user.settings.notifications.comments": "Antwoord meldingen",
- "user.settings.notifications.commentsAny": "Trigger notifications on messages in reply threads that I start or participate in",
- "user.settings.notifications.commentsInfo": "In addition to notifications for when you're mentioned, select if you would like to receive notifications on reply threads.",
- "user.settings.notifications.commentsNever": "Trigger geen notificaties in berichten in antwoord lijsten tenzij ik word genoemd",
- "user.settings.notifications.commentsRoot": "Trigger notificaties in berichten die ik ben begonnen",
- "user.settings.notifications.desktop": "Verstuur desktop meldingen",
- "user.settings.notifications.desktop.allNoSoundForever": "Voor alle activiteit, zonder geluid, onbeperkt tonen",
- "user.settings.notifications.desktop.allNoSoundTimed": "Voor alle activiteit, zonder geluid, tonen voor {seconds} secondes",
- "user.settings.notifications.desktop.allSoundForever": "Voor alle activiteit, met geluid, onbeperkt tonen ",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Voor alle activiteit, onbeperkt tonen",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Voor alle activiteit, tonen voor {seconds} secondes",
- "user.settings.notifications.desktop.allSoundTimed": "Voor alle activiteit, met geluid, tonen voor {seconds} secondes",
- "user.settings.notifications.desktop.duration": "Duur van notificatie",
- "user.settings.notifications.desktop.durationInfo": "Sets how long desktop notifications will remain on screen when using Firefox or Chrome. Desktop notifications in Edge and Safari can only stay on screen for a maximum of 5 seconds.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Voor vermeldingen en directe berichten, zonder geluid, toon altijd",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Voor vermeldingen en directe berichten, zonder geluid, toon voor {seconds} secondes",
- "user.settings.notifications.desktop.mentionsSoundForever": "Voor vermeldingen en directe berichten, met geluid, toon altijd",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Voor vermeldingen en directe berichten, toon altijd",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Voor vermeldingen en directe berichten, toon voor {seconds} secondes",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Voor vermeldingen en directe berichten, zonder geluid, toon voor {seconds} secondes",
- "user.settings.notifications.desktop.seconds": "{seconds} secondes",
- "user.settings.notifications.desktop.sound": "Notificatie geluid",
- "user.settings.notifications.desktop.title": "Desktop Notificaties",
- "user.settings.notifications.desktop.unlimited": "Ongelimiteerd",
- "user.settings.notifications.desktopSounds": "Desktop meldings-geluid",
- "user.settings.notifications.email.disabled": "Uitgeschakeld door de systeembeheerder",
- "user.settings.notifications.email.disabled_long": "Email notifications have been disabled by your System Administrator.",
- "user.settings.notifications.email.everyHour": "Elk uur",
- "user.settings.notifications.email.everyXMinutes": "Iedere {count, plural, one {minute} other {{count, number} minutes}}",
- "user.settings.notifications.email.immediately": "Onmiddellijk",
- "user.settings.notifications.email.never": "Nooit",
- "user.settings.notifications.email.send": "Stuur email notificaties",
- "user.settings.notifications.emailBatchingInfo": "Notificaties die ontvangen zijn in de geselecteerde tijdsperiode worden gecombineerd en verstuurd in een enkele email.",
- "user.settings.notifications.emailInfo": "E-mailmeldingen worden verzonden voor vermeldingen en rechtstreekse berichten nadat u bent offline bent of weg van {siteName} voor meer dan 5 minuten.",
- "user.settings.notifications.emailNotifications": "E-mail meldingen",
- "user.settings.notifications.header": "Meldingen",
- "user.settings.notifications.info": "Desktop notifications are available on Edge, Firefox, Safari, Chrome and Mattermost Desktop Apps.",
- "user.settings.notifications.mentionsInfo": "Mentions trigger when someone sends a message that includes your username (\"@{username}\") or any of the options selected above.",
- "user.settings.notifications.never": "Nooit",
- "user.settings.notifications.noWords": "Geen woorden geconfigureerd",
- "user.settings.notifications.off": "Uit",
- "user.settings.notifications.on": "Aan",
- "user.settings.notifications.onlyMentions": "Enkele voor vermeldingen en privé berichten",
- "user.settings.notifications.push": "Mobiele push notificaties",
- "user.settings.notifications.push_notification.status": "Trigger push notificaties wanneer",
- "user.settings.notifications.sensitiveName": "Uw hoofdlettergevoelige eerste naam \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Uw niet-hoofdlettergevoelige gebruikersnaam \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Andere niet-hoofdlettergevoelige woorden, gescheiden door komma's:",
- "user.settings.notifications.soundConfig": "Configureer de meldings-geluiden in de instellingen van uw browser",
- "user.settings.notifications.sounds_info": "Notification sounds are available on IE11, Safari, Chrome and Mattermost Desktop Apps.",
- "user.settings.notifications.teamWide": "Team-vermeldingen \"@all\"",
- "user.settings.notifications.title": "Meldings-instellingen",
- "user.settings.notifications.wordsTrigger": "Woorden die een vermelding triggeren",
- "user.settings.push_notification.allActivity": "Voor alle activiteiten",
- "user.settings.push_notification.allActivityAway": "Voor alle activiteit wanneer afwezig of offline",
- "user.settings.push_notification.allActivityOffline": "Voor alle activiteit wanneer offline",
- "user.settings.push_notification.allActivityOnline": "Voor alle activiteit wanneer online, afwezig of offline",
- "user.settings.push_notification.away": "Afwezig of offline",
- "user.settings.push_notification.disabled": "Uitgeschakeld door de systeembeheerder",
- "user.settings.push_notification.disabled_long": "Push notificaties voor mobiele apparaten zijn uitgezet door Uw Systeembeheerder. ",
- "user.settings.push_notification.info": "Meldingen worden verstuurd naar uw mobiele apparaat wanneer er activiteit is in Mattermost.",
- "user.settings.push_notification.off": "Uit",
- "user.settings.push_notification.offline": "Offline",
- "user.settings.push_notification.online": "Online, afwezig of offline",
- "user.settings.push_notification.onlyMentions": "Voor vermeldingen en privé berichten",
- "user.settings.push_notification.onlyMentionsAway": "Voor vermeldingen en directe berichten wanneer afwezig of offline",
- "user.settings.push_notification.onlyMentionsOffline": "Voor vermeldingen en directe berichten wanneer offline",
- "user.settings.push_notification.onlyMentionsOnline": "Voor vermeldingen en directe berichten wanneer online, afwezig of offline",
- "user.settings.push_notification.send": "Stuur mobiele push notificaties",
- "user.settings.push_notification.status": "Trigger push notificaties wanneer",
- "user.settings.push_notification.status_info": "Notificatie meldingen worden alleen gepusht naar jouw mobiele device wanneer je online status overeenkomt met de status hierboven.",
- "user.settings.security.active": "Active",
- "user.settings.security.close": "Afsluiten",
- "user.settings.security.currentPassword": "Huidig wachtwoord",
- "user.settings.security.currentPasswordError": "Voer uw huidige wachtwoord in",
- "user.settings.security.deauthorize": "Machtiging Intrekken",
- "user.settings.security.emailPwd": "E-mail en wachtwoord",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inactief",
- "user.settings.security.lastUpdated": "Laatst bijgewerkt op {date} {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Inloggen via Gitlab",
- "user.settings.security.loginGoogle": "Login done through Google Apps",
- "user.settings.security.loginLdap": "Aanmelden via AD/LDAP",
- "user.settings.security.loginOffice365": "Login done through Office 365",
- "user.settings.security.loginSaml": "Inloggen via Gitlab",
- "user.settings.security.logoutActiveSessions": "Bekijk en uitloggen huidige sessies",
- "user.settings.security.method": "Inlog methode",
- "user.settings.security.newPassword": "Nieuw wachtwoord",
- "user.settings.security.noApps": "Geen OAuth 2.0 Applicaties zijn geautoriseerd. ",
- "user.settings.security.oauthApps": "OAuth 2.0 Applicaties",
- "user.settings.security.oauthAppsDescription": "Klik 'Bewerk\" om jouw OAuth 2.0 Applicaties te beheren",
- "user.settings.security.oauthAppsHelp": "Applicaties behandelen jouw toegangs-gegevens alleen naar de rechten die jij ze geeft.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Je mag maar 1 inlogmethode tegelijkertijd gebruiken. Verander van inlogmethode zal je een email sturen of de verandering succesvol was.",
- "user.settings.security.password": "Wachtwoord",
- "user.settings.security.passwordError": "Een activeer-woord moet minimaal {min} en maximaam {max} tekens bevatten",
- "user.settings.security.passwordErrorLowercase": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal 1 kleine letter.",
- "user.settings.security.passwordErrorLowercaseNumber": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter en een cijfer.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter, een cijfer en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter en een hoofdletter. ",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter, een cijfer en een hoofdletter.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter, een cijfer, een hoofdletter en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een kleine letter, een hoofletter en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een cijfer.",
- "user.settings.security.passwordErrorNumberSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een cijfer en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een hoofdletter.",
- "user.settings.security.passwordErrorUppercaseNumber": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een hoofdletter en een cijfer.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een hoofdetter, een cijfer en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Jouw wachtwoord moet minimaal {min} karakters bevatten met minimaal een hoofdletter en een karakter (bv. \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Aanmelden gebeurt via Gitlab. Uw wachtwoord kan niet bijgewerkt worden.",
- "user.settings.security.passwordGoogleCantUpdate": "Aanmelden gebeurt via Gitlab. Uw wachtwoord kan niet bijgewerkt worden.",
- "user.settings.security.passwordLdapCantUpdate": "Aanmelden gebeurt via AD/LDAP. Uw wachtwoord kan niet bijgewerkt worden.",
- "user.settings.security.passwordMatchError": "De wachtwoorden die U ingaf zijn niet identiek",
- "user.settings.security.passwordMinLength": "Verkeerde minimale lengte, kan de voorvertoning niet tonen.",
- "user.settings.security.passwordOffice365CantUpdate": "Aanmelden gebeurt via Gitlab. Uw wachtwoord kan niet bijgewerkt worden.",
- "user.settings.security.passwordSamlCantUpdate": "Dit veld word gebruikt door jouw login provider. Als je het wilt veranderen, moet je dat via de login provider doen. ",
- "user.settings.security.retypePassword": "Nieuw wachtwoord herhalen",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Overschakelen naar het gebruik van email en password",
- "user.settings.security.switchGitlab": "Overschakelen naar het gebruik van GitLab SSO",
- "user.settings.security.switchGoogle": "Overschakelen naar het gebruik van Google SSO",
- "user.settings.security.switchLdap": "Overschakelen naar het gebruik van AD/LDAP",
- "user.settings.security.switchOffice365": "Schakel naar Office 365 SSO gebruik",
- "user.settings.security.switchSaml": "Overschakelen naar SAML SSO",
- "user.settings.security.title": "Beveiligingsinstellingen",
- "user.settings.security.viewHistory": "Bekijk Toegang Geschiedenis ",
- "user.settings.tokens.cancel": "Annuleren",
- "user.settings.tokens.clickToEdit": "Click 'Edit' to manage your personal access tokens",
- "user.settings.tokens.confirmCreateButton": "Yes, Create",
- "user.settings.tokens.confirmCreateMessage": "You are generating a personal access token with System Admin permissions. Are you sure want to create this token?",
- "user.settings.tokens.confirmCreateTitle": "Create System Admin Personal Access Token",
- "user.settings.tokens.confirmDeleteButton": "Yes, Delete",
- "user.settings.tokens.confirmDeleteMessage": "Any integrations using this token will no longer be able to access the Mattermost API. You cannot undo this action.
Are you sure want to delete the {description} token?",
- "user.settings.tokens.confirmDeleteTitle": "Delete Token?",
- "user.settings.tokens.copy": "Please copy the access token below. You won't be able to see it again!",
- "user.settings.tokens.create": "Create New Token",
- "user.settings.tokens.delete": "Verwijderen",
- "user.settings.tokens.description": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API.",
- "user.settings.tokens.description_mobile": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API. Create new tokens on your desktop.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "Site Omschrijving: ",
- "user.settings.tokens.nameHelp": "Enter a description for your token to remember what it does.",
- "user.settings.tokens.nameRequired": "Please enter a description.",
- "user.settings.tokens.save": "Opslaan",
- "user.settings.tokens.title": "Personal Access Tokens",
- "user.settings.tokens.token": "Access Token: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
- "user_list.notFound": "Geen gebruikers gevonden",
- "user_profile.send.dm": "Send Message",
- "user_profile.webrtc.call": "Start een video-oproep",
- "user_profile.webrtc.offline": "The user is offline",
- "user_profile.webrtc.unavailable": "New call unavailable until your existing call ends",
- "view_image.loading": "Bezig met laden ",
- "view_image_popover.download": "Downloaden",
- "view_image_popover.file": "File {count, number} of {total, number}",
- "view_image_popover.publicLink": "Openbare link ophalen",
- "web.footer.about": "Over",
- "web.footer.help": "Help",
- "web.footer.privacy": "Privacy",
- "web.footer.terms": "Termen",
- "web.header.back": "Terug",
- "web.header.logout": "Afmelden",
- "web.root.signup_info": "Alle team communicatie op een plaats, doorzoekbaar en van overal bereikbaar",
- "webrtc.busy": "{username} is bezig.",
- "webrtc.call": "Oproep",
- "webrtc.callEnded": "Call with {username} ended.",
- "webrtc.cancel": "Cancel call",
- "webrtc.cancelled": "{username} cancelled the call.",
- "webrtc.declined": "Your call has been declined by {username}.",
- "webrtc.disabled": "{username} has WebRTC disabled, and cannot receive calls. To enable the feature, they must go to Account Settings > Advanced > Preview pre-release features and turn on WebRTC.",
- "webrtc.failed": "There was a problem connecting the video call.",
- "webrtc.hangup": "Ophangen",
- "webrtc.header": "Call with {username}",
- "webrtc.inProgress": "You have a call in progress. Please hang up first.",
- "webrtc.mediaError": "Unable to access camera or microphone.",
- "webrtc.mute_audio": "Mute microphone",
- "webrtc.noAnswer": "{username} is not answering the call.",
- "webrtc.notification.answer": "Antwoord",
- "webrtc.notification.decline": "Afwijzen",
- "webrtc.notification.incoming_call": "{username} is calling you.",
- "webrtc.notification.returnToCall": "Return to ongoing call with {username}",
- "webrtc.offline": "{username} is offline.",
- "webrtc.pause_video": "Camera uitschakelen",
- "webrtc.unmute_audio": "Unmute microphone",
- "webrtc.unpause_video": "Camera aanzetten",
- "webrtc.unsupported": "{username} client ondersteunt geen video oproepen.",
- "youtube_video.notFound": "Video niet gevonden"
-}
diff --git a/webapp/i18n/pl.json b/webapp/i18n/pl.json
deleted file mode 100644
index e66c8869a34..00000000000
--- a/webapp/i18n/pl.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Zamknij",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. Wszelkie prawa zastrzeżone",
- "about.database": "Baza danych:",
- "about.date": "Data kompilacji:",
- "about.enterpriseEditionLearn": "Dowiedz się więcej na temat wydania Enteprise na stronie",
- "about.enterpriseEditionSt": "Współczesna komunikacja dla przedsiębiorstw zza Twojego firewalla.",
- "about.enterpriseEditione1": "Wersja Enterprise",
- "about.hash": "Wartość skrótu kompilacji",
- "about.hashee": "Build Hash wersji enterprise:",
- "about.licensed": "Licencjonowany dla:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Numer kompilacji:",
- "about.teamEditionLearn": "Dołącz do społeczności Mattermost na stronie ",
- "about.teamEditionSt": "Cała komunikacja Twojego zespołu w jednym miejscu, z natychmiastowym przeszukiwaniem i dostępna z każdego miejsca.",
- "about.teamEditiont0": "Wydanie zespołowe",
- "about.teamEditiont1": "Wydanie Enterprise",
- "about.title": "O Mattermost",
- "about.version": "Wersja:",
- "access_history.title": "Historia dostępu",
- "activity_log.activeSessions": "Aktywne sesje",
- "activity_log.browser": "Przeglądarka: {browser}",
- "activity_log.firstTime": "Pierwsza aktywność: {date}, {time}",
- "activity_log.lastActivity": "Ostatnia aktywność: {date}, {time}",
- "activity_log.logout": "Wyloguj",
- "activity_log.moreInfo": "Więcej informacji",
- "activity_log.os": "System operacyjny: {os}",
- "activity_log.sessionId": "Identyfikator sesji: {id}",
- "activity_log.sessionsDescription": "Sesje tworzone są w momencie logowania w nowej przeglądarce na danym urządzeniu. Sesje pozwalają korzystać z Mattermost bez potrzeby ponownego logowania się przez czas określony przez Administratora systemu. Jeśli chcesz wylogować się wcześniej, użyj przycisku \"Wyloguj\" poniżej, co zakończy sesję.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Natywna aplikacja dla Android",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Natywna aplikacja desktopowa",
- "activity_log_modal.iphoneNativeApp": "Natywna aplikacja dla iPhone",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "Automatyczne uzupełnianie",
- "add_command.autocomplete.help": "(Opcjonalnie) Pokaż polecenia w liście autouzupełniania.",
- "add_command.autocompleteDescription": "Opis do listy autouzupełniania",
- "add_command.autocompleteDescription.help": "(Opcjonalne) Krótki opis komendy do listy autouzupełnienia.",
- "add_command.autocompleteDescription.placeholder": "Przykład: \"Zwraca wyniki wyszukiwania rekordów pacjentów\"",
- "add_command.autocompleteHint": "Podpowiedź autouzupełniania",
- "add_command.autocompleteHint.help": "(Opcjonalne) Argumenty powiązane z twoją komendą, wyświetlane jako pomoc w liście autouzupełnienia.",
- "add_command.autocompleteHint.placeholder": "Przykład: [Imię Pacjenta]",
- "add_command.cancel": "Anuluj",
- "add_command.description": "Opis",
- "add_command.description.help": "Opis twojego przychodzącego webhooka.",
- "add_command.displayName": "Wyświetlana nazwa",
- "add_command.displayName.help": "Wyświetlana nazwa twojej komendy (nie więcej niż 64 znaki)",
- "add_command.doneHelp": "Twoje polecenie zostało stworzone. Poniższy token znajdować się będzie w wysyłanych danych. Użyj go, aby upewnić się, że żądanie pochodzi od zespołu Mattermost (zobacz dokumentację, aby uzyskać więcej informacji).",
- "add_command.iconUrl": "Ikona odpowiedzi",
- "add_command.iconUrl.help": "(Opcjonalne) Wybierz obrazek profilowy dla odpowiedzi tej komendy. Wprowadź URL pliku .png lub .jpg o wymiarach co najmniej 128 nie 128 pikseli.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "Metoda zapytania",
- "add_command.method.get": "GET",
- "add_command.method.help": "Typ żądania (np. GET, POST) wysyłanego do skonfigurowanego URLa Żądania.",
- "add_command.method.post": "POST",
- "add_command.save": "Zapisz",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Słowo wyzwalacza polecenia",
- "add_command.trigger.help": "Słowo wyzwalające musi być unikalne i nie może się zaczynać znakiem ukośnika ('/') ani zawierać żadnych spacji.",
- "add_command.trigger.helpExamples": "Przykłady: klient, pracownik, pacjent, pogoda",
- "add_command.trigger.helpReserved": "Zastrzeżone: {link}",
- "add_command.trigger.helpReservedLinkText": "zobacz listę wbudowanych komend",
- "add_command.trigger.placeholder": "Wyzwalacz polecenia np. \"hello\"",
- "add_command.triggerInvalidLength": "Słowo wyzwalacz musi zawierać pomiędzy {min} i {max} znaków",
- "add_command.triggerInvalidSlash": "Słowo wyzwalacz nie może zaczynać się od /",
- "add_command.triggerInvalidSpace": "Słowo wyzwalacz nie może zawierać spacji",
- "add_command.triggerRequired": "Słowo wyzwalacz jest wymagane",
- "add_command.url": "URL żądania",
- "add_command.url.help": "Zwrotny URL do odbierania żądań HTTP POST lub GET dla wydarzeń kiedy polecenie slash zostanie wykonane.",
- "add_command.url.placeholder": "Musi zaczynać się od http:// lub https://",
- "add_command.urlRequired": "URL żądania jest wymagany",
- "add_command.username": "Nazwa użytkownika odpowiedzi",
- "add_command.username.help": "(Opcjonalnie) Wybierz jak nadpisywać nazwę użytkownika dla tej komendy. Może ona się składać z maksymalnie 22 znaków i zawierać mały litery, cyfry oraz symbole \"-\", \"_\" i \".\".",
- "add_command.username.placeholder": "Nazwa użytkownika",
- "add_emoji.cancel": "Anuluj",
- "add_emoji.header": "Dodaj",
- "add_emoji.image": "Obraz",
- "add_emoji.image.button": "Wybierz",
- "add_emoji.image.help": "Wybierz obraz dla swojej emotikonki. Obraz może mieć rozszerzenie gif, png lub jpeg i mieć nie więcej niż 1 MB. Wymiar zostanie automatycznie dopasowany aby zmieścić się w 128px na 120px. Proporcje zostaną zachowane.",
- "add_emoji.imageRequired": "Obraz jest wymagany dla emotikona",
- "add_emoji.name": "Nazwa",
- "add_emoji.name.help": "Wybierz nazwę dla swojego emoji, składającą się z co najwyżej 64 małych liter, cyfr i znaków '-' i '_'.",
- "add_emoji.nameInvalid": "Nazwa emoji może zawierać tylko liczby, litery i znaki '-' i '_'.",
- "add_emoji.nameRequired": "Obraz jest wymagany dla emoji",
- "add_emoji.nameTaken": "Ta nazwa jest już używana przez systemowe emoji. Proszę wybrać inną nazwę.",
- "add_emoji.preview": "Podgląd",
- "add_emoji.preview.sentence": "To jest zdanie zawierające {image}.",
- "add_emoji.save": "Zapisz",
- "add_incoming_webhook.cancel": "Anuluj",
- "add_incoming_webhook.channel": "Kanał",
- "add_incoming_webhook.channel.help": "Kanał publiczny lub prywatny, który będzie otrzymywać informacje z webhooka. Musisz należeć do prywatnego kanału, do którego chcesz ustawić webhooka.",
- "add_incoming_webhook.channelRequired": "Wymagany jest prawidłowy kanał",
- "add_incoming_webhook.description": "Opis",
- "add_incoming_webhook.description.help": "Opis twojego przychodzącego webhooka.",
- "add_incoming_webhook.displayName": "Wyświetlana nazwa",
- "add_incoming_webhook.displayName.help": "Wyświetlana nazwa dla twojego przychodzącego webhooka składająca się z co najwyżej 64 znaków.",
- "add_incoming_webhook.doneHelp": "Przychodzący webhook został stworzony. Proszę, prześlij dane na następujący adres URL (zobacz dokumentację, aby uzyskać więcej informacji).",
- "add_incoming_webhook.name": "Nazwa",
- "add_incoming_webhook.save": "Zapisz",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "URLe przekierowania na które usługa przekieruje użytkowników po zaakceptowaniu lub odrzuceniu uwierzytelnienia twojej aplikacji i którą będzie obsługiwać kody uwierzytelniające lub żetony dostepu. Musi być poprawnym URLem i zaczynać się od http:// lub https://.",
- "add_oauth_app.callbackUrlsRequired": "Wymagany jest jeden lub więcej zwrotny URL",
- "add_oauth_app.clientId": "Client ID: {id}",
- "add_oauth_app.clientSecret": "Client Secret: {secret}",
- "add_oauth_app.description.help": "Opis twojej aplikacji OAuth 2.0.",
- "add_oauth_app.descriptionRequired": "Opis aplikacji OAuth 2.0 jest wymagany.",
- "add_oauth_app.doneHelp": "Twoja aplikacja OAuth 2.0 została ustawiona. W przypadku prośby o autoryzację aplikacji należy użyć następujących Client ID i Client Secret (zajrzyj do dokumentacji po więcej szczegółów).",
- "add_oauth_app.doneUrlHelp": "To są twoje autoryzowane URLe do przekierowań",
- "add_oauth_app.header": "Dodaj",
- "add_oauth_app.homepage.help": "URL strony głównej aplikacji OAuth 2.0. Upewnij się, że korzystasz z HTTP lub HTTPS w URLu zgodnie z konfiguracją serwera.",
- "add_oauth_app.homepageRequired": "Strona główna aplikacji OAuth 2.0 jest wymagana.",
- "add_oauth_app.icon.help": "(Opcjonalne) URL obrazu używanego dla twojej aplikacji OAuth 2.0. Upewnij się, że używasz HTTP lub HTTPS w URLu.",
- "add_oauth_app.name.help": "Wyświetlana nazwa twojej aplikacji OAuth 2.0 składająca się z co najwyżej 64 znaków.",
- "add_oauth_app.nameRequired": "Nazwa aplikacji OAuth 2.0 jest wymagana.",
- "add_oauth_app.trusted.help": "Gdy włączone, aplikacja OAuth 2.0 jest uzwawana za zaufaną przez serwer Mattermost i nie wymaga akceptacji autoryzacji przez użytkownika. Gdy wyłączone, pojawi się dodatkowe okienko proszące użytkownika o zaakceptowanie lub odrzucenie autoryzacji.",
- "add_oauth_app.url": "URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "Zwrotne adresy URL (jeden na linię)",
- "add_outgoing_webhook.callbackUrls.help": "URL na który będą wysyłane wiadomości.",
- "add_outgoing_webhook.callbackUrlsRequired": "Wymagany jest jeden lub więcej zwrotny adres URL",
- "add_outgoing_webhook.cancel": "Anuluj",
- "add_outgoing_webhook.channel": "Kanał",
- "add_outgoing_webhook.channel.help": "Kanał publiczny, który ma otrzymywać zawartość webhooka. Opcjonalne jeśli określone jest co najmniej jedno Słowo Wyzwalające.",
- "add_outgoing_webhook.contentType.help1": "Określ content-type z którym będzie wysyłana odpowiedź.",
- "add_outgoing_webhook.contentType.help2": "Jeśli zostanie wybrane application/x-www-form-urlencoded serwer uzna, że parametry będą zakodowane w formacie URL.",
- "add_outgoing_webhook.contentType.help3": "Jeśli zostanie wybrane application/json serwer uzna, że parametry będą w formacie JSON.",
- "add_outgoing_webhook.content_Type": "Typ zawartości",
- "add_outgoing_webhook.description": "Opis",
- "add_outgoing_webhook.description.help": "Opis twojego wychodzącego webhooka.",
- "add_outgoing_webhook.displayName": "Wyświetlana nazwa",
- "add_outgoing_webhook.displayName.help": "Wyświetlana nazwa twojego wychodzącego webhooka składająca się z co najwyżej 64 znaków.",
- "add_outgoing_webhook.doneHelp": "Twój wychodzący webhook został ustawiony. Poniższy token będzie załączony do wychodzących danych. Użyj go aby zweryfikować czy zapytanie wychodzi z Mattermost (zobacz do dokumentacji po więcej szczegółów).",
- "add_outgoing_webhook.name": "Nazwa",
- "add_outgoing_webhook.save": "Zapisz",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Słowa wyzwalacze (jeden na linię)",
- "add_outgoing_webhook.triggerWords.help": "Wiadomości rozpoczynające się jednym ze wskazanych słów wyzwolą wychodzącego webhooka. Opcjonalne jeśli określony jest kanał.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Wymagany jest poprawny kanał lub lista słów wyzwalaczy",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Wyzwól gdy",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Określ kiedy wyzwolić wychodzącego webhooka: jeśli pierwsze słowo wiadomości jest w całości jednym ze Słów Wyzwalacza lub gdy pierwsze słowo zaczyna się jednym ze Słów Wyzwalacza.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "Pierwsze słowo dokładnie pasuje do słowa wyzwalającego",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "Pierwsze słowo zaczyna się słowem wyzwalającym",
- "add_users_to_team.title": "Dodaj nowych użytkowników do zespołu {teamName}",
- "admin.advance.cluster": "Wysoka Dostępność",
- "admin.advance.metrics": "Monitorowanie Wydajności",
- "admin.audits.reload": "Odśwież statystyki aktywności użytkownika",
- "admin.audits.title": "Statystyki aktywności użytkownika",
- "admin.authentication.email": "Email Authentication",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Uwaga:",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "Gdy włączone, Mattermost będzie działał w trybie Wysokiej Dostępności (HA). Proszę przeczytać dokumentację (język angielski) żeby dowiedzieć się więcej o konfiguracji trybu Wysokiej Dostępności w Mattermost.",
- "admin.cluster.enableTitle": "Włącz tryb Wysokiej Dostępności:",
- "admin.cluster.interNodeListenAddressDesc": "Adres, którego ten serwer będzie używał do komunikacji z innymi serwerami.",
- "admin.cluster.interNodeListenAddressEx": "Np. \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Adres komunikacji międzywęzłowej:",
- "admin.cluster.interNodeUrlsDesc": "Wewnętrzne/prywatne URLe wszystkich serwerów Mattermost oddzielone przecinkami.",
- "admin.cluster.interNodeUrlsEx": "Np. \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "URLe międzywęzłowe:",
- "admin.cluster.loadedFrom": "Konfikuracja została wczytana z węzła o ID {clusterId}. Proszę przeczytaj Troubleshooting Guide w naszej dokumentacji (jęz. angielski) jeśli korzystasz z Konsoli Systemowej przez load balancer i masz jakieś problemy.",
- "admin.cluster.noteDescription": "Zmiana właściwości w tej sekcji wymaga restartu systemu zanim te zmiany zostaną zastosowane. Gdy tryb Wysokiej Dostępności (HA) jest włączony Konsola Systemowa jest ustawiona w trybie tylko do odczytu i ustawienia mogą być zmieniane jedynie w pliku konfiguracyjnym.",
- "admin.cluster.should_not_change": "UWAGA: Te ustawienia nie mogą być zsynchronizowane na pozostałych serwerach w klastrze. Komunikacja międzywęzłowa trybu Wysokiej Dostępności nie rozpocznie się, dopóki pliki config.json nie będą identyczne na wszystkich serwerach i nie zrestartujesz Mattermost. Proszę przeczytać dokumentację (jęz. angielski) żeby dowiedzieć się jak dodawać i usuwać serwery w klastrze. Jeśli korzystasz z Konsoli Systemowej przez load balancer i masz problemy proszę przeczytać Troubleshooting Guide w naszej dokumentacji (jęz. angielski)",
- "admin.cluster.status_table.config_hash": "MD5 pliku konfiguracyjnego",
- "admin.cluster.status_table.hostname": "Nazwa hosta",
- "admin.cluster.status_table.id": "ID węzła",
- "admin.cluster.status_table.reload": "Wczytaj ponownie stan klastra",
- "admin.cluster.status_table.status": "Stan",
- "admin.cluster.status_table.url": "Gossip Address",
- "admin.cluster.status_table.version": "Wersja",
- "admin.cluster.unknown": "nieznany",
- "admin.compliance.directoryDescription": "Katalog, w którym zapisywane są raporty zgodności. Jeśli pusty, zostanie ustawiony na ./data/.",
- "admin.compliance.directoryExample": "Np. \"./data/\"",
- "admin.compliance.directoryTitle": "Katalog raportu zgodności:",
- "admin.compliance.enableDailyDesc": "Kiedy włączony, Mattermost będzie generować dzienny raport zgodności.",
- "admin.compliance.enableDailyTitle": "Włącz dzienny raport:",
- "admin.compliance.enableDesc": "Gdy właczone, Mattermost pozwala na raporty zgodności na zakładce Zgodność i Audyt. Przeczytaj dokumentację (jęz. angielski) aby dowiedzieć się więcej.",
- "admin.compliance.enableTitle": "Włącz raport zgodności:",
- "admin.compliance.false": "fałsz",
- "admin.compliance.noLicense": "
Uwaga:
Zgodność jest funkcją typu enterprise. Bieżąca licencja nie wspiera Zgodności. Kliknij tutaj aby zapoznać się z informacjami i cenami licencji enterprise.
\"Send generic description with sender and channel names\" includes the name of the person who sent the message and the channel it was sent in, but not the message text.
\"Send full message snippet\" includes a message excerpt in push notifications, which may contain confidential information sent in messages. If your Push Notification Service is outside your firewall, it is *highly recommended* this option only be used with an \"https\" protocol to encrypt the connection.",
- "admin.email.pushContentTitle": "Treści powiadomienia push:",
- "admin.email.pushDesc": "Zazwyczaj włączone na produkcji. Jeśli włączone, Mattermost będzie próbował wysyłać aktywne powiadomienia do iOS i Android poprzez serwer do aktywnych powiadomień.",
- "admin.email.pushOff": "Nie wysyłać powiadomień push",
- "admin.email.pushOffHelp": "Proszę, zobacz dokumentację powiadomień push aby dowiedzieć się więcej.",
- "admin.email.pushServerDesc": "Lokalizację usługi aktywnych powiadomień Mattermost możesz ustawić za zaporą używając https://github.com/mattermost/push-proxy. Dla testów możesz użyć http://push-test.mattermost.com, które łączy się do przykładowej aplikacji Mattermost na iOS w publicznym Apple AppStore. Proszę nie używać testowej usługi na produkcji.",
- "admin.email.pushServerEx": "Np. \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Serwer Push: ",
- "admin.email.pushTitle": "Włącz powiadomienia push:",
- "admin.email.requireVerificationDescription": "Zazwyczaj włączone na serwerach produkcyjnych. Kiedy uruchomienie, Mattermost wymaga weryfikacji adresu email przed pierwszym zalogowaniem. Programiści mogą wyłączać to ustawienie aby pomijać wysyłanie emaili w celu przyspieszenia procesów programistycznych.",
- "admin.email.requireVerificationTitle": "Wymagaj Weryfikacji E-Mail: ",
- "admin.email.selfPush": "Ręcznie wprowadź lokalizacje usługi powiadamiania push",
- "admin.email.skipServerCertificateVerification.description": "Jeśli włączone, Mattermost nie będzie weryfikował certyfikaty serwera email.",
- "admin.email.skipServerCertificateVerification.title": "Pomiń sprawdzanie certyfikatu serwera: ",
- "admin.email.smtpPasswordDescription": "The password associated with the SMTP username.",
- "admin.email.smtpPasswordExample": "Na przykład: \"hasło\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "Hasło serwera SMTP:",
- "admin.email.smtpPortDescription": "Port SMTP serwera poczty e-mail.",
- "admin.email.smtpPortExample": "Np.: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "Port serwera SMTP",
- "admin.email.smtpServerDescription": "Lokalizacja serwera SMTP poczty e-mail.",
- "admin.email.smtpServerExample": "Eks: \"smtp.yourcompany.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "Serwer SMTP:",
- "admin.email.smtpUsernameDescription": "The username for authenticating to the SMTP server.",
- "admin.email.smtpUsernameExample": "Np.: \"admin@yourcompany.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "Nazwa użytkownika SMTP:",
- "admin.email.testing": "Testowanie...",
- "admin.false": "fałsz",
- "admin.file.enableFileAttachments": "Allow File Sharing:",
- "admin.file.enableFileAttachmentsDesc": "When false, disables file sharing on the server. All file and image uploads on messages are forbidden across clients and devices, including mobile.",
- "admin.file.enableMobileDownloadDesc": "When false, disables file downloads on mobile apps. Users can still download files from a mobile web browser.",
- "admin.file.enableMobileDownloadTitle": "Allow File Downloads on Mobile:",
- "admin.file.enableMobileUploadDesc": "When false, disables file uploads on mobile apps. If Allow File Sharing is set to true, users can still upload files from a mobile web browser.",
- "admin.file.enableMobileUploadTitle": "Allow File Uploads on Mobile:",
- "admin.file_upload.chooseFile": "Wybierz plik",
- "admin.file_upload.noFile": "Nie wysłano żadnego pliku",
- "admin.file_upload.uploadFile": "Wyślij",
- "admin.files.images": "Obrazy",
- "admin.files.storage": "Przechowywanie",
- "admin.general.configuration": "Konfiguracja",
- "admin.general.localization": "Języki",
- "admin.general.localization.availableLocalesDescription": "Ustaw, które języki są dostępne dla użytkowników w ustawieniach konta (zostaw to pole puste dla wszystkich dostępnych języków). Jeśli ręcznie dodasz nowy język, musisz dodać Domyślny język zanim zapiszesz ustawienia.
Chciałbyś pomóc w tłumaczeniu? Dołącz do Mattermost Translation Server. ",
- "admin.general.localization.availableLocalesNoResults": "Brak wyników",
- "admin.general.localization.availableLocalesNotPresent": "Domyślny język klienta musi być uwzględniony w liście dostępnych języków",
- "admin.general.localization.availableLocalesTitle": "Dostępne języki:",
- "admin.general.localization.clientLocaleDescription": "Domyślny język dla nowo utworzonych użytkowników i stron, na których użytkownik nie jest zalogowany.",
- "admin.general.localization.clientLocaleTitle": "Domyślny język:",
- "admin.general.localization.serverLocaleDescription": "Domyślny język dla komunikatów systemowych i logów. Po zmianie należy ponownie uruchomić serwer.",
- "admin.general.localization.serverLocaleTitle": "Domyślny język serwera:",
- "admin.general.log": "Logowanie",
- "admin.general.policy": "Zasady",
- "admin.general.policy.allowBannerDismissalDesc": "When true, users can dismiss the banner until its next update. When false, the banner is permanently visible until it is turned off by the System Admin.",
- "admin.general.policy.allowBannerDismissalTitle": "Allow Banner Dismissal:",
- "admin.general.policy.allowEditPostAlways": "Kiedykolwiek",
- "admin.general.policy.allowEditPostDescription": "Ustaw zasady dotyczące czasu, w którym autorzy mogą edytować swoje wiadomości po opublikowaniu.",
- "admin.general.policy.allowEditPostNever": "Nigdy",
- "admin.general.policy.allowEditPostTimeLimit": "sekund po wysłaniu",
- "admin.general.policy.allowEditPostTitle": "Zezwalaj użytkownikom na edycję swoich postów:",
- "admin.general.policy.bannerColorTitle": "Kolor baneru:",
- "admin.general.policy.bannerTextColorTitle": "Kolor tekstu baneru:",
- "admin.general.policy.bannerTextDesc": "Tekst, który pojawi się w banerze ogłoszenia.",
- "admin.general.policy.bannerTextTitle": "Tekst baneru:",
- "admin.general.policy.enableBannerDesc": "Włącz banner ogłoszenia we wszystkich zespołach.",
- "admin.general.policy.enableBannerTitle": "Włącz baner ogłoszenia:",
- "admin.general.policy.permissionsAdmin": "Administratorzy zespołów i serwera",
- "admin.general.policy.permissionsAll": "Wszyscy członkowie zespołu",
- "admin.general.policy.permissionsAllChannel": "Wszyscy członkowie kanału",
- "admin.general.policy.permissionsChannelAdmin": "Kanału, grupy i administratorów systemu",
- "admin.general.policy.permissionsDeletePostAdmin": "Administratorzy zespołów i serwera",
- "admin.general.policy.permissionsDeletePostAll": "Autorzy wiadomości mogą usuwać własne wiadomości, natomiast administratorzy mogą usuwać dowolne wiadomości",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Administratorzy systemu",
- "admin.general.policy.permissionsSystemAdmin": "Administratorzy systemu",
- "admin.general.policy.restrictPostDeleteDescription": "Ustaw zasady dotyczące uprawnień do usuwania wiadomości.",
- "admin.general.policy.restrictPostDeleteTitle": "Zezwalaj tym użytkownikom na usuwanie wiadomości:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Ustaw politykę na temat tego kto może tworzyć prywatne kanały.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Włącz możliwość tworzenia prywatnych kanałów dla:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "narzędzie wiersza poleceń",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Ustaw politykę, na temat tego kto może usuwać prywatne kanały. Usunięte kanały mogą być przywrócone z bazy danych używając {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Włącz możliwość usuwania prywatnych kanałów dla:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Określ politykę dotyczącą osób, które mogą dodawać i usuwać uczestników z prywatnych kanałów.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Włącz zarządzanie uczestnikami prywatnego kanału dla:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Ustaw kto może zmieniać nazwy, nagłówki i opisy prywatnych kanałów.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Włącz możliwość zmiany nazwy prywatnych kanałów dla:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Ustaw politykę na temat tego kto może tworzyć publiczne kanały.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Włącz możliwość tworzenia publicznych kanałów dla:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "narzędzie wiersza poleceń",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Ustaw politykę, na temat tego kto może usuwać publiczne kanały. Usunięte kanały mogą być przywrócone z bazy danych używając {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Włącz możliwość usuwania publicznych kanałów dla:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Ustaw kto może zmieniać nazwy, nagłówki i opisy publicznych kanałów.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Włącz możliwość zmiany nazwy publicznych kanałów dla:",
- "admin.general.policy.teamInviteDescription": "Ustaw politykę na temat tego kto może zapraszać innych do zespołu używając Zaproś nowego uczestnika aby zaprosić nowych uczestników poprzez emaila, albo opcję Pobierz Link Zapraszający do Zespołu i Dodaj uczestników do zespołu z Menu Głównego. Jeśli użyto Pobierz Link Zapraszający do Zespołu do udostępnienia linka, sprawić aby kod zaproszenia stracił ważność w Ustawienia Zespołu > Kod Zaproszenia po tym jak pożądani użytkownicy dołączą już do zespołu.",
- "admin.general.policy.teamInviteTitle": "Włącz wysyłanie zaproszeń do zespołu od:",
- "admin.general.privacy": "Prywatność",
- "admin.general.usersAndTeams": "Użytkownicy i zespoły",
- "admin.gitab.clientSecretDescription": "Uzyskaj tą wartość poprzez powyższe instrukcję logowania do GitLaba.",
- "admin.gitlab.EnableHtmlDesc": "
Zaloguj się do twojego konta GitLab i przejdź do Ustawienia Profilu -> Aplikacje.
Wprowadź URLe przekierowań \"/login/gitlab/complete\" (przykład: http://localhost:8065/login/gitlab/complete) i \"/signup/gitlab/complete\".
Potem użyj pola \"Sekretny Klucz Aplikacji\" i \"ID Aplikacji\" z GitLaba by wypełnić poniższe opcje.
Wypełnij URLe Punktów końcowych poniżej.
",
- "admin.gitlab.authDescription": "Przejdź do https:///oauth/authorize (przykład https://example.com:3000/oauth/authorize). Upewnij się, że używasz HTTP albo HTTPS w swoim URLu, zależnie od konfiguracji twojego serwera.e od konfiguracji twojego serwera.",
- "admin.gitlab.authExample": "Np. \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Punkt końcowy uwierzytelniania:",
- "admin.gitlab.clientIdDescription": "Uzyskaj tą wartość poprzez powyższe instrukcje logowania do GitLaba.",
- "admin.gitlab.clientIdExample": "Np. \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "Identyfikator aplikacji:",
- "admin.gitlab.clientSecretExample": "Np. \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Sekretny Klucz Aplikacji:",
- "admin.gitlab.enableDescription": "Jeśli włączone, Mattermost pozwoli na tworzenie zespołów i rejestrację kont za pomocą GitLab OAuth.",
- "admin.gitlab.enableTitle": "Włącz uwierzytelnianie za pomocą GitLab:",
- "admin.gitlab.settingsTitle": "Ustawienia GitLab",
- "admin.gitlab.tokenDescription": "Przejdź do https:///oauth/token. Upewnij się, że używasz HTTP lub HTTP w swoim URLu, w zależności od konfiguracji twojego serwera.",
- "admin.gitlab.tokenExample": "Np. \"https:///oauth/authorize\"",
- "admin.gitlab.tokenTitle": "Punk końcowy Znaku uwierzytelniania:",
- "admin.gitlab.userDescription": "Przejdź do https:///api/v3/user. Upewnij się że używasz HTTP lub HTTPS w swoim URLu, w zależności od konfiguracji twojego serwera.",
- "admin.gitlab.userExample": "Np.: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "Punkt końcowy API Użytkownika:",
- "admin.google.EnableHtmlDesc": "
Przejdź do https://console.developers.google.com, kliknij Poświadczenia w lewym pasku i wprowadź \"Mattermost - nazwa-twojej-firmy\" jako Nazwa Projektu, potem kliknij Utwórz.
Kliknij nagłówek ekran zgody OAuth i wprowadź \"Mattermost\" jako Nazwę produktu pokazaną użytkownikom, potem kliknij Zapisz.
Pod nagłówkiem Poświadczenia, kliknij Utwórz poświadczenie, wybierz ID klienta OAuth i wybierz Aplikacja Web.
Pod Ograniczenia i Autoryzowanymi URLami do przekierowań wprowadź twój-url-mattermost/signup/google/complete (przykład: http://localhost:8065/signup/google/complete). Kliknij Utwórz.
Wklej ID Klienta i Sekretny Klucz Klienta do poniższych pól, potem kliknij Zapisz.
Na końcu przejdź do Google+ API i kliknij Włącz. To może zająć kilka minut aby rozpropagować to w systemach Google
",
- "admin.google.authTitle": "Punkt końcowy Autoryzacji:",
- "admin.google.clientIdDescription": "ID Klienta które otrzymałeś rejestrując swoją aplikację w Google.",
- "admin.google.clientIdExample": "Np.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "ID klienta:",
- "admin.google.clientSecretDescription": "Sekretny Klucz Klienta który otrzymałeś rejestrując swoją aplikację w Google.",
- "admin.google.clientSecretExample": "Np.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Sekretny Klucz Klienta:",
- "admin.google.tokenTitle": "Punkt końcowy Znaku Uwierzytelniającego:",
- "admin.google.userTitle": "Punkt końcowy API użytkownika:",
- "admin.image.amazonS3BucketDescription": "Nazwa którą wybrałeś dla swojego \"pojemnika S3\" w AWS.",
- "admin.image.amazonS3BucketExample": "Np. \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Nazwa hosta dostawcy twojego magazynu danych kompatybilnego z S3. Domyślnie `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Np.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Punkt końcowy Amazom S3:",
- "admin.image.amazonS3IdDescription": "Pobierz to poświadczenie od twojego administratora Amazon EC2.",
- "admin.image.amazonS3IdExample": "Np. \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 Access Key ID:",
- "admin.image.amazonS3RegionDescription": "Region AWS który wybrałeś rejestrując swój \"pojemnik S3\".",
- "admin.image.amazonS3RegionExample": "Np. \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Region Amazon S3:",
- "admin.image.amazonS3SSEDescription": "When true, encrypt files in Amazon S3 using server-side encryption with Amazon S3-managed keys. See documentation to learn more.",
- "admin.image.amazonS3SSEExample": "Np.: \"Role\"",
- "admin.image.amazonS3SSETitle": "Enable Server-Side Encryption for Amazon S3:",
- "admin.image.amazonS3SSLDescription": "Gdy wyłączone, pozwala na niezabezpieczone połączenie do Amazon S3. Domyślnie pozwala tylko na bezpieczne połączenia.",
- "admin.image.amazonS3SSLExample": "Np. \"włączone\"",
- "admin.image.amazonS3SSLTitle": "Włącz bezpieczne połączenia Amazon S3:",
- "admin.image.amazonS3SecretDescription": "Pobierz to poświadczenie od twojego administratora Amazon EC2.",
- "admin.image.amazonS3SecretExample": "Np. \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Sekretny Klucz Dostępu Amazon S3:",
- "admin.image.localDescription": "Katalog, do którego zapisywane są pliki i obrazy. Jeśli puste, domyślnie będzie ./data/.",
- "admin.image.localExample": "Np. \"./data/\"",
- "admin.image.localTitle": "Lokalny katalog przechowywania danych:",
- "admin.image.maxFileSizeDescription": "Maksymalny rozmiar pliku załączanego do wiadomości w megabajtach. Uwaga: Zweryfikuj czy pamięć serwera wspiera wybrany rozmiar. Duże rozmiary plików mogą zwiększyć ryzyko błędów serwera i nieudanego wysyłania plików ze względu na przerywanie działania sieci.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Maksymalny rozmiar pliku:",
- "admin.image.publicLinkDescription": "32-znakowa wartość losowa dodawana do podpisu zaproszeń email. Losowo generowana przy instalacji. Kliknij \"Regeneruj\" aby utworzyć nową wartość losową.",
- "admin.image.publicLinkExample": "Np. \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Sól Linka Publicznego:",
- "admin.image.shareDescription": "Zezwalaj użytkownikom na udostępnianie publicznych linków do plików i obrazów.",
- "admin.image.shareTitle": "Włączyć publiczne linki do plików: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "System przechowywania danych, gdzie zapisywane są pliki i obrazy z załączników.
Wybranie \"Amazon S3\" odblokowuje pola do wprowadzenia poświadczeń i szczegółów \"pojemnika\".
Wybranie \"Lokalny System Plików\" odblokowuje pole do wprowadzenia lokalnego folderu na pliki.",
- "admin.image.storeLocal": "Lokalny system plików",
- "admin.image.storeTitle": "System Przechowywania Plików:",
- "admin.integrations.custom": "Niestandardowe integracje",
- "admin.integrations.external": "Zewnętrzne usługi",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "Base DN jest to Distinguished Name (wyróżniająca się nazwa) lokalizacji gdzie Mattermost zacznie wyszukiwanie użytkowników w drzewie AD/LDAP.",
- "admin.ldap.baseEx": "Np. \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Hasło użytkownika podanego w \"Powiąż Nazwę Użytkownika\".",
- "admin.ldap.bindPwdTitle": "Hasło Bind-a",
- "admin.ldap.bindUserDesc": "Nazwa używana do przeszukiwania AD/LDAP. Zazwyczaj powinno być to konto utworzone specjalnie do użytku przez Mattermost. Powinno być ono ograniczone do odczytu części struktury AD/LDAP podanej w polu BaseDN.",
- "admin.ldap.bindUserTitle": "Nazwa użytkownika Bind:",
- "admin.ldap.emailAttrDesc": "Atrybut na serwerze AD/LDAP który będzie używany do wypełnienia adresu email użytkowników w Mattermost.",
- "admin.ldap.emailAttrEx": "Np. \"mail\" lub \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Atrybut Email:",
- "admin.ldap.enableDesc": "Jeśli włączone, Mattermost umożliwi logowanie za pomocą AD/LDAP",
- "admin.ldap.enableTitle": "Włącz logowanie za pomocą AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Opcjonalne) Atrybut na serwerze AD/LDAP, kóry będzie używany do wypełniania pierwszego imienia użytkowników w Mattermost. Jeśli włączone, użytkownicy nie będą mogli zmienić swoich imion, gdyż będą one synchronizowane z serwerem LDAP. Jeśli zostawiony puste, użytkownicy będą mogli sami wpisać swoje imię w Ustawieniach Użytkownika.",
- "admin.ldap.firstnameAttrEx": "Np. \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Atrybut Imienia użytkownika",
- "admin.ldap.idAttrDesc": "Atrybut na serwerze AD/LDAP który będzie użyty jako unikalny identyfikator w Mattermost. Powinien być to atrybut AD/LDAP którego wartość się nie zmienia, np. nazwa użytkownika lub uid. Jeśli atrybut ID użytkownika się zmieni, zostanie przez to utworzone nowe konto niepowiązane z poprzednim. To jest wartość używana podczas logowania do Mattermost w polu \"Nazwa użytkownika AD/LDAP\" na stronie logowania. Normalnie ten atrybut jest taki sam jak \"Atrybut nazwy użytkownika\" powyżej. Jeśli twój zespół zazwyczaj używa domena\\\\nazwa_użytkownika do logowania do innych usług, możesz chcieć wpisać domena\\\\nazwa_użytkownika do tego pola by zachować spójność pomiędzy stronami.",
- "admin.ldap.idAttrEx": "Np. \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "Atrybut ID: ",
- "admin.ldap.lastnameAttrDesc": "(Opcjonalne) Atrybut na serwerze LDAP/AD, który zostanie użyty do wypełnienia nazwisk użytkowników w Mattermost. Jeśli włączone, użytkownicy nie będą mogli zmienić swoich nazwisk, gdyż będą one synchronizowane z serwerem LDAP. Jeśli zostawiono puste, użytkownicy będą mogli sami wpisać swoje nazwisko w Ustawieniach Użytkownika.",
- "admin.ldap.lastnameAttrEx": "Np.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Atrybut Nazwiska użytkownika:",
- "admin.ldap.ldap_test_button": "AD/LDAP Test",
- "admin.ldap.loginNameDesc": "Tekst zastępczy który pojawia się w polu login na stronie logowania. Domyślnie \"Nazwa Użytkownika AD/LDAP\"",
- "admin.ldap.loginNameEx": "Np. \"Nazwa użytkownika AD/LDAP\"",
- "admin.ldap.loginNameTitle": "Pole loginu użytkownika:",
- "admin.ldap.maxPageSizeEx": "Np. \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Maksymalna liczba użytkowników którą serwer Mattermost będzie odpytywał za jednym razem z serwera AD/LDAP. 0 znaczy ilość nieograniczona.",
- "admin.ldap.maxPageSizeTitle": "Maksymalny Rozmiar Strony:",
- "admin.ldap.nicknameAttrDesc": "(Opcjonalne) Atrybut na serwerze AD/LDAP, kóry będzie używany do wypełniania pseudonimu użytkowników w Mattermost. Jeśli włączone, użytkownicy nie będą mogli zmienić swojego pseudonimu, gdyż będzie on synchronizowany z serwerem LDAP. Jeśli zostawiony puste, użytkownicy będą mogli sami wpisać swój pseudonim w Ustawieniach Użytkownika.",
- "admin.ldap.nicknameAttrEx": "Np. \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Atrybut nazwy użytkownika:",
- "admin.ldap.noLicense": "
Uwaga:
Zgodność jest funkcją typu enterprise. Bieżąca licencja nie wspiera Zgodności. Kliknij tutaj aby zapoznać się z informacjami i cenami licencji enterprise.
",
- "admin.ldap.portDesc": "Port który będzie używany przez Mattermost do połączenia się z serwerem AD/LDAP. Domyślnie 389.",
- "admin.ldap.portEx": "Np.: \"389\"",
- "admin.ldap.portTitle": "AD/LDAP Port:",
- "admin.ldap.positionAttrDesc": "(Opcjonalne) Atrybut na serwerze AD/LDAP który będzie używany do uzupełnienia pola stanowisko w Mattermost.",
- "admin.ldap.positionAttrEx": "Np.: \"title\"",
- "admin.ldap.positionAttrTitle": "Atrybut Stanowiska:",
- "admin.ldap.queryDesc": "Wartość timeoutu dla zapytań do serwera AD/LDAP. W przypadku jeśli dostajesz błędy związane z timeoutem spowodowany powolnym serwerem AD/LDAP.",
- "admin.ldap.queryEx": "Np.: \"60\"",
- "admin.ldap.queryTitle": "Limit czasu żądania (w sekundach):",
- "admin.ldap.serverDesc": "Domena lub adres IP serwera AD/LDAP:",
- "admin.ldap.serverEx": "Np. \"10.0.0.23\"",
- "admin.ldap.serverTitle": "Serwer LDAP/AD:",
- "admin.ldap.skipCertificateVerification": "Pomiń sprawdzanie certyfikatu SSL",
- "admin.ldap.skipCertificateVerificationDesc": "Pomija weryfikację certyfikatów TLS i STARTTLS. Nie zalecane w środowiskach produkcyjnych gdzie TLS jest wymagane. Tylko do testów.",
- "admin.ldap.syncFailure": "Błąd synchronizacji: {error}",
- "admin.ldap.syncIntervalHelpText": "Synchronizacja AD/LDAP aktualizuje informacje użytkownika Mattermost, tak by odzwierciedlać dane znajdujące się serwerze AD/LDAP. Na przykład, gdy imię użytkownika się zmieni na serwerze AD/LDAP, zmiana ta zostanie zaktualizowana w Mattermost gdy zostanie wykonana synchronizacja. Konta usunięte bądź zablokowane na serwerze AD/LDAP spowodują oznaczenie kont Mattermost jako \"Nieaktywne\", a sesje tych zostaną cofnięte. Mattermost przeprowadza synchronizację w podanych odstępach czasu. Na przykład jeśli wpisano 60, Mattermost będzie się synchronizował co 60 minut.",
- "admin.ldap.syncIntervalTitle": "Odstęp pomiędzy synchronizacją (minuty):",
- "admin.ldap.syncNowHelpText": "Uruchamia w tym momencie synchronizację AD/LDAP.",
- "admin.ldap.sync_button": "Synchronizuj AD/LDAP Teraz",
- "admin.ldap.testFailure": "AD/LDAP Test nie powiódł się: {error}",
- "admin.ldap.testHelpText": "Sprawdza czy serwer Mattermost może się połączyć z podanym serwerem AD/LDAP. Zobacz plik logów po bardziej szczegółowe komunikaty błędów.",
- "admin.ldap.testSuccess": "AD/LDAP Test Sukces",
- "admin.ldap.uernameAttrDesc": "Atrybut na serwerze AD/LDAP który zostanie użyty do wypełnienia nazwy użytkownika Mattermost. Może być taki sam jak atrybut ID.",
- "admin.ldap.userFilterDisc": "(Opcjonalne) Wprowadź Filtr AD/LDAP który będzie używany do wyszukiwaniu obiektów użytkowników. Tylko użytkownicy wybrani poprzez to zapytanie będą mieli dostęp do Mattermost. Dla Active Directory, zapytanie do odfiltrowania zablokowanych użytkowników to (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))). ",
- "admin.ldap.userFilterEx": "Np. \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Filtr użytkownika:",
- "admin.ldap.usernameAttrEx": "Np. \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Atrybut nazwy użytkownika:",
- "admin.license.choose": "Wybierz plik",
- "admin.license.chooseFile": "Wybierz plik",
- "admin.license.edition": "Wydanie:",
- "admin.license.key": "Klucz licencyjny:",
- "admin.license.keyRemove": "Usuń licencjię Enterprise",
- "admin.license.noFile": "Nie wysłano żadnego pliku",
- "admin.license.removing": "Usuwanie licencji...",
- "admin.license.title": "Wydanie i Licencja",
- "admin.license.type": "Licencja: ",
- "admin.license.upload": "Wyślij",
- "admin.license.uploadDesc": "Prześlij klucz licencyjny do Mattermost Enterprise Edition, aby uaktualnić ten serwer. Odwiedź nas online , aby uzyskać więcej informacji na temat korzyści programu Enterprise Edition lub zakupu klucza.",
- "admin.license.uploading": "Wysyłanie licencji...",
- "admin.log.consoleDescription": "Zazwyczaj wyłączony na produkcji. Deweloperzy mogą ustawić to pole na włączone aby wyświetlać logi w konsoli w zależności od poziomu logowania. Jeśli włączone, serwer wypisuje wiadomości do strumienia standardowego wyjścia (stdout).",
- "admin.log.consoleTitle": "Wypisuje logi do konsoli.",
- "admin.log.enableDiagnostics": "Włącz Diagnostykę i Raportowanie Błędów:",
- "admin.log.enableDiagnosticsDescription": "Włącz tą funkcjonalność aby ulepszyć jakość i wydajność Mattermost poprzez wysyłanie raportów błędów i diagnostyczne informacje do Mattermost, Inc. Przeczytaj naszą politykę prywatności aby dowiedzieć się więcej.",
- "admin.log.enableWebhookDebugging": "Włącz debugowanie webhooka:",
- "admin.log.enableWebhookDebuggingDescription": "Można ustawić tę wartość na false, aby wyłączyć rejestrowanie debugowania wszystkich przychodzących zapytań.",
- "admin.log.fileDescription": "Zazwyczaj włączone na produkcji. Jeśli włączone, logowane zdarzenia są zapisywane do pliku mattermost.log w katalogu sprecyzowanym w polu Katalog Pliku z Logami. Logi są \"obracane\" przy 10 000 liniach i archiwizowane do pliku w tym samym katalogu, a do nazwy dodawana jest data i numer seryjny. Na przykład, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "To ustawienia określa poziom szczegółów logów jakie są zapisywane do pliku z logami. ERROR: Wypisuje tylko wiadomości błędów. INFO: Wypisuje wiadomości błędów oraz informacji dotyczące uruchamiania i inicjalizacji. DEBUG: Wypisuje dużo szczegółów dla deweloperów pracujących nad debugowaniem problemów.",
- "admin.log.fileLevelTitle": "Poziom Pliku Logów:",
- "admin.log.fileTitle": "Wypisuje logi do pliku:",
- "admin.log.formatDateLong": "Data (2006/01/02)",
- "admin.log.formatDateShort": "Data (01/02/06)",
- "admin.log.formatDescription": "Format logowanych wiadomości. Jeśli puste, domyślnie będzie \"[%D %T] [%L] %M\", gdzie:",
- "admin.log.formatLevel": "Poziom (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Wiadomość",
- "admin.log.formatPlaceholder": "Wprowadź swój format pliku",
- "admin.log.formatSource": "Źródło",
- "admin.log.formatTime": "Czas (15:04:05 MST)",
- "admin.log.formatTitle": "Format logów:",
- "admin.log.levelDescription": "To ustawienia określa poziom szczegółów logów jakie są zapisywane do konsoli. ERROR: Wypisuje tylko wiadomości błędów. INFO: Wypisuje wiadomości błędów oraz informacji dotyczące uruchamiania i inicjalizacji. DEBUG: Wypisuje dużo szczegółów dla deweloperów pracujących nad debugowaniem problemów.",
- "admin.log.levelTitle": "Poziom logowania konsoli:",
- "admin.log.locationDescription": "Lokalizacja plików z logami. Jeśli puste, będą one przechowywane w katalogu ./logs. Ustawiony katalog musi istnieć i Mattermost musi mieć do niego uprawnienia zapisu.",
- "admin.log.locationPlaceholder": "Wprowadź lokalizacje pliku",
- "admin.log.locationTitle": "Katalog z plikami logów:",
- "admin.log.logSettings": "Ustawienia dziennika",
- "admin.logs.bannerDesc": "Aby wyszukać użytkowników według identyfikatora użytkownika, przejdź do Raportowanie > Użytkownicy i wklej identyfikator do filtra wyszukiwania.",
- "admin.logs.reload": "Wczytaj ponownie",
- "admin.logs.title": "Logi serwera",
- "admin.manage_roles.additionalRoles": "Select additional permissions for the account. Read more about roles and permissions.",
- "admin.manage_roles.allowUserAccessTokens": "Allow this account to generate personal access tokens.",
- "admin.manage_roles.cancel": "Anuluj",
- "admin.manage_roles.manageRolesTitle": "Manage Roles",
- "admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Access to post to all Mattermost channels including direct messages.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Zapisz",
- "admin.manage_roles.saveError": "Unable to save roles.",
- "admin.manage_roles.systemAdmin": "Administrator Systemu",
- "admin.manage_roles.systemMember": "Użytkownik",
- "admin.manage_tokens.manageTokensTitle": "Manage Personal Access Tokens",
- "admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to interact with this Mattermost server. Learn more about personal access tokens.",
- "admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
- "admin.metrics.enableDescription": "Jeśli włączone, Mattermost umożliwi monitorowanie wydajności oraz profilowanie. Zobacz proszę dokumentację aby dowiedzieć się więcej na temat konfiguracji monitoringu wydajności dla Mattermost.",
- "admin.metrics.enableTitle": "Włącz Monitorowanie Wydajności:",
- "admin.metrics.listenAddressDesc": "Adres na którym serwer będzie nasłuchiwał aby udostępnić metrykę wydajności.",
- "admin.metrics.listenAddressEx": "Np. \":8067\"",
- "admin.metrics.listenAddressTitle": "Adres nasłuchiwania:",
- "admin.mfa.bannerDesc": "Wieloczynnikowe uwierzytelnianie jest dostepne dla kont z logowaniem AD/LDAP albo logowaniem email. Jeśli inne metody logowania są używane, Wieloczynnykowe uwierzytelnianie (MFA) powinna być skonfigurowana z dostawcą autoryzacji.",
- "admin.mfa.cluster": "Wysoki",
- "admin.mfa.title": "Wieloczynnikowe Uwierzytelnianie",
- "admin.nav.administratorsGuide": "Przewodnik administratora",
- "admin.nav.commercialSupport": "Pomoc handlowa",
- "admin.nav.help": "Pomoc",
- "admin.nav.logout": "Wyloguj",
- "admin.nav.report": "Zgłoś problem",
- "admin.nav.switch": "Wybór zespołu",
- "admin.nav.troubleshootingForum": "Forum",
- "admin.notifications.email": "E-mail",
- "admin.notifications.push": "Powiadomienia Push",
- "admin.notifications.title": "Ustawienia powiadomień",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Nie pozwalaj na logowanie za pomocą dostawcy OAuth 2.0",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Jeśli włączone, Mattermost może działać jako dostawca usługi OAuth 2.0, pozwalając Mattermost na autoryzację zapytań do API z zewnętrznych aplikacji. Zobacz dokumentację aby dowiedzieć się więcej.",
- "admin.oauth.providerTitle": "Włącz dostawcę usługi OAuth 2.0:",
- "admin.oauth.select": "Wybierz dostawcę usługi OAuth 2.0:",
- "admin.office365.EnableHtmlDesc": "
Log in to your Microsoft or Office 365 account. Make sure it's the account on the same tenant that you would like users to log in with.
Go to https://apps.dev.microsoft.com, click Go to app list > Add an app and use \"Mattermost - your-company-name\" as the Application Name.
Under Application Secrets, click Generate New Password and paste it to the Application Secret Password field below.
Under Platforms, click Add Platform, choose Web and enter your-mattermost-url/signup/office365/complete (example: http://localhost:8065/signup/office365/complete) under Redirect URIs. Also uncheck Allow Implicit Flow.
Finally, click Save and then paste the Application ID below.
",
- "admin.office365.authTitle": "Punkt końcowy uwierzytelniania:",
- "admin.office365.clientIdDescription": "ID Klienta/Aplikacji które otrzymałeś rejestrując swoją aplikację w Microsoft.",
- "admin.office365.clientIdExample": "Np. \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "Identyfikator aplikacji:",
- "admin.office365.clientSecretDescription": "Sekretny Klucz Aplikacji który wygenerowałeś rejestrując swoją aplikację w Microsoft.",
- "admin.office365.clientSecretExample": "Np.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Sekretny Hasło Aplikacji:",
- "admin.office365.tokenTitle": "Token Endpoint:",
- "admin.office365.userTitle": "Punkt końcowy API Użytkownika:",
- "admin.password.lowercase": "Przynajmniej jedna mała litera",
- "admin.password.minimumLength": "Minimalna długość hasła:",
- "admin.password.minimumLengthDescription": "Minimalna ilość znaków wymagana dla hasła. Musi być liczbą całkowitą większą lub równą od {min} i mniejszą lub równą {max}.",
- "admin.password.minimumLengthExample": "Np.: \"5\"",
- "admin.password.number": "Przynajmniej jedna liczba",
- "admin.password.preview": "Podgląd wiadomości błędu",
- "admin.password.requirements": "Wymagania hasła:",
- "admin.password.requirementsDescription": "Wymagane są różne rodzaje znaków w poprawnym haśle.",
- "admin.password.symbol": "Co najmniej jeden symbol (np. \"~!@#$%^&*()\")",
- "admin.password.uppercase": "Przynajmniej jedna wielka litera",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "When true, you can configure JIRA webhooks to post message in Mattermost. To help combat phishing attacks, all posts are labelled by a BOT tag.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "This secret is used to authenticate to Mattermost.",
- "admin.plugins.jira.secretLabel": "Hasło",
- "admin.plugins.jira.secretParamPlaceholder": "Hasło",
- "admin.plugins.jira.secretRegenerateDescription": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing JIRA integrations.",
- "admin.plugins.jira.setupDescription": "Use this webhook URL to set up the JIRA integration. See {webhookDocsLink} to learn more.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Select the username that this integration is attached to.",
- "admin.plugins.jira.userLabel": "Użytkownicy",
- "admin.plugins.jira.webhookDocsLink": "dokumentacja",
- "admin.privacy.showEmailDescription": "Kiedy fałsz, ukrywa adresy e-mail wszystkich użytkowniów, z wyjątkiem administratorów systemu.",
- "admin.privacy.showEmailTitle": "Pokaż adres E-mail:",
- "admin.privacy.showFullNameDescription": "Gdy wyłączone, ukrywa imię i nazwisko uczestników przed każdym poza Administratorami Systemu. Zamiast tego pokazana jest nazwa użytkownika.",
- "admin.privacy.showFullNameTitle": "Pokaż Imię i nazwisko:",
- "admin.purge.button": "Wyczyść wszystkie cache",
- "admin.purge.loading": " Ładowanie...",
- "admin.purge.purgeDescription": "To usunie wszystkie całą pamięć podręczną z pamięci, dla takich rzeczy jak sesje, konta, kanału itp. Deploy'e wykorzystujące High Availability będą próbowały wyczyścić cache wszystkich serwerów w klastrze. Czyszczenie pamięci podręcznej może niekorzystnie wpłynąć na wydajność.",
- "admin.purge.purgeFail": "Czyszczenie nieudane: {error}",
- "admin.rate.enableLimiterDescription": "Kiedy prawda, API są uruchamiane według listy poniżej.",
- "admin.rate.enableLimiterTitle": "Włącz ograniczenie prędkości:",
- "admin.rate.httpHeaderDescription": "When filled in, vary rate limiting by HTTP header field specified (e.g. when configuring NGINX set to \"X-Real-IP\", when configuring AmazonELB set to \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Np.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Ograniczenie prędkości według nagłówka HTTP:",
- "admin.rate.maxBurst": "Maksymalny rozmiar pakietu:",
- "admin.rate.maxBurstDescription": "Maksymalna dozwolona liczba zapytań na sekundę ponad limit zapytań na sekundę.",
- "admin.rate.maxBurstExample": "Np.: \"100\"",
- "admin.rate.memoryDescription": "Maximum number of users sessions connected to the system as determined by \"Vary rate limit by remote address\" and \"Vary rate limit by HTTP header\" settings below.",
- "admin.rate.memoryExample": "Np.: \"10000\"",
- "admin.rate.memoryTitle": "Rozmiar magazynu pamięci:",
- "admin.rate.noteDescription": "Zmiana właściwości w tej sekcji będzie wymagała restartu serwera aby zaczęły one działać.",
- "admin.rate.noteTitle": "Uwaga:",
- "admin.rate.queriesDescription": "Ogranicza ilość żądań API na sekundę do tej liczby",
- "admin.rate.queriesExample": "Np.: \"10\"",
- "admin.rate.queriesTitle": "Maksymalna ilość zapytań na sekundę:",
- "admin.rate.remoteDescription": "Jeśli włączone, ogranicz prędkość przy dostępie do API używając adresu IP.",
- "admin.rate.remoteTitle": "Ograniczenie prędkości według adresu: ",
- "admin.rate.title": "Ustawienia Ograniczeń Prędkości",
- "admin.recycle.button": "Ponownie Wprowadź Do Obiegu Połączenia z Bazą Danych",
- "admin.recycle.loading": "Ponowne wprowadzanie do obiegu...",
- "admin.recycle.recycleDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the {reloadConfiguration} feature to load the new settings while the server is running. The administrator should then use {featureName} feature to recycle the database connections based on the new settings.",
- "admin.recycle.recycleDescription.featureName": "Ponownie Wprowadź Do Obiegu Połączenia z Bazą Danych",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuration > Reload Configuration from Disk",
- "admin.recycle.reloadFail": "Odzyskiwanie nie powiodło się: {error}",
- "admin.regenerate": "Regeneruj",
- "admin.reload.button": "Ponownie odczytaj konfigurację z dysku",
- "admin.reload.loading": "Ładowanie...",
- "admin.reload.reloadDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the {featureName} feature to load the new settings while the server is running. The administrator should then use the {recycleDatabaseConnections} feature to recycle the database connections based on the new settings.",
- "admin.reload.reloadDescription.featureName": "Ponownie odczytaj konfigurację z dysku",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Database > Recycle Database Connections",
- "admin.reload.reloadFail": "Przeładowanie nieudane: {error}",
- "admin.requestButton.loading": " Ładowanie...",
- "admin.requestButton.requestFailure": "Niepowodzenie testu: {error}",
- "admin.requestButton.requestSuccess": "Test zakończony sukcesem",
- "admin.reset_password.close": "Zamknij",
- "admin.reset_password.newPassword": "Nowe hasło",
- "admin.reset_password.select": "Wybierz",
- "admin.reset_password.submit": "Proszę podać co najmniej {chars} znaków.",
- "admin.reset_password.titleReset": "Zresetuj hasło",
- "admin.reset_password.titleSwitch": "Przełącz konto na adres e-mail/hasło",
- "admin.saml.assertionConsumerServiceURLDesc": "Enter https:///login/sso/saml. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. This field is also known as the Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "Np.: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Adres URL usługodawcy:",
- "admin.saml.bannerDesc": "Atrybuty użytkownika na serwerze SAML, w tym dezaktywacja lub usunięcie użytkowników, są aktualizowane w Mattermost podczas logowania użytkownika. Więcej informacji można znaleźć na: https://docs.mattermost.com/deployment/sso-saml.html ",
- "admin.saml.emailAttrDesc": "Atrybut SAML który będzie używany do wypełnienia adresu email użytkowników w Mattermost.",
- "admin.saml.emailAttrEx": "Np.: \"Email\" lub \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "Atrybut Email:",
- "admin.saml.enableDescription": "Gdy włączone, Mattermost pozwoli na logowanie przy użyciu SAML 2.0. Proszę przeczytać dokumentację (j. angielski), aby dowiedzieć się więcej o konfiguracji SAML w Mattermost.",
- "admin.saml.enableTitle": "Pozwól zalogować się z SAML:",
- "admin.saml.encryptDescription": "When false, Mattermost will not decrypt SAML Assertions encrypted with your Service Provider Public Certificate. Not recommended for production environments. For testing only.",
- "admin.saml.encryptTitle": "Włącz Szyfrowanie:",
- "admin.saml.firstnameAttrDesc": "(Opcjonalne) Atrybut SAML który będzie używany do uzupełnienia pola imienia w Mattermost.",
- "admin.saml.firstnameAttrEx": "Np. \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "Atrybut imienia użytkownika:",
- "admin.saml.idpCertificateFileDesc": "Certyfikat uwierzytelniania publicznego wydany przez zarządce tożsamości.",
- "admin.saml.idpCertificateFileRemoveDesc": "Usuń certyfikat uwierzytelnienia publicznego wydany przez zarządce tożsamości.",
- "admin.saml.idpCertificateFileTitle": "Certyfikat publiczny zarządcy tożsamości:",
- "admin.saml.idpDescriptorUrlDesc": "Adres URL zarządcy tożsamości używany dla żądań SAML.",
- "admin.saml.idpDescriptorUrlEx": "Np.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "URL emitenta zarządcy tożsamości:",
- "admin.saml.idpUrlDesc": "URL gdzie Mattermost wysyła żądanie SAML, aby rozpocząć sekwencję logowania.",
- "admin.saml.idpUrlEx": "Np.: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Opcjonalne) Atrybut SAML który będzie używany do uzupełnienia pola nazwiska w Mattermost.",
- "admin.saml.lastnameAttrEx": "Np. \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Atrybut nazwiska użytkownika:",
- "admin.saml.localeAttrDesc": "(Opcjonalne) Atrybut SAML który będzie używany do uzupełnienia języka użytkowników w Mattermost.",
- "admin.saml.localeAttrEx": "Np.: \"Locale\" lub \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Atrybut Preferowanego Języka:",
- "admin.saml.loginButtonTextDesc": "(Opcjonalne) Tekst który pojawią się na przycisku do logowania na stronie logowania. Domyślnie \"Z SAML\".",
- "admin.saml.loginButtonTextEx": "Np.: \"Z OKTA\"",
- "admin.saml.loginButtonTextTitle": "Tekst Przycisku do Logowania:",
- "admin.saml.nicknameAttrDesc": "(Opcjonalne) Atrybut SAML który będzie używany do uzupełnienia nicku w Mattermost.",
- "admin.saml.nicknameAttrEx": "Np. \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Atrybut nicku użytkownika:",
- "admin.saml.positionAttrDesc": "(Opcjonalne) Atrybut SAML który będzie używany do uzupełnienia pola stanowiska w Mattermost.",
- "admin.saml.positionAttrEx": "Np.: \"Role\"",
- "admin.saml.positionAttrTitle": "Atrybut stanowiska:",
- "admin.saml.privateKeyFileFileDesc": "Prywatny klucz używany do odszyfrowywania oznaczeń SAML z zarządcy tożsamości.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Usuń klucz prywatny używany do odszyfrowywania oznaczeń SAML z zarządcy tożsamości.",
- "admin.saml.privateKeyFileTitle": "Klucz prywatny dostawcy usługi:",
- "admin.saml.publicCertificateFileDesc": "The certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
- "admin.saml.publicCertificateFileRemoveDesc": "Remove the certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
- "admin.saml.publicCertificateFileTitle": "Certyfikat publiczny dostawcy usługi:",
- "admin.saml.remove.idp_certificate": "Usuń certyfikat zarządcy tożsamości",
- "admin.saml.remove.privKey": "Usuń klucz prywatny dostawcy usługi",
- "admin.saml.remove.sp_certificate": "Usuń certyfikat dostawcy usługi",
- "admin.saml.removing.certificate": "Usuwanie Certyfikatu...",
- "admin.saml.removing.privKey": "Usuwanie Prywatnego Klucza...",
- "admin.saml.uploading.certificate": "Wysyłanie Certyfikatu...",
- "admin.saml.uploading.privateKey": "Wysyłanie Prywatnego Klucza...",
- "admin.saml.usernameAttrDesc": "Atrybut SAML który będzie używany do wypełnienia pola nazwa użytkownika w Mattermost.",
- "admin.saml.usernameAttrEx": "Np. \"Username\"",
- "admin.saml.usernameAttrTitle": "Atrybut nazwy użytkownika:",
- "admin.saml.verifyDescription": "When false, Mattermost will not verify that the signature sent from a SAML Response matches the Service Provider Login URL. Not recommended for production environments. For testing only.",
- "admin.saml.verifyTitle": "Weryfikuj Podpis:",
- "admin.save": "Zapisz",
- "admin.saving": "Zapisuję konfigurację...",
- "admin.security.connection": "Połączenia",
- "admin.security.inviteSalt.disabled": "Sól zaproszenia nie może zostać zmieniona jeśli wysyłanie emaili jest wyłączone.",
- "admin.security.login": "Login",
- "admin.security.password": "Hasło",
- "admin.security.passwordResetSalt.disabled": "Sól restartu hasła nie może zostać zmieniona jeśli wysyłanie e-maili jest wyłączone.",
- "admin.security.public_links": "Publiczne Linki",
- "admin.security.requireEmailVerification.disabled": "Weryfikacja email nie może zostać zmieniona jeśli wysyłanie emaili jest wyłączone.",
- "admin.security.session": "Sesje",
- "admin.security.signup": "Zarejestruj się",
- "admin.select_team.close": "Zamknij",
- "admin.select_team.select": "Wybierz",
- "admin.select_team.selectTeam": "Wybierz zespół",
- "admin.service.attemptDescription": "Liczba prób logowanie dozwolona przed zablokowaniem użytkownika i wymagane będzie zresetowanie jego hasła poprzez email.",
- "admin.service.attemptExample": "Np.: \"10\"",
- "admin.service.attemptTitle": "Maksymalna liczba prób logowania:",
- "admin.service.cmdsDesc": "Jeśli włączone, niestandardowe polecenia z ukośnikiem będą dozwolone. Zobacz dokumentację aby dowiedzieć się więcej.",
- "admin.service.cmdsTitle": "Włącz Niestandardowe Polecenia z Ukośnikiem:",
- "admin.service.corsDescription": "Włącz żądanie HTTP cross origin z określonej domeny. Użyj \"*\", jeśli chcesz zezwolić CORS z dowolnej domeny lub pozostaw to puste, aby go wyłączyć.",
- "admin.service.corsEx": "http://example.com",
- "admin.service.corsTitle": "Pozwól na zapytania Cross-domain z:",
- "admin.service.developerDesc": "Gdy włączone, błędy JavaScript wyświetlane są na czerwonym pasku u góry interfejsu użytkownika. Nie zalecane w wersji produkcyjnej. ",
- "admin.service.developerTitle": "Włączyć Tryb Dewelopera: ",
- "admin.service.enableAPIv3": "Allow use of API v3 endpoints:",
- "admin.service.enableAPIv3Description": "Set to false to disable all version 3 endpoints of the REST API. Integrations that rely on API v3 will fail and can then be identified for migration to API v4. API v3 is deprecated and will be removed in the near future. See https://api.mattermost.com for details.",
- "admin.service.enforceMfaDesc": "When true, multi-factor authentication is required for login. New users will be required to configure MFA on signup. Logged in users without MFA configured are redirected to the MFA setup page until configuration is complete.
If your system has users with login methods other than AD/LDAP and email, MFA must be enforced with the authentication provider outside of Mattermost.",
- "admin.service.enforceMfaTitle": "Wymuszaj uwierzytelnianie wieloskładnikowe:",
- "admin.service.forward80To443": "Przekaż port 80 do 443:",
- "admin.service.forward80To443Description": "Przekaż cały niezabezpieczony ruch z portu 80 do bezpiecznego portu 443",
- "admin.service.googleDescription": "Ustaw ten klucz by włączyć wyświetlanie tytułów dla osadzonych podglądów filmów z YouTube. Podglądy będą tworzone także bez klucza, na podstawie linków w wiadomościach i komentarzach, ale nie będą widoczne tytuły filmów. Zobacz Google Developers Tutorial jeżeli potrzebujesz instrukcji związanej z pozyskaniem klucza.",
- "admin.service.googleExample": "Np. \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Klucz Google API:",
- "admin.service.iconDescription": "Jeśli prawda, webhooki, polecenia i inne integracje, takie jak Zapier, będą mógły zmienić nazwę użytkownika z jakiego wysyłają wiadomości. Uwaga: w połączeniu z możliwością zmiany zdjęcia profilowego, użytkownicy mogą przeprowadzać ataki typu \"phishing\", starając się naśladować inni użytkownicy.",
- "admin.service.iconTitle": "Włącz integracje pozwalające na nadpisanie ikon zdjęć profilowych.",
- "admin.service.insecureTlsDesc": "Jeśli włączone, wszystkie wychodzące zapytania HTTPS będą akceptowały niezweryfikowane, samo-podpisane certyfikaty. Na przykład, wychodzące połączenia webhook do serwera z samo-podpisanym certyfikatem TLS, używające dowolnej domeny, będą dozwolone. Zauważ że to czyni te połączenia podatnymi na ataki man-in-the-middle.",
- "admin.service.insecureTlsTitle": "Włącz Niezabezpieczone Wychodzące Połączenia:",
- "admin.service.integrationAdmin": "Ogranicz zarządzanie integracjami tylko do Adminów:",
- "admin.service.integrationAdminDesc": "When true, webhooks and slash commands can only be created, edited and viewed by Team and System Admins, and OAuth 2.0 applications by System Admins. Integrations are available to all users after they have been created by the Admin.",
- "admin.service.internalConnectionsDesc": "In testing environments, such as when developing integrations locally on a development machine, use this setting to specify domains, IP addresses, or CIDR notations to allow internal connections. Not recommended for use in production, since this can allow a user to extract confidential data from your server or internal network.
By default, user-supplied URLs such as those used for Open Graph metadata, webhooks, or slash commands will not be allowed to connect to reserved IP addresses including loopback or link-local addresses used for internal networks. Push notification, OAuth 2.0 and WebRTC server URLs are trusted and not affected by this setting.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Allow untrusted internal connections to: ",
- "admin.service.letsEncryptCertificateCacheFile": "Plik Pamięci Podręcznej Certyfikatu Let's Encrypt:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Certificates retrieved and other data about the Let's Encrypt service will be stored in this file.",
- "admin.service.listenAddress": "Adres nasłuchiwania:",
- "admin.service.listenDescription": "Adres z którym się powiązać i nasłuchiwać. Podanie \":8065\" powiąże ze wszystkimi interfejsami sieci. Podanie \"127.0.0.1:8065\" powiąże tylko z podanym adresem IP. Jeśli wybierzesz niższy port (zwane \"portami systemowymi\" lub \"dobrze znanymi portami\", w zakresie 0-1023), musisz mieć uprawnienia sudo żeby powiązać z takim portem. Na Linuksie możesz użyć: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" by pozwolić Mattermost na wiązanie z portami systemowymi.",
- "admin.service.listenExample": "Np. \":8065\"",
- "admin.service.mfaDesc": "Gdy włączone, użytkownicy z lodowaniem AD/LDAP albo email, mogą dodać do swojego konta uwierzytelnianie za pomocą Uwierzytelniania Google.",
- "admin.service.mfaTitle": "Włącz uwierzytelnianie wieloskładnikowe:",
- "admin.service.mobileSessionDays": "Długość sesji mobilnej (dni):",
- "admin.service.mobileSessionDaysDesc": "Ilość dni od momentu, gdy użytkownik się zaloguje do wygaśnięcia jego sesji. Po zmianie tej wartości, nowa długość sesji będzie brana pod uwagę po kolejnym zalogowaniu się użytkownika.",
- "admin.service.outWebhooksDesc": "Jeśli włączone, wychodzące webhooki będą dozwolone. Zobacz dokumentację aby dowiedzieć się więcej.",
- "admin.service.outWebhooksTitle": "Włączyć wychodzące webhooki: ",
- "admin.service.overrideDescription": "Jeśli prawda, webhooki, poleceń i inne integracje, takie jak Zapier, będą mógły zmienić nazwę użytkownika z jakiego wysyłają wiadomości. Uwaga: w połączeniu z możliwością zmiany zdjęcia profilowego, użytkownicy mogą przeprowadzać ataki typu \"phishing\", starając się naśladować inni użytkownicy.",
- "admin.service.overrideTitle": "Włącz możliwość nadpisywania nazw użytkowników przez integracje.",
- "admin.service.readTimeout": "Upłynięcie Limitu Czasu na Odczyt:",
- "admin.service.readTimeoutDescription": "Maksymalny czas dozwolony od momentu zaakceptowania połączenia do momentu gdy treść zapytania jest w pełni odczytana.",
- "admin.service.securityDesc": "Jeśli włączone Administratorzy Systemu są powiadomieni emailem jeśli istotna poprawka bezpieczeństwa zostanie ogłoszona w ciągu ostatnich 12 godzin. Wymaga emaila by włączyć.",
- "admin.service.securityTitle": "Włącz Alerty Bezpieczeństwa:",
- "admin.service.sessionCache": "Cache sesji (w minutach):",
- "admin.service.sessionCacheDesc": "Czas trwania sesji (w minutach).",
- "admin.service.sessionDaysEx": "Np.: \"30\"",
- "admin.service.siteURL": "URL storny:",
- "admin.service.siteURLDescription": "The URL that users will use to access Mattermost. Standard ports, such as 80 and 443, can be omitted, but non-standard ports are required. For example: http://mattermost.example.com:8065. This setting is required.",
- "admin.service.siteURLExample": "Np.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Długość sesji SSO (dni):",
- "admin.service.ssoSessionDaysDesc": "Ilość dni od momentu, gdy użytkownik się zaloguje do wygaśnięcia jego sesji. Jeśli sposób logowania to SAML lub GitLab, użytkownik może zostać automatycznie ponownie zalogowany do Mattermost, jeśli jest akurat zalogowany w SAML lub GitLab. Po zmianie tej wartości, nowa długość sesji będzie brana pod uwagę po kolejnym zalogowaniu się użytkownika. ",
- "admin.service.testingDescription": "Jeśli włączone, za pomocą polecenia z ukośnikiem /test można ładować testowe konta, dane i formatowanie tekstu. Aby wprowadzić zmiany, wymagany jest restart serwera.",
- "admin.service.testingTitle": "Włącz Testowe Polecenia:",
- "admin.service.tlsCertFile": "Plik Certyfikatu TLS:",
- "admin.service.tlsCertFileDescription": "Plik certyfikatu który używać.",
- "admin.service.tlsKeyFile": "Plik z kluczem TLS:",
- "admin.service.tlsKeyFileDescription": "Plik z kluczem prywatnym który używać.",
- "admin.service.useLetsEncrypt": "Użyj Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Włącz automatyczne pobieranie certyfikatów z Let's Encrypt. Certyfikaty będą pobrane gdy klient spróbuje się połączyć z nowej domeny. Będzie to działało z wieloma domenami.",
- "admin.service.userAccessTokensDescLabel": "Nazwa:",
- "admin.service.userAccessTokensDescription": "When true, users can create personal access tokens for integrations in Account Settings > Security. They can be used to authenticate against the API and give full access to the account.
To manage who can create personal access tokens or to search users by token ID, go to the System Console > Users page.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Enable Personal Access Tokens: ",
- "admin.service.webSessionDays": "Długość sesji AD/LDAP i email (dni):",
- "admin.service.webSessionDaysDesc": "Ilość dni od momentu, gdy użytkownik się zaloguje do wygaśnięcia jego sesji. Po zmianie tej wartości, nowa długość sesji będzie brana pod uwagę po kolejnym zalogowaniu się użytkownika. ",
- "admin.service.webhooksDescription": "Gdy prawda, przychodzące webhooki zostaną włączone. Aby pomóc w zwalczaniu ataków typu phishing, wszystkie posty ze stron internetowych będą oznaczone tagiem BOT. Zobacz dokumentację, aby dowiedzieć się więcej.",
- "admin.service.webhooksTitle": "Włączy wychodzące webhooki: ",
- "admin.service.writeTimeout": "Timeout Zapisu:",
- "admin.service.writeTimeoutDescription": "Jeśli używasz protokołu HTTP (niebezpieczne), jest to maksymalny czas, jaki upłynął od końca czytania nagłówków żądania do momentu uzyskania odpowiedzi. Jeśli używasz protokołu HTTPS, to jest całkowity czas, od którego połączenie jest akceptowane do czasu uzyskania odpowiedzi.",
- "admin.sidebar.advanced": "Zaawansowane",
- "admin.sidebar.audits": "Zgodność i Audyt",
- "admin.sidebar.authentication": "Uwierzytelnianie",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "Wysoka dostępność",
- "admin.sidebar.compliance": "Zgodność",
- "admin.sidebar.configuration": "Konfiguracja",
- "admin.sidebar.connections": "Połączenia",
- "admin.sidebar.customBrand": "Własna marka",
- "admin.sidebar.customIntegrations": "Niestandardowe integracje",
- "admin.sidebar.customization": "Dostosowywanie",
- "admin.sidebar.database": "Baza danych",
- "admin.sidebar.developer": "Twórca",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "E-mail",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "Zewnętrzne usługi",
- "admin.sidebar.files": "Pliki",
- "admin.sidebar.general": "Ogólne",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integracje",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Informacje prawne i wsparcie",
- "admin.sidebar.license": "Licencja",
- "admin.sidebar.linkPreviews": "Podgląd linków",
- "admin.sidebar.localization": "Lokalizacja",
- "admin.sidebar.logging": "Logowanie",
- "admin.sidebar.login": "Login",
- "admin.sidebar.logs": "Logi",
- "admin.sidebar.metrics": "Monitorowanie Wydajności",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Link do aplikacji Mattermost",
- "admin.sidebar.notifications": "Powiadomienia",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "INNE",
- "admin.sidebar.password": "Hasło",
- "admin.sidebar.policy": "Zasady",
- "admin.sidebar.privacy": "Prywatność",
- "admin.sidebar.publicLinks": "Publiczne Linki",
- "admin.sidebar.push": "Powiadomienia Push",
- "admin.sidebar.rateLimiting": "Ograniczenia Prędkości",
- "admin.sidebar.reports": "RAPORTOWANIE",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Bezpieczeństwo",
- "admin.sidebar.sessions": "Sesje",
- "admin.sidebar.settings": "USTAWIENIA",
- "admin.sidebar.signUp": "Zarejestruj Się",
- "admin.sidebar.sign_up": "Zarejestruj Się",
- "admin.sidebar.statistics": "Statystyki zespołu",
- "admin.sidebar.storage": "Przechowywanie",
- "admin.sidebar.support": "Informacje prawne i wsparcie",
- "admin.sidebar.users": "Użytkownicy",
- "admin.sidebar.usersAndTeams": "Użytkownicy i zespoły",
- "admin.sidebar.view_statistics": "Statystyki Strony",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Konsola systemowa",
- "admin.sql.dataSource": "Źródło danych:",
- "admin.sql.driverName": "Nazwa sterownika:",
- "admin.sql.keyDescription": "32-znakowa sól dostępna do szyfrowania i rozszyfrowywania poufnych pól w bazie danych.",
- "admin.sql.keyExample": "Np. \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Encrypt Key:",
- "admin.sql.maxConnectionsDescription": "Maksymalna liczba otwartych połączeń do bazy danych.",
- "admin.sql.maxConnectionsExample": "Np.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Maksymalna liczba bezczynnych połączeń",
- "admin.sql.maxOpenDescription": "Maksymalna liczba otwartych połączeń do bazy danych.",
- "admin.sql.maxOpenExample": "Np.: \"10\"",
- "admin.sql.maxOpenTitle": "Maksymalna liczba otwartych połączeń:",
- "admin.sql.noteDescription": "Zmiana właściwości w tej sekcji będzie wymagała restartu serwera aby zaczęły one działać.",
- "admin.sql.noteTitle": "Notka:",
- "admin.sql.queryTimeoutDescription": "The number of seconds to wait for a response from the database after opening a connection and sending the query. Errors that you see in the UI or in the logs as a result of a query timeout can vary depending on the type of query.",
- "admin.sql.queryTimeoutExample": "Np.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Limit czasu zapytania:",
- "admin.sql.replicas": "Repliki Źródeł Danych:",
- "admin.sql.traceDescription": "(Tryb Developerski) Jeśli włączony, wykonane zapytania SQL zostaną zapisane do logu.",
- "admin.sql.traceTitle": "Trace:",
- "admin.sql.warning": "Uwaga: ponowne generowanie tej soli może sprawić że kolumny w bazie danych będą zwracały puste wartości.",
- "admin.support.aboutDesc": "Adres URL linku O mnie na stronie logowania i rejestracji. Jeśli to pole jest puste, link O mnie jest ukrywany przed użytkownikami.",
- "admin.support.aboutTitle": "Link do \"O programie\":",
- "admin.support.emailHelp": "Adres email wyświetlany w powiadomieniach email i podczas instrukcji krok po kroku dla użytkowników, aby zadawać pytania.",
- "admin.support.emailTitle": "Email do Wsparcia:",
- "admin.support.helpDesc": "Adres URL linku Pomoc na stronie logowania i w menu głównym. Jeśli to pole jest puste, link Pomoc jest ukrywany przed użytkownikami",
- "admin.support.helpTitle": "Link do pomocy:",
- "admin.support.noteDescription": "Jeśli linkujesz do zewnętrznej witryny, adresy URL powinny zaczynać się od http:// lub https://.",
- "admin.support.noteTitle": "Notka:",
- "admin.support.privacyDesc": "Adres URL linku Ochrona prywatności na stronie logowania i rejestracji. Jeśli to pole jest puste, link Ochrona prywatności jest ukryty przed użytkownikami.",
- "admin.support.privacyTitle": "Link do Zasad Prywatności.",
- "admin.support.problemDesc": "Adres URL łącza Zgłoś problem w Menu głównym. Jeśli to pole jest puste, link z menu głównego zostanie usunięty.",
- "admin.support.problemTitle": "Zgłoś link z Problemem:",
- "admin.support.termsDesc": "Link do warunków korzystania z usługi online przez użytkowników. Domyślnie obejmuje to \"warunki użytkowania (użytkownicy końcowi)\" wyjaśniające warunki, w jakich oprogramowanie Mattermost jest dostarczane użytkownikom końcowym. Jeśli zmienisz łącze domyślne, aby dodać własne warunki korzystania z tej usługi, nowe warunki muszą zawierać link do domyślnych warunków, dzięki czemu użytkownicy końcowi są świadomi warunków użytkowania oprogramowania Mattermost.",
- "admin.support.termsTitle": "Linki z warunkami korzystania z serwisu:",
- "admin.system_analytics.activeUsers": "Aktywni użytkownicy z wiadomościami",
- "admin.system_analytics.title": "System",
- "admin.system_analytics.totalPosts": "Wszystkie Wiadomości",
- "admin.system_users.allUsers": "Wszyscy Użytkownicy",
- "admin.system_users.noTeams": "Brak Zespołów",
- "admin.system_users.title": "{siteName} Użytkownicy",
- "admin.team.brandDesc": "Enable custom branding to show an image of your choice, uploaded below, and some help text, written below, on the login page.",
- "admin.team.brandDescriptionExample": "Cała komunikacja Twojego zespołu w jednym miejscu, z natychmiastowym przeszukiwaniem i dostępna z każdego miejsca.",
- "admin.team.brandDescriptionHelp": "Opis usługi wyświetlane na ekranie logowania oraz w interfejsie użytkownika. Jeśli nie zostanie podany, zostanie wyświetlona informacja \"Cała komunikacja Twojego zespołu w jednym miejscu, z natychmiastowym przeszukiwaniem i dostępna z każdego miejsca.\".",
- "admin.team.brandDescriptionTitle": "Opis strony: ",
- "admin.team.brandImageTitle": "Niestandardowy obraz marki:",
- "admin.team.brandTextDescription": "Tekst który pojawi się pod wizerunkiem marki na stronie logowania. Wspiera formatowanie Markdown. Maksymalnie 500 znaków.",
- "admin.team.brandTextTitle": "Niestandardowy tekst marki:",
- "admin.team.brandTitle": "Włącz niestandardową markę: ",
- "admin.team.chooseImage": "Wybierz nowy obraz",
- "admin.team.dirDesc": "When true, teams that are configured to show in team directory will show on main page inplace of creating a new team.",
- "admin.team.dirTitle": "Włącz Katalog Zespołu:",
- "admin.team.maxChannelsDescription": "Maksymalna liczba kanałów dla zespołu, włącznie z aktywnymi jak i usuniętymi kanałami.",
- "admin.team.maxChannelsExample": "Np.: \"100\"",
- "admin.team.maxChannelsTitle": "Maksymalna Ilość kanałów Dla Zespołu:",
- "admin.team.maxNotificationsPerChannelDescription": "Maksymalna liczba użytkowników po przekroczeniu której użycie, @all, @here i @channel nie wyśle już powiadomień ze względu na wydajność.",
- "admin.team.maxNotificationsPerChannelExample": "Np. \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Maksymalna Ilość Powiadomień na Kanał:",
- "admin.team.maxUsersDescription": "Maksymalna liczba użytkowników dla zespołu, włącznie z aktywnymi jak i nieaktywnymi użytkownikami.",
- "admin.team.maxUsersExample": "Np.: \"25\"",
- "admin.team.maxUsersTitle": "Maksymalna liczba użytkowników na zespół:",
- "admin.team.noBrandImage": "No brand image uploaded",
- "admin.team.openServerDescription": "Gdy włączone, każdy kto może zarejestrować konto na tym serwerze bez potrzeby zaproszenia.",
- "admin.team.openServerTitle": "Włącz Open Server: ",
- "admin.team.restrictDescription": "Zespoły i konta użytkowników mogą być tworzone jedynie dla maili z wybranej domeny (np. \"mattermost.org\") lub listy domen oddzielonej przecinkami (np. \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Zezwalaj użytkownikom na otwieranie kanałów prywatnych wiadomości z:",
- "admin.team.restrictDirectMessageDesc": "'Dowolny użytkownik na serwerze Mattermost' umożliwia użytkownikom otwarcie kanału do Prywatnych Wiadomości z dowolnym użytkownikiem na tym serwerze, nawet jeśli użytkownicy nie należą do żadnych wspólnych grup. 'Dowolny uczestnik zespołu' ogranicza możliwość otwierania kanałów do Prywatnych Wiadomości tylko do użytkowników którzy są w tym samym zespole.",
- "admin.team.restrictExample": "Np.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Jeśli włączone, nie możesz utworzyć zespołu o nazwie takiej jak zarezerwowane słowa, takie jak www, admin, wsparcie, test, kanał, itp.",
- "admin.team.restrictNameTitle": "Ogranicz Nazwy Zespołów:",
- "admin.team.restrictTitle": "Ogranicz tworzenie kont tylko do podanym domen email:",
- "admin.team.restrict_direct_message_any": "Dowolny użytkownik na serwerze Mattermost",
- "admin.team.restrict_direct_message_team": "Dowolny uczestnik zespołu",
- "admin.team.showFullname": "Pokaż imię i nazwisko",
- "admin.team.showNickname": "Pokaż nick, jeśli taki istnieje, w przeciwnym przypadku wyświetl imię i nazwisko",
- "admin.team.showUsername": "Pokaż nazwę użytkownika (domyślnie)",
- "admin.team.siteNameDescription": "Nazwa usługi wyświetlona na stronie logowania i w interfejsie użytkownika.",
- "admin.team.siteNameExample": "Np.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Nazwa witryny",
- "admin.team.teamCreationDescription": "Jeśli wyłączone, tylko Systemowi Administratorzy mogą tworzyć zespoły.",
- "admin.team.teamCreationTitle": "Włącz Tworzenie Zespołów:",
- "admin.team.teammateNameDisplay": "Wyświetlana nazwa zespołu:",
- "admin.team.teammateNameDisplayDesc": "Ustawia jak wyświetlać nazwy innych użytkowników w postach i wiadomościach bezpośrednich.",
- "admin.team.upload": "Wyślij",
- "admin.team.uploadDesc": "Dostosuj wrażenia użytkownika, dodając niestandardowy obraz do ekranu logowania. Zalecany maksymalny rozmiar obrazu to mniej niż 2 MB.",
- "admin.team.uploaded": "Wysłano!",
- "admin.team.uploading": "Wysyłanie..",
- "admin.team.userCreationDescription": "Jeśli wyłączone, możliwość tworzenia kont jest zablokowana. Przycisk do tworzenia konta pokaże błąd jeśli zostanie wciśnięty.",
- "admin.team.userCreationTitle": "Włącz Tworzenie Kont:",
- "admin.team_analytics.activeUsers": "Aktywni Użytkownicy Z Wiadomościami",
- "admin.team_analytics.totalPosts": "Wszystkie Wiadomości",
- "admin.true": "włączone",
- "admin.user_item.authServiceEmail": "Metoda rejestracji: Email",
- "admin.user_item.authServiceNotEmail": "Metoda rejestracji: {service}",
- "admin.user_item.confirmDemoteDescription": "Jeśli zrezygnujesz z roli administratora systemu i nie ma innego użytkownika z uprawnieniami administratora systemu, musisz ponownie przypisać administratora systemu, uzyskując dostęp do serwera Mattermost za pośrednictwem terminala i uruchamiając następujące polecenie.",
- "admin.user_item.confirmDemoteRoleTitle": "Potwierdź zdegradowanie z roli administratora systemu",
- "admin.user_item.confirmDemotion": "Potwierdź degradację",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "Email:{email}",
- "admin.user_item.inactive": "Nieaktywny",
- "admin.user_item.makeActive": "Aktywuj",
- "admin.user_item.makeInactive": "Dezaktywuj",
- "admin.user_item.makeMember": "Uczyń użytkownikiem",
- "admin.user_item.makeSysAdmin": "Zrób Adminem Systemu",
- "admin.user_item.makeTeamAdmin": "Uczyń administratorem zespołu",
- "admin.user_item.manageRoles": "Manage Roles",
- "admin.user_item.manageTeams": "Zarządzaj Zespołami",
- "admin.user_item.manageTokens": "Manage Tokens",
- "admin.user_item.member": "Użytkownik",
- "admin.user_item.mfaNo": "MFA: Nie",
- "admin.user_item.mfaYes": "MFA: Tak",
- "admin.user_item.resetMfa": "Usuń MFA",
- "admin.user_item.resetPwd": "Zresetuj hasło",
- "admin.user_item.switchToEmail": "Przełącz na adres e-mail/hasło",
- "admin.user_item.sysAdmin": "Administrator Systemu",
- "admin.user_item.teamAdmin": "Administrator zespołu",
- "admin.user_item.userAccessTokenPostAll": "(with post:all personal access tokens)",
- "admin.user_item.userAccessTokenPostAllPublic": "(with post:channels personal access tokens)",
- "admin.user_item.userAccessTokenYes": "(with personal access tokens)",
- "admin.webrtc.enableDescription": "Jeśli włączone, Mattermost umożliwia połączenia video jeden-do-jednego. Połączenia WebRTC są dostępne w Chromie, Firefoxie i aplikacjach desktopowych.",
- "admin.webrtc.enableTitle": "Włącz WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Wpisz swoje hasło administratora aby uzyskać adres URL do bramki administracyjnej",
- "admin.webrtc.gatewayAdminSecretExample": "Np.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Hasło bramki administracyjnej: ",
- "admin.webrtc.gatewayAdminUrlDescription": "Enter https://:/admin. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. Mattermost WebRTC uses this URL to obtain valid tokens for each peer to establish the connection.",
- "admin.webrtc.gatewayAdminUrlExample": "Np.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Gateway Admin URL:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Enter wss://:. Make sure you use WS or WSS in your URL depending on your server configuration. This is the WebSocket used to signal and establish communication between the peers.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Np.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway WebSocket URL:",
- "admin.webrtc.stunUriDescription": "Enter your STUN URI as stun::. STUN is a standardized network protocol to allow an end host to assist devices to access its public IP address if it is located behind a NAT.",
- "admin.webrtc.stunUriExample": "Np.: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI:",
- "admin.webrtc.turnSharedKeyDescription": "Enter your TURN Server Shared Key. This is used to created dynamic passwords to establish the connection. Each password is valid for a short period of time.",
- "admin.webrtc.turnSharedKeyExample": "Np.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "TURN Shared Key:",
- "admin.webrtc.turnUriDescription": "Enter your TURN URI as turn::. TURN is a standardized network protocol to allow an end host to assist devices to establish a connection by using a relay public IP address if it is located behind a symmetric NAT.",
- "admin.webrtc.turnUriExample": "Np.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "v",
- "admin.webrtc.turnUsernameDescription": "Wprowadź twoją Nazwę Użytkownika na serwerze TURN.",
- "admin.webrtc.turnUsernameExample": "Np.: \"myusername\"",
- "admin.webrtc.turnUsernameTitle": "Nazwa Użytkownika TURN:",
- "admin.webserverModeDisabled": "Wyłączone",
- "admin.webserverModeDisabledDescription": "Serwer Mattermost nie będzie serwował statycznych plików.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Mattermost będzie serwował statyczne pliki skompresowane za pomocą gzip.",
- "admin.webserverModeHelpText": "Kompresja gzip dotyczy statycznych plików. Rekomenduje się włączenie kompresji gzip aby poprawić wydajność, chyba że twoje środowisko ma specyficzne ograniczenia, takie jak web proxy które słabo dostarcza pliki gzip.",
- "admin.webserverModeTitle": "Tryb Webserwera:",
- "admin.webserverModeUncompressed": "Nieskompresowany",
- "admin.webserverModeUncompressedDescription": "Serwer Mattermost będzie serwował nieskompresowane statyczne pliki.",
- "analytics.chart.loading": "Ładowanie...",
- "analytics.chart.meaningful": "Za mało danych dla sensownej reprezentacji.",
- "analytics.system.activeUsers": "Aktywni użytkownicy z wiadomościami",
- "analytics.system.channelTypes": "Typy Kanałów",
- "analytics.system.dailyActiveUsers": "Dzienna Aktywność Użytkowników",
- "analytics.system.monthlyActiveUsers": "Miesięczna Aktywność Użytkowników",
- "analytics.system.postTypes": "Wiadomości, Pliki i Hashtagi",
- "analytics.system.privateGroups": "Kanały prywatne",
- "analytics.system.publicChannels": "Kanały publiczne",
- "analytics.system.skippedIntensiveQueries": "Aby zmaksymalizować wydajność, niektóre statystyki są wyłączone. Możesz je ponownie włączyć w config.json. Zobacz: https://docs.mattermost.com/administration/statistics.html ",
- "analytics.system.textPosts": "Wiadomości z samym tekstem",
- "analytics.system.title": "Statystyki systemu",
- "analytics.system.totalChannels": "Wszystkie Kanały",
- "analytics.system.totalCommands": "Wszystkie Polecenia",
- "analytics.system.totalFilePosts": "Wiadomości z Plikami",
- "analytics.system.totalHashtagPosts": "Wiadomości z Hashtagami",
- "analytics.system.totalIncomingWebhooks": "Przychodzące Webhooki",
- "analytics.system.totalMasterDbConnections": "Połączenia bazą danych Master",
- "analytics.system.totalOutgoingWebhooks": "Wychodzące Webhooki",
- "analytics.system.totalPosts": "Wiadomości razem",
- "analytics.system.totalReadDbConnections": "Połączenia z bazą danych Replica",
- "analytics.system.totalSessions": "Wszystkie Sesje",
- "analytics.system.totalTeams": "Wszystkie Zespoły",
- "analytics.system.totalUsers": "Użytkownicy razem",
- "analytics.system.totalWebsockets": "Połączenia WebSocket",
- "analytics.team.activeUsers": "Aktywni użytkownicy z wiadomościami",
- "analytics.team.newlyCreated": "Nowi użytkownicy",
- "analytics.team.noTeams": "Nie ma na tym serwerze zespołów dla których można zobaczyć statystyki.",
- "analytics.team.privateGroups": "Prywatne kanały",
- "analytics.team.publicChannels": "Kanały publiczne",
- "analytics.team.recentActive": "Ostatnio Aktywni Użytkownicy",
- "analytics.team.recentUsers": "Ostatnio Aktywni Użytkownicy",
- "analytics.team.title": "Statystyki zespołu dla {team}",
- "analytics.team.totalPosts": "Wiadomości razem",
- "analytics.team.totalUsers": "Użytkownicy razem",
- "api.channel.add_member.added": "{addedUsername} dodany do kanału przez {username}",
- "api.channel.delete_channel.archived": "{username} zarchiwizował kanał.",
- "api.channel.join_channel.post_and_forget": "{username} dołączył do kanału.",
- "api.channel.leave.left": "{username} opuścił kanał.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} zmienia nazwę kanału z: {old} na: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} usunął nagłówek kanału (był: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} zaktualizował nagłówek kanału z: {old} na: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} zmienił nagłówek kanału na {new}",
- "api.channel.remove_member.removed": "{removedUsername} został usunięty z kanału",
- "app.channel.post_update_channel_purpose_message.removed": "{username} usunął opis kanału (było: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} zaktualizował opis kanału z: {old} na: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} zaktualizował opis kanału na: {new}",
- "audit_table.accountActive": "Konto zostało aktywowane",
- "audit_table.accountInactive": "Konto zostało dezaktywowane",
- "audit_table.action": "Akcja",
- "audit_table.attemptedAllowOAuthAccess": "Próba umożliwienia dostępu do nowej usługi OAuth",
- "audit_table.attemptedLicenseAdd": "Próba dodania nowej licencji",
- "audit_table.attemptedLogin": "Próba logowania",
- "audit_table.attemptedOAuthToken": "Próba pobrania żetonu dostępu OAuth",
- "audit_table.attemptedPassword": "Próba zmiany hasła",
- "audit_table.attemptedRegisterApp": "Próba rejestracji nowej aplikacji OAuth z ID {id}",
- "audit_table.attemptedReset": "Próba zresetowania hasła",
- "audit_table.attemptedWebhookCreate": "Próba stworzenia webhooka",
- "audit_table.attemptedWebhookDelete": "Próba usunięcia webhooka",
- "audit_table.by": "przez {username}",
- "audit_table.byAdmin": "przez admina",
- "audit_table.channelCreated": "Stworzono kanał {channelName}",
- "audit_table.channelDeleted": "Usunięto kanał o adresie URL {url}",
- "audit_table.establishedDM": "Utworzono kanał prywatnych wiadomości z {username}",
- "audit_table.failedExpiredLicenseAdd": "Nie udało się dodać licencji, ponieważ wygasła albo się jeszcze nie zaczeła",
- "audit_table.failedInvalidLicenseAdd": "Nie udało się dodać nieprawidłowej licencji",
- "audit_table.failedLogin": "NIEPOWODZENIE próba logowania",
- "audit_table.failedOAuthAccess": "Nie można zezwolić na nowy dostęp do usługi OAuth - identyfikator URI przekierowania nie pasował do zarejestrowanego wcześniej odwołania zwrotnego",
- "audit_table.failedPassword": "Nie udało się zmienić hasła - spróbowano zmienić hasło użytkownika który był zalogowany przez OAuth",
- "audit_table.failedWebhookCreate": "Nie udało się utworzyć webhooka - nieprawidłowe uprawnienia kanału",
- "audit_table.failedWebhookDelete": "Nie udało się usunąć webhooka - niewłaściwe warunki",
- "audit_table.headerUpdated": "Zaktualizowano nagłówek kanału {channelName}",
- "audit_table.ip": "Adres IP",
- "audit_table.licenseRemoved": "Pomyślnie usunięto licencję",
- "audit_table.loginAttempt": "(Próba logowania)",
- "audit_table.loginFailure": " (Błąd logowania)",
- "audit_table.logout": "Wylogowano z konta",
- "audit_table.member": "użytkownik",
- "audit_table.nameUpdated": "Stworzono kanał {channelName}",
- "audit_table.oauthTokenFailed": "Nie udało się pobrać tokenu dostępu OAuth - {token}",
- "audit_table.revokedAll": "Odwołano wszystkie obecne sesje dla zespołu",
- "audit_table.sentEmail": "Wysłano email na {email} aby zresetować twoje hasło",
- "audit_table.session": "ID Sesji",
- "audit_table.sessionRevoked": "Sesja o id {sessionId} została unieważniona",
- "audit_table.successfullLicenseAdd": "Pomyślnie dodano nową licencję",
- "audit_table.successfullLogin": "Pomyślnie zalogowano",
- "audit_table.successfullOAuthAccess": "Pomyślnie nadano nowy dostęp w usłudze OAuth",
- "audit_table.successfullOAuthToken": "Pomyślnie dodano nową usługę OAuth",
- "audit_table.successfullPassword": "Hasło zmienione pomyślnie",
- "audit_table.successfullReset": "Hasło zresetowane pomyślnie",
- "audit_table.successfullWebhookCreate": "Pomyślnie utworzono webhooka",
- "audit_table.successfullWebhookDelete": "Pomyślnie usunięto webhooka",
- "audit_table.timestamp": "Znacznik czasu",
- "audit_table.updateGeneral": "Zaktualizowano ogólne ustawienia twojego konta",
- "audit_table.updateGlobalNotifications": "Zaktualizowano twoje globalne ustawienia powiadomień",
- "audit_table.updatePicture": "Zaktualizowano twoje zdjęcie profilowe",
- "audit_table.updatedRol": "Zaktualizowano role użytkownika do",
- "audit_table.userAdded": "Dodano {username} do kanału {channelName}",
- "audit_table.userId": "ID użytkownika",
- "audit_table.userRemoved": "Usunięto {username} z kanału {channelName}",
- "audit_table.verified": "Adres e-mail został poprawnie zweryfikowany",
- "authorize.access": "Zezwolić aplikacji {appName} na dostęp?",
- "authorize.allow": "Zezwól",
- "authorize.app": "Aplikacja {appName} chce uzyskać dostęp i modyfikować twoje podstawowe informacje.",
- "authorize.deny": "Odmów",
- "authorize.title": "{appName} chce połączyć się z twoim kontem użytkownika Mattermost",
- "backstage_list.search": "Znajdź",
- "backstage_navbar.backToMattermost": "Wróć do {siteName}",
- "backstage_sidebar.emoji": "Własne emotikony",
- "backstage_sidebar.integrations": "Integracje",
- "backstage_sidebar.integrations.commands": "Polecenia",
- "backstage_sidebar.integrations.incoming_webhooks": "Przychodzące Webhooki",
- "backstage_sidebar.integrations.oauthApps": "Aplikacje OAuth 2.0",
- "backstage_sidebar.integrations.outgoing_webhooks": "Wychodzące Webhooki",
- "calling_screen": "Dzwonienie",
- "center_panel.recent": "Kliknij tutaj, aby przejść do najnowszych wiadomości.",
- "change_url.close": "Zamknij",
- "change_url.endWithLetter": "Adres URL musi kończyć się na literę lub cyfrę.",
- "change_url.invalidUrl": "Nieprawidłowy adres URL",
- "change_url.longer": "Adres URL musi zawierać dwa lub więcej znaków.",
- "change_url.noUnderscore": "Adres URL nie może zawierać dwóch podkreśleń z rzędu.",
- "change_url.startWithLetter": "Adres URL musi zaczynać się od litery lub cyfry.",
- "change_url.urlLabel": "URL Kanału",
- "channelHeader.addToFavorites": "Dodaj do ulubionych",
- "channelHeader.removeFromFavorites": "Usuń z ulubionych",
- "channel_flow.alreadyExist": "Kanał o podanym adresie URL już istnieje",
- "channel_flow.changeUrlDescription": "Niektóre znaki nie są dozwolone w adresie URL i mogą być usunięte.",
- "channel_flow.changeUrlTitle": "Zmień URL Kanału",
- "channel_flow.create": "Stwórz kanał",
- "channel_flow.handleTooShort": "Adres URL kanału musi zawierać 2 lub więcej małych znaków alfanumerycznych",
- "channel_flow.invalidName": "Nieprawidłowa nazwa kanału",
- "channel_flow.set_url_title": "Ustaw URL Kanału",
- "channel_header.addChannelHeader": "Add a channel description",
- "channel_header.addMembers": "Dodaj użytkowników",
- "channel_header.addToFavorites": "Dodaj do ulubionych",
- "channel_header.channelHeader": "Edytuj nagłówek kanału",
- "channel_header.channelMembers": "Użytkownicy",
- "channel_header.delete": "Usuń kanał",
- "channel_header.flagged": "Oznaczone posty",
- "channel_header.leave": "Opuść kanał",
- "channel_header.manageMembers": "Zarządzaj użytkownikami",
- "channel_header.notificationPreferences": "Ustawienia powiadomień",
- "channel_header.pinnedPosts": "Przypiente posty",
- "channel_header.recentMentions": "Ostatnie wzmianki",
- "channel_header.removeFromFavorites": "Usuń z ulubionych",
- "channel_header.rename": "Zmień nazwę kanału",
- "channel_header.setHeader": "Edytuj nagłówek kanału",
- "channel_header.setPurpose": "Edytuj Cel Kanału",
- "channel_header.viewInfo": "Wyświetl Informacje",
- "channel_header.viewMembers": "Wyświetl użytkowników",
- "channel_header.webrtc.call": "Rozpocznij rozmowę wideo",
- "channel_header.webrtc.offline": "Użytkownik jest w trybie offline",
- "channel_header.webrtc.unavailable": "Nowe połączenie jest niedostępne do momentu zakończenia istniejących połączeń",
- "channel_info.about": "O",
- "channel_info.close": "Zamknij",
- "channel_info.header": "Nagłówek:",
- "channel_info.id": "Identyfikator: ",
- "channel_info.name": "Nazwa:",
- "channel_info.notFound": "Nie znaleziono kanału",
- "channel_info.purpose": "Przeznaczenie:",
- "channel_info.url": "Adres URL:",
- "channel_invite.add": "Dodaj",
- "channel_invite.addNewMembers": "Dodaj nowych użytkowników do ",
- "channel_invite.close": "Zamknij",
- "channel_loader.connection_error": "Wygląda na to, że wystąpił problem z twoim połączeniem internetowym.",
- "channel_loader.posted": "Wysłany",
- "channel_loader.postedImage": " wysłano obraz",
- "channel_loader.socketError": "Proszę, sprawdź połączenie, Mattermost nie jest dostępny. Jeśli problem nie zostanie rozwiązany, skontaktuj się z administratorem sprawdź portyWebSocket.",
- "channel_loader.someone": "Ktoś",
- "channel_loader.something": " zrobił/a coś nowego",
- "channel_loader.unknown_error": "Otrzymaliśmy nieoczekiwany kod statusu z serwera.",
- "channel_loader.uploadedFile": " dodano plik",
- "channel_loader.uploadedImage": " wysłano obraz",
- "channel_loader.wrote": " napisał(a): ",
- "channel_members_dropdown.channel_admin": "Administrator kanału",
- "channel_members_dropdown.channel_member": "Użytkownik kanału",
- "channel_members_dropdown.make_channel_admin": "Uczyń administratorem kanału",
- "channel_members_dropdown.make_channel_member": "Zrób użytkownikiem kanału",
- "channel_members_dropdown.remove_from_channel": "Usuń z kanału",
- "channel_members_dropdown.remove_member": "Usuń członka",
- "channel_members_modal.addNew": " Dodaj nowych użytkowników",
- "channel_members_modal.members": " Użytkownicy",
- "channel_modal.cancel": "Anuluj",
- "channel_modal.createNew": "Utwórz nowy kanał",
- "channel_modal.descriptionHelp": "Opisz jak ten kanał powinien być używany.",
- "channel_modal.displayNameError": "Nazwa kanału musi zawierać co najmniej 2 znaki",
- "channel_modal.edit": "Edycja",
- "channel_modal.header": "Nagłówek",
- "channel_modal.headerEx": "Np.: \"[Tytuł linku](http://example.com)\"",
- "channel_modal.headerHelp": "Ustaw tekst który pojawi się w nagłówku kanału, obok nazwy kanału. Na przykład dodaj często używane linki wpisując [Tytuł Linka](http://example.com).",
- "channel_modal.modalTitle": "Nowy kanał",
- "channel_modal.name": "Nazwa",
- "channel_modal.nameEx": "Np.: \"Błędy\", \"Marketing\", \"Pomysły\"",
- "channel_modal.optional": "(opcjonalne)",
- "channel_modal.privateGroup1": "Utwórz nowy kanał prywatny z ograniczoną listą uczestników.",
- "channel_modal.privateGroup2": "Stwórz prywatny kanał",
- "channel_modal.publicChannel1": "Stwórz publiczny kanał",
- "channel_modal.publicChannel2": "Utworzyć nowy publiczny kanał, do którego każdy może dołączyć. ",
- "channel_modal.purpose": "Przeznaczenie",
- "channel_modal.purposeEx": "Np. \"Kanał do zgłaszania bugów i usprawnień\"",
- "channel_notifications.allActivity": "Dla wszystkich aktywności",
- "channel_notifications.allUnread": "Dla wszystkich nieprzeczytanych wiadomości",
- "channel_notifications.globalDefault": "Wartość domyślna ({notifyLevel})",
- "channel_notifications.markUnread": "Oznacz kanał jako nieprzeczytany",
- "channel_notifications.never": "Nigdy",
- "channel_notifications.onlyMentions": "Tylko na wzmianki",
- "channel_notifications.override": "Wybierając inną opcję niż \"domyślne\" zastąpi ona globalne ustawienia powiadomień. Powiadomienia na pulpicie są dostępne na Firefox, Safari i Chrome.",
- "channel_notifications.overridePush": "Wybranie innej opcji niż \"Globalne ustawienia domyślne\" nadpisze globalne ustawienia powiadomień mobilnych push w ustawieniach konta. Powiadomienia push muszą być włączone przez Admina Systemu.",
- "channel_notifications.preferences": "Ustawienia powiadomień dla",
- "channel_notifications.push": "Wyślij mobilne powiadomienia push",
- "channel_notifications.sendDesktop": "Wyświetlanie powiadomień na pulpicie",
- "channel_notifications.unreadInfo": "Nazwa kanału jest pogrubiona w pasku bocznym kanału jeśli są w nim nieprzeczytane wiadomości. Wybranie \"Tylko dla wzmianek\" pogrubi nazwę kanału tylko jeśli zostaniesz wspomniana/y.",
- "channel_select.placeholder": "--- Wybierz kanał ---",
- "channel_switch_modal.dm": "(Wiadomość bezpośrednia)",
- "channel_switch_modal.failed_to_open": "Otwarcie kanału nie powiodło się.",
- "channel_switch_modal.not_found": "Nie znaleziono dopasowań.",
- "channel_switch_modal.submit": "Przełącz",
- "channel_switch_modal.title": "Przełącz kanały",
- "claim.account.noEmail": "Nie podano adresu e-mail",
- "claim.email_to_ldap.enterLdapPwd": "Podaj ID i hasło dla twojego konta AD/LDAP",
- "claim.email_to_ldap.enterPwd": "Podaj hasło do konta e-mail dla {site}",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "Proszę wprowadzić identyfikator AD/LDAP:",
- "claim.email_to_ldap.ldapPasswordError": "Proszę wprowadzić hasło AD/LDAP.",
- "claim.email_to_ldap.ldapPwd": "Hasło AD/LDAP",
- "claim.email_to_ldap.pwd": "Hasło",
- "claim.email_to_ldap.pwdError": "Proszę wprowadzić hasło.",
- "claim.email_to_ldap.ssoNote": "Posiadasz już poprawne konto AD/LDAP",
- "claim.email_to_ldap.ssoType": "Po założeniu konta, będziesz mógł się zalogować tylko przez AD/LDAP",
- "claim.email_to_ldap.switchTo": "Przełącz konto na AD/LDAP",
- "claim.email_to_ldap.title": "Przełącz konto e-mail/hasło na AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Podaj hasło do konta dla {site}",
- "claim.email_to_oauth.pwd": "Hasło",
- "claim.email_to_oauth.pwdError": "Proszę wprowadzić hasło.",
- "claim.email_to_oauth.ssoNote": "Musisz posiadać poprawne konto {type}",
- "claim.email_to_oauth.ssoType": "Po założeniu konta, będziesz mógł się zalogować tylko przez {type} SSO",
- "claim.email_to_oauth.switchTo": "Przełącz konto na {uiType}",
- "claim.email_to_oauth.title": "Przełącz konto Email/hasło na {uiType}",
- "claim.ldap_to_email.confirm": "Potwierdź hasło",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "Proszę wprowadzić hasło AD/LDAP.",
- "claim.ldap_to_email.ldapPwd": "Hasło AD/LDAP",
- "claim.ldap_to_email.pwd": "Hasło",
- "claim.ldap_to_email.pwdError": "Proszę wprowadzić hasło.",
- "claim.ldap_to_email.pwdNotMatch": "Hasła nie zgadzają się.",
- "claim.ldap_to_email.switchTo": "Przełącz na adres e-mail/hasło",
- "claim.ldap_to_email.title": "Przełącz konto AD/LDAP na adres e-mail/hasło",
- "claim.oauth_to_email.confirm": "Potwierdź hasło",
- "claim.oauth_to_email.description": "Po zmianie rodzaju twojego konta, będziesz mógł się zalogować tylko za pomocą twojego emaila i hasła.",
- "claim.oauth_to_email.enterNewPwd": "Podaj nowe hasło do konta e-mail dla {site}",
- "claim.oauth_to_email.enterPwd": "Proszę wprowadzić hasło.",
- "claim.oauth_to_email.newPwd": "Nowe hasło",
- "claim.oauth_to_email.pwdNotMatch": "Hasła nie zgadzają się.",
- "claim.oauth_to_email.switchTo": "Przełącz {type} na e-mail i hasło",
- "claim.oauth_to_email.title": "Przełącz konto {type} na e-mail",
- "confirm_modal.cancel": "Anuluj",
- "connecting_screen": "Łączenie",
- "create_comment.addComment": "Dodaj komentarz...",
- "create_comment.comment": "Dodaj komentarz",
- "create_comment.commentLength": "Długość komentarza powinna być nie mniejsza niż {max} znaków.",
- "create_comment.commentTitle": "Komentarz",
- "create_comment.file": "Wysyłanie pliku",
- "create_comment.files": "Wysyłanie plików",
- "create_post.comment": "Komentarz",
- "create_post.error_message": "Wiadomość jest zbyt długa. Ilość znaków: {length}/{limit}",
- "create_post.post": "Napisz",
- "create_post.shortcutsNotSupported": "Skróty klawiszowe nie są obsługiwane na twoim urządzeniu.",
- "create_post.tutorialTip": "
Wysyłanie wiadomości
Wpisz tu wiadomość i naciśnij ENTER aby ją wysłać.
Kliknij w przycisk Załącznika aby wysłać obraz lub plik
",
- "create_post.write": "Napisz wiadomość...",
- "create_team.agreement": "Przechodząc do tworzenia swojego konta i użycia {siteName}, zgadzasz się na nasze Warunki Korzystania z Usługi i Zasad prywatności. Jeśli się nie zgadzasz, nie możesz użyć {siteName}.",
- "create_team.display_name.charLength": "Nazwa musi zawierać pomiędzy {min} a {max} znaków. Możesz dodać dłuższy opis zespołu później.",
- "create_team.display_name.nameHelp": "Nazwij swój język w dowolnym języku. Nazwa twojej drużyny pokazuje się w menu i nagłówkach.",
- "create_team.display_name.next": "Dalej",
- "create_team.display_name.required": "To pole jest wymagane",
- "create_team.display_name.teamName": "Nazwa zespołu",
- "create_team.team_url.back": "Przejdź do poprzedniego kroku",
- "create_team.team_url.charLength": "Nazwa musi mieć co najmniej {min} znaków ale nie więcej niż {max}",
- "create_team.team_url.creatingTeam": "Tworzenie zespołu ...",
- "create_team.team_url.finish": "Zakończ",
- "create_team.team_url.hint": "
Krótka i łatwa do zapamiętania jest najlepsza
Używaj małych liter, cyfr i myślników
Musi się zaczynać od litery i nie może się kończyć na myślniku
",
- "create_team.team_url.regex": "Używaj tylko małych liter, cyfr i myślników. Musi się zaczynać od litery i nie może się kończyć na myślniku.",
- "create_team.team_url.required": "To pole jest wymagane",
- "create_team.team_url.taken": "Ten URL zaczyna się od zarezerwowanego słowa albo jest niedostępny. Spróbuj innego.",
- "create_team.team_url.teamUrl": "Adres URL zespołu",
- "create_team.team_url.unavailable": "Ten adres URL jest nie dostępny. Proszę, spróbuj innego.",
- "create_team.team_url.webAddress": "Wybierz adres strony internetowej swojego nowego zespołu:",
- "custom_emoji.empty": "Nie znaleziono niestandardowych emotikon",
- "custom_emoji.header": "Własne emotikony",
- "custom_emoji.search": "Szukaj niestandardowych emotikon",
- "deactivate_member_modal.cancel": "Anuluj",
- "deactivate_member_modal.deactivate": "Dezaktywuj",
- "deactivate_member_modal.desc": "To działanie dezaktywuje {username}. Zostanie wylogowany i straci dostęp do zespołów i kanałów w tym systemie. Czy na pewno chcesz dezaktywować {username}?",
- "deactivate_member_modal.title": "Dezaktywuj {username}",
- "default_channel.purpose": "Wyślij tutaj wiadomości które chcesz aby każdy zobaczył. Każdy automatycznie zostaje stałym uczestnikiem tego kanału gdy dołączają do zespołu.",
- "delete_channel.cancel": "Anuluj",
- "delete_channel.confirm": "Potwierdź USUNIĘCIE kanału",
- "delete_channel.del": "Usuń",
- "delete_channel.question": "To usunie kanał z zespołu i sprawi że jego zawartość będzie niedostępna dla wszystkich użytkowników.
Na pewno chcesz usunąć kanał {display_name}?",
- "delete_post.cancel": "Anuluj",
- "delete_post.comment": "Komentarz",
- "delete_post.confirm": "Potwierdź usunięcie ({term})",
- "delete_post.del": "Usuń",
- "delete_post.post": "Post",
- "delete_post.question": "Jesteś pewien, że chcesz usunąć {term}?",
- "delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
- "edit_channel_header.editHeader": "Edytuj nagłówek kanału...",
- "edit_channel_header.previewHeader": "Edytuj nagłówek",
- "edit_channel_header_modal.cancel": "Anuluj",
- "edit_channel_header_modal.description": "Edytuj tekst pojawiający w nagłówku kanału, obok jego nazwy.",
- "edit_channel_header_modal.error": "Ten nagłówek kanału jest za długi, wpisz krótszą wersję",
- "edit_channel_header_modal.save": "Zapisz",
- "edit_channel_header_modal.title": "Zmień nagłówek dla {channel}",
- "edit_channel_header_modal.title_dm": "Edytuj nagłówek",
- "edit_channel_private_purpose_modal.body": "Ten tekst pojawia się w okienku \"Wyświetl informacje\" prywatnego kanału.",
- "edit_channel_purpose_modal.body": "Opisz w jak ten kanał powinien być wykorzystywany. Ten tekst pojawi się na liście kanałów w menu \"Wiecej...\" i pomaga innym zdecydować czy dołączyć do kanału.",
- "edit_channel_purpose_modal.cancel": "Anuluj",
- "edit_channel_purpose_modal.error": "Opis kanału jest za długi, wpisz krótszą wersję",
- "edit_channel_purpose_modal.save": "Zapisz",
- "edit_channel_purpose_modal.title1": "Zmień przeznaczenie",
- "edit_channel_purpose_modal.title2": "Edytuj Przeznaczenie",
- "edit_command.save": "Zaktualizuj",
- "edit_post.cancel": "Anuluj",
- "edit_post.edit": "Edytuj {title}",
- "edit_post.editPost": "Edytuj post...",
- "edit_post.save": "Zapisz",
- "email_signup.address": "Adres e-mail",
- "email_signup.createTeam": "Utwórz zespół",
- "email_signup.emailError": "Podaj poprawny adres e-mail.",
- "email_signup.find": "Znajdź moje zespoły",
- "email_verify.almost": "{siteName}: Prawie gotowe",
- "email_verify.failed": " Nie udało się wysłać potwierdzenia e-mail.",
- "email_verify.notVerifiedBody": "Proszę, zweryfikuj swój adres e-mail. Sprawdź Swoją skrzynkę e-mail.",
- "email_verify.resend": "Wyślij ponownie e-mail",
- "email_verify.sent": " E-mail weryfikacyjny został wysłany.",
- "email_verify.verified": "{siteName} E-mail zweryfikowany",
- "email_verify.verifiedBody": "
Twój adres e-mail został zweryfikowany! Kliknij tu aby się zalogować.
",
- "email_verify.verifyFailed": "Nie udało się zweryfikować adresu e-mail.",
- "emoji_list.actions": "Akcje",
- "emoji_list.add": "Dodaj własne emotikony",
- "emoji_list.creator": "Autor",
- "emoji_list.delete": "Usuń",
- "emoji_list.delete.confirm.button": "Usuń",
- "emoji_list.delete.confirm.msg": "Ta akcja na stałe usuwa niestandardowe emoji. Na pewno chcesz usunąć?",
- "emoji_list.delete.confirm.title": "Usuń Niestandardowe Emoji",
- "emoji_list.empty": "Nie Znaleziono Niestandardowych Emoji",
- "emoji_list.header": "Niestandardowe Emoji",
- "emoji_list.help": "Niestandardowe emoji są dostępne dla wszystkich na Twoim serwerze. W polu tekstowym wpisz ':', aby wyświetlić menu wyboru emotikonek. Inni użytkownicy mogą odświeżyć stronę przed pojawieniem się nowego emojisa.",
- "emoji_list.help2": "Wskazówka: Jeśli wpiszesz #, ##, lub ### jako pierwszy znak na nowej linii zawierającej emoji, możesz użyć emoji o większym rozmiarze. Spróbuj wysłać wiadomość jak np. '#:smile:'.",
- "emoji_list.image": "Obraz",
- "emoji_list.name": "Nazwa",
- "emoji_list.search": "Szukaj niestandardowych emotikon",
- "emoji_list.somebody": "Ktoś z innego zespołu",
- "emoji_picker.activity": "Aktywność",
- "emoji_picker.custom": "Niestandardowe",
- "emoji_picker.emojiPicker": "Wybieracz Emoji",
- "emoji_picker.flags": "Flagi",
- "emoji_picker.foods": "Jedzenie",
- "emoji_picker.nature": "Natura",
- "emoji_picker.objects": "Obiekty",
- "emoji_picker.people": "Ludzie",
- "emoji_picker.places": "Places",
- "emoji_picker.recent": "Ostatnio Używane",
- "emoji_picker.search": "Znajdź",
- "emoji_picker.symbols": "Symbole",
- "error.local_storage.help1": "Włącz ciasteczka",
- "error.local_storage.help2": "Wyłącz prywatne przeglądanie",
- "error.local_storage.help3": "Użyj wspieranej przeglądarki (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost nie mógł się załadować gdyż ustawienie twojej przeglądarki blokuje używanie funkcji \"Lokalnego magazynu\" (local storage). Aby uruchomić Mattermost spróbuj:",
- "error.not_found.link_message": "Wróć do Mattermost",
- "error.not_found.message": "Strona którą chcesz otworzyć nie istnieje",
- "error.not_found.title": "Nie odnaleziono strony",
- "error_bar.expired": "Licencja Enterprise wygasła i niektóre funkcje zostały wyłączone. Odnów licencję.",
- "error_bar.expiring": "Licencja Enterprise wygasa dnia {date}. Odnów licencję.",
- "error_bar.past_grace": "Licencja Enterprise wygasła i niektóre funkcje zostały wyłączone. Skontaktuj się z Administratorem.",
- "error_bar.preview_mode": "Tryb Podglądu: Powiadomienia email nie zostały skonfigurowane",
- "error_bar.site_url": "Proszę skonfiguruj twoje {docsLink} w {link}.",
- "error_bar.site_url.docsLink": "URL strony",
- "error_bar.site_url.link": "Konsola Systemowa",
- "error_bar.site_url_gitlab": "Proszę skonfiguruj swoje {docsLink} w Konsoli Systemowej albo w gitlab.rb jeśli używasz GitLab Mattermost.",
- "file_attachment.download": "Pobierz",
- "file_info_preview.size": "Rozmiar ",
- "file_info_preview.type": "Typ pliku ",
- "file_upload.disabled": "Załączniki zostały wyłączone.",
- "file_upload.fileAbove": "Plik powyżej {max} MB nie może zostać wysłany: {filename}",
- "file_upload.filesAbove": "Pliki powyżej {max} MB nie mogą zostać wysłane: {filenames}",
- "file_upload.limited": "Przesyłanie danych jest ograniczone do maksymalnie {count, number} plików. Proszę użyć dodatkowych postów, aby wysłać więcej plików.",
- "file_upload.pasted": "Obrazek wklejony o ",
- "filtered_channels_list.search": "Znajdź kanały",
- "filtered_user_list.any_team": "Wszyscy użytkownicy",
- "filtered_user_list.count": "{count, number} {count, plural, one {użytkownik} other {użytkowników}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {użytkownik} other {użytkowników}} z {total, number} razem",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {użytkownik} other {użytkowników}} z {total, number} razem",
- "filtered_user_list.member": "Użytkownik",
- "filtered_user_list.next": "Dalej",
- "filtered_user_list.prev": "Wstecz",
- "filtered_user_list.search": "Wyszukiwanie użytkowników",
- "filtered_user_list.searchButton": "Znajdź",
- "filtered_user_list.show": "Filtr:",
- "filtered_user_list.team_only": "Członkowie tego zespołu",
- "find_team.email": "E-mail",
- "find_team.findDescription": "Został wysłany email z linkami to każdego zespołu którego jesteś uczestnikiem.",
- "find_team.findTitle": "Znajdź swój zespół",
- "find_team.getLinks": "Pobierz email z linkami to wszystkich zespołów których jesteś uczestnikiem.",
- "find_team.placeholder": "you@domain.com",
- "find_team.send": "Wyślij",
- "find_team.submitError": "Podaj poprawny adres e-mail",
- "flag_post.flag": "Oznacz do obserwacji",
- "flag_post.unflag": "Usuń flagę",
- "general_tab.chooseDescription": "Proszę wybrać nową nazwę dla twojego zespołu",
- "general_tab.codeDesc": "Kliknij przycisk \"regeneruj\", aby odświeżyć kod zaproszenia.",
- "general_tab.codeLongDesc": "Kod zaproszenia jest używany jako część adresu URL w linku wygenerowanym przy pomocy {getTeamInviteLink} w menu głównym. Regeneracja tworzy nowy link dezaktywując poprzedni.",
- "general_tab.codeTitle": "Kod Zaproszenia",
- "general_tab.emptyDescription": "Kliknij przycisk \"Edytuj\", aby dodać opis zespołu.",
- "general_tab.getTeamInviteLink": "Uzyskaj link zaproszenia",
- "general_tab.includeDirDesc": "Zawarcie tej drużyny wyświetli nazwę drużyny z sekcji Katalog Zespołów ze Strony Głównej, oraz udostępni link to strony z logowaniem.",
- "general_tab.no": "Nie",
- "general_tab.openInviteDesc": "Kiedy włączone, link do tego zespołu będzie widoczny na stronie głównej pozwalając każdemu użytkownikowi z kontem dołączyć do niego.",
- "general_tab.openInviteTitle": "Pozwalają każdemu użytkownikowi z kontem na tym serwerze dołączyć do tego zespołu",
- "general_tab.regenerate": "Regeneruj",
- "general_tab.required": "To pole jest wymagane",
- "general_tab.teamDescription": "Opis zespołu",
- "general_tab.teamDescriptionInfo": "Opis zespołu dostarcza dodatkowych informacji, które pomagają użytkownikom wybrać odpowiedni zespół. Maksymalnie 50 znaków.",
- "general_tab.teamName": "Nazwa zespołu",
- "general_tab.teamNameInfo": "Określ nazwę zespołu, jest ona wyświetlana na ekranie logowania w górnej części lewego panelu.",
- "general_tab.title": "Ustawienia ogólne",
- "general_tab.yes": "Tak",
- "get_app.alreadyHaveIt": "Już ją masz?",
- "get_app.androidAppName": "Mattermost na Androida",
- "get_app.androidHeader": "Mattermost działa lepiej na naszej aplikacji na Androida",
- "get_app.continue": "kontynuuj",
- "get_app.continueWithBrowser": "Albo {link}",
- "get_app.continueWithBrowserLink": "kontynuuj z przeglądarką",
- "get_app.iosHeader": "Mattermost działa lepiej na aplikacji dla iPhone",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Otwórz Mattermost",
- "get_link.clipboard": " Link skopiowany",
- "get_link.close": "Zamknij",
- "get_link.copy": "Kopiuj odnośnik",
- "get_post_link_modal.help": "Link poniżej pozwala autoryzowanym użytkowników zobaczyć twoją wiadomość.",
- "get_post_link_modal.title": "Kopiuj link bezpośredni ",
- "get_public_link_modal.help": "Link poniżej pozwala komukolwiek zobaczyć ten plik bez potrzeby rejestracji na tym serwerze.",
- "get_public_link_modal.title": "Kopiuj link publiczny",
- "get_team_invite_link_modal.help": "Wyślij członkom zespołu poniższy odnośnik aby umożliwić im rejestrację w zespole. Poniższy odnośnik może być dzielony z wieloma członkami zespołu, gdyż nie ulega zmianie, chyba że jest regenerowany w ustawieniach zespołu przez Administratora zespołu.",
- "get_team_invite_link_modal.helpDisabled": "Tworzenie użytkowników zostało zablokowane w twoim zespole. Proszę zapytać Administratora Zespołu o szczegóły.",
- "get_team_invite_link_modal.title": "Link zapraszający do zespołu",
- "help.attaching.downloading": "#### Pobieranie Plików\nPobierz załączony plik, klikając ikonę pobierania obok miniatury plików lub otwierając podgląd pliku i klikając przycisk **Pobierz**.",
- "help.attaching.dragdrop": "#### Przeciągnij i upuść\nPrześlij plik lub zaznaczone pliki, przeciągając je z komputera do prawego paska bocznego lub środkowego panelu. Przeciąganie i upuszczanie przywiązuje pliki do pola wprowadzania wiadomości, a następnie można opcjonalnie wpisać wiadomość i nacisnąć **ENTER**, aby opublikować.",
- "help.attaching.icon": "#### Ikona załącznika\nAlternatywnie, wysyłaj pliki poprzez kliknięcie ikony szarego spinacza wewnątrz pola tekstowego wiadomości. Otworzy to systemowy eksplorator plików gdzie możesz nawigować do docelowego pliku i wybraż **Otwórz** aby wysłać pliki do pola tekstowego wiadomości. Opcjonalnie wpisz wiadomość i wciśnij **ENTER** aby wysłać.",
- "help.attaching.limitations": "## Limit rozmiaru pliku\nMattermost wspiera maksymalnie pięć załączonych plików do jednej wiadomości, każdy z nich maksymalnie po 50Mb.",
- "help.attaching.methods": "## Metody załączania plików\nZałącz plik za pomocą przeciągania i upuszczania lub klikając ikonę załącznika w polu wprowadzania wiadomości.",
- "help.attaching.notSupported": "Podgląd dokumentów (Word, Excel, PPT) nie jest obecnie wspierany.",
- "help.attaching.pasting": "#### Wklejanie Obrazów\nW Chrome i w przeglądarce Edge można również wgrywać pliki poprzez wklejanie ich ze schowka. Inne przeglądarki jeszcze tego nie wspierają.",
- "help.attaching.previewer": "## Podgląd plików \nMattermost posiada wbudowany podgląd plików, który służy do przeglądania plików multimedialnych, pobierania plików i udostępniania linków publicznych. Kliknij miniaturkę dołączonego pliku, aby ją otworzyć w podglądzie plików.",
- "help.attaching.publicLinks": "#### Udostępnianie linków publicznych \nPubliczne linki pozwalają udostępniać załączniki plików osobom spoza zespołu Mattermost. Otwórz przeglądarkę plików, klikając miniaturę załącznika, a następnie kliknij **Pobierz link publiczny**. Spowoduje to otwarcie okna dialogowego z linkiem do skopiowania. Gdy link jest udostępniany i otwierany przez innego użytkownika, plik zostanie automatycznie pobrany.",
- "help.attaching.publicLinks2": "Jeśli **Pobierz link publiczny*** nie jest widoczny w przeglądarce plików i wolisz włączoną funkcję, możesz poprosić administratora systemu o włączenie funkcji z konsoli systemowej w sekcji **Bezpieczeństwo**> **Linki publiczne**.",
- "help.attaching.supported": "#### Wspierane formaty plików multimedialnych \nJeśli próbujesz wyświetlić podgląd pliku multimedialnego, który nie jest obsługiwany, przeglądarka plików otworzy standardową ikonę załącznika mediów. Obsługiwane formaty plików multimedialnych zależą od przeglądarki i systemu operacyjnego, ale w większości przeglądarek obsługiwane są przez Mattermost następujące formaty:",
- "help.attaching.supportedList": "- Zdjęcia: BMP, GIF, JPG, JPEG, PNG\n- Wideo: MP4\n- Audio: MP3, M4A\n- Dokumenty: PDF",
- "help.attaching.title": "# Dołączanie plików\n_____",
- "help.commands.builtin": "## Wbudowane polecenia\nPoniższe komendy są dostępne we wszystkich instalacjach Mattermost:",
- "help.commands.builtin2": "Zacznij od wpisania `/`, a obok pola wprowadzania tekstu pojawi się lista poleceń. Propozycje pomagają dostarczyć przykładowy format w czarnym tekście i krótki opis komendy w szarym tekście.",
- "help.commands.custom": "## Custom Commands\nCustom slash commands integrate with external applications. For example, a team might configure a custom slash command to check internal health records with `/patient joe smith` or check the weekly weather forecast in a city with `/weather toronto week`. Check with your System Admin or open the autocomplete list by typing `/` to determine if your team configured any custom slash commands.",
- "help.commands.custom2": "Custom slash commands are disabled by default and can be enabled by the System Admin in the **System Console** > **Integrations** > **Webhooks and Commands**. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Slash commands perform operations in Mattermost by typing into the text input box. Enter a `/` followed by a command and some arguments to perform actions.\n\nBuilt-in slash commands come with all Mattermost installations and custom slash commands are configurable to interact with external applications. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Wykonywanie poleceń\n___",
- "help.composing.deleting": "## Usuwanie wiadomości \nUsuń wiadomość, klikając ikonę ** [...] ** obok dowolnego tekstu wiadomości, a następnie kliknij przycisk ** Usuń **. Administratorzy systemów i zespołów mogą usuwać dowolną wiadomość z systemu lub zespołu.",
- "help.composing.editing": "## Edytowanie wiadomości \nEdytuj wiadomość, klikając ikonę **[...]** obok dowolnego tekstu wiadomości, a następnie kliknij **Edytuj**. Po dokonaniu modyfikacji tekstu wiadomości naciśnij **ENTER**, aby zapisać zmiany. Edycja wiadomości nie powodują powiadomień nowych @wspomnień, powiadomień na pulpicie ani powiadomień",
- "help.composing.linking": "## Linking to a message\nThe **Permalink** feature creates a link to any message. Sharing this link with other users in the channel lets them view the linked message in the Message Archives. Users who are not a member of the channel where the message was posted cannot view the permalink. Get the permalink to any message by clicking the **[...]** icon next to the message text > **Permalink** > **Copy Link**.",
- "help.composing.posting": "## Wysyłanie wiadomości \nNapisz wiadomość, wpisując ją w polu tekstowym, a następnie naciśnij klawisz ENTER, aby ją wysłać. Użyj klawiszy SHIFT+ENTER, aby utworzyć nową linię bez wysyłania wiadomości. Aby wysłać wiadomości, naciskając klawisze CTRL+ENTER, przejdź do **Menu główne > Ustawienia konta > Wysyłaj wiadomości przez CTRL+ENTER**.",
- "help.composing.posts": "#### Posts\nPosts can be considered parent messages. They are the messages that often start a thread of replies. Posts are composed and sent from the text input box at the bottom of the center pane.",
- "help.composing.replies": "#### Odpowiedzi \nOdpowiedz na wiadomość, klikając ikonę odpowiedzi obok dowolnego tekstu. To działanie otwiera pasek boczny po prawej stronie, w którym możesz zobaczyć wątek wiadomości, a następnie skomponować i wysłać odpowiedź. Odpowiedzi są nieco wcięte w środkowym panelu, aby wskazać, że są to wiadomości podrzędne. \n\nPodczas tworzenia odpowiedzi po prawej stronie kliknij ikonę rozwijania/zwijania za pomocą dwóch strzałek u góry paska bocznego, aby ułatwić czytanie.",
- "help.composing.title": "# Wysyłanie wiadomości\n_____",
- "help.composing.types": "## Message Types\nReply to posts to keep conversations organized in threads.",
- "help.formatting.checklist": "Zrób listę zadań poprzez użycie nawiasów kwadratowych:",
- "help.formatting.checklistExample": "- [ ] Zadanie pierwsze\n- [ ] Zadanie drugie\n- [x] Zadanie trzecie",
- "help.formatting.code": "## Blok kodu źródłowego\n\nOznacz blok kodu poprzez rozpoczęcie każdej linii 4 spacjami, lub poprzez wstawienie ``` w linii przed początkiem bloku kodu i po zakończeniu kodu źródłowego (w jednej wiadomości).",
- "help.formatting.codeBlock": "Blok kodu",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nOtwórz autouzupełnianie emoji, wpisując `:`. Pełną liste emojis można znaleźć [tutaj] (http://www.emoji-cheat-sheet.com/). Możliwe jest również utworzenie własnego [Niestandardowe emoji] (http://docs.mattermost.com/help/settings/custom-emoji.html), jeśli emoji, które chcesz używać, nie istnieje.",
- "help.formatting.example": "Przykład:",
- "help.formatting.githubTheme": "**GitHub Theme**",
- "help.formatting.headings": "## Nagłówki \n\nUtwórz nagłówek, wpisując # i spację przed tytułem. W przypadku mniejszych nagłówków użyj więcej #.",
- "help.formatting.headings2": "Alternatywnie można podkreślić tekst za pomocą `===` lub `---`, aby utworzyć nagłówki.",
- "help.formatting.headings2Example": "Duży nagłówek\n-------------",
- "help.formatting.headingsExample": "## Duży nagłówek\n### Mniejszy nagłówek\n#### Jeszcze mniejszy nagłówek",
- "help.formatting.images": "## In-line Images\n\nCreate in-line images using an `!` followed by the alt text in square brackets and the link in normal brackets. Add hover text by placing it in quotes after the link.",
- "help.formatting.imagesExample": "\n\nand\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## In-line Code\n\nCreate in-line monospaced font by surrounding it with backticks.",
- "help.formatting.intro": "Markdown makes it easy to format messages. Type a message as you normally would, and use these rules to render it with special formatting.",
- "help.formatting.lines": "## Linie \n\nUtwórz linię, używając trzech `*`, `_` lub` -`.",
- "help.formatting.linkEx": "[Wypróbuj Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Links\n\nCreate labeled links by putting the desired text in square brackets and the associated link in normal brackets.",
- "help.formatting.listExample": "* pierwsza pozycja \n* druga pozycja \n * podpunkt",
- "help.formatting.lists": "## Listy \n\nUtwórz listę za pomocą `*` lub `-` jako punkty. Wcięcie podpunkt dodając dwie spacje przed nim.",
- "help.formatting.monokaiTheme": "**Monokai Theme**",
- "help.formatting.ordered": "Uczyń tą listę, listą numerowana używając numerów zamiast:",
- "help.formatting.orderedExample": "1. punkt pierwszy\n2. punkt drugi",
- "help.formatting.quotes": "## Cytat \n\nUtwórz cytaty za pomocą `>`.",
- "help.formatting.quotesExample": "`> cytat` wyświetli się:",
- "help.formatting.quotesRender": "> cytat",
- "help.formatting.renders": "Wyświetli się:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark Theme**",
- "help.formatting.solirizedLightTheme": "**Solarized Light Theme**",
- "help.formatting.style": "## Style tekstu\n\nMożesz użyć `_` albo `*` wokół słowa, aby tekst był pochylony. Dwa znaki to pogrubienie.\n\n* `_pochylony_` wyświetla tekst jako _pochylony_\n* `**pogrubiony**` wyświetla tekst jako **pogrubiony**\n* `**_pogrubiony-pochylony_**` wyświetla tekst jako **_pogrubiony-pochylony_**\n* `~~przekreślony~~` wyświetla tekst jako ~~przekreślony~~",
- "help.formatting.supportedSyntax": "Wspierane języki:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Syntax Highlighting\n\nTo add syntax highlighting, type the language to be highlighted after the ``` at the beginning of the code block. Mattermost also offers four different code themes (GitHub, Solarized Dark, Solarized Light, Monokai) that can be changed in **Account Settings** > **Display** > **Theme** > **Custom Theme** > **Center Channel Styles**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| Wyrównaj do lewej | Wyśrodkowanie | Wyrównaj do prawej |\n| :------------ |:---------------:| -----:|\n| Lewa kolumna 1 | ten tekst | $100 |\n| Lewa kolumna 2 | jest | $10 |\n| Lewa kolumna 3 | wyśrodkowany | $1 |",
- "help.formatting.tables": "## Tables\n\nCreate a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.",
- "help.formatting.title": "# Formatowanie tekstu\n_____",
- "help.learnMore": "Dowiedz się więcej:",
- "help.link.attaching": "Załączanie plików",
- "help.link.commands": "Wykonywanie poleceń",
- "help.link.composing": "Tworzenie wiadomości i odpowiedzi",
- "help.link.formatting": "Formatowanie wiadomości przy użyciu znaczników",
- "help.link.mentioning": "Wspomnienie kolegów z zespołu",
- "help.link.messaging": "Basic Messaging",
- "help.mentioning.channel": "#### @Channel\nYou can mention an entire channel by typing `@channel`. All members of the channel will receive a mention notification that behaves the same way as if the members had been mentioned personally.",
- "help.mentioning.channelExample": "@channel great work on interviews this week. I think we found some excellent potential candidates!",
- "help.mentioning.mentions": "## @Mentions\nUse @mentions to get the attention of specific team members.",
- "help.mentioning.recent": "## Recent Mentions\nClick `@` next to the search box to query for your most recent @mentions and words that trigger mentions. Click **Jump** next to a search result in the right-hand sidebar to jump the center pane to the channel and location of the message with the mention.",
- "help.mentioning.title": "# Mentioning Teammates\n_____",
- "help.mentioning.triggers": "## Words That Trigger Mentions\nIn addition to being notified by @username and @channel, you can customize words that trigger mention notifications in **Account Settings** > **Notifications** > **Words that trigger mentions**. By default, you will receive mention notifications on your first name, and you can add more words by typing them into the input box separated by commas. This is useful if you want to be notified of all posts on certain topics, for example, \"interviewing\" or \"marketing\".",
- "help.mentioning.username": "#### @Username\nYou can mention a teammate by using the `@` symbol plus their username to send them a mention notification.\n\nType `@` to bring up a list of team members who can be mentioned. To filter the list, type the first few letters of any username, first name, last name, or nickname. The **Up** and **Down** arrow keys can then be used to scroll through entries in the list, and pressing **ENTER** will select which user to mention. Once selected, the username will automatically replace the full name or nickname.\nThe following example sends a special mention notification to **alice** that alerts her of the channel and message where she has been mentioned. If **alice** is away from Mattermost and has [email notifications](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) turned on, then she will receive an email alert of her mention along with the message text.",
- "help.mentioning.usernameCont": "If the user you mentioned does not belong to the channel, a System Message will be posted to let you know. This is a temporary message only seen by the person who triggered it. To add the mentioned user to the channel, go to the dropdown menu beside the channel name and select **Add Members**.",
- "help.mentioning.usernameExample": "@alice jak twoja rozmowa z nowym kandydatem?",
- "help.messaging.attach": "**Załączaj pliki** przeciągając je do Mattermost lub klikając na przycisk \"załącz plik\" w polu wprowadzania wiadomości.",
- "help.messaging.emoji": "**Szybko dodawaj emotikony** wpisując \":\", który otwiera autouzupełnianie emotikon. Jeśli istniejące emotikony nie pokrywają tego co chcesz wyrazić, można również dodać własne [niestandardowe emotikony](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Formotuj swoję wiadomości** używając Markdown który obsługuje stylowanie tekstu, nagłówki, linki, emotikony, bloki kodu, cytaty, tabele, listy i obrazy.",
- "help.messaging.notify": "**Powiadom znajomych** gdy są potrzebni, wpisując `@nick`.",
- "help.messaging.reply": "**Odpowiadaj na wiadomości**, klikając strzałkę obok tekstu wiadomości.",
- "help.messaging.title": "# Podstawy pisania wiadomości\n_____",
- "help.messaging.write": "**Pisz wiadomości** używając pola tekstowego na dole Mattermost. Naciśnij klawisz ENTER aby wysłać wiadomość. Użyj SHIFT+ENTER aby utworzyć nową linie bez wysyłania wiadomości.",
- "installed_command.header": "Polecenia",
- "installed_commands.add": "Dodaj Polecenie",
- "installed_commands.delete.confirm": "Skasowanie polecenia slash uszkodzi wszystkie integracje, które je wykorzystują. Czy jesteś pewien, że chcesz je skasować?",
- "installed_commands.empty": "Nie znaleziono poleceń",
- "installed_commands.header": "Polecenia",
- "installed_commands.help": "Use slash commands to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_commands.help.appDirectory": "App Directory",
- "installed_commands.help.buildYourOwn": "Build your own",
- "installed_commands.search": "Szukaj poleceń",
- "installed_commands.unnamed_command": "Nienazwane polecenie",
- "installed_incoming_webhooks.add": "Dodaj przychodzący Webhook",
- "installed_incoming_webhooks.delete.confirm": "Skasowanie przychodzącego webhooka uszkodzi wszystkie integracje, które go wykorzystują. Czy jesteś pewien, że chcesz go skasować?",
- "installed_incoming_webhooks.empty": "Nie znaleziono wychodzących webhook'ów",
- "installed_incoming_webhooks.header": "Przychodzące Webhooki",
- "installed_incoming_webhooks.help": "Use incoming webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_incoming_webhooks.help.appDirectory": "App Directory",
- "installed_incoming_webhooks.help.buildYourOwn": "Build your own",
- "installed_incoming_webhooks.search": "Szukaj wychodzących webhooków",
- "installed_incoming_webhooks.unknown_channel": "Prywatny webhook",
- "installed_integrations.callback_urls": "Adresy zwrotne: {urls}",
- "installed_integrations.client_id": "Identyfikator klienta: {clientId}",
- "installed_integrations.client_secret": "Hasło klienta: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Utworzono przez {creator}, dnia {createAt, date, full}",
- "installed_integrations.delete": "Usuń",
- "installed_integrations.edit": "Edycja",
- "installed_integrations.hideSecret": "Ukryj hasło",
- "installed_integrations.regenSecret": "Wygeneruj ponownie hasło",
- "installed_integrations.regenToken": "Wygeneruj ponownie token",
- "installed_integrations.showSecret": "Pokaż hasło",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Aktywuj gdy: {triggerWhen}",
- "installed_integrations.triggerWords": "Słowa wyzwalające: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Nienazwane aplikacje OAuth 2.0",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "Dodaj aplikację OAuth 2.0",
- "installed_oauth_apps.callbackUrls": "Zwrotne adresy URL (jeden na linię)",
- "installed_oauth_apps.cancel": "Anuluj",
- "installed_oauth_apps.delete.confirm": "Skasowanie aplikacji OAuth 2.0 uszkodzi wszystkie integracje, które ją wykorzystują. Czy jesteś pewien, że chcesz ją skasować? ",
- "installed_oauth_apps.description": "Opis",
- "installed_oauth_apps.empty": "Nie znaleziono aplikacji OAuth 2.0",
- "installed_oauth_apps.header": "Aplikacje OAuth 2.0",
- "installed_oauth_apps.help": "Create {oauthApplications} to securely integrate bots and third-party apps with Mattermost. Visit the {appDirectory} to find available self-hosted apps.",
- "installed_oauth_apps.help.appDirectory": "App Directory",
- "installed_oauth_apps.help.oauthApplications": "Aplikacje OAuth 2.0",
- "installed_oauth_apps.homepage": "Strona domowa",
- "installed_oauth_apps.iconUrl": "URL ikony",
- "installed_oauth_apps.is_trusted": "Jest Zaufany: {isTrusted}",
- "installed_oauth_apps.name": "Nazwa wyświetlana",
- "installed_oauth_apps.save": "Zapisz",
- "installed_oauth_apps.search": "Szukaj aplikacji OAuth 2.0",
- "installed_oauth_apps.trusted": "Jest Zaufany",
- "installed_oauth_apps.trusted.no": "Nie",
- "installed_oauth_apps.trusted.yes": "Tak",
- "installed_outgoing_webhooks.add": "Dodaj wychodzący Webhook",
- "installed_outgoing_webhooks.delete.confirm": "Skasowanie wychodzącego webhooka uszkodzi wszystkie integracje, które go wykorzystują. Czy jesteś pewien, że chcesz go skasować? ",
- "installed_outgoing_webhooks.empty": "Nie znaleziono wychodzących webhooków",
- "installed_outgoing_webhooks.header": "Wychodzące Webhooki",
- "installed_outgoing_webhooks.help": "Use outgoing webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_outgoing_webhooks.help.appDirectory": "App Directory",
- "installed_outgoing_webhooks.help.buildYourOwn": "Build your own",
- "installed_outgoing_webhooks.search": "Szukaj wychodzącego webhooka",
- "installed_outgoing_webhooks.unknown_channel": "Prywatny webhook",
- "integrations.add": "Dodaj",
- "integrations.command.description": "Slash commands send events to external integrations",
- "integrations.command.title": "Polecenie Slash",
- "integrations.delete.confirm.button": "Usuń",
- "integrations.delete.confirm.title": "Usuń integrację",
- "integrations.done": "Ukończono",
- "integrations.edit": "Edycja",
- "integrations.header": "Integracje",
- "integrations.help": "Visit the {appDirectory} to find self-hosted, third-party apps and integrations for Mattermost.",
- "integrations.help.appDirectory": "App Directory",
- "integrations.incomingWebhook.description": "Przychodzące webhooki pozwalają zewnętrznym integracją wysyłać wiadomości",
- "integrations.incomingWebhook.title": "Przychodzący Webhook",
- "integrations.oauthApps.description": "OAuth 2.0 allows external applications to make authorized requests to the Mattermost API.",
- "integrations.oauthApps.title": "Aplikacje OAuth 2.0",
- "integrations.outgoingWebhook.description": "Wychodzące webhooki pozwalają zewnętrznym integracją otrzymywać wiadomości i na nie odpowiadać",
- "integrations.outgoingWebhook.title": "Wychodzący Webhook",
- "integrations.successful": "Konfiguracja pomyślna",
- "intro_messages.DM": "To początek historii wiadomości z użytkownikiem {teammate}. Bezpośrednie wiadomości i wysłane w nich pliki nie są widoczne dla osób spoza tego obszaru.",
- "intro_messages.GM": "To początek historii wiadomości z użytkownikiem {names}. Bezpośrednie wiadomości i wysłane w nich pliki nie są widoczne dla osób spoza tego obszaru.",
- "intro_messages.anyMember": " Każdy użytkownik może dołączyć i przeczytać ten kanał.",
- "intro_messages.beginning": "Początek {name}",
- "intro_messages.channel": "kanału",
- "intro_messages.creator": "To jest początek {type} {name}, stworzonego/ej przez {creator} dnia {date}.",
- "intro_messages.default": "
Początek {display_name}
Witamy na {display_name}!
Zamieszczaj tutaj wiadomości, które chcesz aby zobaczyli wszyscy. Wszyscy automatycznie stają się stałymi członkami tego kanału, gdy dołączyli do zespołu.
",
- "intro_messages.group": "kanał prywatny",
- "intro_messages.group_message": "To jest początek historii wiadomości grupowych z tymi zespołami. Wiadomości i pliki udostępnione w tym miejscu nie są wyświetlane osobom spoza tego obszaru.",
- "intro_messages.invite": "Zaproś innych do {type}",
- "intro_messages.inviteOthers": "Zaproś innych do tego zespołu",
- "intro_messages.noCreator": "To początek {type} {name}, utworzony {date}.",
- "intro_messages.offTopic": "
Początek {display_name}
To jest początek {display_name}, kanału przeznaczonego do rozmów niezwiązanych z pracą.
",
- "intro_messages.onlyInvited": " Tylko zaproszeni użytkownicy mogą zobaczyć ten prywatny kanał.",
- "intro_messages.purpose": " Celem {type}u jest: {purpose}.",
- "intro_messages.setHeader": "Ustaw tytuł",
- "intro_messages.teammate": "To początek historii wiadomości z użytkownikiem. Bezpośrednie wiadomości i wysłane w nich pliki nie są widoczne dla osób spoza tego obszaru.",
- "invite_member.addAnother": "Dodaj jeszcze",
- "invite_member.autoJoin": "Zaproszeni ludzie automatycznie dołączą do kanału {channel}",
- "invite_member.cancel": "Anuluj",
- "invite_member.content": "E-mail jest obecnie wyłączony dla Twojego zespołu, a zaproszenia na e-mail nie mogą być wysłane. Skontaktuj się z administratorem systemu, aby włączyć zaproszenia i e-mail.",
- "invite_member.disabled": "Tworzenie użytkowników zostało zablokowane w twoim zespole. Proszę zapytać Administratora Zespołu o szczegóły.",
- "invite_member.emailError": "Podaj poprawny adres e-mail",
- "invite_member.firstname": "Imię",
- "invite_member.inviteLink": "Uzyskaj link zaproszenia",
- "invite_member.lastname": "Nazwisko",
- "invite_member.modalButton": "Tak, Porzuć",
- "invite_member.modalMessage": "Masz niewysłane zaproszenia, jesteś pewien, że chcesz je porzucić?",
- "invite_member.modalTitle": "Odrzucić zaproszenie?",
- "invite_member.newMember": "Wyślij zaproszenie e-mailem",
- "invite_member.send": "Wyślij Zaproszenie",
- "invite_member.send2": "Wyślij Zaproszenia",
- "invite_member.sending": "Wysyłanie",
- "invite_member.teamInviteLink": "Możesz także zaprosić ludzi podając im ten {link}.",
- "ldap_signup.find": "Znajdź moje zespoły",
- "ldap_signup.ldap": "Tworzenie zespołu z konta AD/LDAP",
- "ldap_signup.length_error": "Nazwa musi mieć co najmniej 3 znaków ale nie więcej niż 15",
- "ldap_signup.teamName": "Wprowadź nazwę nowego zespołu",
- "ldap_signup.team_error": "Proszę wprowadzić nazwę zespołu.",
- "leave_private_channel_modal.leave": "Tak, opuść kanał",
- "leave_private_channel_modal.message": "Na pewno chcesz opuścić prywatny kanał {channel}? Musisz zostać zaproszony ponownie, aby ponownie dołączyć do tego kanału w przyszłości.",
- "leave_private_channel_modal.title": "Opuść kanał prywatny {channel}",
- "leave_team_modal.desc": "Zostaniesz usunięty ze wszystkich publicznych i prywatnych kanałów. Jeśli zespół jest prywatny, nie będziesz mógł wrócić do zespołu. Jesteś pewny?",
- "leave_team_modal.no": "Nie",
- "leave_team_modal.title": "Opuścić zespół?",
- "leave_team_modal.yes": "Tak",
- "loading_screen.loading": "Wczytywanie",
- "login.changed": " Metoda logowania została zmieniona pomyślnie",
- "login.create": "Utwórz teraz",
- "login.createTeam": "Utwórz nowy zespół",
- "login.createTeamAdminOnly": "Ta opcja jest dostępna tylko dla administratorów systemu i nie jest widoczna dla innych użytkowników.",
- "login.email": "E-mail",
- "login.find": "Znajdź inne zespoły",
- "login.forgot": "Zapomniałem hasła",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Hasło jest nieprawidłowe.",
- "login.ldapUsername": "Nazwa użytkownika AD/LDAP",
- "login.ldapUsernameLower": "Nazwa użytkownika AD/LDAP",
- "login.noAccount": "Nie masz konta? ",
- "login.noEmail": "Podaj adres e-mail",
- "login.noEmailLdapUsername": "Proszę, wpisz swój adres e-mail lub {ldapUsername}",
- "login.noEmailUsername": "Proszę, wpisz adres e-mail lub nazwę użytkownika",
- "login.noEmailUsernameLdapUsername": "Proszę, wpisz adres e-mail, nazwa użytkownika lub {ldapUsername}",
- "login.noLdapUsername": "Proszę wprowadzić {ldapUsername}",
- "login.noMethods": "Żadne metody logowania nie są włączone. Skontaktuj się z administratorem systemu.",
- "login.noPassword": "Proszę wprowadzić hasło.",
- "login.noUsername": "Proszę wprowadź nazwę użytkownika",
- "login.noUsernameLdapUsername": "Proszę, wpisz login lub {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "na {siteName}",
- "login.or": "lub",
- "login.password": "Hasło",
- "login.passwordChanged": " Hasło zostało pomyślnie zaktualizowane",
- "login.placeholderOr": " lub ",
- "login.session_expired": " Sesja wygasła. Zaloguj się ponownie.",
- "login.signIn": "Zaloguj się",
- "login.signInLoading": "Logowanie...",
- "login.signInWith": "Zaloguj się z:",
- "login.userNotFound": "Nie mogliśmy znaleźć konta pasującego do danych logowania.",
- "login.username": "Nazwa użytkownika",
- "login.verified": " E-Mail został zweryfikowany",
- "login_mfa.enterToken": "Aby zakończyć procedurę logowania, proszę wpisać token uwierzytelniający z smartfonu",
- "login_mfa.submit": "Wyślij",
- "login_mfa.token": "MFA Token",
- "login_mfa.tokenReq": "Wprowadź token MFA",
- "member_item.makeAdmin": "Zrób administratorem",
- "member_item.member": "Użytkownik",
- "member_list.noUsersAdd": "Brak użytkowników do dodania.",
- "members_popover.manageMembers": "Zarządzaj użytkownikami",
- "members_popover.msg": "Wiadomość",
- "members_popover.title": "Członkowie kanału",
- "members_popover.viewMembers": "Wyświetl użytkowników",
- "mfa.confirm.complete": "Konfiguracja ukończona!",
- "mfa.confirm.okay": "OK",
- "mfa.confirm.secure": "Twoje konto jest teraz bezpieczne. Gdy następnym razem zalogujesz się, zostaniesz poproszony o podanie kodu z aplikacji Google Authenticator na telefonie.",
- "mfa.setup.badCode": "Zły kod. Jeśli problem nie ustąpi, skontaktuj się z administratorem systemu.",
- "mfa.setup.code": "MFA Code",
- "mfa.setup.codeError": "Wprowadź kod z Google Authenticator.",
- "mfa.setup.required": "{siteName} wymaga wieloskładnikowego uwierzytelniania.",
- "mfa.setup.save": "Zapisz",
- "mfa.setup.secret": "Secret: {secret}",
- "mfa.setup.step1": "Krok 1: Na twoim telefonie pobierz Google Authenticator z iTunes lub Google Play",
- "mfa.setup.step2": "Krok 2: Uży Google Authenticator do zeskanowania kodu QR, lub recznie wpisz sekretny klucz",
- "mfa.setup.step3": "Krok 3: Wpisz kod wygenerowany przez Google Authenticator",
- "mfa.setupTitle": "Ustawienia autoryzacji wieloskładnikowej",
- "mobile.about.appVersion": "Wersja aplikacji: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. Wszelkie prawa zastrzeżone.",
- "mobile.about.database": "Baza danych: {type}",
- "mobile.about.serverVersion": "Wersja serwera: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Wersja serwera: {version}",
- "mobile.account.notifications.email.footer": "W trybie offline lub poza domem przez ponad pięć minut",
- "mobile.account_notifications.mentions_footer": "Twoja nazwa użytkownika (\"@{username}\") zawsze wywoła wzmianki.",
- "mobile.account_notifications.non-case_sensitive_words": "Other non-case sensitive words...",
- "mobile.account_notifications.reply.header": "Wyślij powiadomienia o odpowiedzi do",
- "mobile.account_notifications.threads_mentions": "Wzmianki w wątkach",
- "mobile.account_notifications.threads_start": "Wątki, które rozpocząłem",
- "mobile.account_notifications.threads_start_participate": "Wątki, które rozpocząłem lub w których uczestniczę",
- "mobile.advanced_settings.reset_button": "Reset",
- "mobile.advanced_settings.reset_message": "\nThis will reset all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.advanced_settings.reset_title": "Reset Cache",
- "mobile.advanced_settings.title": "Zaawansowane ustawienia",
- "mobile.channel_drawer.search": "Przeskocz do konwersacji",
- "mobile.channel_info.alertMessageDeleteChannel": "Jesteś pewien, że chcesz usunąć {term} {name}?",
- "mobile.channel_info.alertMessageLeaveChannel": "Jesteś pewien, że chcesz opuścić {term} {name}?",
- "mobile.channel_info.alertNo": "Nie",
- "mobile.channel_info.alertTitleDeleteChannel": "{term} - Usuń",
- "mobile.channel_info.alertTitleLeaveChannel": "{term} - Opuść",
- "mobile.channel_info.alertYes": "Tak",
- "mobile.channel_info.delete_failed": "We couldn't delete the channel {displayName}. Please check your connection and try again.",
- "mobile.channel_info.privateChannel": "Prywatny kanał",
- "mobile.channel_info.publicChannel": "Kanał publiczny",
- "mobile.channel_list.alertMessageLeaveChannel": "Jesteś pewien, że chcesz usunąć {term} {name}?",
- "mobile.channel_list.alertNo": "Nie",
- "mobile.channel_list.alertTitleLeaveChannel": "{term} - Opuść",
- "mobile.channel_list.alertYes": "Tak",
- "mobile.channel_list.closeDM": "Zamknij wiadomość bezpośrednią",
- "mobile.channel_list.closeGM": "Zamknij wiadomość grupową",
- "mobile.channel_list.dm": "Wiadomość bezpośrednia",
- "mobile.channel_list.gm": "Wiadomość grupowa",
- "mobile.channel_list.not_member": "NIE JEST UŻYTKOWNIKIEM",
- "mobile.channel_list.open": "Otwórz {term}",
- "mobile.channel_list.openDM": "Otwórz wiadomość bezpośrednią",
- "mobile.channel_list.openGM": "Open Group Message",
- "mobile.channel_list.privateChannel": "Kanał prywatny",
- "mobile.channel_list.publicChannel": "Kanał publiczny",
- "mobile.channel_list.unreads": "UNREADS",
- "mobile.components.channels_list_view.yourChannels": "Twoje kanały:",
- "mobile.components.error_list.dismiss_all": "Odrzuć wszystkie",
- "mobile.components.select_server_view.continue": "Kontynuuj",
- "mobile.components.select_server_view.enterServerUrl": "Wprowadź adres URL serwera",
- "mobile.components.select_server_view.proceed": "Kontynuuj",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Utwórz",
- "mobile.create_channel.private": "Nowy kanał prywatny",
- "mobile.create_channel.public": "Nowy kanał publiczny",
- "mobile.custom_list.no_results": "Brak wyników",
- "mobile.drawer.teamsTitle": "Zespoły",
- "mobile.edit_post.title": "Edycja Wiadomości",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Relaunch",
- "mobile.error_handler.description": "\nClick relaunch to open the app again. After restart, you can report the problem from the settings menu.\n",
- "mobile.error_handler.title": "Unexpected error occurred",
- "mobile.file_upload.camera": "Zrób Zdjęcie lub nagraj Film",
- "mobile.file_upload.library": "Biblioteka Zdjęć",
- "mobile.file_upload.more": "Więcej",
- "mobile.file_upload.video": "Biblioteka wideo",
- "mobile.help.title": "Pomoc",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "To początek historii wiadomości z użytkownikiem {teammate}. Bezpośrednie wiadomości i wysłane w nich pliki nie są widoczne dla osób spoza tego obszaru.",
- "mobile.intro_messages.default_message": "To jest pierwszy kanał który zobaczą członkowie zespołu po zarejestrowaniu się - używaj go do publikowania informacji, o których wszyscy muszą wiedzieć.",
- "mobile.intro_messages.default_welcome": "Witaj w {name}!",
- "mobile.join_channel.error": "We couldn't join the channel {displayName}. Please check your connection and try again.",
- "mobile.loading_channels": "Wczytuję kanały...",
- "mobile.loading_members": "Wczytuję członków...",
- "mobile.loading_posts": "Wczytuję wiadomości...",
- "mobile.login_options.choose_title": "Wybierz metodę logowania",
- "mobile.managed.blocked_by": "Blocked by {vendor}",
- "mobile.managed.exit": "Edycja",
- "mobile.managed.jailbreak": "Jailbroken devices are not trusted by {vendor}, please exit the app.",
- "mobile.managed.secured_by": "Secured by {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Start",
- "mobile.more_dms.title": "New Conversation",
- "mobile.notice_mobile_link": "mobile apps",
- "mobile.notice_platform_link": "platform",
- "mobile.notice_text": "Mattermost is made possible by the open source software used in our {platform} and {mobile}.",
- "mobile.notification.in": " w ",
- "mobile.offlineIndicator.connected": "Połączono",
- "mobile.offlineIndicator.connecting": "Łączenie...",
- "mobile.offlineIndicator.offline": "Brak połączenia z internetem",
- "mobile.open_dm.error": "We couldn't open a direct message with {displayName}. Please check your connection and try again.",
- "mobile.open_gm.error": "We couldn't open a group message with those users. Please check your connection and try again.",
- "mobile.post.cancel": "Anuluj",
- "mobile.post.delete_question": "Czy na pewno chcesz usunąć ten post?",
- "mobile.post.delete_title": "Usuń wiadomość",
- "mobile.post.failed_delete": "Usuń wiadomość",
- "mobile.post.failed_retry": "Spróbuj ponownie",
- "mobile.post.failed_title": "Nie można wysłać wiadomości",
- "mobile.post.retry": "Odśwież",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Nieprawidłowa odpowiedź od serwera.",
- "mobile.routes.channelInfo": "Informacje",
- "mobile.routes.channelInfo.createdBy": "Utworzono przez {creator}, dnia ",
- "mobile.routes.channelInfo.delete_channel": "Usuń kanał",
- "mobile.routes.channelInfo.favorite": "Ulubiony",
- "mobile.routes.channel_members.action": "Usuń użytkownika",
- "mobile.routes.channel_members.action_message": "Musisz wybrać co najmniej jednego użytkownika, który ma zostać usunięty z kanału.",
- "mobile.routes.channel_members.action_message_confirm": "Czy na pewno chcesz usunąć wybranych użytkowników z kanału?",
- "mobile.routes.channels": "Kanały",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Wprowadź adres URL serwera",
- "mobile.routes.login": "Logowanie",
- "mobile.routes.loginOptions": "Wybór logowania",
- "mobile.routes.mfa": "Uwierzytelnianie wieloskładnikowe",
- "mobile.routes.postsList": "Lista wiadomości",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "Wybierz zespół",
- "mobile.routes.settings": "Ustawienia",
- "mobile.routes.sso": "Single SignOn",
- "mobile.routes.thread": "{channelName} Thread",
- "mobile.routes.thread_dm": "Direct Message Thread",
- "mobile.routes.user_profile": "Profil",
- "mobile.routes.user_profile.send_message": "Wyślij wiadomość",
- "mobile.search.jump": "JUMP",
- "mobile.search.no_results": "Brak wyników",
- "mobile.select_team.choose": "Twóje zespoły:",
- "mobile.select_team.join_open": "Inne zespoły, do których możesz dołączyć.",
- "mobile.select_team.no_teams": "There are no available teams for you to join.",
- "mobile.server_ping_failed": "Nie można połączyć się z serwerem. Sprawdź adres serwera i połączenie internetowe.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nA server upgrade is required to use the Mattermost app. Please ask your System Administrator for details.\n",
- "mobile.server_upgrade.title": "Server upgrade required",
- "mobile.server_url.invalid_format": "Adres musi zaczynać się od http:// lub https://",
- "mobile.session_expired": "Sesja wygasła: zaloguj się, aby kontynuować otrzymywanie powiadomień.",
- "mobile.settings.clear": "Clear Offline Store",
- "mobile.settings.clear_button": "Clear",
- "mobile.settings.clear_message": "\nThis will clear all offline data and restart the app. You will be automatically logged back in once the app restarts.\n",
- "mobile.settings.team_selection": "Wybór zespołu",
- "mobile.suggestion.members": "Użytkownicy",
- "modal.manaul_status.ask": "Nie pytaj ponownie",
- "modal.manaul_status.button": "Tak, ustaw mój status na \"Online\"",
- "modal.manaul_status.cancel": "Nie, pozostaw \"{status}\"",
- "modal.manaul_status.message": "Czy chcesz zmienić status na \"Online\"?",
- "modal.manaul_status.title": "Twój status został ustawiony na \"{status}\"",
- "more_channels.close": "Zamknij",
- "more_channels.create": "Utwórz nowy kanał",
- "more_channels.createClick": "Kliknij przycisk 'Utwórz nowy kanał', aby dodać nowy",
- "more_channels.join": "Dołącz",
- "more_channels.next": "Dalej",
- "more_channels.noMore": "Brak kanałów",
- "more_channels.prev": "Wstecz",
- "more_channels.title": "Więcej kanałów",
- "more_direct_channels.close": "Zamknij",
- "more_direct_channels.message": "Wiadomość",
- "more_direct_channels.new_convo_note": "To rozpocznie nową rozmowę. Jeśli dodasz więcej osób, rozważ utworzenie kanału prywatnego.",
- "more_direct_channels.new_convo_note.full": "Osiągnąłeś maksymalną liczbę osób dla tej rozmowy. Zastanów się nad utworzeniem kanału prywatnego.",
- "more_direct_channels.title": "Wiadomości bezpośrednie",
- "msg_typing.areTyping": "{users} i {last} piszą...",
- "msg_typing.isTyping": "{user} pisze...",
- "msg_typing.someone": "Ktoś",
- "multiselect.add": "Dodaj",
- "multiselect.go": "Przejdź",
- "multiselect.list.notFound": "Nie odnaleziono użytkowników",
- "multiselect.numPeopleRemaining": "Use ↑↓ to browse, ↵ to select. You can add {num, number} more {num, plural, one {person} other {people}}. ",
- "multiselect.numRemaining": "Możesz dodać {num, number} więcej",
- "multiselect.placeholder": "Wyszukiwanie i dodawanie użytkowników",
- "navbar.addMembers": "Dodaj użytkowników",
- "navbar.click": "Kliknij tutaj",
- "navbar.delete": "Usuwanie kanału...",
- "navbar.leave": "Opuść kanał",
- "navbar.manageMembers": "Zarządzaj użyttkownikami",
- "navbar.noHeader": "Nie ma jeszcze nagłówka kanału.{newline}{link} aby go dodać.",
- "navbar.preferences": "Ustawienia powiadomień",
- "navbar.rename": "Zmiana nazwy kanału",
- "navbar.setHeader": "Ustaw nagłówek kanału...",
- "navbar.setPurpose": "Ustaw opis kanału...",
- "navbar.toggle1": "Przełącz pasek boczny",
- "navbar.toggle2": "Przełącz pasek boczny",
- "navbar.viewInfo": "Wyświetl Informacje",
- "navbar.viewPinnedPosts": "Wyświetl pinezki",
- "navbar_dropdown.about": "O Mattermost",
- "navbar_dropdown.accountSettings": "Ustawienia konta",
- "navbar_dropdown.addMemberToTeam": "Dodaj użytkowników do zespołu",
- "navbar_dropdown.console": "Konsola systemowa",
- "navbar_dropdown.create": "Utwórz nowy zespół",
- "navbar_dropdown.emoji": "Własne emotikony",
- "navbar_dropdown.help": "Pomoc",
- "navbar_dropdown.integrations": "Integracje",
- "navbar_dropdown.inviteMember": "Wyślij zaproszenie e-mailem",
- "navbar_dropdown.join": "Dołącz do innego zespołu",
- "navbar_dropdown.keyboardShortcuts": "Skróty klawiszowe",
- "navbar_dropdown.leave": "Opuść zespół",
- "navbar_dropdown.logout": "Wyloguj",
- "navbar_dropdown.manageMembers": "Zarządzaj użytkownikami",
- "navbar_dropdown.nativeApps": "Pobierz Aplikacje",
- "navbar_dropdown.report": "Zgłoś problem",
- "navbar_dropdown.switchTeam": "Przełącz na {team}",
- "navbar_dropdown.switchTo": "Przełącz na ",
- "navbar_dropdown.teamLink": "Uzyskaj link zaproszenia",
- "navbar_dropdown.teamSettings": "Opcje zespołu",
- "navbar_dropdown.viewMembers": "Wyświetl użytkowników",
- "notification.dm": "Wiadomość bezpośrednia",
- "notify_all.confirm": "Potwierdź",
- "notify_all.question": "Korzystając z @all lub @channel chcesz wysłać powiadomienia do {totalMembers} ludzi. Czy na pewno chcesz to zrobić?",
- "notify_all.title.confirm": "Potwierdź wysyłanie powiadomień do całego kanału",
- "passwordRequirements": "Wymagania hasła:",
- "password_form.change": "Zmień hasło",
- "password_form.click": "Kliknij tutaj, aby się zalogować.",
- "password_form.enter": "Podaj hasło do konta dla {siteName}",
- "password_form.error": "Proszę podać co najmniej {chars} znaków.",
- "password_form.pwd": "Hasło",
- "password_form.title": "Resetowanie hasła",
- "password_form.update": "Twoje hasło zostało zmienione.",
- "password_send.checkInbox": "Sprawdź swoją pocztę.",
- "password_send.description": "Aby zresetować hasło musisz podać e-mail, którego użyłeś w trakcie rejestracji.",
- "password_send.email": "E-mail",
- "password_send.error": "Podaj poprawny adres e-mail",
- "password_send.link": "Jeśli konto istnieje, mail z resetowaniem hasła zostanie wysłany na adres: {email}
",
- "password_send.reset": "Zresetuj hasło",
- "password_send.title": "Resetowanie hasła",
- "pdf_preview.max_pages": "Pobierz, aby przeczytać więcej stron",
- "pending_post_actions.cancel": "Anuluj",
- "pending_post_actions.retry": "Ponów",
- "permalink.error.access": "Permalink należy do usuniętych wiadomości lub do kanału, do którego nie masz dostępu.",
- "permalink.error.title": "Nie odnaleziono wiadomości",
- "post_attachment.collapse": "Pokaż mniej...",
- "post_attachment.more": "Wyświetl więcej...",
- "post_body.commentedOn": "Skomentował wiadomość {name}: ",
- "post_body.deleted": "(wiadomość usunięta)",
- "post_body.plusMore": " plus {count, number} other {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Nie można opublikować komentarza",
- "post_delete.okay": "OK",
- "post_delete.someone": "Ktoś usunął wiadomość, do której próbowałeś wysłać komentarz.",
- "post_focus_view.beginning": "Początek archiwum kanału",
- "post_info.del": "Usuń",
- "post_info.edit": "Edytuj",
- "post_info.message.visible": "(Only visible to you)",
- "post_info.message.visible.compact": " (Only visible to you)",
- "post_info.mobile.flag": "Oflaguj",
- "post_info.mobile.unflag": "Usuń flagę",
- "post_info.permalink": "Odnośnik bezpośredni",
- "post_info.pin": "Przypnij do kanału",
- "post_info.pinned": "Przypięty",
- "post_info.reply": "Odpowiedz",
- "post_info.system": "System",
- "post_info.unpin": "Odepnij od kanału",
- "post_message_view.edited": "(edytowany)",
- "posts_view.loadMore": "Pobierz więcej wiadomości",
- "posts_view.loadingMore": "Pobierz więcej wiadomości",
- "posts_view.newMsg": "Nowe wiadomości",
- "posts_view.newMsgBelow": "{count, plural, one {Nowa wiadomość} other {Nowe wiadomości}}",
- "quick_switch_modal.channels": "Kanały",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Start typing then use TAB to toggle channels/teams, ↑↓ to browse, ↵ to select, and ESC to dismiss.",
- "quick_switch_modal.help_mobile": "Type to find a channel.",
- "quick_switch_modal.help_no_team": "Type to find a channel. Use ↑↓ to browse, ↵ to select, ESC to dismiss.",
- "quick_switch_modal.teams": "Warunki",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(kliknij aby dodać)",
- "reaction.clickToRemove": "(kliknij aby usunąć)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {user} other {users}}",
- "reaction.reacted": "{users} {reactionVerb} with {emoji}",
- "reaction.reactionVerb.user": "zareagował",
- "reaction.reactionVerb.users": "zareagował",
- "reaction.reactionVerb.you": "zareagował",
- "reaction.reactionVerb.youAndUsers": "zareagował",
- "reaction.usersAndOthersReacted": "{users} and {otherUsers, number} other {otherUsers, plural, one {user} other {users}}",
- "reaction.usersReacted": "{users} oraz {lastUser}",
- "reaction.you": "Ty",
- "removed_channel.channelName": "kanał",
- "removed_channel.from": "Usunięte z",
- "removed_channel.okay": "OK",
- "removed_channel.remover": "{remover} usunął cię z {channel}",
- "removed_channel.someone": "Ktoś",
- "rename_channel.cancel": "Anuluj",
- "rename_channel.defaultError": " - nie może zostać zmieniony na kanał domyślny",
- "rename_channel.displayName": "Wyświetlana nazwa",
- "rename_channel.displayNameHolder": "Wpisz wyświetlaną nazwę",
- "rename_channel.handleHolder": "alfanumeryczne znaki z małej litery",
- "rename_channel.lowercase": "Musi składać się z alfanumerycznych znaków z małej litery",
- "rename_channel.maxLength": "This field must be less than {maxLength, number} characters",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "To pole jest wymagane",
- "rename_channel.save": "Zapisz",
- "rename_channel.title": "Zmień nazwę kanału",
- "rename_channel.url": "Adres URL:",
- "rhs_comment.comment": "Komentarz",
- "rhs_comment.del": "Usuń",
- "rhs_comment.edit": "Edytuj",
- "rhs_comment.mobile.flag": "Oflaguj",
- "rhs_comment.mobile.unflag": "Usuń flagę",
- "rhs_comment.permalink": "Odnośnik bezpośredni",
- "rhs_header.backToCallTooltip": "Wróć do rozmowy",
- "rhs_header.backToFlaggedTooltip": "Wróć do oznaczonego postu",
- "rhs_header.backToPinnedTooltip": "Wróć do oznaczonego postu",
- "rhs_header.backToResultsTooltip": "Powrót do wyników wyszukiwania",
- "rhs_header.closeSidebarTooltip": "Zamknij pasek boczny",
- "rhs_header.closeTooltip": "Zamknij pasek boczny",
- "rhs_header.details": "Szczegóły wiadomości",
- "rhs_header.expandSidebarTooltip": "Rozwiń pasek boczny",
- "rhs_header.expandTooltip": "Skróć pasek boczny",
- "rhs_header.shrinkSidebarTooltip": "Skróć pasek boczny",
- "rhs_root.del": "Usuń",
- "rhs_root.direct": "Wiadomość bezpośrednia",
- "rhs_root.edit": "Edycja",
- "rhs_root.mobile.flag": "Oflaguj",
- "rhs_root.mobile.unflag": "Usuń flagę",
- "rhs_root.permalink": "Odnośnik bezpośredni",
- "rhs_root.pin": "Przypnij do kanału",
- "rhs_root.unpin": "Odepnij od kanału",
- "search_bar.search": "Szukaj",
- "search_bar.usage": "
Opcje wyszukiwania
Użyj \"cudzysłowów\" aby wyszukać frazy
Użyj from: aby znaleźć posty od określonych użytkowników oraz in: aby znaleźć posty na poszczególnych kanałach
Jeśli szukasz częściowej frazy (np. \"rea\" w poszukiwaniu \"reach\" lub \"reaction\"), dołącz * do wyszukiwanego hasła.
Dwu literowe wyszukiwanie oraz niektóre słowa mogą nie pokazać się w wynikach wyszukiwania z powodu nadmiernej ilości zwracanych wyników.
",
- "search_results.noResults": "Nie znaleziono wyników. Spróbować jeszcze raz?",
- "search_results.searching": "Searching...",
- "search_results.usage": "
Użyj \"cudzysłowów\" aby wyszukać frazy
Użyjfrom: aby znaleźć posty od określonych użytkowników oraz in: aby znaleźć posty na poszczególnych kanałach
",
- "search_results.usageFlag1": "Nie masz oznaczonych żadnych postów.",
- "search_results.usageFlag2": "Możesz dodawać flagę na wiadomości i komentarze, naciskając ",
- "search_results.usageFlag3": " ikonę obok daty.",
- "search_results.usageFlag4": "Flagi stanowią sposób oznaczania wiadomości \"do obserwacji\". Twoje flagi są poufne i nie są widoczne dla innych użytkowników.",
- "search_results.usagePin1": "Nie ma jeszcze przypiętych wiadomości.",
- "search_results.usagePin2": "Wszyscy członkowie kanału mogą przypinać ważne lub przydatne wiadomości.",
- "search_results.usagePin3": "Przypięte wiadomości są widoczne dla każdego członka kanału.",
- "search_results.usagePin4": "Aby przypiąć wiadomość: Najedź na wiadomość, którą chcesz przypiąć i kliknij [...] > \"Przypnij do kanału\".",
- "setting_item_max.cancel": "Anuluj",
- "setting_item_max.save": "Zapisz",
- "setting_item_min.edit": "Edycja",
- "setting_picture.cancel": "Anuluj",
- "setting_picture.help": "Wgraj zdjęcie profilowe w formacie BMP, JPG, JPEG lub PNG, o wielkości co najmniej {width}px na {height}px",
- "setting_picture.save": "Zapisz",
- "setting_picture.select": "Wybierz",
- "setting_upload.import": "Zaimportuj",
- "setting_upload.noFile": "Nie wybrano pliku.",
- "setting_upload.select": "Wybierz plik",
- "shortcuts.browser.channel_next": "Forward in history:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Forward in history:\t⌘|]",
- "shortcuts.browser.channel_prev": "Back in history:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Back in history:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom out:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom out:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom in:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom in:\t⌘|+",
- "shortcuts.browser.header": "Built-in Browser Commands",
- "shortcuts.browser.highlight_next": "Highlight text to the next line:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Highlight text to the previous line:\tShift|Up",
- "shortcuts.browser.input.header": "Works inside an input field",
- "shortcuts.browser.newline": "Create a new line:\tShift|Enter",
- "shortcuts.files.header": "Pliki",
- "shortcuts.files.upload": "Upload files:\tCtrl|U",
- "shortcuts.files.upload.mac": "Upload files:\t⌘|U",
- "shortcuts.header": "Skróty klawiszowe",
- "shortcuts.info": "Begin a message with / for a list of all the commands at your disposal.",
- "shortcuts.msgs.comp.channel": "Channel:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Automatyczne uzupełnianie",
- "shortcuts.msgs.comp.username": "Username:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Edit last message in channel:\tUp",
- "shortcuts.msgs.header": "Wiadomość",
- "shortcuts.msgs.input.header": "Works inside an empty input field",
- "shortcuts.msgs.mark_as_read": "Mark current channel as read:\tEsc",
- "shortcuts.msgs.reply": "Reply to last message in channel:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Reprint next message:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Reprint next message:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Reprint previous message:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Reprint previous message:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Direct messages menu:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Direct messages menu:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigation",
- "shortcuts.nav.next": "Next channel:\tAlt|Down",
- "shortcuts.nav.next.mac": "Next channel:\t⌥|Down",
- "shortcuts.nav.prev": "Previous channel:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Previous channel:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Recent mentions:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Recent mentions:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Account settings:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Account settings:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Quick channel switcher:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Quick channel switcher:\t⌘|K",
- "shortcuts.nav.unread_next": "Next unread channel:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Next unread channel:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Previous unread channel:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Previous unread channel:\t⌥|Shift|Up",
- "sidebar.channels": "PUBLIC CHANNELS",
- "sidebar.createChannel": "Stwórz nowy kanał publiczny",
- "sidebar.createGroup": "Stwórz nowy kanał prywatny",
- "sidebar.direct": "DIRECT MESSAGES",
- "sidebar.favorite": "FAVORITE CHANNELS",
- "sidebar.leave": "Opuść kanał",
- "sidebar.mainMenu": "Main Menu",
- "sidebar.more": "Więcej",
- "sidebar.moreElips": "Więcej...",
- "sidebar.otherMembers": "Poza tym zespołem",
- "sidebar.pg": "PRIVATE CHANNELS",
- "sidebar.removeList": "Usuń z listy",
- "sidebar.tutorialScreen1": "
Kanały
Kanały organizują rozmowy o różnych tematach. Są dostępne dla wszystkich członków zespołu. Do prywatnych rozmów proszę używać Wiadomości bezpośrednich do pojedynczych użytkowników lub Prywatnych grup dla rozmów w grupie użytkowników.
",
- "sidebar.tutorialScreen2": "
\"{townsquare}\" i \"{offtopic}\"
oto dwa startowe kanały publiczne:
{townsquare} - to miejsce do szerokiej komunikacji. Każda osoba w zespole jest członkiem tego kanału.
{offtopic} - jest to miejsce do zabawy poza kanałami związanych z pracą. Ty i Twój zespół zdecydować, jakie inne kanały utworzyć.
",
- "sidebar.tutorialScreen3": "
Tworzenie i dołączanie do kanałów
Kliknij \"Więcej...\" aby stworzyć nowy kanał lub dołączyć do istniejącego.
Możesz również stworzyć nowy kanał lub grupę prywatną poprzez kliknięcie na symbol \"+\" obok nagłówka kanałów lub prywatnych kanałów.
Menu główne to miejsce gdzie możesz Zaprosić nowych użytkowników, zarządzać Ustawieniami konta oraz ustawić Motyw.
Administratorzy zespołu natomiast mają dostęp do Ustawień zespołu.
Administratorzy systemu znajdą tu Konsole systemową z której zarządzać mogą całym systemem.
",
- "sidebar_right_menu.accountSettings": "Ustawienia konta",
- "sidebar_right_menu.addMemberToTeam": "Dodaj członków do zespołu",
- "sidebar_right_menu.console": "Konsola systemowa",
- "sidebar_right_menu.flagged": "Posty oznaczone",
- "sidebar_right_menu.help": "Pomoc",
- "sidebar_right_menu.inviteNew": "Wyślij zaproszenie e-mailem",
- "sidebar_right_menu.logout": "Wyloguj",
- "sidebar_right_menu.manageMembers": "Zarządzaj członkami",
- "sidebar_right_menu.nativeApps": "Pobierz Aplikacje",
- "sidebar_right_menu.recentMentions": "Ostatnie wzmianki",
- "sidebar_right_menu.report": "Zgłoś problem",
- "sidebar_right_menu.teamLink": "Uzyskaj link do zaproszenia",
- "sidebar_right_menu.teamSettings": "Opcje zespołu",
- "sidebar_right_menu.viewMembers": "Wyświetl użytkowinków",
- "signup.email": "E-mail i hasło",
- "signup.gitlab": "Logowanie przez GitLab",
- "signup.google": "Konto Google",
- "signup.ldap": "Poświadczenia AD/LDAP",
- "signup.office365": "Office 365",
- "signup.title": "Utwórz konto przy pomocy:",
- "signup_team.createTeam": "Lub utwórz zespół",
- "signup_team.disabled": "Tworzenie zespołu zostało wyłączone. Proszę skontaktować się z administratorem w celu uzyskania informacji.",
- "signup_team.join_open": "Zespoły do których możesz dołączy: ",
- "signup_team.noTeams": "Nie ma zespołów na liście, a tworzenie nowych zostało wyłączone.",
- "signup_team.no_open_teams": "Żaden zespół nie jest otwarty na nowych członków. Poproś Administratora o zaproszenie.",
- "signup_team.no_open_teams_canCreate": "Żaden zespół nie jest otwarty na nowych członków. Utwórz nowy zespół lub poproś Administratora o zaproszenie. ",
- "signup_team.no_teams": "Nie utworzono żadnych zespołów. Skontaktuj się z Administratorem.",
- "signup_team.no_teams_canCreate": "Nie utworzono żadnych zespołów. Stwórz nowy klikając w \"Utwórz nowy zespół\". ",
- "signup_team.none": "Tworzenie zespołu zostało wyłączone. Proszę skontaktować się z administratorem w celu uzyskania informacji.",
- "signup_team_complete.completed": "Zakończono proces rejestracji dla tego zaproszenia lub zaproszenie to wygasło.",
- "signup_team_confirm.checkEmail": "Sprawdź swój adres e-mail: {email} Twój e-mail zawiera łącze do skonfigurowania zespołu",
- "signup_team_confirm.title": "Rejestracja zakończona",
- "signup_team_system_console": "Przejdź do konsoli systemowej",
- "signup_user_completed.choosePwd": "Wybierz hasło",
- "signup_user_completed.chooseUser": "Wybierz nazwę użytkownika",
- "signup_user_completed.create": "Utwórz konto",
- "signup_user_completed.emailHelp": "Wymagany jest poprawny adres e-mail",
- "signup_user_completed.emailIs": "Twój adres e-mail to {email}. Wykorzystasz ten adres do rejestracji na stronie {siteName}.",
- "signup_user_completed.expired": "Zakończono proces rejestracji dla tego zaproszenia lub zaproszenie to wygasło.",
- "signup_user_completed.gitlab": "z GitLab",
- "signup_user_completed.google": "z Google",
- "signup_user_completed.haveAccount": "Masz już konto?",
- "signup_user_completed.invalid_invite": "Link zaproszenia był nieprawidłowy. Proszę porozmawiać z administratorem, aby otrzymać zaproszenie.",
- "signup_user_completed.lets": "Utwórzmy Twoje konto",
- "signup_user_completed.no_open_server": "Ten serwer nie zezwala na otwarte rejestracje. Proszę porozmawiać z administratorem, aby otrzymać zaproszenie.",
- "signup_user_completed.none": "Rejestracja nowych kont została wyłączona. Proszę skontaktować się z Administratorem.",
- "signup_user_completed.office365": "z Office 365",
- "signup_user_completed.onSite": "na {siteName}",
- "signup_user_completed.or": "lub",
- "signup_user_completed.passwordLength": "Wpisz pomiędzy {min} a {max} znaków",
- "signup_user_completed.required": "To pole jest wymagane",
- "signup_user_completed.reserved": "Ta nazwa użytkownika jest zarezerwowana, użyj innej.",
- "signup_user_completed.signIn": "Kliknij tutaj, aby się zalogować.",
- "signup_user_completed.userHelp": "Nazwa użytkownika musi zaczynać się literą i zawierać pomiędzy {min} a {max} małych znaków. Może składać się z cyfr, liter oraz symboli '.', '-' lub '_'",
- "signup_user_completed.usernameLength": "Nazwa użytkownika musi zaczynać się literą i zawierać pomiędzy {min} a {max} małych znaków. Może składać się z cyfr, liter oraz symboli '.', '-' lub '_'.",
- "signup_user_completed.validEmail": "Podaj poprawny adres e-mail",
- "signup_user_completed.welcome": "Witaj w:",
- "signup_user_completed.whatis": "Jaki jest twój ardes E-mail?",
- "signup_user_completed.withLdap": "przy pomocy poświadczeń AD/LDAP",
- "sso_signup.find": "Znajdź moje zespoły",
- "sso_signup.gitlab": "Tworzenie zespołu z konta GitLab",
- "sso_signup.google": "Tworzenie zespołu z konta Google Apps",
- "sso_signup.length_error": "Nazwa musi mieć co najmniej 3 znaków ale nie więcej niż 15",
- "sso_signup.teamName": "Wprowadź nazwę nowego zespołu",
- "sso_signup.team_error": "Proszę wprowadzić nazwę zespołu.",
- "status_dropdown.set_away": "Zaraz wracam",
- "status_dropdown.set_offline": "Offline",
- "status_dropdown.set_online": "Online",
- "suggestion.loading": "Ładowanie...",
- "suggestion.mention.all": "OSTRZEŻENIE: wspomina wszystkich na kanale",
- "suggestion.mention.channel": "Powiadamia wszystkich na kanale",
- "suggestion.mention.channels": "Moje kanały",
- "suggestion.mention.here": "Powiadamia wszystkich na kanale i on-line",
- "suggestion.mention.in_channel": "Kanały",
- "suggestion.mention.members": "Członkowie kanału",
- "suggestion.mention.morechannels": "Inne kanały",
- "suggestion.mention.nonmembers": "Nie na kanale",
- "suggestion.mention.not_in_channel": "Inne kanały",
- "suggestion.mention.special": "Specjalne wzmianki",
- "suggestion.search.private": "Kanały prywatne",
- "suggestion.search.public": "Kanały publiczne",
- "system_users_list.count": "{count, number} {count, plural, one {użytkownik} other {użytkowników}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {użytkownik} other {użytkowników}} z {total, number} razem",
- "system_users_list.countSearch": "{count, number} {count, plural, one {użytkownik} other {użytkowników}} z {total, number} razem",
- "team_export_tab.download": "pobierz",
- "team_export_tab.export": "Eksportuj",
- "team_export_tab.exportTeam": "Eksportuj zespół",
- "team_export_tab.exporting": " Eksportuję...",
- "team_export_tab.ready": " Gotowy na ",
- "team_export_tab.unable": " Eksport się nie powiódł: {error}",
- "team_import_tab.failure": " Błąd w trakcie importu: ",
- "team_import_tab.import": "Zaimportuj",
- "team_import_tab.importHelpDocsLink": "dokumentacja",
- "team_import_tab.importHelpExportInstructions": "Slack > Ustawienia zespołu > Import/Export danych > Export > Export statystyk",
- "team_import_tab.importHelpExporterLink": "Zaawansowany eksporter z Slack",
- "team_import_tab.importHelpLine1": "Import z Slack w Mattermost obsługuje importowanie wiadomości z twoich publicznych kanałów zespołów Slack.",
- "team_import_tab.importHelpLine2": "Aby zaimportować zespół ze Slack, przejdź do {exportInstructions}. Zobacz {uploadDocsLink}, aby dowiedzieć się więcej.",
- "team_import_tab.importHelpLine3": "Aby zaimportować posty z załączonymi plikami, zobacz {slackAdvancedExporterLink}, aby uzyskać szczegółowe informacje.",
- "team_import_tab.importSlack": "Import z Slack (Beta)",
- "team_import_tab.importing": " Importuję...",
- "team_import_tab.successful": " Import zakończony sukcesem: ",
- "team_import_tab.summary": "Wyświetl podsumowanie",
- "team_member_modal.close": "Zamknij",
- "team_member_modal.members": "Członkowie {team}",
- "team_members_dropdown.confirmDemoteDescription": "Jeśli zrezygnujesz z roli administratora systemu i nie ma innego użytkownika z uprawnieniami administratora systemu, musisz ponownie przypisać administratora systemu, uzyskując dostęp do serwera Mattermost za pośrednictwem terminala i uruchamiając następujące polecenie.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Potwierdź zdegradowanie z roli administratora systemu",
- "team_members_dropdown.confirmDemotion": "Potwierdź degradację",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "Nieaktywny",
- "team_members_dropdown.leave_team": "Usuń z zespołu",
- "team_members_dropdown.makeActive": "Aktywuj",
- "team_members_dropdown.makeAdmin": "Uczyń administratorem zespołu",
- "team_members_dropdown.makeInactive": "Dezaktywuj",
- "team_members_dropdown.makeMember": "Uczyń użytkownikiem",
- "team_members_dropdown.member": "Członek",
- "team_members_dropdown.systemAdmin": "Administrator systemu",
- "team_members_dropdown.teamAdmin": "Administrator zespołu",
- "team_settings_modal.exportTab": "Wyeksportuj",
- "team_settings_modal.generalTab": "Ogólne",
- "team_settings_modal.importTab": "Zaimportuj",
- "team_settings_modal.title": "Ustawienia zespołu",
- "team_sidebar.join": "Inne zespoły, do których możesz dołączyć.",
- "textbox.bold": "**pogrubienie**",
- "textbox.edit": "Edytuj wiadomość",
- "textbox.help": "Pomoc",
- "textbox.inlinecode": "`inline code`",
- "textbox.italic": "_pochylenie_",
- "textbox.preformatted": "```sformatowany```",
- "textbox.preview": "Podgląd",
- "textbox.quote": ">cytat",
- "textbox.strike": "przekreślenie",
- "tutorial_intro.allSet": "Jesteś gotowy",
- "tutorial_intro.end": "Kliknij przycisk \"Dalej\", aby wejść na {channel}. Jest to pierwszy kanał który zobaczą koledzy z zespołu, gdy się zarejestrują. Używaj go do wysyłania informacji które każdy musi znać.",
- "tutorial_intro.invite": "Zaproś kolegów z zespołu",
- "tutorial_intro.mobileApps": "Zainstaluj aplikację dla {link} dla łatwego dostępu oraz powiadomień w podróży.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS oraz Android",
- "tutorial_intro.next": "Dalej",
- "tutorial_intro.screenOne": "
Witaj w:
Mattermost
Cała komunikacja Twojego zespołu w jednym miejscu, z natychmiastowym przeszukiwaniem i dostępna z każdego miejsca.
",
- "tutorial_intro.screenTwo": "
Jak Mattermost działa:
Komunikacja podzielona jest na kanały publiczne, grupy prywatne i bezpośrednie wiadomości.
Wszystko jest archiwizowane i możliwe do przeszukiwania z komputera, laptopa lub telefonu podłączonego do internetu
",
- "tutorial_intro.skip": "Pomiń samouczek",
- "tutorial_intro.support": "Coś potrzebujesz, po prostu napisz do nas na ",
- "tutorial_intro.teamInvite": "Zaproś kolegów z zespołu",
- "tutorial_intro.whenReady": " kiedy będziesz gotowy.",
- "tutorial_tip.next": "Dalej",
- "tutorial_tip.ok": "OK",
- "tutorial_tip.out": "Zrezygnuj z tych porad.",
- "tutorial_tip.seen": "Widziałeś to wcześniej? ",
- "update_command.cancel": "Anuluj",
- "update_command.confirm": "Edytuj polecenie Slash",
- "update_command.question": "Twoje zmiany mogą uszkodzić istniejące polecenie slash. Czy jesteś pewien, że chcesz je zapisać?",
- "update_command.update": "Zaktualizuj",
- "update_incoming_webhook.update": "Zaktualizuj",
- "update_outgoing_webhook.confirm": "Edytuj wychodzący Webhook",
- "update_outgoing_webhook.question": "Twoje zmiany mogą uszkodzić istniejący wychodzący webhook. Czy jesteś pewien, że chcesz je zapisać?",
- "update_outgoing_webhook.update": "Zaktualizuj",
- "upload_overlay.info": "Upuść plik, aby go wysłać.",
- "user.settings.advance.embed_preview": "W przypadku pierwszego łącza internetowego w wiadomości wyświetl podgląd treści witryny poniżej wiadomości, jeśli jest dostępna",
- "user.settings.advance.embed_toggle": "Pokaż przełącznik dla wszystkich osadzonych podglądów",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Feature} other {Features}} Enabled",
- "user.settings.advance.formattingDesc": "Jeśli jest włączone, posty będą formatowane w celu utworzenia linków, wyświetlania emoji, stylowania tekstu i dodawania linii. Domyślnie to ustawienie jest włączone. Zmiana tego ustawienia wymaga odświeżenia strony.",
- "user.settings.advance.formattingTitle": "Włączenie formatowania wiadomości",
- "user.settings.advance.joinLeaveDesc": "When \"On\", System Messages saying a user has joined or left a channel will be visible. When \"Off\", the System Messages about joining or leaving a channel will be hidden. A message will still show up when you are added to a channel, so you can receive a notification.",
- "user.settings.advance.joinLeaveTitle": "Włącz wiadomoś dołączenia/opuszczenia",
- "user.settings.advance.markdown_preview": "Pokaż opcję podglądu znaczników w polu wprowadzania wiadomości",
- "user.settings.advance.off": "Nie",
- "user.settings.advance.on": "Tak",
- "user.settings.advance.preReleaseDesc": "Sprawdź wszystkie wstępnie udostępnione funkcje, które chcesz włączyć. Może również zajść konieczność odświeżenia strony, zanim ustawienie zacznie obowiązywać.",
- "user.settings.advance.preReleaseTitle": "Podgląd funkcji w wersji wstępnej",
- "user.settings.advance.sendDesc": "Jeśli jest włączone ENTER wstawia nowy wiersz i CTRL+ENTER wysyła wiadomość.",
- "user.settings.advance.sendTitle": "Wysyłaj wiadomość przy użyciu Ctrl+Enter",
- "user.settings.advance.slashCmd_autocmp": "Włącz zewnętrzną aplikację, aby zaoferować autouzupełnianie poleceń",
- "user.settings.advance.title": "Zaawansowane ustawienia",
- "user.settings.advance.webrtc_preview": "Włącz możliwość tworzenia i odbierania połączeń WebRTC",
- "user.settings.custom_theme.awayIndicator": "Wskaźnik obecności",
- "user.settings.custom_theme.buttonBg": "Tło przycisku",
- "user.settings.custom_theme.buttonColor": "Tekst przycisku",
- "user.settings.custom_theme.centerChannelBg": "Tło środkowego kanału",
- "user.settings.custom_theme.centerChannelColor": "Tekst środkowego kanału",
- "user.settings.custom_theme.centerChannelTitle": "Style środkowego kanału",
- "user.settings.custom_theme.codeTheme": "Kod motywu",
- "user.settings.custom_theme.copyPaste": "Skopiuj i wklej aby podzielić się schematem kolorów:",
- "user.settings.custom_theme.linkButtonTitle": "Style przycisków i linków",
- "user.settings.custom_theme.linkColor": "Kolor odnośnika",
- "user.settings.custom_theme.mentionBj": "Tło mention jewel",
- "user.settings.custom_theme.mentionColor": "Tekst mentio jewel",
- "user.settings.custom_theme.mentionHighlightBg": "Tło wzmianki",
- "user.settings.custom_theme.mentionHighlightLink": "Tło wzmianki",
- "user.settings.custom_theme.newMessageSeparator": "Separator nowej wiadomości",
- "user.settings.custom_theme.onlineIndicator": "Wskaźnik dostępności",
- "user.settings.custom_theme.sidebarBg": "Tło panelu bocznego",
- "user.settings.custom_theme.sidebarHeaderBg": "Tło nagłówka panelu bocznego",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Tekst nagłówka panelu bocznego",
- "user.settings.custom_theme.sidebarText": "Tekst W Pasku Bocznym",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Sidebar Text Active Border",
- "user.settings.custom_theme.sidebarTextActiveColor": "Sidebar Text Active Color",
- "user.settings.custom_theme.sidebarTextHoverBg": "Sidebar Text Hover BG",
- "user.settings.custom_theme.sidebarTitle": "Style panelu bocznego",
- "user.settings.custom_theme.sidebarUnreadText": "Sidebar Unread Text",
- "user.settings.display.channelDisplayTitle": "Tryb wyświetlania kanału",
- "user.settings.display.channeldisplaymode": "Wybierz szerokość środka kanału.",
- "user.settings.display.clockDisplay": "Wyświetlanie czasu",
- "user.settings.display.collapseDesc": "Set whether previews of image links show as expanded or collapsed by default. This setting can also be controlled using the slash commands /expand and /collapse.",
- "user.settings.display.collapseDisplay": "Domyślny wygląd podglądu odnośników",
- "user.settings.display.collapseOff": "Zwinięty",
- "user.settings.display.collapseOn": "Rozwinięty",
- "user.settings.display.fixedWidthCentered": "O stałej szerokości na środku",
- "user.settings.display.fullScreen": "Cała szerokość",
- "user.settings.display.language": "Język",
- "user.settings.display.messageDisplayClean": "Standard",
- "user.settings.display.messageDisplayCleanDes": "Łatwy do skanowania i czytania.",
- "user.settings.display.messageDisplayCompact": "Kompaktowy",
- "user.settings.display.messageDisplayCompactDes": "Umieścić jak najwięcej wiadomości na ekranie.",
- "user.settings.display.messageDisplayDescription": "Wybór jak powinny być wyświetlane wiadomości na kanale.",
- "user.settings.display.messageDisplayTitle": "Wyświetlanie wiadomości",
- "user.settings.display.militaryClock": "24-godzinny (przykład: 16:00)",
- "user.settings.display.nameOptsDesc": "Ustawia jak wyświetlać nazwy innych użytkowników w postach i wiadomościach bezpośrednich.",
- "user.settings.display.normalClock": "12-godzinny (przykład: 4:00 pm)",
- "user.settings.display.preferTime": "Wybierz, jak wyświetlany jest czas.",
- "user.settings.display.theme.applyToAllTeams": "Zastosuj nowy motyw do wszystkich moich zespołów",
- "user.settings.display.theme.customTheme": "Motyw użytkownika",
- "user.settings.display.theme.describe": "Otwórz, aby zarządzać motywem",
- "user.settings.display.theme.import": "Zaimportuj motyw z Slack",
- "user.settings.display.theme.otherThemes": "Zobacz inne motywy",
- "user.settings.display.theme.themeColors": "Schemat kolorów",
- "user.settings.display.theme.title": "Motyw",
- "user.settings.display.title": "Ustawienia Wyglądu",
- "user.settings.general.checkEmail": "Sprawdź swoją pocztę e-mail na {email} w celu weryfikacji adresu.",
- "user.settings.general.checkEmailNoAddress": "Sprawdź pocztę, aby potwierdzić Swój nowy adres",
- "user.settings.general.close": "Zamknij",
- "user.settings.general.confirmEmail": "Potwierdź adres e-mail",
- "user.settings.general.currentEmail": "Aktualny e-mail",
- "user.settings.general.email": "E-mail",
- "user.settings.general.emailGitlabCantUpdate": "Logowanie odbywa się poprzez GitLab. E-mail nie może być zaktualizowany. Adres e-mail używany do powiadomień {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Logowanie odbywa się przez Google. E-mail nie może być zaktualizowany. Adres e-mail używany do powiadomień {email}.",
- "user.settings.general.emailHelp1": "Adres e-mail używany do logowania się do systemu, powiadomień i restartowania hasła. E-mail wymaga weryfikacji po jego zmianie.",
- "user.settings.general.emailHelp2": "Email został wyłączony przez administratora systemu. Żadne powiadomienia nie są wysyłane, dopóki nie zostanie włączone.",
- "user.settings.general.emailHelp3": "Adres e-mail używany jest do logowania się do systemu, powiadomień oraz restartowania hasła.",
- "user.settings.general.emailHelp4": "List został wysłany na {email}.",
- "user.settings.general.emailLdapCantUpdate": "Logowanie odbywa się za pośrednictwem serwera AD/LDAP. E-mail nie może być zaktualizowany. Adres e-mail używany do powiadomień {email}.",
- "user.settings.general.emailMatch": "Nowe e-maile, które podałeś się nie zgadzają.",
- "user.settings.general.emailOffice365CantUpdate": "Logowanie odbywa się za pośrednictwem usługi Office 365. E-mail nie może być zaktualizowany. Adres e-mail używany do powiadomień {email}.",
- "user.settings.general.emailSamlCantUpdate": "Logowanie odbywa się za pośrednictwem protokołu saml. E-mail nie może być zaktualizowany. Adres e-mail używany do powiadomień {email}.",
- "user.settings.general.emailUnchanged": "Twój nowy adres e-mail jest taki sam jak twój stary adres e-mail.",
- "user.settings.general.emptyName": "Kliknij przycisk \"Edytuj\" by dodać swoje imię i nazwisko",
- "user.settings.general.emptyNickname": "Kliknij przycisk \"Edytuj\", aby dodać nick",
- "user.settings.general.emptyPosition": "Kliknij przycisk \"Edytuj\", aby dodać swoją stanowisko",
- "user.settings.general.field_handled_externally": "Wartość tego pola pobierana jest od Twojego dostawcy logowania. Jeśli chcesz je zmienić musisz to zgłosić do swojego dostawcy.",
- "user.settings.general.firstName": "Imię",
- "user.settings.general.fullName": "Imię i nazwisko",
- "user.settings.general.imageTooLarge": "Nie można przesłać zdjęcia profilowego. Plik jest zbyt duży.",
- "user.settings.general.imageUpdated": "Ostatnia aktualizacja zdjęcia {date}",
- "user.settings.general.lastName": "Nazwisko",
- "user.settings.general.loginGitlab": "Zalogowano przy pomocy GitLab ({email})",
- "user.settings.general.loginGoogle": "Zalogowano przy pomocy Google ({email})",
- "user.settings.general.loginLdap": "Zalogowano przy pomocy AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Zalogowano przy pomocy Office 365 ({email})",
- "user.settings.general.loginSaml": "Zalogowano przy pomocy SAML ({email})",
- "user.settings.general.mobile.emptyName": "Kliknij przycisk \"Edytuj\" by dodać swoje imię i nazwisko",
- "user.settings.general.mobile.emptyNickname": "Kliknij przycisk \"Edytuj\", aby dodać nick",
- "user.settings.general.mobile.emptyPosition": "Kliknij przycisk \"Edytuj\", aby dodać swoją stanowisko",
- "user.settings.general.mobile.uploadImage": "Kliknij przycisk 'Edytuj' aby załadować obraz",
- "user.settings.general.newAddress": "Nowy adres: {email} Sprawdź swój e-mail w celu weryfikacji powyższego adresu.",
- "user.settings.general.newEmail": "Nowy e-mail",
- "user.settings.general.nickname": "Pseudonim",
- "user.settings.general.nicknameExtra": "Use Nickname for a name you might be called that is different from your first name and username. This is most often used when two or more people have similar sounding names and usernames.",
- "user.settings.general.notificationsExtra": "Domyślnie, będziesz otrzymywać powiadomienia, kiedy ktoś użyję twojego imienia. Przejdź do zakładki {notify} by zmienić te ustawienia.",
- "user.settings.general.notificationsLink": "Powiadomienia",
- "user.settings.general.position": "Stanowisko",
- "user.settings.general.positionExtra": "Użyj pola Stanowisko dla roli lub stanowiska w pracy. Informacja ta zostanie pokazany w twoim profilu.",
- "user.settings.general.profilePicture": "Zdjęcie profilowe",
- "user.settings.general.title": "Ustawienia ogólne",
- "user.settings.general.uploadImage": "Kliknij przycisk 'Edytuj' aby załadować obraz",
- "user.settings.general.username": "Nazwa użytkownika",
- "user.settings.general.usernameInfo": "Wybierz coś prostego i łatwego do rozpoznania.",
- "user.settings.general.usernameReserved": "Ta nazwa użytkownika jest zarezerwowana, użyj innej.",
- "user.settings.general.usernameRestrictions": "Nazwa użytkownika musi zaczynać się od litery i zawierać między {min} a {max} małych literer składającymi się z liczb, liter i symboli '.', '-' i '_'.",
- "user.settings.general.validEmail": "Podaj poprawny adres e-mail",
- "user.settings.general.validImage": "Tylko pliki JPG lub PNG mogą zostać wykorzystane jako zdjęcia profilowe",
- "user.settings.import_theme.cancel": "Anuluj",
- "user.settings.import_theme.importBody": "To import a theme, go to a Slack team and look for \"Preferences -> Sidebar Theme\". Open the custom theme option, copy the theme color values and paste them here:",
- "user.settings.import_theme.importHeader": "Importuj motyw slack",
- "user.settings.import_theme.submit": "Wyślij",
- "user.settings.import_theme.submitError": "Niepoprawny format, proszę spróbuj skopiować i wklejić ponownie.",
- "user.settings.languages.change": "Zmień Język interfejsu",
- "user.settings.languages.promote": "Wybierz jaki język Mattermost bedzie wyświetlał w interfejsie użytkownika.
. Chcesz pomóc w tłumaczenia? Dołącz do Mattermost Translation Server.",
- "user.settings.mfa.add": "Dodaj uwierzytelnianie wieloskładnikowe do twojego konta",
- "user.settings.mfa.addHelp": "Dodanie uwierzytelniania wieloskładnikowego uczyni twoje konto bardziej bezpieczneprze wymaganie kodu z twojego telefonu komurkowego za każdym logowaniem.",
- "user.settings.mfa.addHelpQr": "Please scan the QR code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app. If you are unable to scan the code, you can manually enter the secret provided.",
- "user.settings.mfa.enterToken": "Token (tylko liczby)",
- "user.settings.mfa.qrCode": "Kod kreskowy",
- "user.settings.mfa.remove": "Usuń uwierzytelnianie wieloskładnikowe z twojego konta",
- "user.settings.mfa.removeHelp": "Usunięcie uwierzytelniania wieloskładnikowego oznacza że nie bedziesz potrzebował już telefonu do logowania.",
- "user.settings.mfa.requiredHelp": "Multi-factor authentication is required on this server. Resetting is only recommended when you need to switch code generation to a new mobile device. You will be required to set it up again immediately.",
- "user.settings.mfa.reset": "Restart uwierzytelniana wieloskładnikowego na twoim koncie.",
- "user.settings.mfa.secret": "Hasło",
- "user.settings.mfa.title": "Wieloskładnikowe uwierzytelnianie",
- "user.settings.modal.advanced": "Zaawansowane",
- "user.settings.modal.confirmBtns": "Tak, Porzuć",
- "user.settings.modal.confirmMsg": "Masz niezapisane zmiany, jesteś pewien, że chcesz je porzucić?",
- "user.settings.modal.confirmTitle": "Porzucić zmiany?",
- "user.settings.modal.display": "Wygląd",
- "user.settings.modal.general": "Ogólne",
- "user.settings.modal.notifications": "Powiadomienia",
- "user.settings.modal.security": "Bezpieczeństwo",
- "user.settings.modal.title": "Ustawienia konta",
- "user.settings.notifications.allActivity": "Dla wszystkich aktywności",
- "user.settings.notifications.channelWide": "Wspomina na kanale \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Zamknij",
- "user.settings.notifications.comments": "Powiadomienia o odpowiedzi",
- "user.settings.notifications.commentsAny": "Trigger notifications on messages in reply threads that I start or participate in",
- "user.settings.notifications.commentsInfo": "In addition to notifications for when you're mentioned, select if you would like to receive notifications on reply threads.",
- "user.settings.notifications.commentsNever": "Do not trigger notifications on messages in reply threads unless I'm mentioned",
- "user.settings.notifications.commentsRoot": "Wyzwalaj powiadomienia o wiadomościach w wątkach, które rozpocząłem",
- "user.settings.notifications.desktop": "Wyświetlanie powiadomień na pulpicie",
- "user.settings.notifications.desktop.allNoSoundForever": "Dla wszystkich aktywności, bez dźwięku, pokazuj zawsze",
- "user.settings.notifications.desktop.allNoSoundTimed": "Dla wszystkich aktywności, bez dźwięku, pokazuj przez {seconds} sekund",
- "user.settings.notifications.desktop.allSoundForever": "Dla wszystkich aktywności, z dźwiękiem, pokazuj zawsze",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Dla wszystkich aktywności, pokazuj zawsze",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Dla wszystkich aktywności, pokazuj przez {seconds} sekund",
- "user.settings.notifications.desktop.allSoundTimed": "Dla wszystkich aktywności, z dźwiękiem, pokazuj przez {seconds} sekund",
- "user.settings.notifications.desktop.duration": "Czas trwania powiadomienia",
- "user.settings.notifications.desktop.durationInfo": "Określa, jak długo powiadomienia pojawiać się mają na ekranie podczas korzystania z przeglądarki Firefox lub Chrome. Powiadomienia na pulpicie w Edge i Safari może pozostać na ekranie maksymalnie 5 sekund.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Dla wzmianek i wiadomości bezpośrednich, bez dźwięku, pokazuj zawsze",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Dla wzmianek i wiadomości bezpośrednich, bez dźwięku, pokazuj przez {seconds} sekund",
- "user.settings.notifications.desktop.mentionsSoundForever": "Dla wzmianek i wiadomości bezpośrednich, z dźwiękiem, pokazuj zawsze",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Dla wzmianek i wiadomości bezpośrednich, pokazuj zawsze",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Dla wzmianek i wiadomości bezpośrednich, pokazuj przez {seconds} sekund",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Dla wzmianek i wiadomości bezpośrednich, z dźwiękiem, pokazuj przez {seconds} sekund",
- "user.settings.notifications.desktop.seconds": "{seconds} sekund",
- "user.settings.notifications.desktop.sound": "Dźwięk powiadomień",
- "user.settings.notifications.desktop.title": "Powiadomienia na pulpicie",
- "user.settings.notifications.desktop.unlimited": "Bez ograniczeń",
- "user.settings.notifications.desktopSounds": "Dźwięk powiadomień",
- "user.settings.notifications.email.disabled": "Wyłączone przez Administratora systemu",
- "user.settings.notifications.email.disabled_long": "Powiadomienia e-mail zostały wyłączone przez administratora systemu.",
- "user.settings.notifications.email.everyHour": "Co godzinę",
- "user.settings.notifications.email.everyXMinutes": "Co {count, plural, one {minute} other {{count, number} minut}}",
- "user.settings.notifications.email.immediately": "Natychmiastowo",
- "user.settings.notifications.email.never": "Nigdy",
- "user.settings.notifications.email.send": "Wysyłanie powiadomień e-mail",
- "user.settings.notifications.emailBatchingInfo": "Powiadomienia zbierane określony okres czasu połączone i wysłane w jednym mailu.",
- "user.settings.notifications.emailInfo": "Wysyłane są powiadomienia o wzmiankach i wiadomościach bezpośrednich, gdy jesteś w trybie offline lub z dala od {siteName} przez ponad 5 minut.",
- "user.settings.notifications.emailNotifications": "Powiadomienie e-mail",
- "user.settings.notifications.header": "Powiadomienia",
- "user.settings.notifications.info": "Powiadomienia na pulpicie są dostępne na EDGE, Firefox, Safari, Chrome i aplikacji Mattermost.",
- "user.settings.notifications.mentionsInfo": "Wspomina uruchamiane są, gdy ktoś wysyła wiadomość zawierającą twoją nazwę użytkownika (\"@{username}\") lub któreś z ustawień wybranych powyżej.",
- "user.settings.notifications.never": "Nigdy",
- "user.settings.notifications.noWords": "Nie skonfigurowano żadnych słów",
- "user.settings.notifications.off": "Wyłącz",
- "user.settings.notifications.on": "Włącz",
- "user.settings.notifications.onlyMentions": "Tylko dla wzmianek i bezpośrednich wiadomości",
- "user.settings.notifications.push": "Powiadomienia mobilne push",
- "user.settings.notifications.push_notification.status": "Wysyłaj powiadomienia push gdy",
- "user.settings.notifications.sensitiveName": "Twoje wrażliwe na wielkość liter imię \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Twoja nie wrażliwa na wielkość liter nazwa użytkownika \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Inne słowa oddzielone przecinkami:",
- "user.settings.notifications.soundConfig": "Proszę skonfigurować dźwięki powiadomień w ustawieniach przeglądarki",
- "user.settings.notifications.sounds_info": "Dźwięk powiadomień dostępny jest w IE11, Edge, Safari, Chrome i aplikacji Mattermost.",
- "user.settings.notifications.teamWide": "Wzmianki dla całego zespołu \"@all\"",
- "user.settings.notifications.title": "Ustawienia powiadomień",
- "user.settings.notifications.wordsTrigger": "Słowa, które uruchamiają wzmianki",
- "user.settings.push_notification.allActivity": "Dla wszystkich aktywności",
- "user.settings.push_notification.allActivityAway": "Dla wszystkich aktywności gdy zaraz wracam lub offline",
- "user.settings.push_notification.allActivityOffline": "Dla wszystkich aktywności gdy offline",
- "user.settings.push_notification.allActivityOnline": "Dla wszystkich aktywności gdy online, offline lub zaraz wracam",
- "user.settings.push_notification.away": "Zaraz wracam lub offline",
- "user.settings.push_notification.disabled": "Wyłączone przez Administratora",
- "user.settings.push_notification.disabled_long": "Powiadomienia push dla urządzeń mobilnych zostały wyłączone przez Administratora.",
- "user.settings.push_notification.info": "Powiadomienia są wysyłane do twojego urządzenia gdy coś się dzieje w Mattermost.",
- "user.settings.push_notification.off": "Wyłączone",
- "user.settings.push_notification.offline": "Offline",
- "user.settings.push_notification.online": "Tryb online, offline lub zaraz wracam",
- "user.settings.push_notification.onlyMentions": "Dla wzmianek i bezpośrednich wiadomości",
- "user.settings.push_notification.onlyMentionsAway": "Dla wzmianek i wiadomości bezpośrednich, gdy w trybie offline lub zaraz wracam",
- "user.settings.push_notification.onlyMentionsOffline": "Dla wzmianek i wiadomości bezpośrednich, gdy w trybie offline",
- "user.settings.push_notification.onlyMentionsOnline": "Dla wzmianek i wiadomości bezpośrednich, zawsze",
- "user.settings.push_notification.send": "Wysyłaj powiadomienia push",
- "user.settings.push_notification.status": "Wysyłaj powiadomienia push gdy",
- "user.settings.push_notification.status_info": "Alerty powiadomień są przesyłane tylko do urządzenia mobilnego, gdy stan online odpowiada wybranemu powyżej wyborowi.",
- "user.settings.security.active": "Aktywuj",
- "user.settings.security.close": "Zamknij",
- "user.settings.security.currentPassword": "Bieżące hasło",
- "user.settings.security.currentPasswordError": "Proszę podać obecne hasło.",
- "user.settings.security.deauthorize": "Wycofaj autoryzację",
- "user.settings.security.emailPwd": "E-mail i hasło",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Nieaktywny",
- "user.settings.security.lastUpdated": "Ostatnia aktualizacja {date} o {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Zalogowano przy pomocy GitLab",
- "user.settings.security.loginGoogle": "Zalogowano przy pomocy Google Apps",
- "user.settings.security.loginLdap": "Zalogowano przy pomocy AD/LDAP",
- "user.settings.security.loginOffice365": "Zalogowano przy pomocy Office 365",
- "user.settings.security.loginSaml": "Zalogowano przy pomocy SAML",
- "user.settings.security.logoutActiveSessions": "Zarządzaj aktywnymi sesjami",
- "user.settings.security.method": "Metoda logowania",
- "user.settings.security.newPassword": "Nowe hasło",
- "user.settings.security.noApps": "Nie autoryzowano żadnej aplikacji OAuth 2.0.",
- "user.settings.security.oauthApps": "Aplikacje OAuth 2.0",
- "user.settings.security.oauthAppsDescription": "Kliknij przycisk \"Edytuj\" do zarządzania aplikacjami OAuth 2.0",
- "user.settings.security.oauthAppsHelp": "Aplikacje działają w Twoim imieniu, aby uzyskać dostęp do danych w oparciu o przyznane im uprawnienia.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "W danej chwili może używać tylko jednej metody logowania.Zamiany metody logowania spowoduje wysłanie wiadomości e-mail z informacją, czy zmiana zakończyła się pomyślnie.",
- "user.settings.security.password": "Hasło",
- "user.settings.security.passwordError": "Hasło musi zawierać pomiędzy {min} a {max} znaków.",
- "user.settings.security.passwordErrorLowercase": "Hasło musi zawierać pomiędzy {min} a {max} znaków, dodatkowo przynajmniej jeden z nich musi być małą literą.",
- "user.settings.security.passwordErrorLowercaseNumber": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę i co najmniej jedną cyfrę.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę, co najmniej jedną cyfrę i co najmniej jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę i co najmniej jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę i co najmniej jedną wielką literę.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę, co najmniej jedną wielką literę i co najmniej jedną cyfrę.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę, co najmniej jedną wielką literę, co najmniej jedną cyfrę i co najmniej jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną małą literę, co najmniej jedną wielką literę i co najmniej jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną liczbę.",
- "user.settings.security.passwordErrorNumberSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jedną liczbę i co najmniej jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków zawierających co najmniej jednego symbol (np.,\"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Hasło musi zawierać pomiędzy {min} a {max} znaków, dodatkowo przynajmniej jeden z nich musi być wielką literą.",
- "user.settings.security.passwordErrorUppercaseNumber": "Hasło musi zawierać pomiędzy {min} a {max} znaków, dodatkowo musi być wśród nich co najmniej jedna duża litera i jedna cyfra.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków, dodatkowo musi być wśród nich co najmniej jedna duża litera, jedna cyfra i jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Hasło musi zawierać pomiędzy {min} a {max} znaków, dodatkowo musi być wśród nich co najmniej jedna duża litera oraz jeden symbol (np. \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Logowanie wykonywane jest przez GitLab. Nie można tutaj zmienić hasła.",
- "user.settings.security.passwordGoogleCantUpdate": "Logowanie wykonywane jest przez Google Apps. Nie można tutaj zmienić hasła.",
- "user.settings.security.passwordLdapCantUpdate": "Logowanie wykonywane jest przy użyciu AD/LDAP. Nie można tutaj zmienić hasła.",
- "user.settings.security.passwordMatchError": "Nowe hasła, które podałeś się nie zgadzają.",
- "user.settings.security.passwordMinLength": "Niepoprawna długość minimalna, nie mogę wyświetlić poglądu.",
- "user.settings.security.passwordOffice365CantUpdate": "Logowanie wykonywane jest przez Office 365. Nie można tutaj zmienić hasła.",
- "user.settings.security.passwordSamlCantUpdate": "Wartość tego pola pobierana jest od Twojego dostawcy logowania. Jeśli chcesz je zmienić musisz to zrobić tam.",
- "user.settings.security.retypePassword": "Wpisz ponownie nowe hasło",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Przełącz na e-mail i hasło",
- "user.settings.security.switchGitlab": "Przełącz na GitLab",
- "user.settings.security.switchGoogle": "Przełącz na Google Apps",
- "user.settings.security.switchLdap": "Przełącz na AD/LDAP",
- "user.settings.security.switchOffice365": "Przełącz na Office 365",
- "user.settings.security.switchSaml": "Przełącz na SAML",
- "user.settings.security.title": "Ustawienia bezpieczeństwa",
- "user.settings.security.viewHistory": "Zobacz historię dostępu",
- "user.settings.tokens.cancel": "Anuluj",
- "user.settings.tokens.clickToEdit": "Click 'Edit' to manage your personal access tokens",
- "user.settings.tokens.confirmCreateButton": "Yes, Create",
- "user.settings.tokens.confirmCreateMessage": "You are generating a personal access token with System Admin permissions. Are you sure want to create this token?",
- "user.settings.tokens.confirmCreateTitle": "Create System Admin Personal Access Token",
- "user.settings.tokens.confirmDeleteButton": "Yes, Delete",
- "user.settings.tokens.confirmDeleteMessage": "Any integrations using this token will no longer be able to access the Mattermost API. You cannot undo this action.
Are you sure want to delete the {description} token?",
- "user.settings.tokens.confirmDeleteTitle": "Delete Token?",
- "user.settings.tokens.copy": "Please copy the access token below. You won't be able to see it again!",
- "user.settings.tokens.create": "Create New Token",
- "user.settings.tokens.delete": "Usuń",
- "user.settings.tokens.description": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API.",
- "user.settings.tokens.description_mobile": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API. Create new tokens on your desktop.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "Opis strony: ",
- "user.settings.tokens.nameHelp": "Enter a description for your token to remember what it does.",
- "user.settings.tokens.nameRequired": "Please enter a description.",
- "user.settings.tokens.save": "Zapisz",
- "user.settings.tokens.title": "Personal Access Tokens",
- "user.settings.tokens.token": "Access Token: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
- "user_list.notFound": "Nie odnaleziono użytkowników",
- "user_profile.send.dm": "Wyślij wiadomość",
- "user_profile.webrtc.call": "Rozpocznij rozmowę wideo",
- "user_profile.webrtc.offline": "Użytkownik jest w trybie offline",
- "user_profile.webrtc.unavailable": "Nowe połączenie jest niedostępne do momentu zakończenia istniejących połączeń",
- "view_image.loading": "Wczytywanie ",
- "view_image_popover.download": "Pobierz",
- "view_image_popover.file": "File {count, number} of {total, number}",
- "view_image_popover.publicLink": "Pobierz adres publiczny",
- "web.footer.about": "O",
- "web.footer.help": "Pomoc",
- "web.footer.privacy": "Prywatność",
- "web.footer.terms": "Warunki",
- "web.header.back": "Wstecz",
- "web.header.logout": "Wyloguj",
- "web.root.signup_info": "Cała komunikacja Twojego zespołu w jednym miejscu, z natychmiastowym przeszukiwaniem i dostępna z każdego miejsca.",
- "webrtc.busy": "{username} jest zajęty.",
- "webrtc.call": "Zadzwoń",
- "webrtc.callEnded": "Rozmowa z {username} zakończona",
- "webrtc.cancel": "Anuluj połączenie",
- "webrtc.cancelled": "{username} zakończył rozmowę.",
- "webrtc.declined": "Połączenie zostało odrzucone przez {username}.",
- "webrtc.disabled": "{username} nie posiada wsparcie dla webrtc i nie może odbierać połączeń. Aby włączyć tę funkcję, należy przejść do Ustawienia > Zaawansowane > Funkcje rozwojowe i właczyć webrtc.",
- "webrtc.failed": "Wystąpił problem podczas łączenia się do wideorozmowy.",
- "webrtc.hangup": "Rozłącz",
- "webrtc.header": "Rozmowa z {username}",
- "webrtc.inProgress": "Masz połączenie w toku. Proszę rozłącz się najpierw.",
- "webrtc.mediaError": "Nie można uzyskać dostępu do kamery lub mikrofonu.",
- "webrtc.mute_audio": "Wycisz mikrofon",
- "webrtc.noAnswer": "{username} nie odbiera rozmowy.",
- "webrtc.notification.answer": "Odbierz",
- "webrtc.notification.decline": "Odrzuć",
- "webrtc.notification.incoming_call": "{username} dzwoni.",
- "webrtc.notification.returnToCall": "Powrót do trwającego połączenia z {username}",
- "webrtc.offline": "{username} jest offline.",
- "webrtc.pause_video": "Wyłącz kamerę",
- "webrtc.unmute_audio": "Włącz mikrofon",
- "webrtc.unpause_video": "Włącz kamerę",
- "webrtc.unsupported": "{username} nie obsługuje wideo.",
- "youtube_video.notFound": "Wideo nie znalezione"
-}
diff --git a/webapp/i18n/pt-BR.json b/webapp/i18n/pt-BR.json
deleted file mode 100644
index 3179a0de810..00000000000
--- a/webapp/i18n/pt-BR.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Fechar",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. Todos os direitos reservados",
- "about.database": "Banco de dados:",
- "about.date": "Data De Criação:",
- "about.enterpriseEditionLearn": "Saiba mais sobre Enterprise Edition em ",
- "about.enterpriseEditionSt": "Comunicação empresarial moderna atrás do seu firewall.",
- "about.enterpriseEditione1": "Enterprise Edition",
- "about.hash": "Hash de Compilação:",
- "about.hashee": "Hash de Compilação EE:",
- "about.licensed": "Licenciado para:",
- "about.notice": "Mattermost é possível graças ao software de código aberto usado na nossa platforma, desktop e app móvel.",
- "about.number": "O Número de Compilação:",
- "about.teamEditionLearn": "Junte-se a comunidade Mattermost em ",
- "about.teamEditionSt": "Toda comunicação da sua equipe em um só lugar, instantaneamente pesquisável e acessível em qualquer lugar.",
- "about.teamEditiont0": "Team Edition",
- "about.teamEditiont1": "Enterprise Edition",
- "about.title": "Sobre o Mattermost",
- "about.version": "Versão:",
- "access_history.title": "Histórico de Acesso",
- "activity_log.activeSessions": "Sessões ativas",
- "activity_log.browser": "Browser: {browser}",
- "activity_log.firstTime": "Primeira vez ativo: {date}, {time}",
- "activity_log.lastActivity": "Última atividade: {date}, {time}",
- "activity_log.logout": "Logout",
- "activity_log.moreInfo": "Mais informações",
- "activity_log.os": "SO: {os}",
- "activity_log.sessionId": "ID da Sessão: {id}",
- "activity_log.sessionsDescription": "Sessões são criadas quando você efetuar login em um novo navegador em um dispositivo. Sessões permitem que você use Mattermost sem ter que logar novamente por um período de tempo especificado pelo administrador do sistema. Se você deseja sair mais cedo, use o botão 'Logout' abaixo para terminar uma sessão.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "App Nativo para Android",
- "activity_log_modal.androidNativeClassicApp": "App Clássico Android Nativo",
- "activity_log_modal.desktop": "Aplicativo Nativo Desktop",
- "activity_log_modal.iphoneNativeApp": "App Nativo para iPhone",
- "activity_log_modal.iphoneNativeClassicApp": "App Clássico iPhone Nativo",
- "add_command.autocomplete": "Autocompletar",
- "add_command.autocomplete.help": "(Opcional) Exibir comandos slash na lista de auto preenchimento.",
- "add_command.autocompleteDescription": "Autocompletar Descrição: ",
- "add_command.autocompleteDescription.help": "(Opcional) Breve descrição opcional do comando slash para a lista de preenchimento automático.",
- "add_command.autocompleteDescription.placeholder": "Exemplo: \"Retorna os resultados da pesquisa, prontuário\"",
- "add_command.autocompleteHint": "Autocompletar Sugestão",
- "add_command.autocompleteHint.help": "(Opcional) Argumentos associados com seu comando slash, exibido como ajuda na lista de preenchimento automático.",
- "add_command.autocompleteHint.placeholder": "Exemplo: [Nome Do Paciente]",
- "add_command.cancel": "Cancelar",
- "add_command.description": "Descrição",
- "add_command.description.help": "Descrição do seu webhook de entrada.",
- "add_command.displayName": "Nome de Exibição",
- "add_command.displayName.help": "Nome de exibição para seu comando slash contendo até 64 caracteres.",
- "add_command.doneHelp": "Seu comando slash foi definido. O seguinte token será enviado com a mensagem de saída. Por favor, usá-lo para verificar o pedido vindo da sua equipe Mattermost (veja documentação para mais detalhes).",
- "add_command.iconUrl": "Ícone de Resposta",
- "add_command.iconUrl.help": "(Opcional) Escolha uma imagem do perfil para substituir as respostas dos posts deste comando slash. Digite a URL de um arquivo .png ou .jpg com pelo menos 128 pixels por 128 pixels.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "Método da Requisição",
- "add_command.method.get": "GET",
- "add_command.method.help": "O tipo de solicitação do comando emitido para a URL requisitada.",
- "add_command.method.post": "POST",
- "add_command.save": "Salvar",
- "add_command.token": "Token: {token}",
- "add_command.trigger": "Comando Palavra Gatilho",
- "add_command.trigger.help": "Palavra gatilho precisa ser única, e não pode começar com uma barra ou conter espaços.",
- "add_command.trigger.helpExamples": "Exemplos: cliente, funcionario, paciente, tempo",
- "add_command.trigger.helpReserved": "Reservado: {link}",
- "add_command.trigger.helpReservedLinkText": "veja a lista de comandos slash nativos",
- "add_command.trigger.placeholder": "Comando gatilho ex. \"ola\"",
- "add_command.triggerInvalidLength": "Uma palavra gatilho precisa conter entre {min} e {max} caracteres",
- "add_command.triggerInvalidSlash": "Uma palavra gatilho não pode começar com /",
- "add_command.triggerInvalidSpace": "Uma palavra gatilho não pode conter espaços",
- "add_command.triggerRequired": "Uma palavra gatilho é necessária",
- "add_command.url": "URL da solicitação",
- "add_command.url.help": "A URL callback para receber o evento HTTP POST ou GET quando o comando slash for executado.",
- "add_command.url.placeholder": "Deve começar com http:// ou https://",
- "add_command.urlRequired": "Uma URL de requisição é necessária",
- "add_command.username": "Usuário de Resposta",
- "add_command.username.help": "(Opcional) Escolha um nome de usuário para substituir as respostas deste comando slash. O nome de usuário deve ter até 22 caracteres contendo letras minúsculas, números e os símbolos \"-\", \"_\", e \".\" .",
- "add_command.username.placeholder": "Usuário",
- "add_emoji.cancel": "Cancelar",
- "add_emoji.header": "Adicionar",
- "add_emoji.image": "Imagem",
- "add_emoji.image.button": "Selecionar",
- "add_emoji.image.help": "Escolha a imagem para o seu emoji. A imagem pode ser um gif, png ou jpeg com tamanho máximo de 1 MB. As dimensões serão automaticamente redimensionadas para encaixar em 128 por 128 pixels mas mantendo a relação de aspecto.",
- "add_emoji.imageRequired": "Uma imagem é necessária para o emoji",
- "add_emoji.name": "Nome",
- "add_emoji.name.help": "Escolha um nome para o seu emoji que pode ter até 64 letras minúsculas, números, e símbolos '-' e '_'.",
- "add_emoji.nameInvalid": "Os nomes dos emojis apenas podem conter números, letras e os símbolos '-' e '_'.",
- "add_emoji.nameRequired": "Um nome é necessário para o emoji",
- "add_emoji.nameTaken": "Este nome já está sendo usado por um emoji do sistema. Por Favor escolha outro nome.",
- "add_emoji.preview": "Pré-visualização",
- "add_emoji.preview.sentence": "Esta é uma frase com a {image} nela.",
- "add_emoji.save": "Salvar",
- "add_incoming_webhook.cancel": "Cancelar",
- "add_incoming_webhook.channel": "Canal",
- "add_incoming_webhook.channel.help": "Canal público ou privado que recebe as cargas webhook. Você deve pertencer ao canal privado ao configurar o webhook.",
- "add_incoming_webhook.channelRequired": "Um canal válido é necessário",
- "add_incoming_webhook.description": "Descrição",
- "add_incoming_webhook.description.help": "Descrição do seu webhook de entrada.",
- "add_incoming_webhook.displayName": "Nome de Exibição",
- "add_incoming_webhook.displayName.help": "Nome de exibição para seu webhook de entrada contendo até 64 caracteres.",
- "add_incoming_webhook.doneHelp": "Seu webhook de entrada foi definido. Por favor envie dados para a URL seguinte (veja documentação para mais detalhes).",
- "add_incoming_webhook.name": "Nome",
- "add_incoming_webhook.save": "Salvar",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "Os URIs de redirecionamento para o qual o serviço irá redirecionar os usuários depois de aceitar ou negar a autorização de sua aplicação, e que irá lidar com códigos de autorização ou tokens de acesso. Deve ser uma URL válida e começar com http:// ou https://.",
- "add_oauth_app.callbackUrlsRequired": "Uma ou mais URLs callback são necessárias",
- "add_oauth_app.clientId": "ID Cliente: {id}",
- "add_oauth_app.clientSecret": "Cliente Chave Secreta: {secret}",
- "add_oauth_app.description.help": "Descrição para sua aplicação OAuth 2.0.",
- "add_oauth_app.descriptionRequired": "Descrição para a aplicação OAuth 2.0 é obrigatória.",
- "add_oauth_app.doneHelp": "Sua aplicação OAuth 2.0 foi configurada. Por favor use o seguinte ID de Cliente e Chave Secreta ao solicitar a autorização para a sua aplicação (veja a documentação para mais detalhes).",
- "add_oauth_app.doneUrlHelp": "A seguir estão as URL(s) de redirecionamento autorizadas.",
- "add_oauth_app.header": "Adicionar",
- "add_oauth_app.homepage.help": "A URL para a página inicial da aplicação OAuth 2.0. Certifique-se de usar HTTP ou HTTPS em sua URL dependendo da sua configuração do servidor.",
- "add_oauth_app.homepageRequired": "Página Inicial para a aplicação OAuth 2.0 é obrigatória.",
- "add_oauth_app.icon.help": "(Opcional) A URL da imagem usada para a sua aplicação OAuth 2.0. Certifique-se de usar HTTP ou HTTPS em sua URL.",
- "add_oauth_app.name.help": "Nome de exibição para sua aplicação OAuth 2.0 contendo até 64 caracteres.",
- "add_oauth_app.nameRequired": "Nome para a aplicação OAuth 2.0 é obrigatória.",
- "add_oauth_app.trusted.help": "Quando verdadeiro, a aplicação OAuth 2.0 é considerado confiável pelo servidor Mattermost e não requer que o usuário aceite a autorização. Quando falso, uma janela adicional será exibida, solicitando ao usuário para aceitar ou negar a autorização.",
- "add_oauth_app.url": "URL(s): {url}",
- "add_outgoing_webhook.callbackUrls": "URLs Callback (Uma Por Linha)",
- "add_outgoing_webhook.callbackUrls.help": "A URL que as mensagens serão enviadas.",
- "add_outgoing_webhook.callbackUrlsRequired": "Uma ou mais URLs callback são necessárias",
- "add_outgoing_webhook.cancel": "Cancelar",
- "add_outgoing_webhook.channel": "Canal",
- "add_outgoing_webhook.channel.help": "Canal público para receber cargas webhook. Opcional se pelo menos uma Palavra Gatilho for especificado.",
- "add_outgoing_webhook.contentType.help1": "Escolha o tipo de conteúdo pelo qual a resposta será enviada.",
- "add_outgoing_webhook.contentType.help2": "Se application/x-www-form-urlencoded for escolhida, o servidor assume que você vai codificar os parâmetros em um formato de URL.",
- "add_outgoing_webhook.contentType.help3": "Se application/json for escolhida, o servidor assume que você irá postar os dados em JSON.",
- "add_outgoing_webhook.content_Type": "Tipo de Conteúdo",
- "add_outgoing_webhook.description": "Descrição",
- "add_outgoing_webhook.description.help": "Descrição do seu webhook de saída.",
- "add_outgoing_webhook.displayName": "Nome de Exibição",
- "add_outgoing_webhook.displayName.help": "Nome de exibição para seu webhook de saída contendo até 64 caracteres.",
- "add_outgoing_webhook.doneHelp": "Seu webhook de saída foi definido. O seguinte token será enviado com a mensagem de saída. Por favor, usá-lo para verificar o pedido vindo da sua equipe Mattermost (veja documentação para mais detalhes).",
- "add_outgoing_webhook.name": "Nome",
- "add_outgoing_webhook.save": "Salvar",
- "add_outgoing_webhook.token": "Token: {token}",
- "add_outgoing_webhook.triggerWords": "Palavras Gatilho (Uma Por Linha)",
- "add_outgoing_webhook.triggerWords.help": "Mensagens que começam com uma das palavras especificadas irá disparar o webhook de saída. Opcional se o canal for selecionado.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Um canal válido ou uma lista de palavras gatilho é necessário",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Gatilho Quando",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Escolher quando disparar o webhook de saída; se a primeira palavra de uma mensagem corresponde exatamente a uma Palavra Gatilho, ou se ele começa com uma Palavra Gatilho.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "Primeira palavra corresponde exatamente a uma palavra gatilho",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "Primeira palavra começa com uma palavra gatilho",
- "add_users_to_team.title": "Adicionar Novos Membros para Equipe {teamName}",
- "admin.advance.cluster": "Alta Disponibilidade",
- "admin.advance.metrics": "Monitoramento de Performance",
- "admin.audits.reload": "Recarregar",
- "admin.audits.title": "Atividade de Usuário",
- "admin.authentication.email": "Autenticação Email",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Nota:",
- "admin.client_versions.androidLatestVersion": "Última Versão Android",
- "admin.client_versions.androidLatestVersionHelp": "A versão mais recente lançada para Android",
- "admin.client_versions.androidMinVersion": "Versão Mínima Android",
- "admin.client_versions.androidMinVersionHelp": "A versão Android miníma compatível",
- "admin.client_versions.desktopLatestVersion": "Ultima Versão Desktop",
- "admin.client_versions.desktopLatestVersionHelp": "A versão mais recente lançada para Desktop",
- "admin.client_versions.desktopMinVersion": "Versão Mínima Desktop",
- "admin.client_versions.desktopMinVersionHelp": "A versão Desktop miníma compatível",
- "admin.client_versions.iosLatestVersion": "Última Versão IOS",
- "admin.client_versions.iosLatestVersionHelp": "A versão mais recente lançada para IOS",
- "admin.client_versions.iosMinVersion": "Versão Mínima IOS",
- "admin.client_versions.iosMinVersionHelp": "A versão IOS miníma compatível",
- "admin.cluster.enableDescription": "Quando verdadeiro, Mattermost irá executar no modo de Alta Disponibilidade. Por favor leia documentação para aprender mais sobre configurar Alta Disponibilidade para o Mattermost.",
- "admin.cluster.enableTitle": "Ativar modo Alta Disponibilidade:",
- "admin.cluster.interNodeListenAddressDesc": "O endereço que o servidor irá escutar para a comunicação com os outros servidores.",
- "admin.cluster.interNodeListenAddressEx": "Ex.: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Inter-Node Escutar Endereço:",
- "admin.cluster.interNodeUrlsDesc": "As URLs internas/privadas de todos os servidores Mattermost separados por virgulas.",
- "admin.cluster.interNodeUrlsEx": "Ex.: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Inter-Node URLs:",
- "admin.cluster.loadedFrom": "Esta configuração foi carregada do Node ID {clusterId}. Por favor consulte o Guia de Resolução de Problemas na nossa documentação se você está acessando o Console do Sistema através de um balanceador de carga e enfrentando problemas.",
- "admin.cluster.noteDescription": "Alterando propriedades nesta seção irá exigir a reinicialização do servidor antes de ter efeito. Quando o modo de Alta Disponibilidade é ativado, o Console do Sistema é definido para somente leitura e só pode ser alterado a partir do arquivo de configuração a menos que ReadOnlyConfig estiver desativado no arquivo de configurações.",
- "admin.cluster.should_not_change": "ATENÇÃO: Essas configurações podem não sincronizar com outros servidores no cluster. Comunicação de Alta Disponibilidade inter-node não será iniciado até que você modifique o config.json para ser idênticos em todos os servidores e reiniciar Mattermost. Por favor leia a documentação de como adicionar ou remover um servidor do cluster. Se você estiver acessando o Console do Sistema através de um balanceador e enfrentando problemas, por favor veja o Guia de Resolução de Problemas na nossa documentação.",
- "admin.cluster.status_table.config_hash": "MD5 Arquivo de Configuração",
- "admin.cluster.status_table.hostname": "Nome da máquina",
- "admin.cluster.status_table.id": "Node ID",
- "admin.cluster.status_table.reload": " Recarregar Cluster Status",
- "admin.cluster.status_table.status": "Status",
- "admin.cluster.status_table.url": "Endereço Gossip",
- "admin.cluster.status_table.version": "Versão",
- "admin.cluster.unknown": "desconhecido",
- "admin.compliance.directoryDescription": "Diretório o qual os relatórios conformidade são gravados. Se estiver em branco, será usado ./data/.",
- "admin.compliance.directoryExample": "Ex.: \"./data/\"",
- "admin.compliance.directoryTitle": "Diretório de Relatórios de conformidade:",
- "admin.compliance.enableDailyDesc": "Quando verdadeiro, Mattermost irá gerar um relatório diário de conformidade.",
- "admin.compliance.enableDailyTitle": "Ativar Relatório Diário:",
- "admin.compliance.enableDesc": "Quando verdadeiro, Mattermost permite relatórios de conformidade na aba Conformidade e Auditoria. Leia a documentação para saber mais.",
- "admin.compliance.enableTitle": "Habilitar Relatórios de Conformidade:",
- "admin.compliance.false": "falso",
- "admin.compliance.noLicense": "
Nota:
Conformidade é um recurso enterprise. Sua licença atual não suporta Conformidade. Clique aqui para informações e preços da licença enterprise.
",
- "admin.compliance.save": "Salvar",
- "admin.compliance.saving": "Salvando Config...",
- "admin.compliance.title": "Configurações Conformidade",
- "admin.compliance.true": "verdadeiro",
- "admin.compliance_reports.desc": "Nome da Tarefa:",
- "admin.compliance_reports.desc_placeholder": "Ex: \"Audit 445 for HR\"",
- "admin.compliance_reports.emails": "Emails:",
- "admin.compliance_reports.emails_placeholder": "Ex: \"bill@example.com, bob@example.com\"",
- "admin.compliance_reports.from": "De:",
- "admin.compliance_reports.from_placeholder": "Ex: \"2016-03-11\"",
- "admin.compliance_reports.keywords": "Palavras-chave:",
- "admin.compliance_reports.keywords_placeholder": "Ex: \"diminuir estoque\"",
- "admin.compliance_reports.reload": "Recarregamento de Relatórios de Conformidade Concluído",
- "admin.compliance_reports.run": "Executar Relatório de Conformidade",
- "admin.compliance_reports.title": "Relatórios de Conformidade",
- "admin.compliance_reports.to": "Para:",
- "admin.compliance_reports.to_placeholder": "Ex: \"2016-03-15\"",
- "admin.compliance_table.desc": "Descrição",
- "admin.compliance_table.download": "Download",
- "admin.compliance_table.params": "Parâmetros",
- "admin.compliance_table.records": "Registros",
- "admin.compliance_table.status": "Status",
- "admin.compliance_table.timestamp": "Timestamp",
- "admin.compliance_table.type": "Tipo",
- "admin.compliance_table.userId": "Solicitado Por",
- "admin.connectionSecurityNone": "Nenhum",
- "admin.connectionSecurityNoneDescription": "Mattermost irá conectar usando uma conexão não segura.",
- "admin.connectionSecurityStart": "STARTTLS",
- "admin.connectionSecurityStartDescription": "Obtém uma conexão insegura existente e tenta atualizá-la para uma conexão segura usando TLS.",
- "admin.connectionSecurityTest": "Testar Conexão",
- "admin.connectionSecurityTitle": "Segurança da Conexão:",
- "admin.connectionSecurityTls": "TLS",
- "admin.connectionSecurityTlsDescription": "Encriptar a comunicação entre Mattermost e o seu servidor.",
- "admin.customization.androidAppDownloadLinkDesc": "Adiciona um link para download do app Android. Usuários que acessarem o site em um navegador móvel serão perguntados com uma página dando a opção para download do app. Deixe este campo em branco para evitar que a página apareça.",
- "admin.customization.androidAppDownloadLinkTitle": "App Android Link para Download:",
- "admin.customization.appDownloadLinkDesc": "Adiciona um link para página de download dos apps Mattermost. Quando um link está presente, a opção \"Download Apps Mattermost\" será adicionada no Menu Principal então os usuários poderão acessar a página de download. Deixe este campo em branco para ocultar a opção no Menu Principal.",
- "admin.customization.appDownloadLinkTitle": "Apps Mattermost Link para Página de Download:",
- "admin.customization.customBrand": "Marca Personalizada",
- "admin.customization.emoji": "Emoji",
- "admin.customization.enableCustomEmojiDesc": "Habilitar para os usuários a criação de emoji personalizados para usar nas mensagens. Quando habilitado, as configurações dos Emoji personalizados podem ser acessadas trocando para Time e clicando nos três pontos encima do canal, e selecionando \"Emoji Personalizados\".",
- "admin.customization.enableCustomEmojiTitle": "Ativar Emoji Personalizado:",
- "admin.customization.enableEmojiPickerDesc": "O seletor de emoji permite aos usuários selecionar emoji para adicionar como reações ou usar em mensagens. Habilitar o seletor de emoji com um grande número de emoji personalizados pode diminuir o desempenho.",
- "admin.customization.enableEmojiPickerTitle": "Ativar Seletor de Emoji:",
- "admin.customization.enableLinkPreviewsDesc": "Permitir que os usuários exibam uma visualização do conteúdo do site abaixo da mensagem, se disponível. Quando verdadeiro, as pré-visualizações do site podem ser ativadas em Configurações da conta > Avançado > Visualizar recursos de pré-lançamento.",
- "admin.customization.enableLinkPreviewsTitle": "Habilitar Visualizações de Links:",
- "admin.customization.iosAppDownloadLinkDesc": "Adiciona um link para download do app iOS. Usuários que acessarem o site em um navegador móvel serão perguntados com uma página dando a opção para download do app. Deixe este campo em branco para evitar que a página apareça.",
- "admin.customization.iosAppDownloadLinkTitle": "App iOS Link para Download:",
- "admin.customization.linkPreviews": "Visualizações de Links",
- "admin.customization.nativeAppLinks": "Links Aplicativo Mattermost",
- "admin.customization.restrictCustomEmojiCreationAdmin": "Habilitar criação de emoji personalizados para Administradores de Sistema e de Times ",
- "admin.customization.restrictCustomEmojiCreationAll": "Permitir que todos possam criar emoji personalizados",
- "admin.customization.restrictCustomEmojiCreationDesc": "Restringir a criação de emoji personalizado para determinados usuários.",
- "admin.customization.restrictCustomEmojiCreationSystemAdmin": "Permitir que apenas administradores do sistema possam criar emoji personalizados",
- "admin.customization.restrictCustomEmojiCreationTitle": "Restringir a Criação Emoji Personalizado:",
- "admin.customization.support": "Legal e Suporte",
- "admin.database.title": "Configurações do Banco de dados",
- "admin.developer.title": "Configurações de Desenvolvedor",
- "admin.elasticsearch.bulkIndexButton.error": "Falha ao agendar Bulk Index Job: {error}",
- "admin.elasticsearch.connectionUrlDescription": "O endereço do servidor de Elasticsearch. {documentationLink}",
- "admin.elasticsearch.connectionUrlExample": "Ex.: \"https://elasticsearch.example.org:9200\"",
- "admin.elasticsearch.connectionUrlExample.documentationLinkText": "Por favor verifique a documentação para as instruções para configurar o servidor.",
- "admin.elasticsearch.connectionUrlTitle": "Endereço de Conexão do servidor:",
- "admin.elasticsearch.elasticsearch_test_button": "Testar a Conexão",
- "admin.elasticsearch.enableIndexingDescription": "Quando verdadeiro, a indexação dos posts irá acontecer automaticamente. Consultas de procura irá utilizar o banco de procura enquanto \"Habilitar Elasticsearch para consultas de procura\" esteja habilitado. {documentationLink}",
- "admin.elasticsearch.enableIndexingDescription.documentationLinkText": "Leia mais sobre Elasticsearch na nossa documentação.",
- "admin.elasticsearch.enableIndexingTitle": "Habilitar Elasticsearch Indexing:",
- "admin.elasticsearch.enableSearchingDescription": "Necessita uma conexão funcional com o servidor de Elasticsearch. Quando verdadeiro, Elasticsearch será utilizado para as consultas de procura usando a última indexação. Resultados da procura podem estar incompletos até que todos os posts do banco de dados sejam indexados. Quando falso, será utilizado o banco de dados para procura.",
- "admin.elasticsearch.enableSearchingTitle": "Habilitar Elasticsearch para consultas de procura:",
- "admin.elasticsearch.indexButton.inProgress": "Indexação em progresso",
- "admin.elasticsearch.indexButton.ready": "Construir Índice",
- "admin.elasticsearch.indexHelpText.buildIndex": "Todas as postagens no banco de dados serão indexadas do mais antigo ao mais novo. Elasticsearch fica disponível durante a indexação, mas os resultados da pesquisa podem estar incompletos até o trabalho de indexação estar completo.",
- "admin.elasticsearch.indexHelpText.cancelIndexing": "Cancelamento para o job de indexação e o remove da fila. As mensagens que já foram indexadas não serão excluídas.",
- "admin.elasticsearch.noteDescription": "Alterando as propriedades nesta seção irá exigir que o servidor seja reiniciado para que tenha efeito.",
- "admin.elasticsearch.password": "Ex.: \"suasenha\"",
- "admin.elasticsearch.passwordDescription": "(Opcional) Senha para autenticar no servidor de Elasticsearch.",
- "admin.elasticsearch.passwordTitle": "Senha do Servidor:",
- "admin.elasticsearch.purgeIndexesButton": "Apagar Índices",
- "admin.elasticsearch.purgeIndexesButton.error": "Falha ao apagar índices: {error}",
- "admin.elasticsearch.purgeIndexesButton.label": "Apagar Índices:",
- "admin.elasticsearch.purgeIndexesButton.success": "Índices apagados com sucesso:",
- "admin.elasticsearch.purgeIndexesHelpText": "Purging irá remover completamente o índice no servidor Elasticsearch. Os resultados da pesquisa podem ficar incompletos até um índice em massa do banco de dados de postagem existente for reconstruído.",
- "admin.elasticsearch.sniffDescription": "Quando verdadeiro, sniffing irá procurar e conectar em todos os data nodes no seu cluster automaticamente.",
- "admin.elasticsearch.sniffTitle": "Habilitar Cluster Sniffing:",
- "admin.elasticsearch.testConfigSuccess": "Teste bem sucedido. Configuração salva.",
- "admin.elasticsearch.testHelpText": "Verifica se o servidor Mattermost pode conectar no servidor de Elasticsearch especificado. Testar a conexão apenas salva a configuração se o teste for bem-sucedido. Consulte o arquivo de log para obter mensagens de erro mais detalhadas.",
- "admin.elasticsearch.title": "Elasticsearch (Beta)",
- "admin.elasticsearch.usernameDescription": "(Opcional) O nome do usuário para autenticar no servidor de Elasticsearch.",
- "admin.elasticsearch.usernameExample": "Ex.: \"elastic\"",
- "admin.elasticsearch.usernameTitle": "Nome do Usuário do Servidor:",
- "admin.elasticsearchStatus.bulkIndexLabel": "Indexação em massa:",
- "admin.elasticsearchStatus.cancelButton": "Cancelar",
- "admin.elasticsearchStatus.status": "Status: ",
- "admin.elasticsearchStatus.statusCancelled": "Job de indexação cancelado.",
- "admin.elasticsearchStatus.statusError": "Erro na indexação.",
- "admin.elasticsearchStatus.statusError.help": "Mattermost encontrou um erro ao construir o índice Elasticsearch: {error}",
- "admin.elasticsearchStatus.statusInProgress": "Job em progresso. {percent}% completo.",
- "admin.elasticsearchStatus.statusInProgress.help": "Indexação está em progresso no servidor de job. Se o Elasticsearch estiver ativado, os resultados das pesquisas podem estar incompletos até o termino do job.",
- "admin.elasticsearchStatus.statusIndexingDisabled": "Indexação desativada.",
- "admin.elasticsearchStatus.statusLoading": "Carregando...",
- "admin.elasticsearchStatus.statusNoJobs": "Nenhum job de indexação na fila.",
- "admin.elasticsearchStatus.statusPending": "Job pendente.",
- "admin.elasticsearchStatus.statusPending.help": "Indexação está na fila de job do servidor. Se o Elasticsearch estiver ativado, os resultados das pesquisas podem estar incompletos até o termino do job.",
- "admin.elasticsearchStatus.statusRequestCancel": "Cancelando o Job...",
- "admin.elasticsearchStatus.statusSuccess": "indexação completa.",
- "admin.elasticsearchStatus.statusSuccess.help": "A indexação está completa e as novas postagens estão sendo indexadas automaticamente.",
- "admin.email.agreeHPNS": " Eu entendo e aceito o serviço de notificação por push do Mattermost Hosted Termos do Serviço e Política de Privacidade.",
- "admin.email.allowEmailSignInDescription": "Quando verdadeiro, Mattermost permite aos usuários fazer login usando o e-mail e senha.",
- "admin.email.allowEmailSignInTitle": "Habilitar login por email:",
- "admin.email.allowSignupDescription": "Quando verdadeiro, Mattermost permite a criação de conta através de e-mail e senha. Este valor deve ser falso somente quando você deseja limitar a entrada para o sign-on service como AD/LDAP, SAML ou GitLab.",
- "admin.email.allowSignupTitle": "Habilitar criação de contas com email: ",
- "admin.email.allowUsernameSignInDescription": "Quando verdadeiro, usuários com login por email podem usar seus nomes de usuários e senha para fazer login. Esta configuração não afeta o login AD/LDAP.",
- "admin.email.allowUsernameSignInTitle": "Habilitar login com nome de usuário:",
- "admin.email.connectionSecurityTest": "Testar Conexão",
- "admin.email.easHelp": "Leia mais sobre compilar e publicar seu próprio aplicativo móvel em Enterprise App Store.",
- "admin.email.emailFail": "Conexão falhou: {error}",
- "admin.email.emailSuccess": "Nenhum erro foram relatados durante o envio de um e-mail. Por favor verifique a sua caixa de entrada para se certificar.",
- "admin.email.enableEmailBatching.clusterEnabled": "Email em lote não pode ser ativado quando modo de Alta Disponibilidade está ativo.",
- "admin.email.enableEmailBatching.siteURL": "Email em lote não pode ser ativo a menos que o SiteURL estiver configurado em Configurações > SiteURL.",
- "admin.email.enableEmailBatchingDesc": "Quando verdadeiro, os usuários terão notificações por e-mail para múltiplas mensagens diretas e menções combinadas em um único e-mail. O processamento por lotes ocorrerá em um intervalo padrão de 15 minutos, configurável em Configurações da Conta > Notificações.",
- "admin.email.enableEmailBatchingTitle": "Ativar Email em Lote:",
- "admin.email.enableSMTPAuthDesc": "Quando habilitado, o nome de usuário e a senha são usados para autenticar o servidor SMTP.",
- "admin.email.enableSMTPAuthTitle": "Ativar Autenticação SMTP:",
- "admin.email.fullPushNotification": "Enviar trecho de mensagem",
- "admin.email.genericNoChannelPushNotification": "Enviar descrições genericas com somente o nome do remetente",
- "admin.email.genericPushNotification": "Enviar descrição genérica com nomes do usuário e canal",
- "admin.email.inviteSaltDescription": "Salt de 32-caracteres adicionados a assinatura de convites por e-mail. Aleatoriamente gerados na instalação. Click \"Re-Gerar\" para criar um novo salt.",
- "admin.email.inviteSaltExample": "Ex.: \"bjlSR4QqkXFBr7TP4oDzlfZmcNuH9Yo\"",
- "admin.email.inviteSaltTitle": "Salt Email Convite:",
- "admin.email.mhpns": "Use criptografado, com qualidade de produção conexão HPNS com aplicativos Android e iOS",
- "admin.email.mhpnsHelp": "Download Mattermost iOS app no iTunes. Download Mattermost Android app no Google Play. Saiba mais sobre HPNS.",
- "admin.email.mtpns": "Use apps iOS e Android no iTunes e Google Play com TPMS",
- "admin.email.mtpnsHelp": "Download Mattermost iOS app no iTunes. Download Mattermost Android app no Google Play. Saiba mais sobre TPNS.",
- "admin.email.nofificationOrganizationExample": "Ex. \"® Empresa ABC, Av. Paulista, 1000, São Paulo, SP, 12345-150, BRA\"",
- "admin.email.notification.contents.full": "Enviar conteúdo completo da mensagem",
- "admin.email.notification.contents.full.description": "Nome do remetente e do canal são incluídos no email de notificações.Usado tipicamente por razões de conformidade se o Mattermost contiver informações confidenciais e a política for de que não pode ser armazenada no e-mail.",
- "admin.email.notification.contents.generic": "Enviar descrições genéricas com somente o nome do remetente",
- "admin.email.notification.contents.generic.description": "Somente o nome da pessoa que enviou a mensagem, sem informações sobre o nome do canal ou o conteúdo da mensagem, está incluído nas notificações por e-mail.Usado tipicamente para razões de conformidade, se a Mattermost contiver informações confidenciais e a política ditar que não pode ser armazenada no e-mail.",
- "admin.email.notification.contents.title": "Conteúdo Notificação Email: ",
- "admin.email.notificationDisplayDescription": "Mostra o nome da conta de e-mail usada quando a notificação de e-mail é enviado do Mattermost.",
- "admin.email.notificationDisplayExample": "Ex: \"Mattermost Notificação\", \"Sistema\", \"Não-Responda\"",
- "admin.email.notificationDisplayTitle": "Notificação Nome de Exibição:",
- "admin.email.notificationEmailDescription": "Endereço de email mostrado na conta de email quando envia notificações do Mattermost.",
- "admin.email.notificationEmailExample": "Ex: \"mattermost@suaempresa.com\", \"admin@suaempresa.com\"",
- "admin.email.notificationEmailTitle": "Notificação a Partir do Endereço:",
- "admin.email.notificationOrganization": "Notificação Endereço Rodapé:",
- "admin.email.notificationOrganizationDescription": "Nome da empresa e endereço de email mostrado nas notificações do Mattermost, como \"® Empresa ABC, Av. Paulista, 1000, São Paulo, SP, 12345-150, BRA\". Se este campo for deixado em branco, o nome da organização e endereço não será mostrado.",
- "admin.email.notificationOrganizationExample": "Ex. \"® Empresa ABC, Av. Paulista, 1000, São Paulo, SP, 12345-150, BRA\"",
- "admin.email.notificationsDescription": "Normalmente definido como verdadeiro em produção. Quando verdadeiro, Mattermost tenta enviar notificações por e-mail. Os desenvolvedores podem definir este campo como falso para ignorar configuração de e-mail para o desenvolvimento mais rápido. A definição deste como verdadeiro remove a bandeira modo de visualização (requer sair e entrar novamente após a alteração).",
- "admin.email.notificationsTitle": "Habilitar Notificações por E-mail: ",
- "admin.email.passwordSaltDescription": "Salt de 32-caracteres adicionado para assinar o redefinição de senha por e-mail. Gerada aleatoriamente na instalação. Clique em \"Re-Gerar\" para criar um novo salt.",
- "admin.email.passwordSaltExample": "Ex.: \"bjlSR4QqkXFBr7TP4oDzlfZmcNuH9Yo\"",
- "admin.email.passwordSaltTitle": "Salt Reset Senha:",
- "admin.email.pushContentDesc": "\"Enviar descrição genérica com apenas o nome do remetente\" inclui apenas o nome da pessoa que enviou a mensagem em notificações push, sem informações sobre o nome do canal ou o conteúdo da mensagem.
\"Enviar descrição genérica com remetente e nome do canal\" inclui o nome da pessoa que enviou a mensagem e o canal que foi enviado, mas não o texto da mensagem.
\"Enviar trecho de mensagem completa\" inclui um trecho de mensagem em notificações push, que pode conter informações confidenciais enviadas em mensagens. Se o seu Serviço de Notificação Push estiver fora do seu firewall, é *altamente recomendável* que esta opção seja usada somente com um protocolo \"https\" para criptografar a conexão.",
- "admin.email.pushContentTitle": "Conteúdo Notificação Push:",
- "admin.email.pushDesc": "Normalmente definida como verdadeiro na produção. Quando verdadeiro, Mattermost tenta enviar notificações push no iOS e Android, através do servidor de notificação push.",
- "admin.email.pushOff": "Não enviar notificações push",
- "admin.email.pushOffHelp": "Por favor veja a documentação de notificações push para saber mais sobre as opções de configurações.",
- "admin.email.pushServerDesc": "Localização do serviço de notificação push Mattermost você pode configurar por trás do firewall usando https://github.com/mattermost/push-proxy. Para testar, você pode usar http://push-test.mattermost.com, que liga à amostra do app Mattermost iOS na Apple AppStore pública. Por favor, não use o serviço de teste para implantações de produção.",
- "admin.email.pushServerEx": "Ex: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Servidor de Notificação Push:",
- "admin.email.pushTitle": "Habilitar Notificações por Push: ",
- "admin.email.requireVerificationDescription": "Normalmente definido como verdadeiro em produção. Quando verdadeiro, Mattermost requer a verificação de e-mail após a criação da conta antes de permitir login. Os desenvolvedores podem definir este campo como falso para ignorar o envio de e-mails de verificação para o desenvolvimento mais rápido.",
- "admin.email.requireVerificationTitle": "Requer Verificação de E-mail: ",
- "admin.email.selfPush": "Manualmente entre a localização do Serviço de Notificação Push",
- "admin.email.skipServerCertificateVerification.description": "Quando verdadeiro, Mattermost não irá verificar o certificado do servidor de email.",
- "admin.email.skipServerCertificateVerification.title": "Pular a Verificação do Certificado: ",
- "admin.email.smtpPasswordDescription": "A senha associada com o usuário SMTP.",
- "admin.email.smtpPasswordExample": "Ex: \"suasenha\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "Senha do Servidor de SMTP:",
- "admin.email.smtpPortDescription": "Porta do servidor de e-mail SMTP.",
- "admin.email.smtpPortExample": "Ex: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "Porta do Servidor de SMTP:",
- "admin.email.smtpServerDescription": "Localização do servidor de e-mail SMTP.",
- "admin.email.smtpServerExample": "Ex: \"smtp.suaempresa.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "Servidor SMTP:",
- "admin.email.smtpUsernameDescription": "O usuário para autenticação no servidor SMTP.",
- "admin.email.smtpUsernameExample": "Ex: \"admin@suaempresa.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "Nome do Usuário do Servidor de SMTP:",
- "admin.email.testing": "Testando...",
- "admin.false": "falso",
- "admin.file.enableFileAttachments": "Permitir Compartilhamento de Arquivo:",
- "admin.file.enableFileAttachmentsDesc": "Quando falso, desativa o compartilhamento de arquivos no servidor. Todos os carregamentos de arquivos e imagens em mensagens são proibidos entre clientes e dispositivos, incluindo dispositivos móveis.",
- "admin.file.enableMobileDownloadDesc": "Quando falso, desabilita downloads de arquivos em aplicativos para dispositivos móveis. Os usuários ainda podem baixar arquivos de um navegador da Web móvel.",
- "admin.file.enableMobileDownloadTitle": "Permitir Download de Arquivos em Dispositivos Móveis:",
- "admin.file.enableMobileUploadDesc": "Quando falso, desativa os carregamentos de arquivos em aplicativos para dispositivos móveis. Se Permitir o Compartilhamento de Arquivos for definido como verdadeiro, os usuários ainda podem carregar arquivos de um navegador da Web móvel.",
- "admin.file.enableMobileUploadTitle": "Permitir Upload de Arquivos em Dispositivos Móveis:",
- "admin.file_upload.chooseFile": "Escolher Arquivo",
- "admin.file_upload.noFile": "Nenhum arquivo enviado",
- "admin.file_upload.uploadFile": "Enviar",
- "admin.files.images": "Imagens",
- "admin.files.storage": "Armazenamento",
- "admin.general.configuration": "Configuração",
- "admin.general.localization": "Regionalização",
- "admin.general.localization.availableLocalesDescription": "Defina qual idioma está disponível para os usuários em Configurações de Conta (deixe este campo em branco para ter todos os idiomas disponíveis). Se você está adicionando novos idiomas manualmente, o Idioma Padrão do Cliente precisa ser adicionado antes de salvar esta configuração.
Gostaria de ajudar com tradução? Junte-se ao Mattermost Translation Server para contribuir.",
- "admin.general.localization.availableLocalesNoResults": "Nenhum resultado encontrado",
- "admin.general.localization.availableLocalesNotPresent": "O idioma padrão deve ser incluído na lista",
- "admin.general.localization.availableLocalesTitle": "Idiomas Disponíveis:",
- "admin.general.localization.clientLocaleDescription": "Linguagem padrão para os novos usuários criados e páginas onde o usuário não esteja logado.",
- "admin.general.localization.clientLocaleTitle": "Idioma Padrão do Cliente:",
- "admin.general.localization.serverLocaleDescription": "Linguagem padrão para o sistema de mensagens e logs. Alterando isto será necessário reiniciar o servidor antes que a alteração tenha efeito.",
- "admin.general.localization.serverLocaleTitle": "Idioma Padrão do Servidor:",
- "admin.general.log": "Carregando",
- "admin.general.policy": "Política",
- "admin.general.policy.allowBannerDismissalDesc": "Quando verdadeiro, os usuários podem dispensar o banner até sua próxima atualização. Quando falso, o banner é permanentemente visível até que seja desativado pelo Administrador do Sistema.",
- "admin.general.policy.allowBannerDismissalTitle": "Permite Dispensar o Banner:",
- "admin.general.policy.allowEditPostAlways": "A qualquer momento",
- "admin.general.policy.allowEditPostDescription": "Definir a política sobre o período de tempo que os autores têm de editar suas mensagens após a publicação.",
- "admin.general.policy.allowEditPostNever": "Nunca",
- "admin.general.policy.allowEditPostTimeLimit": "segundos após a postagem",
- "admin.general.policy.allowEditPostTitle": "Permitir que os usuários editem suas mensagens:",
- "admin.general.policy.bannerColorTitle": "Cor do Banner:",
- "admin.general.policy.bannerTextColorTitle": "Cor do Texto do Banner:",
- "admin.general.policy.bannerTextDesc": "Texto que irá aparecer no banner de anuncio.",
- "admin.general.policy.bannerTextTitle": "Texto do Banner:",
- "admin.general.policy.enableBannerDesc": "Habilita o banner de anúncios em todos as equipes.",
- "admin.general.policy.enableBannerTitle": "Habilita o Banner de Anúncios:",
- "admin.general.policy.permissionsAdmin": "Administradores de Time e Sistema",
- "admin.general.policy.permissionsAll": "Todos os membros da equipe",
- "admin.general.policy.permissionsAllChannel": "Todos os membros do canal",
- "admin.general.policy.permissionsChannelAdmin": "Canal, Time e Admistradores de Sistema",
- "admin.general.policy.permissionsDeletePostAdmin": "Administradores de Equipe e Sistema",
- "admin.general.policy.permissionsDeletePostAll": "Autor da mensagem pode deletar sua própria mensagem, e Administradores podem deletar qualquer mensagem",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Administrador de Sistema",
- "admin.general.policy.permissionsSystemAdmin": "Administrador de Sistema",
- "admin.general.policy.restrictPostDeleteDescription": "Define a política de quem tem permissão para deletar mensagens.",
- "admin.general.policy.restrictPostDeleteTitle": "Permitir quais usuários a deletar mensagens:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Definir política de quem pode criar canais privados.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Ativar a criação de canais privados para:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "ferramenta de linha de comando",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Definir política de quem pode excluir canais privados. Canais excluídos podem ser recuperados do banco de dados usando {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Ativar a exclusão de canais privados para:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Definir a política de quem pode adicionar e remover membros de canais privados.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Ativar o gerenciamento de membros de canais privados para:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Definir a política de quem pode renomear e definir o cabeçalho ou propósito para canais privados.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Ativar o renomeio de canais privados para:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Definir política sobre quem pode criar canais públicos.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Ativar a criação de canais públicos para:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "ferramenta de linha de comando",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Definir política sobre quem pode excluir canais públicos. Canais deletados podem ser recuperados do banco de dados usando {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Ativar a exclusão de canais públicos para:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Definir a política sobre quem pode renomear e definir o cabeçalho ou propósito para canais públicos.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Ativar o renomeio de canais públicos para:",
- "admin.general.policy.teamInviteDescription": "Definir a política de quem pode convidar outros para a equipe usando Enviar Email de Convite para convidar um novo usuário por email, ou as opções Obter Link Convite para Equipe e Adicionar Membros a Equipe no Menu Principal. Se Obter Link Convite para Equipe for usado para compartilhar um link, você pode expirar o código convite em Configurações de Equipe > Código Convite depois que os usuários desejados já se juntaram a equipe.",
- "admin.general.policy.teamInviteTitle": "Permitir o envio de convites de equipe para:",
- "admin.general.privacy": "Privacidade",
- "admin.general.usersAndTeams": "Usuários e Equipes",
- "admin.gitab.clientSecretDescription": "Obter este valor de acordo com as instruções acima para logar no GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Faça login na sua conta do GitLab e vá para Configurações do Perfil -> Aplicativos.
Digite redirecionamento URIs \"/login/gitlab/complete\" (exemplo: http://localhost:8065/login/gitlab/complete) e \"/signup/gitlab/complete\".
Em seguida use os campos \"Chave Secreta do Aplicativo\" e \"ID Aplicativo\" do Gitlab para completar as opções abaixo.
Complete o Endpoint com as URLs abaixo.
",
- "admin.gitlab.authDescription": "Entre https:///oauth/authorize (exemplo https://example.com:3000/oauth/authorize). Tenha certeza de usar HTTP ou HTTPS na sua URL dependendo da configuração do seu servidor.",
- "admin.gitlab.authExample": "Ex.: \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Autenticação Endpoint:",
- "admin.gitlab.clientIdDescription": "Obter este valor de acordo com as instruções acima para logar no GitLab",
- "admin.gitlab.clientIdExample": "Ex.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "ID do aplicativo:",
- "admin.gitlab.clientSecretExample": "Ex.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Chave Secreta do Aplicativo:",
- "admin.gitlab.enableDescription": "Quando verdadeiro, Mattermost permite a criação de equipes e inscrições de conta usando GitLab OAuth.",
- "admin.gitlab.enableTitle": "Habilitar autenticação com o GitLab: ",
- "admin.gitlab.settingsTitle": "Configurações GitLab",
- "admin.gitlab.tokenDescription": "Digite https:///oauth/token. Certifique-se de usar HTTP ou HTTPS na sua URL dependendo da configuração de seu servidor.",
- "admin.gitlab.tokenExample": "Ex.: \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Token Endpoint:",
- "admin.gitlab.userDescription": "Digite https:///api/v3/user. Certifique-se de usar HTTP ou HTTPS na sua URL dependendo da configuração de seu servidor.",
- "admin.gitlab.userExample": "Ex.: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "API Usuário Endpoint:",
- "admin.google.EnableHtmlDesc": "
Ir para https://console.developers.google.com, clique Credenciais na barra lateral esquerda e digite \"Mattermost - nome-da-sua-empresa\" como o Nome do Projeto, então clique Criar.
Clique no título tela de consentimento OAuth e digite \"Mattermost\" como o nome do Produto exibido para os usuários, então clique Salvar.
Dentro do título Credenciais, clique Criar credenciais, escolha ID do cliente OAuth e selecione Aplicação da Web.
Dentro de Restrições e URIs de redirecionamento autorizados digite sua-url-mattermost/signup/google/complete (exemplo: http://localhost:8065/signup/google/complete). Clique Criar.
Cole ID do Cliente e Chave Secreta do Cliente nos campos abaixo, então clique Salvar.
Finalmente, vá para Google+ API e clique Ativar. Isto pode levar alguns minutos para propagar através do si sistema do Google.
",
- "admin.google.authTitle": "Autenticação Endpoint:",
- "admin.google.clientIdDescription": "A ID do Cliente que você recebeu quando registrou sua aplicação com o Google.",
- "admin.google.clientIdExample": "Ex.: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "ID do Cliente:",
- "admin.google.clientSecretDescription": "A Chave Secreta do Cliente que você recebeu quando registrou sua aplicação com o Google.",
- "admin.google.clientSecretExample": "Ex.: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Chave Secreta do Cliente:",
- "admin.google.tokenTitle": "Token Endpoint:",
- "admin.google.userTitle": "API Usuário Endpoint:",
- "admin.image.amazonS3BucketDescription": "Nome selecionado para o seu S3 bucket in AWS.",
- "admin.image.amazonS3BucketExample": "Ex.: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
- "admin.image.amazonS3EndpointDescription": "Nome do host provedor de armazenamento compatível com S3. O padrão é `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Ex.: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Amazon S3 Endpoint:",
- "admin.image.amazonS3IdDescription": "Obter essa credencial do seu administrador Amazon EC2.",
- "admin.image.amazonS3IdExample": "Ex.: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 Access Key ID:",
- "admin.image.amazonS3RegionDescription": "Região AWS selecionada para a criação do seu S3 bucket.",
- "admin.image.amazonS3RegionExample": "Ex.: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Amazon S3 Region:",
- "admin.image.amazonS3SSEDescription": "Quando verdadeiro, criptografa arquivos no Amazon S3 usando criptografia do lado do servidor com as chaves gerenciadas do Amazon S3. Veja a documentação para saber mais.",
- "admin.image.amazonS3SSEExample": "Ex.: \"falso\"",
- "admin.image.amazonS3SSETitle": "Ativar Encriptação do Lado do Servidor para o Amazon S3:",
- "admin.image.amazonS3SSLDescription": "Quando falso, permite conexões inseguras com Amazon S3. Padrão conexões seguras somente.",
- "admin.image.amazonS3SSLExample": "Ex.: \"true\"",
- "admin.image.amazonS3SSLTitle": "Ativar Conexões Seguras com Amazon S3:",
- "admin.image.amazonS3SecretDescription": "Obter essa credencial do seu administrador Amazon EC2.",
- "admin.image.amazonS3SecretExample": "Ex.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 Secret Access Key:",
- "admin.image.localDescription": "Diretório o qual arquivos e imagens são arquivados. Se vazio, padrão ./data/.",
- "admin.image.localExample": "Ex.: \"./data/\"",
- "admin.image.localTitle": "Pasta de Armazenamento Local:",
- "admin.image.maxFileSizeDescription": "Tamanho máximo de arquivo para anexos de mensagens em megabytes. Atenção: Verifique a memória do servidor pode suportar sua escolha configuração. Tamanhos de arquivos grandes aumentam o risco de falhas do servidor e falhas de uploads devido a interrupções de rede.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Tamanho Máximo do Arquivo:",
- "admin.image.publicLinkDescription": "Salt de 32-caracteres adicionados a assinatura de links de imagens públicas. Aleatoriamente gerados na instalação. Click \"Re-Gerar\" para criar um novo salt.",
- "admin.image.publicLinkExample": "Ex.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Link Público Salt:",
- "admin.image.shareDescription": "Permitir aos usuários compartilhar links públicos para arquivos e imagens.",
- "admin.image.shareTitle": "Ativar Links para Arquivos Públicos: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Sistema de armazenamento onde os arquivos anexos de imagem são salvos.
Selecionando \"Amazon S3\" habilita campos para inserir suas credenciais Amazon e detalhes de bucket.
Selecionando \"Sistema de Arquivos Local\" habilita o campo para especificar um diretório de arquivos local.",
- "admin.image.storeLocal": "Sistema de Arquivos Local",
- "admin.image.storeTitle": "Sistema de Armazenamento de Arquivo:",
- "admin.integrations.custom": "Integrações Personalizadas",
- "admin.integrations.external": "Serviços Externos",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "Base DN é o nome distinto do local onde Mattermost deve começar sua busca para os usuários na árvore AD/LDAP.",
- "admin.ldap.baseEx": "Ex.: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Senha do usuário fornecido em \"Bind Username\".",
- "admin.ldap.bindPwdTitle": "Vincular Senha:",
- "admin.ldap.bindUserDesc": "O nome de usuário usado para realizar a pesquisa AD/LDAP. Isso deve ser tipicamente uma conta criada especificamente para uso do Mattermost. Deve ter acesso limitado a ler a parte da árvore AD/LDAP especificado no campo BaseDN.",
- "admin.ldap.bindUserTitle": "Bind Username:",
- "admin.ldap.emailAttrDesc": "O atributo no servidor AD/LDAP que será usado para preencher os endereços de e-mail de usuários no Mattermost.",
- "admin.ldap.emailAttrEx": "Ex.: \"mail\" ou \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Atributo de E-mail:",
- "admin.ldap.enableDesc": "Quando verdadeiro, Mattermost permite login utilizando AD/LDAP",
- "admin.ldap.enableTitle": "Ativar login with AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Opcional) O atributo no servidor AD/LDAP que será usado para preencher o primeiro nome dos usuários no Mattermost. Quando definido, os usuários não serão capazes de editar o seu primeiro nome, uma vez que é sincronizado com o servidor LDAP. Quando deixado em branco, os usuários poderão definir seu próprio primeiro nome em Configurações de Conta.",
- "admin.ldap.firstnameAttrEx": "Ex.: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Primeiro Nome do Atributo",
- "admin.ldap.idAttrDesc": "O atributo no servidor AD/LDAP que vai ser utilizado como um identificador único no Mattermost. Ele deve ser um atributo AD/LDAP com um valor que não muda, como nome de usuário ou uid. Se atributo Id do usuário mudar, isto irá criar uma nova conta Mattermost não associada com a sua antiga. Este é o valor utilizado para efetuar login no Mattermost no campo \"Nome de usuário AD/LDAP\" na página de login. Normalmente, este atributo é o mesmo que o campo \"Atributo Nome de Usuário\" acima. Se sua equipe usa tipicamente de domínio\\\\usuário para fazer login em outros serviços com AD/LDAP, você pode optar por colocar domínio\\\\usuário neste campo para manter a consistência entre os sites.",
- "admin.ldap.idAttrEx": "Ex.: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "Atributo ID: ",
- "admin.ldap.lastnameAttrDesc": "(Opcional) O atributo no servidor AD/LDAP que será usado para preencher o último nome dos usuários no Mattermost. Quando definido, os usuários não serão capazes de editar o seu último nome, uma vez que é sincronizado com o servidor LDAP. Quando deixado em branco, os usuários poderão definir seu próprio sobrenome em Configurações de Conta.",
- "admin.ldap.lastnameAttrEx": "Ex.: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Atributo Último Nome:",
- "admin.ldap.ldap_test_button": "AD/LDAP Teste",
- "admin.ldap.loginNameDesc": "O texto placeholder que aparece no campo de login na página de login. O padrão é \"Usuário AD/LDAP\".",
- "admin.ldap.loginNameEx": "Ex.: \"Usuário AD/LDAP\"",
- "admin.ldap.loginNameTitle": "Nome do Campo Login:",
- "admin.ldap.maxPageSizeEx": "Ex.: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "O número máximo de usuários que servidor Mattermost irá solicitar ao servidor AD/LDAP ao mesmo tempo. 0 é ilimitado.",
- "admin.ldap.maxPageSizeTitle": "Tamanho Máximo da Página:",
- "admin.ldap.nicknameAttrDesc": "(Opcional) O atributo no servidor AD/LDAP que será usado para preencher o apelido dos usuários no Mattermost. Quando definido, os usuários não serão capazes de editar o seu apelido, uma vez que é sincronizado com o servidor LDAP. Quando deixado em branco, os usuários poderão definir seu próprio apelido em Configurações de Conta.",
- "admin.ldap.nicknameAttrEx": "Ex.: \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Atributo Apelido:",
- "admin.ldap.noLicense": "
Nota:
AD/LDAP é um recurso enterprise. Sua licença atual não suporta AD/LDAP. Clique aqui para informações e preços da licença enterprise.
",
- "admin.ldap.portDesc": "A porta que o Mattermost irá usar para conectar ao servidor AD/LDAP. Padrão é 389.",
- "admin.ldap.portEx": "Ex.: \"389\"",
- "admin.ldap.portTitle": "Porta AD/LDAP:",
- "admin.ldap.positionAttrDesc": "(Opcional) O atributo no servidor AD/LDAP que será usado para preencher o campo cargo no Mattermost.",
- "admin.ldap.positionAttrEx": "Ex.: \"title\"",
- "admin.ldap.positionAttrTitle": "Atributo Cargo:",
- "admin.ldap.queryDesc": "O valor de tempo limite para consultas para o servidor AD/LDAP. Aumentar se você está recebendo erros de tempo limite causados por um servidor AD/LDAP lento.",
- "admin.ldap.queryEx": "Ex.: \"60\"",
- "admin.ldap.queryTitle": "Tempo limite de Consulta (segundos):",
- "admin.ldap.serverDesc": "O domínio ou o endereço IP do servidor AD/LDAP.",
- "admin.ldap.serverEx": "Ex.: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "Servidor AD/LDAP:",
- "admin.ldap.skipCertificateVerification": "Pular a Verificação do Certificado:",
- "admin.ldap.skipCertificateVerificationDesc": "Pula a etapa de verificação do certificado para conexões TLS ou STARTTLS. Não recomentado para ambientes de produção onde TLS é necessário. Apenas para teste.",
- "admin.ldap.syncFailure": "Falha de Sincronização: {error}",
- "admin.ldap.syncIntervalHelpText": "Sincronização AD/LDAP atualiza as informações do usuário Mattermost para refletir atualizações no servidor AD/LDAP. Por exemplo, quando o nome de um usuário muda no servidor AD/LDAP, a mudança atualiza o Mattermost quando a sincronização é executada. Contas removidas ou desativas no servidor AD/LDAP tem suas contas definidas como \"Inativa\" e suas sessões revogadas. Mattermos executa a sincronização no intervalo digitado. Por exemplo, se 60 for digitado, Mattermost irá sincronizar a cada 60 minutos.",
- "admin.ldap.syncIntervalTitle": "Intervalo de sincronização (minutos):",
- "admin.ldap.syncNowHelpText": "Iniciar uma sincronização AD/LDAP imediatamente.",
- "admin.ldap.sync_button": "Sincronizar AD/LDAP Agora",
- "admin.ldap.testFailure": "Falha Teste AD/LDAP: {error}",
- "admin.ldap.testHelpText": "Testa se o servidor Mattermost pode conectar ao servidor AD/LDAP especificado. Veja o log para as mensagens de erros mais detalhadas.",
- "admin.ldap.testSuccess": "Teste AD/LDAP bem Sucedido",
- "admin.ldap.uernameAttrDesc": "O atributo no servidor AD/LDAP que será usado para preencher o campo nome de usuário no Mattermost. Este pode ser o mesmo que o Atributo ID.",
- "admin.ldap.userFilterDisc": "(Opcional), insira um filtro AD/LDAP para usar ao procurar por objetos de usuário. Somente os usuários selecionados pela consulta serão capazes de acessar o Mattermost. Para o Active Directory, a consulta para filtrar os usuários desativados é (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Ex. \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Filtro de Usuário:",
- "admin.ldap.usernameAttrEx": "Ex.: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Atributo do Usuário:",
- "admin.license.choose": "Escolha o Arquivo",
- "admin.license.chooseFile": "Escolha um Arquivo",
- "admin.license.edition": "Edição: ",
- "admin.license.key": "Chave da Licença: ",
- "admin.license.keyRemove": "Remover a Licença Enterprise e fazer Downgrade do Servidor",
- "admin.license.noFile": "Nenhum arquivo enviado",
- "admin.license.removing": "Removendo a Licença...",
- "admin.license.title": "Edição e Licença",
- "admin.license.type": "Licença: ",
- "admin.license.upload": "Enviar",
- "admin.license.uploadDesc": "Enviar uma chave da licença para Mattermost Enterprise Edition para fazer upgrade deste servidor. Visite-nos online para saber mais sobre os beneficios do Enterprise Edition ou para comprar uma chave.",
- "admin.license.uploading": "Enviando Licença...",
- "admin.log.consoleDescription": "Normalmente definido como falso em produção. Os desenvolvedores podem definir este campo como verdadeiro para mensagens de log de saída no console baseado na opção de nível de console. Se verdadeiro, o servidor escreve mensagens para o fluxo de saída padrão (stdout).",
- "admin.log.consoleTitle": "Log de saída para o console: ",
- "admin.log.enableDiagnostics": "Ativar Diagnósticos e Relatório de Erro:",
- "admin.log.enableDiagnosticsDescription": "Ativar este recurso para melhorar a qualidade e performance do Mattermost enviando relatório de erros e informações de diagnóstico para Mattermost, Inc. Leia nossa política de privacidade para saber mais.",
- "admin.log.enableWebhookDebugging": "Ativar Debugging Webhook:",
- "admin.log.enableWebhookDebuggingDescription": "Você pode definir isto como falso para desativar o log de depuração de todos os bodies de solicitação de solicitação webhook recebidas.",
- "admin.log.fileDescription": "Normalmente definida como verdadeira em produção. Quando verdadeiro, os eventos registrados são gravados no arquivo mattermost.log no diretório especificado no campo Diretório de Arquivo de Log. Os logs são girados em 10.000 linhas e arquivados em um arquivo no mesmo diretório, e dado um nome com um datetamp e número de série. Por exemplo, mattermost.2017-03-31.001.",
- "admin.log.fileLevelDescription": "Esta configuração determina o nível de detalhe que são gravados no log de eventos no console. ERROR: Saídas somente mensagens de erro. INFO: Saídas de mensagens de erro e informações em torno de inicialização. DEBUG: Impressões de alto detalhe para desenvolvedores que trabalham na depuração de problemas.",
- "admin.log.fileLevelTitle": "Nível do Arquivo de Log:",
- "admin.log.fileTitle": "Arquivo de logs de saída: ",
- "admin.log.formatDateLong": "Data (2006/01/02)",
- "admin.log.formatDateShort": "Data (01/02/06)",
- "admin.log.formatDescription": "Formato da mensagem de saída do log. Se branco será ajustador para \"[%D %T] [%L] %M\", onde:",
- "admin.log.formatLevel": "Nível (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Mensagem",
- "admin.log.formatPlaceholder": "Entre seu formato de arquivo",
- "admin.log.formatSource": "Origem",
- "admin.log.formatTime": "Hora (15:04:05 MST)",
- "admin.log.formatTitle": "Formato do Arquivo de Log:",
- "admin.log.levelDescription": "Esta configuração determina o nível de detalhe que são gravados no log de eventos no console. ERROR: Saídas somente mensagens de erro. INFO: Saídas de mensagens de erro e informações em torno de inicialização. DEBUG: Impressões de alto detalhe para desenvolvedores que trabalham na depuração de problemas.",
- "admin.log.levelTitle": "Nível de Log Console:",
- "admin.log.locationDescription": "A localização dos arquivos de log. Se estiverem em branco, eles serão armazenadas no diretório ./logs. O caminho que você definir deve existir e o Mattermost deve ter permissões de gravação nele.",
- "admin.log.locationPlaceholder": "Entre a localização do seu arquivo",
- "admin.log.locationTitle": "Diretório de Arquivo de Log:",
- "admin.log.logSettings": "Configurações de Log",
- "admin.logs.bannerDesc": "Para procurar por usuário pelo ID do usuário ou token, vá em Relatórios > Usuários e cole o ID no filtro de busca.",
- "admin.logs.reload": "Recarregar",
- "admin.logs.title": "Log do Servidor",
- "admin.manage_roles.additionalRoles": "Selecione permissões adicionais para a conta.Leia mais sobre funções e permissões",
- "admin.manage_roles.allowUserAccessTokens": "Permitir que esta conta gere tokens de acesso individual.",
- "admin.manage_roles.cancel": "Cancelar",
- "admin.manage_roles.manageRolesTitle": "Gerenciar Funções",
- "admin.manage_roles.postAllPublicRole": "Permissão para postar em todos os canais públicos do Mattermost.",
- "admin.manage_roles.postAllPublicRoleTitle": "postar:canais",
- "admin.manage_roles.postAllRole": "Permissão para postar em todos os canais incluindo mensagens diretas no Mattermost.",
- "admin.manage_roles.postAllRoleTitle": "postar:todos",
- "admin.manage_roles.save": "Salvar",
- "admin.manage_roles.saveError": "Não é possível salvar as permissões.",
- "admin.manage_roles.systemAdmin": "Admin do Sistema",
- "admin.manage_roles.systemMember": "Membro",
- "admin.manage_tokens.manageTokensTitle": "Gerenciar Tokens de Acesso Individual",
- "admin.manage_tokens.userAccessTokensDescription": "Os tokens de acesso individual funcionam de forma semelhante aos tokens de sessão e podem ser usados por integrações para interagir com este servidor Mattermost. Saiba mais sobre tokens de acesso individual.",
- "admin.manage_tokens.userAccessTokensNone": "Não há tokens de acesso individual.",
- "admin.metrics.enableDescription": "Quando verdadeiro, Mattermost irá habilitar a coleta do monitoramento de performance e profiling. Por favor verifique documentação para ler mais sobre como configurar o monitoramento de performance para Mattermost.",
- "admin.metrics.enableTitle": "Habilitar Monitoramento de Performance:",
- "admin.metrics.listenAddressDesc": "O endereço que o servidor irá escutar para expor as métricas de performance.",
- "admin.metrics.listenAddressEx": "Ex.: \":8067\"",
- "admin.metrics.listenAddressTitle": "Endereço à escutar:",
- "admin.mfa.bannerDesc": "Autenticação por Multi-fator está disponível para contas com AD/LDAP ou por login por email. Se outro método de login é utilizado, o MFA deve ser configurado com o provedor de autenticação.",
- "admin.mfa.cluster": "Alta",
- "admin.mfa.title": "Autenticação Multi-Fator",
- "admin.nav.administratorsGuide": "Guia do Administrador",
- "admin.nav.commercialSupport": "Suporte Comercial",
- "admin.nav.help": "Ajuda",
- "admin.nav.logout": "Sair",
- "admin.nav.report": "Relatar um Problema",
- "admin.nav.switch": "Seleção de Equipe",
- "admin.nav.troubleshootingForum": "Fórum de resolução de problemas",
- "admin.notifications.email": "E-mail",
- "admin.notifications.push": "Notificação Móvel",
- "admin.notifications.title": "Configurações de Notificação",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Não é permitido login via um provedor OAuth 2.0",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Quando verdadeiro, Mattermost pode atuar como um provedor de serviço OAuth 2.0 permitindo que o Mattermost autorize requisições de API de aplicações externas. Veja a documentação para saber mais.",
- "admin.oauth.providerTitle": "Ativar Provedor de Serviço OAuth 2.0: ",
- "admin.oauth.select": "Selecione provedor de serviço OAuth 2.0:",
- "admin.office365.EnableHtmlDesc": "
Log in na sua conta Microsoft ou Office 365. Certifique-se que esta conta é do mesmo tenant que você gostaria que os usuários entrassem.
Vá para https://apps.dev.microsoft.com, clique Ir para lista de aplicativo > Adicionar um aplicativo e use \"Mattermost - nome-da-sua-empresa\" como Nome da Aplicação.
Dentro de Segredos do Aplicativo, clique Gerar Nova Senha copie e cole no campo abaixo Aplicativo Senha Secreta.
Dentro de Plataformas, clique Adicionar Plataforma, escolha Web e digite url-da-sua-empresa/signup/office365/complete (exemplo: http://localhost:8065/signup/office365/complete) dentro de Redirecionar URIs. Também desmarque Permitir Fluxo Implícito.
Finalmente, clique Salvar e então copie e cole no campo abaixo ID da Aplicação.
",
- "admin.office365.authTitle": "Autenticação Endpoint:",
- "admin.office365.clientIdDescription": "O Aplicativo/ID do Cliente que você recebeu quando registrou seu aplicativo com a Microsoft.",
- "admin.office365.clientIdExample": "Ex.: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "ID do Aplicativo:",
- "admin.office365.clientSecretDescription": "O Aplicativo Senha Secreta que você gerou quando registrou seu aplicativo com a Microsoft.",
- "admin.office365.clientSecretExample": "Ex.: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Aplicativo Senha Secreta:",
- "admin.office365.tokenTitle": "Token Endpoint:",
- "admin.office365.userTitle": "API Usuário Endpoint:",
- "admin.password.lowercase": "Pelo menos uma letra minúscula",
- "admin.password.minimumLength": "Tamanho Mínimo de Senha:",
- "admin.password.minimumLengthDescription": "Número mínimo de caracteres necessários para uma senha válida. Deve ser um número inteiro maior que ou igual a {min} e menor ou igual a {max}.",
- "admin.password.minimumLengthExample": "Ex.: \"5\"",
- "admin.password.number": "Pelo menos um número",
- "admin.password.preview": "Erro pré-visualização de mensagem",
- "admin.password.requirements": "Requerimentos de Senha:",
- "admin.password.requirementsDescription": "Tipos de caracteres necessários em uma senha válida.",
- "admin.password.symbol": "Pelo menos um símbolo (ex. \"~!@#$%^&*()\")",
- "admin.password.uppercase": "Pelo menos uma letra maiuscula",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "Quando verdadeiro, você pode configurar os webhooks do JIRA para postar mensagens no Mattermost. Para ajudar a combater ataques de phishing, todas as postagens são rotuladas por uma tag BOT.",
- "admin.plugins.jira.enabledLabel": "Ativar JIRA:",
- "admin.plugins.jira.secretDescription": "Está chave secreta é usada para autenticar no Mattermost.",
- "admin.plugins.jira.secretLabel": "Chave Secreta:",
- "admin.plugins.jira.secretParamPlaceholder": "chave secreta",
- "admin.plugins.jira.secretRegenerateDescription": "Gerar novamente a chave secreta para a URL do webhook. Gerando uma nova chave secreta invalida suas integrações com o JIRA.",
- "admin.plugins.jira.setupDescription": "Use esta URL do webhook para configurar a integração do JIRA. Veja {webhookDocsLink} para saber mais.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Selecione o nome de usuário para o qual essa integração está anexada.",
- "admin.plugins.jira.userLabel": "Usuário:",
- "admin.plugins.jira.webhookDocsLink": "documentação",
- "admin.privacy.showEmailDescription": "Quando falso, o endereço de email dos membros será ocultado para todos exceto para os Administradores do Sistema.",
- "admin.privacy.showEmailTitle": "Mostrar Endereços de Email: ",
- "admin.privacy.showFullNameDescription": "Quando falso, o nome completo dos membros será ocultado para todos exceto para os Administradores do Sistema. O nome de usuário será exibido em vez de o nome completo.",
- "admin.privacy.showFullNameTitle": "Mostrar Nome Completo: ",
- "admin.purge.button": "Limpar todo o Cache",
- "admin.purge.loading": " Carregando...",
- "admin.purge.purgeDescription": "Isto irá limpar todo o cache da memória para as coisas como sessão, contas, canais, etc. Deployments usando Alta disponibilidade irá tentar limpar todos os servidores no cluster. Limpar o cache pode afetar negativamente a performance.",
- "admin.purge.purgeFail": "Limpeza mal sucedida: {error}",
- "admin.rate.enableLimiterDescription": "Quando verdadeiro, as APIs são estranguladas para as taxas especificadas abaixo.",
- "admin.rate.enableLimiterTitle": "Ativar Limitador de Velocidade: ",
- "admin.rate.httpHeaderDescription": "Quando preenchido, a limitação de velocidade varia pelo campo do cabeçalho HTTP especificado (ex. quando configurado NGINX ajustado para \"X-Real-IP\", quando configurado AmazonELB ajustado para \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Ex.: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Variar o limite de velocidade pelo cabeçalho HTTP:",
- "admin.rate.maxBurst": "Máximo Tamanho Burst:",
- "admin.rate.maxBurstDescription": "Máximo número de pedidos permitidos além do limite de consultas por segundo.",
- "admin.rate.maxBurstExample": "Ex.: \"100\"",
- "admin.rate.memoryDescription": "Número máximo de sessões de usuários conectados ao sistema conforme determinado pelas configurações abaixo \"Variar limite de velocidade pelo endereço remoto\" e \"Variar limite de velocidade pelo cabeçalho HTTP\".",
- "admin.rate.memoryExample": "Ex.: \"10000\"",
- "admin.rate.memoryTitle": "Tamanho da Memória de Armazenamento:",
- "admin.rate.noteDescription": "Alterando as propriedades nesta seção, exceto do Site URL, irá exigir que o servidor seja reiniciado para que tenha efeito.",
- "admin.rate.noteTitle": "Nota:",
- "admin.rate.queriesDescription": "Estrangula API neste número de solicitações por segundo.",
- "admin.rate.queriesExample": "Ex.: \"10\"",
- "admin.rate.queriesTitle": "Máxima Consultas por Segundo:",
- "admin.rate.remoteDescription": "Quando verdadeiro, limita a velocidade de acesso de API por endereço de IP.",
- "admin.rate.remoteTitle": "Variar limite de velocidade pelo endereço remoto: ",
- "admin.rate.title": "Configurações de Velocidade",
- "admin.recycle.button": "Reciclar Conexão do Banco de Dados",
- "admin.recycle.loading": " Reciclando...",
- "admin.recycle.recycleDescription": "Instalações usando vários bancos de dados podem trocar de um banco de dados principal para outro sem reiniciar o servidor Mattermost, atualizando \"config.json\" com a nova configuração desejada e usando o recurso {reloadConfiguration} para recarregar as novas configurações enquanto o servidor está em execução. O administrador pode então usar o recurso {featureName} para reciclar as conexões do banco de dados com base nas novas definições.",
- "admin.recycle.recycleDescription.featureName": "Reciclar Conexão do Banco de Dados",
- "admin.recycle.recycleDescription.reloadConfiguration": "Configuração > Recarregar Configurações do Disco",
- "admin.recycle.reloadFail": "Reciclagem malsucedida: {error}",
- "admin.regenerate": "Re-Gerar",
- "admin.reload.button": "Recarregar Configuração do Disco",
- "admin.reload.loading": " Carregando...",
- "admin.reload.reloadDescription": "Instalações usando vários bancos de dados podem trocar de um banco de dados principal para outro sem reiniciar o servidor Mattermost, atualizando \"config.json\" com a nova configuração desejada e usando o recurso {featureName} para carregar as novas configurações enquanto o servidor está em execução. O administrador pode então usar o recurso {recycleDatabaseConnections} para reciclar as conexões do banco de dados com base nas novas definições.",
- "admin.reload.reloadDescription.featureName": "Recarregar Configuração do Disco",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Banco de Dados > Reciclar Conexão do Banco de Dados",
- "admin.reload.reloadFail": "Recarregamento malsucedido: {error}",
- "admin.requestButton.loading": " Carregando...",
- "admin.requestButton.requestFailure": "Falha de Teste: {error}",
- "admin.requestButton.requestSuccess": "Teste bem Sucedido",
- "admin.reset_password.close": "Fechar",
- "admin.reset_password.newPassword": "Nova Senha",
- "admin.reset_password.select": "Selecionar",
- "admin.reset_password.submit": "Por favor, insira pelo menos {chars} caracteres.",
- "admin.reset_password.titleReset": "Resetar Senha",
- "admin.reset_password.titleSwitch": "Trocar a conta para e-mail/senha",
- "admin.saml.assertionConsumerServiceURLDesc": "Digite https:///login/sso/saml. Certifique-se de usar HTTP ou HTTPS em sua URL, dependendo da sua configuração do servidor. Este campo também é conhecido como Assertion Consumer Service URL.",
- "admin.saml.assertionConsumerServiceURLEx": "Ex \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "URL Provedor de Serviço de Login:",
- "admin.saml.bannerDesc": "Os atributos de usuário no servidor SAML, incluindo a desativação ou remoção do usuário, são atualizados no Mattermost durante o login do usuário. Leia mais em https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "O atributo na SAML Assertion que será usado para preencher os endereços de email dos usuários em Mattermost.",
- "admin.saml.emailAttrEx": "Ex.: \"Email\" ou \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "Atributo de E-mail:",
- "admin.saml.enableDescription": "Quando verdadeiro, Mattermost irá permitir login usando SAML 2.0. Por favor veja a documentação para aprender mais sobre configurar SAML para o Mattermost.",
- "admin.saml.enableTitle": "Ativar Login With SAML 2.0:",
- "admin.saml.encryptDescription": "Quando falso, Mattermost não irá descriptografar o SAML Assertions encriptado com o seu Provedor de Serviço de Certificado Público. Não recomendado para ambientes de produção. Apenas para teste.",
- "admin.saml.encryptTitle": "Ativar Criptografia:",
- "admin.saml.firstnameAttrDesc": "(Opcional) O atributo em SAML Assertion que será usado para preencher o nome dos usuários no Mattermost.",
- "admin.saml.firstnameAttrEx": "Ex.: \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "Primeiro Nome Atributo:",
- "admin.saml.idpCertificateFileDesc": "O certificado de autenticação pública emitida pelo seu Provedor de Identidade.",
- "admin.saml.idpCertificateFileRemoveDesc": "Remover o certificado de autenticação pública emitida pelo seu Provedor de Identidade.",
- "admin.saml.idpCertificateFileTitle": "Provedor de Identidade Certificado Público:",
- "admin.saml.idpDescriptorUrlDesc": "A URL emissora para o Provedor de Identidade que você usa para solicitações SAML.",
- "admin.saml.idpDescriptorUrlEx": "Ex.: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "URL Emissor Provedor Identidade:",
- "admin.saml.idpUrlDesc": "A URL onde o Mattermost envia a requisição SAML para iniciar a sequencia de login.",
- "admin.saml.idpUrlEx": "Ex.: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Opcional) O atributo em SAML Assertion que será usado para preencher o sobrenome dos usuários no Mattermost.",
- "admin.saml.lastnameAttrEx": "Ex.: \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Atributo Último Nome:",
- "admin.saml.localeAttrDesc": "(Opcional) O atributo em SAML Assertion que será usado para preencher o idioma dos usuários no Mattermost.",
- "admin.saml.localeAttrEx": "Ex.: \"Locale\" or \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Atributo Idioma Preferencial:",
- "admin.saml.loginButtonTextDesc": "(Opcional) O texto que aparece no botão de login na página de login. O padrão é \"Com SAML\".",
- "admin.saml.loginButtonTextEx": "Ex.: \"Com OKTA\"",
- "admin.saml.loginButtonTextTitle": "Texto Botão Login:",
- "admin.saml.nicknameAttrDesc": "(Opcional) O atributo em SAML Assertion que será usado para preencher o apelido dos usuários no Mattermost.",
- "admin.saml.nicknameAttrEx": "Ex.: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Atributo Apelido:",
- "admin.saml.positionAttrDesc": "(Opcional) O atributo em SAML Assertion que será usado para preencher o cargo dos usuários no Mattermost.",
- "admin.saml.positionAttrEx": "Ex.: \"Cargo\"",
- "admin.saml.positionAttrTitle": "Atributo Cargo:",
- "admin.saml.privateKeyFileFileDesc": "A chave privada usada para descriptografar SAML Assertion do Provedor de Identidade.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Remover a chave privada usada para descriptografar SAML Assertion do Provedor de Identidade.",
- "admin.saml.privateKeyFileTitle": "Provedor de Serviço Chave Privada:",
- "admin.saml.publicCertificateFileDesc": "O certificado usado para gerar a assinatura de um pedido SAML ao Provedor de Identidade para um Provedor de Serviços iniciado o login SAML, quando Mattermost é o Provedor de Serviços.",
- "admin.saml.publicCertificateFileRemoveDesc": "Remover o certificado usado para gerar a assinatura de um pedido SAML ao Provedor de Identidade para um login SAML iniciado por um provedor de serviços, quando Mattermost é o provedor de serviços.",
- "admin.saml.publicCertificateFileTitle": "Certificado Público Provedor Serviço:",
- "admin.saml.remove.idp_certificate": "Remover Certificado Provedor de Serviço",
- "admin.saml.remove.privKey": "Remover Chave Privada Provedor de Serviço",
- "admin.saml.remove.sp_certificate": "Remover Certificado Provedor de Serviço",
- "admin.saml.removing.certificate": "Removendo Certificado...",
- "admin.saml.removing.privKey": "Removendo Chave Privada...",
- "admin.saml.uploading.certificate": "Enviando Certificado...",
- "admin.saml.uploading.privateKey": "Enviando Chave Privada...",
- "admin.saml.usernameAttrDesc": "O atributo em SAML Assertion que será usado para preencher o campo usuário no Mattermost.",
- "admin.saml.usernameAttrEx": "Ex.: \"Username\"",
- "admin.saml.usernameAttrTitle": "Atributo do Usuário:",
- "admin.saml.verifyDescription": "Quando falso, Mattermost não irá verificar que a assinatura foi enviada e que a resposta do SAML é igual ao URL de Login do Provedor de Serviços. Não recomendado para ambientes de produção. Apenas para teste.",
- "admin.saml.verifyTitle": "Verificar Assinatura:",
- "admin.save": "Salvar",
- "admin.saving": "Salvando Config...",
- "admin.security.connection": "Conexões",
- "admin.security.inviteSalt.disabled": "Salt convite não pode ser alterado enquanto envio de emails está desativado.",
- "admin.security.login": "Login",
- "admin.security.password": "Senha",
- "admin.security.passwordResetSalt.disabled": "Salt de redefinição de senha não pode ser alterado enquanto o envio de emails está desabilitado.",
- "admin.security.public_links": "Links Públicos",
- "admin.security.requireEmailVerification.disabled": "Verificação de Email não pode ser alterado enquanto o envio de emails está desabilitado.",
- "admin.security.session": "Sessões",
- "admin.security.signup": "Inscrever-se",
- "admin.select_team.close": "Fechar",
- "admin.select_team.select": "Selecionar",
- "admin.select_team.selectTeam": "Selecione Equipe",
- "admin.service.attemptDescription": "Tentativas de login permitidas antes que do usuário ser bloqueado e necessário redefinir a senha por e-mail.",
- "admin.service.attemptExample": "Ex.: \"10\"",
- "admin.service.attemptTitle": "Máxima Tentativas de Login:",
- "admin.service.cmdsDesc": "Quando verdadeiro, comandos slash personalizados serão permitidos. Veja a documentação para saber mais.",
- "admin.service.cmdsTitle": "Ativar Comandos Slash Personalizados: ",
- "admin.service.corsDescription": "Ativar requisição de origem HTTP Cross dos domínios especificados. Usar \"*\" se você quiser permitir CORS de qualquer domínio ou deixe em branco para desativar.",
- "admin.service.corsEx": "http://example.com",
- "admin.service.corsTitle": "Permitir requisição cross-origin de:",
- "admin.service.developerDesc": "Quando verdadeiro, os erros de Javascript serão mostrados em uma barra roxa no topo da interface de usuário. Não recomendado para uso em produção. ",
- "admin.service.developerTitle": "Ativar o Modo Desenvolvedor: ",
- "admin.service.enableAPIv3": "Permitir o uso do ponto final API v3:",
- "admin.service.enableAPIv3Description": "Definir como falso para desativar todos os pontos finais da versão 3 da API REST. As integrações que dependem da API v3 falharão e poderão ser identificadas para a migração para a API v4. A API v3 está obsoleta e será removida no futuro próximo. Veja https://api.mattermost.com para mais detalhes.",
- "admin.service.enforceMfaDesc": "Quando verdadeiro, autenticação pode multi-fator será requerida para o login. O configuração do MFA será requerida para os novos usuários na inscrição. Usuários logados sem o MFA configurado serão redirecionados para a página de configuração do MFA até a configuração estiver completa.
Se o seu sistema tiver usuários com outros métodos de login que não AD/LDAP e por email, o MFA deverá ser aplicado um provedor de autenticação externo ao Mattermost.",
- "admin.service.enforceMfaTitle": "Impor Autenticação Multi-Fator:",
- "admin.service.forward80To443": "Redirecionamento porta 80 para 443:",
- "admin.service.forward80To443Description": "Redirecionar todo trafego inseguro da porta 80 para porta segura 443",
- "admin.service.googleDescription": "Defina esta chave para permitir a exibição de títulos para pré-visualizações de vídeo do YouTube embutidos. Sem a chave, pré-visualizações do YouTube ainda serão criadas com base em hiperlinks que aparecem nas mensagens ou comentários, mas eles não vão mostrar o título do vídeo. Veja o Google Developers Tutorial para instruções sobre como obter uma chave.",
- "admin.service.googleExample": "Ex.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Google API Key:",
- "admin.service.iconDescription": "Quando verdadeiro, webhooks, comandos slash e outras integrações, como Zapier, terão permissão para mudar a foto do perfil dos posts. Nota: Combinado com a permissão de integrações para substituir nomes de usuários, os usuários podem ser capazes de realizar ataques de phishing ao tentar passar por outros usuários.",
- "admin.service.iconTitle": "Permitir que integrações sobrescreva o imagem do perfil:",
- "admin.service.insecureTlsDesc": "Quando verdadeiro, quaisquer pedidos de HTTPS de saída vão aceitar certificados não verificados ou auto-assinados. Por exemplo, webhooks de saída para um servidor com um certificado TLS auto-assinado, usando qualquer domínio, serão permitidos. Note-se que isso faz com que essas conexões sejam suscetíveis a ataques man-in-the-middle.",
- "admin.service.insecureTlsTitle": "Ativar Conexões de Saída Inseguras: ",
- "admin.service.integrationAdmin": "Restringir gerenciamento de integrações aos Administradores:",
- "admin.service.integrationAdminDesc": "Quando verdadeiro, webhooks e comandos slash podem somente ser criados, editados e visualizados pelos Administradores de Equipe e Sistema, e aplicações OAuth 2.0 pelos Administradores de Sistema. Integrações estão disponíveis para todos os usuários depois delas terem sido criadas pelo Administrador.",
- "admin.service.internalConnectionsDesc": "Em ambientes de testes, como quando em desenvolvimento local de integrações em uma máquina de desenvolvimento, utilize esta configuração para especificar domínios, endereços de IP ou CIDR para habilitar conexões internas. Não recomendado para uso em produção, porque isto pode deixar um usuário extrair informações confidenciais do seu servidor ou rede interna.
Por padrão, URL fornecido por usuários como as utilizadas pelo metadata do Open Graph, webhooks ou comandos de slash não será permitido conectar a endereços de IP reservados incluíndo loopbacks ou endereço link-local utilizado por redes internas. Notificação de push, OAuth 2.0 e URLs de servidores WebRTC são confiáveis e não são afetadas por esta configuração.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Permitir conexão interna não confiável: ",
- "admin.service.letsEncryptCertificateCacheFile": "Arquivo de Cache de Certificado Let's Encrypt:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Os certificados obtidos e outros dados sobre o serviço Let's Encrypt serão armazenados nesse arquivo.",
- "admin.service.listenAddress": "Endereço à Escutar:",
- "admin.service.listenDescription": "O endereço e a porta à qual se ligar e ouvir. Especificando \":8065\" irá ligar-se a todas as interfaces de rede. Especificando \"127.0.0.1:8065\" só irá ligar à interface de rede com esse endereço IP. Se você escolher uma porta de um nível mais baixo (chamadas de \"portas do sistema\" ou \"portas conhecidas\", na faixa de 0-1023), você deve ter permissões para se ligar a essa porta. No Linux, você pode usar: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" para permitir o Mattermost vincular a portas conhecidas.",
- "admin.service.listenExample": "Ex.: \":8065\"",
- "admin.service.mfaDesc": "Quando verdadeiro, usuários com AD/LDAP ou login por email poderão adicionar a autenticação multi-fator nas suas contas usando o Google Authenticator.",
- "admin.service.mfaTitle": "Ativar Autenticação Multi-Fator:",
- "admin.service.mobileSessionDays": "Tamanho da sessão para app móvel (dias):",
- "admin.service.mobileSessionDaysDesc": "O número de dias desde a última vez que um usuário entrou suas credenciais para expirar a sessão do usuário. Depois de alterar essa configuração, a nova duração da sessão terá efeito após a próxima vez que o usuário digitar suas credenciais.",
- "admin.service.outWebhooksDesc": "Quando verdadeiro, webhooks de saída serão permitidos. Veja a documentação para saber mais.",
- "admin.service.outWebhooksTitle": "Ativar Webhooks Saída: ",
- "admin.service.overrideDescription": "Quando verdadeiro, webhooks, comandos slash e outras integrações, como Zapier, terão permissão para mudar o nome do usuário dos posts. Nota: Combinado com a permissão de integrações para substituir foto do perfil, os usuários podem ser capazes de realizar ataques de phishing ao tentar passar por outros usuários.",
- "admin.service.overrideTitle": "Permitir que integrações sobrescrevam o nome do usuário:",
- "admin.service.readTimeout": "Tempo limite de escrita:",
- "admin.service.readTimeoutDescription": "Tempo máximo permitido desde quando a conexão é aceita até quando o corpo da solicitação é totalmente lido.",
- "admin.service.securityDesc": "Quando verdadeiro, os Administradores de Sistema são notificados por e-mail se uma relevante correção de segurança foi anunciado nos últimos 12 horas. Requer o e-mail para ser ativado.",
- "admin.service.securityTitle": "Ativar Alertas de Segurança: ",
- "admin.service.sessionCache": "Cache da Sessão (minutos):",
- "admin.service.sessionCacheDesc": "O número de minutos para o cache de uma sessão na memória.",
- "admin.service.sessionDaysEx": "Ex.: \"30\"",
- "admin.service.siteURL": "Site URL:",
- "admin.service.siteURLDescription": "A URL que os usuários irão usar para acessar o Mattermost. Portas padrão, como 80 e 443, podem ser omitidas, mas portas fora do padrão são obrigatórias. Por exemplo: http://mattermost.example.com:8065. Esta configuração é obrigatória.",
- "admin.service.siteURLExample": "Ex.: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Tamanho da sessão SSO (dias):",
- "admin.service.ssoSessionDaysDesc": "O número de dias desde a última vez que um usuário entrou suas credenciais para expirar a sessão do usuário. Se o método de autenticação é SAML ou GitLab, o usuário pode automaticamente ser registrado novamente no Mattermost se já estiver conectado ao SAML ou GitLab. Depois de alterar essa configuração, a configuração terá efeito após a próxima vez que o usuário digitar suas credenciais.",
- "admin.service.testingDescription": "Quando verdadeiro, comando slash /test estará habilitado para carregar contas de teste, dados e formatação de texto. Mudar isso exigirá um reinício do servidor antes que tenha efeito.",
- "admin.service.testingTitle": "Ativar Comandos Teste: ",
- "admin.service.tlsCertFile": "Arquivo de Certificado TLS:",
- "admin.service.tlsCertFileDescription": "O arquivo do certificado a ser usado.",
- "admin.service.tlsKeyFile": "Arquivo da Chave TLS:",
- "admin.service.tlsKeyFileDescription": "O arquivo da chave privada a ser usado.",
- "admin.service.useLetsEncrypt": "Usar Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Ativar a recuperação automática de certificados do Let's Encrypt. O certificado será recuperado quando um cliente tentar se conectar de um novo domínio. Isso funcionará com vários domínios.",
- "admin.service.userAccessTokensDescLabel": "Nome: ",
- "admin.service.userAccessTokensDescription": "Quando verdadeiro, usuários podem criar tokens de acesso individual para integrações em Configurações de Conta > Segurança. Eles podem ser usados para autenticar contra a API e dar acesso total à conta.
Para gerenciar quem pode criar tokens de acesso individual, vá para página Console do Sistema > Usuários.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Ativar Tokens de Acesso Individual: ",
- "admin.service.webSessionDays": "Tamanho da sessão AD/LDAP e email (dias):",
- "admin.service.webSessionDaysDesc": "O número de dias desde a última vez que um usuário entrou suas credenciais para expirar a sessão do usuário. Depois de alterar essa configuração, a nova duração da sessão terá efeito após a próxima vez que o usuário digitar suas credenciais.",
- "admin.service.webhooksDescription": "Quando verdadeiro, webhooks de entrada serão permitidos. Para ajudar combater ataques de phishing, todas as postagens por webhook serão marcadas com uma etiqueta BOT. Veja a documentação para saber mais.",
- "admin.service.webhooksTitle": "Ativar Webhooks Entrada: ",
- "admin.service.writeTimeout": "Tempo limite de gravação:",
- "admin.service.writeTimeoutDescription": "Se estiver usando HTTP (inseguro), este é o tempo máximo permitido desde o final da leitura dos cabeçalhos de solicitação até que a resposta seja escrita. Se estiver usando HTTPS, é o tempo total de quando a conexão é aceita até que a resposta seja escrita.",
- "admin.sidebar.advanced": "Avançado",
- "admin.sidebar.audits": "Conformidade e Auditoria",
- "admin.sidebar.authentication": "Autenticação",
- "admin.sidebar.client_versions": "Versões dos Clientes",
- "admin.sidebar.cluster": "Alta Disponibilidade",
- "admin.sidebar.compliance": "Conformidade",
- "admin.sidebar.configuration": "Configuração",
- "admin.sidebar.connections": "Conexões",
- "admin.sidebar.customBrand": "Marca Personalizada",
- "admin.sidebar.customIntegrations": "Integrações Personalizadas",
- "admin.sidebar.customization": "Customização",
- "admin.sidebar.database": "Banco de dados",
- "admin.sidebar.developer": "Desenvolvedor",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "E-mail",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "Serviços Externos",
- "admin.sidebar.files": "Arquivos",
- "admin.sidebar.general": "Geral",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Integrações",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Legal e Suporte",
- "admin.sidebar.license": "Edição e Licença",
- "admin.sidebar.linkPreviews": "Visualizações de Links",
- "admin.sidebar.localization": "Regionalização",
- "admin.sidebar.logging": "Logs",
- "admin.sidebar.login": "Login",
- "admin.sidebar.logs": "Logs",
- "admin.sidebar.metrics": "Monitoramento de Performance",
- "admin.sidebar.mfa": "MFA",
- "admin.sidebar.nativeAppLinks": "Links Aplicativo Mattermost",
- "admin.sidebar.notifications": "Notificações",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "OUTROS",
- "admin.sidebar.password": "Senha",
- "admin.sidebar.policy": "Política",
- "admin.sidebar.privacy": "Privacidade",
- "admin.sidebar.publicLinks": "Links Públicos",
- "admin.sidebar.push": "Notificação Móvel",
- "admin.sidebar.rateLimiting": "Limite de Velocidade",
- "admin.sidebar.reports": "REPORTANDO",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Segurança",
- "admin.sidebar.sessions": "Sessões",
- "admin.sidebar.settings": "CONFIGURAÇÕES",
- "admin.sidebar.signUp": "Inscrever",
- "admin.sidebar.sign_up": "Inscrever",
- "admin.sidebar.statistics": "Estatísticas de Equipe",
- "admin.sidebar.storage": "Armazenamento",
- "admin.sidebar.support": "Legal e Suporte",
- "admin.sidebar.users": "Usuários",
- "admin.sidebar.usersAndTeams": "Usuários e Equipes",
- "admin.sidebar.view_statistics": "Estatísticas do Site",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Console do Sistema",
- "admin.sql.dataSource": "Fonte de Dados:",
- "admin.sql.driverName": "Nome do Driver:",
- "admin.sql.keyDescription": "32-caracteres de salt disponível para encriptar e desencriptar campos no banco de dados.",
- "admin.sql.keyExample": "Ex.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Encrypt Key:",
- "admin.sql.maxConnectionsDescription": "Número máximo de conexões ociosas abertas para o banco de dados.",
- "admin.sql.maxConnectionsExample": "Ex.: \"10\"",
- "admin.sql.maxConnectionsTitle": "Máximo de Conexões Inativas:",
- "admin.sql.maxOpenDescription": "Número máximo de conexões abertas para o banco de dados.",
- "admin.sql.maxOpenExample": "Ex.: \"10\"",
- "admin.sql.maxOpenTitle": "Máximo de Conexões Abertas:",
- "admin.sql.noteDescription": "Alterando as propriedades nesta seção irá exigir que o servidor seja reiniciado para que tenha efeito.",
- "admin.sql.noteTitle": "Nota:",
- "admin.sql.queryTimeoutDescription": "O tempo em segundos para esperar uma resposta do banco de dados após abrir a conexão e enviar a consulta. Erros que você vê na UI ou nos logs são resultados de uma consulta que expirou pode variar dependendo do tipo de consulta.",
- "admin.sql.queryTimeoutExample": "Ex.: \"30\"",
- "admin.sql.queryTimeoutTitle": "Tempo-limite da consulta:",
- "admin.sql.replicas": "Replicas Fonte de Dados:",
- "admin.sql.traceDescription": "(Modo Desenvolvedor) Quando verdadeiro, execução de instruções SQL será gravado no log.",
- "admin.sql.traceTitle": "Rastreamento: ",
- "admin.sql.warning": "Aviso: re-gerar este salt pode causar que o banco de dados retorne algumas colunas com resultados vazios.",
- "admin.support.aboutDesc": "A URL para o link de Sobre nas páginas do Mattermost de login e inscrição. Se este campo estiver vazio, o link Sobre será escondido dos usuários.",
- "admin.support.aboutTitle": "Sobre link:",
- "admin.support.emailHelp": "Endereço de email mostrado na notificação de email e durante o tutorial para o usuário final pedir suporte.",
- "admin.support.emailTitle": "Email de suporte:",
- "admin.support.helpDesc": "A URL para o link de Ajuda nas páginas do Mattermost de login e inscrição. Se este campo estiver vazio, o link Ajuda será escondido dos usuários.",
- "admin.support.helpTitle": "Link de ajuda:",
- "admin.support.noteDescription": "Se links para um site externo, URLs devem começar com http:// ou https://.",
- "admin.support.noteTitle": "Nota:",
- "admin.support.privacyDesc": "A URL para o link de Privacidade nas páginas de login e inscrição. Se este campo estiver vazio, o link de Privacidade será escondido dos usuários.",
- "admin.support.privacyTitle": "Link da Política de Privacidade:",
- "admin.support.problemDesc": "A URL para o link de Relatar um Problema nas páginas do Mattermost de login e inscrição. Se este campo estiver vazio, o link Relatar um Problema será escondido dos usuários.",
- "admin.support.problemTitle": "Link para Reportar um Problema:",
- "admin.support.termsDesc": "Link para os termos em que os usuários podem usar o serviço on-line. Por padrão, isso inclui \"Condições de Uso Mattermost (Usuários Finais)\", explicando os termos sob os quais software Mattermost é fornecido aos usuários finais. Se você alterar o link padrão para adicionar seus próprios termos para usar o serviço que você oferece, seus novos termos devem incluir um link para os termos padrão para que os usuários finais estejam cientes das Condições de Uso Mattermost (Usuário Final) para o software Mattermost.",
- "admin.support.termsTitle": "Link Termos do Serviço:",
- "admin.system_analytics.activeUsers": "Usuários Ativos com Postagens",
- "admin.system_analytics.title": "o Sistema",
- "admin.system_analytics.totalPosts": "Total Posts",
- "admin.system_users.allUsers": "Todos os Usuários",
- "admin.system_users.noTeams": "Nenhuma Equipe",
- "admin.system_users.title": "Usuários {siteName}",
- "admin.team.brandDesc": "Ativar marca personalizada para mostrar uma imagem de sua escolha, carregado abaixo e algum texto de ajuda, escrito abaixo na página de login.",
- "admin.team.brandDescriptionExample": "Toda comunicação em um só lugar, pesquisável e acessível em qualquer lugar",
- "admin.team.brandDescriptionHelp": "Descrição do serviço mostrado nas telas de login e UI. Quando não especificado, \"Toda a comunicação da equipe em um só lugar, pesquisável e acessível em qualquer lugar\" é exibido.",
- "admin.team.brandDescriptionTitle": "Descrição Site: ",
- "admin.team.brandImageTitle": "Imagem Personalizada da Marca:",
- "admin.team.brandTextDescription": "O texto que aparece abaixo de sua imagem da marca personalizada na tela de login. Suporta texto em formato Markdown. Máximo de 500 caracteres permitidos.",
- "admin.team.brandTextTitle": "Texto Personalizado da Marca:",
- "admin.team.brandTitle": "Ativar Marca Personalizada: ",
- "admin.team.chooseImage": "Escolha Nova Imagem",
- "admin.team.dirDesc": "Quando verdadeiro, as equipes que estão configuradas para mostrar o diretório de equipe irá mostrar na página principal, em lugar de criar uma nova equipe.",
- "admin.team.dirTitle": "Ativar Diretório de Equipe: ",
- "admin.team.maxChannelsDescription": "Número máximo total de canais por equipe, incluindo ambos canais ativos e inativos.",
- "admin.team.maxChannelsExample": "Ex.: \"100\"",
- "admin.team.maxChannelsTitle": "Máximo Canais Por Equipe:",
- "admin.team.maxNotificationsPerChannelDescription": "Número total máximo de usuários em um canal antes de os usuários digitarem as mensagens, @all, @here e @channel não será enviado notificações por motivos de performance.",
- "admin.team.maxNotificationsPerChannelExample": "Ex.: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Máximo de Notificações por Canal",
- "admin.team.maxUsersDescription": "Número máximo total de usuários por equipe, incluindo ambos usuários ativos e inativos.",
- "admin.team.maxUsersExample": "Ex.: \"25\"",
- "admin.team.maxUsersTitle": "Máximo Usuários Por Equipe:",
- "admin.team.noBrandImage": "Nenhuma imagem da marca carregada",
- "admin.team.openServerDescription": "Quando verdadeiro, qualquer pessoa pode se inscrever para uma conta de usuário no servidor sem a necessidade de ser convidado.",
- "admin.team.openServerTitle": "Ativar Servidor Aberto: ",
- "admin.team.restrictDescription": "Equipes e contas de usuário só pode ser criada a partir de um domínio específico (ex. \"mattermost.org\") ou lista separada por vírgulas de domínios (ex. \"corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Permitir que os usuários abram o canal de Mensagens Diretas com:",
- "admin.team.restrictDirectMessageDesc": "'Qualquer usuário no servidor Mattermost' permite que os usuários abram um canal de Mensagens Diretas com qualquer usuário no servidor, mesmo se eles não estão em nenhuma equipe juntos. 'Qualquer membro da equipe' limita a habilidade de abrir um canal de Mensagens Diretas para somente os usuários que estão na mesma equipe.",
- "admin.team.restrictExample": "Ex.: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Quando verdadeiro, você não pode criar um nome de equipe com as palavras reservadas www, admin, support, test, channel, etc",
- "admin.team.restrictNameTitle": "Restringir Nomes de Equipe: ",
- "admin.team.restrictTitle": "Restringir a criação de contas para os domínios de e-mail específicos:",
- "admin.team.restrict_direct_message_any": "Qualquer usuário no Servidor Mattermost",
- "admin.team.restrict_direct_message_team": "Qualquer membro da equipe",
- "admin.team.showFullname": "Mostrar primeiro e último nome",
- "admin.team.showNickname": "Mostrar apelidos se existir, caso contrário mostrar o primeiro e sobrenome",
- "admin.team.showUsername": "Mostrar nome de usuário (padrão)",
- "admin.team.siteNameDescription": "Nome do serviço mostrado na tela de início da sessão e na UI.",
- "admin.team.siteNameExample": "Ex.: \"Mattermost\"",
- "admin.team.siteNameTitle": "Nome do Site:",
- "admin.team.teamCreationDescription": "Quando falso, somente o Administrador do Sistema poderá criar equipes.",
- "admin.team.teamCreationTitle": "Habilitar a Criação de Equipes: ",
- "admin.team.teammateNameDisplay": "Nome de Exibição da Equipe de Trabalho:",
- "admin.team.teammateNameDisplayDesc": "Ajustar como mostrar os nomes de usuários nas postagens e lista de Mensagens Diretas.",
- "admin.team.upload": "Enviar",
- "admin.team.uploadDesc": "Personalizar sua experiência como usuário, adicionando uma imagem personalizada para a tela de login. tamanho da imagem máxima recomendada é de menos de 2 MB.",
- "admin.team.uploaded": "Enviado!",
- "admin.team.uploading": "Enviando..",
- "admin.team.userCreationDescription": "Quando falso, a capacidade de criar contas é desativada. O botão criar conta apresenta erro quando pressionado.",
- "admin.team.userCreationTitle": "Ativar Criação de Conta: ",
- "admin.team_analytics.activeUsers": "Usuários Ativos Com Postagens",
- "admin.team_analytics.totalPosts": "Total Posts",
- "admin.true": "verdadeiro",
- "admin.user_item.authServiceEmail": "Método de Login: Email",
- "admin.user_item.authServiceNotEmail": "Método de Login: {service}",
- "admin.user_item.confirmDemoteDescription": "Se você rebaixar você mesmo de Admin de Sistema e não exista outro usuário como privilegios de Admin de Sistema, você precisa-rá re-inscrever um Admin de Sistema acessando o servidor Mattermost através do terminal e executando o seguinte comando.",
- "admin.user_item.confirmDemoteRoleTitle": "Confirmar rebaixamento para Admin do Sistema",
- "admin.user_item.confirmDemotion": "Confirmar Rebaixamento",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "Email: {email}",
- "admin.user_item.inactive": "Inativo",
- "admin.user_item.makeActive": "Ativar",
- "admin.user_item.makeInactive": "Desativar",
- "admin.user_item.makeMember": "Tornar um Membro",
- "admin.user_item.makeSysAdmin": "Tornar Admin do Sistema",
- "admin.user_item.makeTeamAdmin": "Tornar Admin de Equipe",
- "admin.user_item.manageRoles": "Gerenciar Funções",
- "admin.user_item.manageTeams": "Gerenciar Equipes",
- "admin.user_item.manageTokens": "Gerenciar Tokens",
- "admin.user_item.member": "Membro",
- "admin.user_item.mfaNo": "MFA: Não",
- "admin.user_item.mfaYes": "MFA: Sim",
- "admin.user_item.resetMfa": "Remover MFA",
- "admin.user_item.resetPwd": "Resetar Senha",
- "admin.user_item.switchToEmail": "Trocar para Email/Senha",
- "admin.user_item.sysAdmin": "Admin do Sistema",
- "admin.user_item.teamAdmin": "Admin Equipe",
- "admin.user_item.userAccessTokenPostAll": "(com post:todos tokens de acesso individual)",
- "admin.user_item.userAccessTokenPostAllPublic": "(com post:canais tokens de acesso individual)",
- "admin.user_item.userAccessTokenYes": "(com tokens de acesso individual)",
- "admin.webrtc.enableDescription": "Quando verdadeiro, Mattermost permite fazer vídeo chamadas ponto-a-ponto. Chamadas WebRTC estão disponíveis no Chrome, Firefox e Mattermost Desktop Apps.",
- "admin.webrtc.enableTitle": "Ativar Mattermost WebRTC: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Digite sua chave secreta para acessar a URL de Administração do Gateway.",
- "admin.webrtc.gatewayAdminSecretExample": "Ex.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Chave Secreta de Administração:",
- "admin.webrtc.gatewayAdminUrlDescription": "Entre em http://:/admin. Certifique-se de usar HTTP ou HTTPS em sua URL, dependendo da sua configuração do servidor. Mattermost WebRTC usa esta URL para obter tokens válidos para cada ponto para estabelecer a conexão.",
- "admin.webrtc.gatewayAdminUrlExample": "Ex.: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "URL Administração do Gateway:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Digite wss://:. Certifique-se de usar WS ou WSS em sua URL dependendo da sua configuração do servidor. Este é o websocket usado para sinalizar e estabelecer a comunicação entre os pontos.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Ex.: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway Websocket URL:",
- "admin.webrtc.stunUriDescription": "Digite sua STUN URI como stun::. STUN é um protocolo de rede padronizado que permite que um host de destino auxilie dispositivos para estabelecer uma conexão usando um endereço IP público se este está localizado atrás de um NAT.",
- "admin.webrtc.stunUriExample": "Ex.: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI:",
- "admin.webrtc.turnSharedKeyDescription": "Digite sua Chave Compartilhada TURN. Isto é usado para criar senhas dinâmicas para estabelecer a conexão. Cada senha é válida para um período de tempo curto.",
- "admin.webrtc.turnSharedKeyExample": "Ex.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "Chave Compartilhada TURN:",
- "admin.webrtc.turnUriDescription": "Digite sua TURN URI como turn::. TURN é um protocolo de rede padronizado que permite que um host de destino auxilie dispositivos para estabelecer uma conexão usando um endereço IP público se este está localizado atrás de um NAT simétrico.",
- "admin.webrtc.turnUriExample": "Ex.: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI:",
- "admin.webrtc.turnUsernameDescription": "Digite seu Usuário para o Servidor TURN.",
- "admin.webrtc.turnUsernameExample": "Ex.: \"meuusuario\"",
- "admin.webrtc.turnUsernameTitle": "Usuário TURN:",
- "admin.webserverModeDisabled": "Desabilitado",
- "admin.webserverModeDisabledDescription": "O servidor Mattermost não serve arquivos estáticos.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "O servidor Mattermost irá servir arquivos estáticos comprimidos com gzip.",
- "admin.webserverModeHelpText": "compressão gzip se aplica a arquivos de conteúdo estático. Recomenda-se a permitir gzip para melhorar o desempenho a menos que seu ambiente tenha restrições específicas, tais como um proxy web que não distribui arquivos gzip bem.",
- "admin.webserverModeTitle": "Modo Webserver:",
- "admin.webserverModeUncompressed": "Não comprimido",
- "admin.webserverModeUncompressedDescription": "O servidor Mattermost irá servir arquivos estáticos não comprimidos.",
- "analytics.chart.loading": "Carregando...",
- "analytics.chart.meaningful": "Não há dados suficientes para uma representação significativa.",
- "analytics.system.activeUsers": "Usuários Ativos Com Posts",
- "analytics.system.channelTypes": "Tipos de Canal",
- "analytics.system.dailyActiveUsers": "Usuários Diários Ativos",
- "analytics.system.monthlyActiveUsers": "Usuários Mensais Ativos",
- "analytics.system.postTypes": "Posts, Arquivos e Hashtags",
- "analytics.system.privateGroups": "Canais Privados",
- "analytics.system.publicChannels": "Canais Públicos",
- "analytics.system.skippedIntensiveQueries": "Para maximizar a performance, algumas estatísticas foram desativadas. Veja: https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Post com Texto somente",
- "analytics.system.title": "Estatísticas do Sistema",
- "analytics.system.totalChannels": "Total de Canais",
- "analytics.system.totalCommands": "Total de Comandos",
- "analytics.system.totalFilePosts": "Posts com Arquivos",
- "analytics.system.totalHashtagPosts": "Posts com Hashtags",
- "analytics.system.totalIncomingWebhooks": "Webhooks Entrada",
- "analytics.system.totalMasterDbConnections": "Master DB Conns",
- "analytics.system.totalOutgoingWebhooks": "Webhooks Saída",
- "analytics.system.totalPosts": "Total Posts",
- "analytics.system.totalReadDbConnections": "Replica DB Conns",
- "analytics.system.totalSessions": "Total de Sessões",
- "analytics.system.totalTeams": "Total de Equipes",
- "analytics.system.totalUsers": "Total de Usuários",
- "analytics.system.totalWebsockets": "Conexão Websocket",
- "analytics.team.activeUsers": "Usuários Ativos Com Posts",
- "analytics.team.newlyCreated": "Novos Usuários Criados",
- "analytics.team.noTeams": "Não existem equipes neste servidor para as quais pretende visualizar estatísticas.",
- "analytics.team.privateGroups": "Canais Privados",
- "analytics.team.publicChannels": "Canais Públicos",
- "analytics.team.recentActive": "Usuários Ativos Recentes",
- "analytics.team.recentUsers": "Usuários Ativos Recentes",
- "analytics.team.title": "Estatísticas de Equipe para {team}",
- "analytics.team.totalPosts": "Total Posts",
- "analytics.team.totalUsers": "Total de Usuários",
- "api.channel.add_member.added": "{addedUsername} foi adicionado ao canal por {username}",
- "api.channel.delete_channel.archived": "{username} arquivou o canal.",
- "api.channel.join_channel.post_and_forget": "{username} juntou-se ao canal.",
- "api.channel.leave.left": "{username} saiu do canal.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} atualizou o nome de exibição do canal de: {old} para: {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} removeu o cabeçalho do canal (era: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} atualizou o cabeçalho do canal de: {old} para: {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} atualizou o cabeçalho do canal para: {new}",
- "api.channel.remove_member.removed": "{removedUsername} foi removido do canal.",
- "app.channel.post_update_channel_purpose_message.removed": "{username} removeu o propósito do canal (era: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} atualizou o propósito do canal de: {old} para: {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} atualizou o propósito do canal para: {new}",
- "audit_table.accountActive": "Conta ativada",
- "audit_table.accountInactive": "Conta desativada",
- "audit_table.action": "Ação",
- "audit_table.attemptedAllowOAuthAccess": "Tentativa de permitir um novo acesso ao serviço OAuth",
- "audit_table.attemptedLicenseAdd": "Tentativa de adicionar uma nova licença",
- "audit_table.attemptedLogin": "Tentou login",
- "audit_table.attemptedOAuthToken": "Tentativa de obter um token de acesso OAuth",
- "audit_table.attemptedPassword": "Tentativa de mudar a senha",
- "audit_table.attemptedRegisterApp": "Tentativa de registrar um novo Aplicativo OAuth com ID {id}",
- "audit_table.attemptedReset": "Tentativa de resetar a senha",
- "audit_table.attemptedWebhookCreate": "Tentativa de criar um webhook",
- "audit_table.attemptedWebhookDelete": "Tentativa de deletar um webhook",
- "audit_table.by": " por {username}",
- "audit_table.byAdmin": " por um admin",
- "audit_table.channelCreated": "Criado o canal {channelName}",
- "audit_table.channelDeleted": "Excluído o canal com a URL {url}",
- "audit_table.establishedDM": "Estabelecido uma mensagem direta para o canal com {username}",
- "audit_table.failedExpiredLicenseAdd": "Falha ao adicionar uma nova licença uma vez que expirou ou ainda não foi iniciado",
- "audit_table.failedInvalidLicenseAdd": "Falha ao adicionar um licença inválida",
- "audit_table.failedLogin": "FALHA na tentativa de login",
- "audit_table.failedOAuthAccess": "Falha ao permitir um novo acesso ao serviço OAuth - a URI de redirecionamento não coincide com o retorno de chamada registrado anteriormente",
- "audit_table.failedPassword": "Falha ao alterar a senha - tentou-se atualizar a senha do usuário que estava conectado através do OAuth",
- "audit_table.failedWebhookCreate": "Falha ao criar uma webhook - sem permissão do canal",
- "audit_table.failedWebhookDelete": "Falha ao deletar um webhook - condições inapropriadas",
- "audit_table.headerUpdated": "Atualizado o cabeçalho do canal {channelName}",
- "audit_table.ip": "Endereço de IP",
- "audit_table.licenseRemoved": "Licença removida com sucesso",
- "audit_table.loginAttempt": " (Tentativa de login)",
- "audit_table.loginFailure": " (Falha de login)",
- "audit_table.logout": "Logado fora da sua conta",
- "audit_table.member": "membro",
- "audit_table.nameUpdated": "Atualizado nome do canal para {channelName}",
- "audit_table.oauthTokenFailed": "Falha ao obter um token de acesso OAuth - {token}",
- "audit_table.revokedAll": "Revogada todas as sessões atuais para a equipe",
- "audit_table.sentEmail": "Enviado um email para {email} para resetar sua senha",
- "audit_table.session": "ID da Sessão",
- "audit_table.sessionRevoked": "A sessão com id {sessionId} foi revogada",
- "audit_table.successfullLicenseAdd": "Nova licença adicionada com sucesso",
- "audit_table.successfullLogin": "Logado com sucesso",
- "audit_table.successfullOAuthAccess": "Dado novo acesso ao serviço OAuth com sucesso",
- "audit_table.successfullOAuthToken": "Adicionado um novo serviço OAuth com sucesso",
- "audit_table.successfullPassword": "Senha alterada com sucesso",
- "audit_table.successfullReset": "Senha resetada com sucesso",
- "audit_table.successfullWebhookCreate": "Criado com sucesso um webhook",
- "audit_table.successfullWebhookDelete": "Criado com sucesso um webhook",
- "audit_table.timestamp": "Timestamp",
- "audit_table.updateGeneral": "Atualizado as configurações gerais da sua conta",
- "audit_table.updateGlobalNotifications": "Atualizado suas definições globais de notificação",
- "audit_table.updatePicture": "Atualizado sua imagem do perfil",
- "audit_table.updatedRol": "Atualizado as função(ões) do usuário para ",
- "audit_table.userAdded": "Adicionado {username} no o canal {channelName}",
- "audit_table.userId": "Usuário ID",
- "audit_table.userRemoved": "Removido {username} do canal {channelName}",
- "audit_table.verified": "Seu endereço de e-mail foi verificado com suscesso",
- "authorize.access": "Permitir acesso {appName}?",
- "authorize.allow": "Permitir",
- "authorize.app": "O app {appName} gostaria de ter a capacidade de acessar e modificar suas informações básicas.",
- "authorize.deny": "Negar",
- "authorize.title": "{appName} gostaria de conectar a sua conta de usuário Mattermost",
- "backstage_list.search": "Pesquisar",
- "backstage_navbar.backToMattermost": "Voltar para {siteName}",
- "backstage_sidebar.emoji": "Emoji Personalizado",
- "backstage_sidebar.integrations": "Integrações",
- "backstage_sidebar.integrations.commands": "Comandos Slash",
- "backstage_sidebar.integrations.incoming_webhooks": "Webhooks Entrada",
- "backstage_sidebar.integrations.oauthApps": "Aplicativos OAuth 2.0",
- "backstage_sidebar.integrations.outgoing_webhooks": "Webhooks Saída",
- "calling_screen": "Chamando",
- "center_panel.recent": "Clique aqui para pular para mensagens recentes. ",
- "change_url.close": "Fechar",
- "change_url.endWithLetter": "URL deve terminar com uma letra ou número.",
- "change_url.invalidUrl": "URL inválida",
- "change_url.longer": "URL precisa ter dois ou mais caracteres.",
- "change_url.noUnderscore": "URL não pode conter dois sublinhados consecutivos.",
- "change_url.startWithLetter": "URL deve começar com uma letra ou número.",
- "change_url.urlLabel": "URL do Canal",
- "channelHeader.addToFavorites": "Adicionar aos Favoritos",
- "channelHeader.removeFromFavorites": "Remover dos Favoritos",
- "channel_flow.alreadyExist": "Um canal com essa URL já existe",
- "channel_flow.changeUrlDescription": "Alguns caracteres não são permitidos nas URLs e podem ser removidos.",
- "channel_flow.changeUrlTitle": "Mudar URL do Canal",
- "channel_flow.create": "Criar Canal",
- "channel_flow.handleTooShort": "URL do canal precisa ter 2 ou mais caracteres minúsculos alfanuméricos",
- "channel_flow.invalidName": "Nome do Canal Inválido",
- "channel_flow.set_url_title": "Definir URL do Canal",
- "channel_header.addChannelHeader": "Adicionar descrição do canal",
- "channel_header.addMembers": "Adicionar Membros",
- "channel_header.addToFavorites": "Adicionar aos Favoritos",
- "channel_header.channelHeader": "Editar Cabeçalho do Canal",
- "channel_header.channelMembers": "Membros",
- "channel_header.delete": "Excluir Canal",
- "channel_header.flagged": "Posts Marcados",
- "channel_header.leave": "Deixar o Canal",
- "channel_header.manageMembers": "Gerenciar Membros",
- "channel_header.notificationPreferences": "Preferências de Notificação",
- "channel_header.pinnedPosts": "Posts Fixados",
- "channel_header.recentMentions": "Menções Recentes",
- "channel_header.removeFromFavorites": "Remover dos Favoritos",
- "channel_header.rename": "Renomear o Canal",
- "channel_header.setHeader": "Editar Cabeçalho do Canal",
- "channel_header.setPurpose": "Editar Propósito do Canal",
- "channel_header.viewInfo": "Ver Informações",
- "channel_header.viewMembers": "Ver Membros",
- "channel_header.webrtc.call": "Iniciar Vídeo Chamada",
- "channel_header.webrtc.offline": "O usuário está desconectado",
- "channel_header.webrtc.unavailable": "Nova chamada não disponível até que você termine a chamada existente",
- "channel_info.about": "Sobre",
- "channel_info.close": "Fechar",
- "channel_info.header": "Cabeçalho:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Nome:",
- "channel_info.notFound": "Nenhum Canal Encontrado",
- "channel_info.purpose": "Propósito:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Adicionar",
- "channel_invite.addNewMembers": "Adicionar Novo Membro para ",
- "channel_invite.close": "Fechar",
- "channel_loader.connection_error": "Parece existir um problema com a sua conexão de internet.",
- "channel_loader.posted": "Postado",
- "channel_loader.postedImage": " postado uma imagem",
- "channel_loader.socketError": "Por favor verifique a sua conexão, Mattermost está inacessível. Se o problema persistir, pergunte ao administrador para verificar a porta do WebSocket.",
- "channel_loader.someone": "Alguém",
- "channel_loader.something": " fez algo novo",
- "channel_loader.unknown_error": "Recebido um código de status inesperado do servidor.",
- "channel_loader.uploadedFile": " enviado um arquivo",
- "channel_loader.uploadedImage": " enviado uma imagem",
- "channel_loader.wrote": " escreveu: ",
- "channel_members_dropdown.channel_admin": "Administrador de Canal",
- "channel_members_dropdown.channel_member": "Membro do Canal",
- "channel_members_dropdown.make_channel_admin": "Tornar Administrador de Canal",
- "channel_members_dropdown.make_channel_member": "Tornar Membro de Canal",
- "channel_members_dropdown.remove_from_channel": "Remover do Canal",
- "channel_members_dropdown.remove_member": "Remover Membro",
- "channel_members_modal.addNew": " Adicionar Novos Membros",
- "channel_members_modal.members": " Membros",
- "channel_modal.cancel": "Cancelar",
- "channel_modal.createNew": "Criar Novo Canal",
- "channel_modal.descriptionHelp": "Descreva como este canal deve ser utilizado.",
- "channel_modal.displayNameError": "O nome do canal deve ter com 2 ou mais caracteres",
- "channel_modal.edit": "Editar",
- "channel_modal.header": "Cabeçalho",
- "channel_modal.headerEx": "Ex.: \"[Título do Link](http://example.com)\"",
- "channel_modal.headerHelp": "Configure o texto que irá aparecer no topo do canal ao lado do nome do canal. Por exemplo, inclua os links utilizados frequentemente digitando [Link Title](http://example.com).",
- "channel_modal.modalTitle": "Novo Canal",
- "channel_modal.name": "Nome",
- "channel_modal.nameEx": "Ex.: \"Bugs\", \"Marketing\", \"办公室恋情\"",
- "channel_modal.optional": "(opcional)",
- "channel_modal.privateGroup1": "Criar um novo canal privado com membros restritos. ",
- "channel_modal.privateGroup2": "Criar um canal privado",
- "channel_modal.publicChannel1": "Criar um canal público",
- "channel_modal.publicChannel2": "Criar um novo canal público para qualquer um participar. ",
- "channel_modal.purpose": "Propósito",
- "channel_modal.purposeEx": "Ex.: \"Um canal para arquivar bugs e melhorias\"",
- "channel_notifications.allActivity": "Para todas as atividades",
- "channel_notifications.allUnread": "Para todas as mensagens não lidas",
- "channel_notifications.globalDefault": "Global padrão ({notifyLevel})",
- "channel_notifications.markUnread": "Marcar Canal como Não Lido",
- "channel_notifications.never": "Nunca",
- "channel_notifications.onlyMentions": "Somente para menções",
- "channel_notifications.override": "Selecionar uma opção diferente do \"Padrão\" vai substituir as configurações de notificação global. Notificações na área de trabalho estão disponíveis no Firefox, Safari e Chrome.",
- "channel_notifications.overridePush": "Selecionando uma opção diferente de \"Global default\" está irá sobrescrever a configurção global de notificação para notificações de push para mobile na configuração de conta. Notificação por push deve ser habilitada pelo administrador do sistema.",
- "channel_notifications.preferences": "Preferências de Notificação para ",
- "channel_notifications.push": "Enviar notificações push para o celular",
- "channel_notifications.sendDesktop": "Enviar notificações de desktop",
- "channel_notifications.unreadInfo": "O nome do canal fica em negrito na barra lateral quando houver mensagens não lidas. Selecionando \"Apenas menções\" o canal vai ficar em negrito apenas quando você for mencionado.",
- "channel_select.placeholder": "--- Selecione um canal ---",
- "channel_switch_modal.dm": "(Mensagem Direta)",
- "channel_switch_modal.failed_to_open": "Falha ao abrir o canal.",
- "channel_switch_modal.not_found": "Nenhum resultado encontrado.",
- "channel_switch_modal.submit": "Alternar",
- "channel_switch_modal.title": "Alternar Canais",
- "claim.account.noEmail": "Nenhum email específicado",
- "claim.email_to_ldap.enterLdapPwd": "Entre o ID e a senha para sua conta AD/LDAP",
- "claim.email_to_ldap.enterPwd": "Entre a senha para o sua conta de email no {site}",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "Por favor digite seu ID AD/LDAP.",
- "claim.email_to_ldap.ldapPasswordError": "Por favor digite a sua senha AD/LDAP.",
- "claim.email_to_ldap.ldapPwd": "Senha AD/LDAP",
- "claim.email_to_ldap.pwd": "Senha",
- "claim.email_to_ldap.pwdError": "Por favor digite a sua senha.",
- "claim.email_to_ldap.ssoNote": "Você precisa já ter uma conta AD/LDAP válida",
- "claim.email_to_ldap.ssoType": "Ao retirar a sua conta, você só vai ser capaz de logar com AD/LDAP",
- "claim.email_to_ldap.switchTo": "Alternar conta para AD/LDAP",
- "claim.email_to_ldap.title": "Alternar Conta E-mail/Senha para AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Entre a senha para o sua conta {site}",
- "claim.email_to_oauth.pwd": "Senha",
- "claim.email_to_oauth.pwdError": "Por favor digite a sua senha.",
- "claim.email_to_oauth.ssoNote": "Você precisa já ter uma conta {type} válida",
- "claim.email_to_oauth.ssoType": "Ao retirar a sua conta, você só vai ser capaz de logar com SSO {type}",
- "claim.email_to_oauth.switchTo": "Trocar a conta para {uiType}",
- "claim.email_to_oauth.title": "Trocar E-mail/Senha da Conta para {uiType}",
- "claim.ldap_to_email.confirm": "Confirmar senha",
- "claim.ldap_to_email.email": "Depois de alterar o seu método de autenticação, você vai usar {email} para logar. Suas credenciais AD/LDAP deixarão de permitir o acesso ao Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "Nova senha de login por e-mail:",
- "claim.ldap_to_email.ldapPasswordError": "Por favor digite a sua senha AD/LDAP.",
- "claim.ldap_to_email.ldapPwd": "Senha AD/LDAP",
- "claim.ldap_to_email.pwd": "Senha",
- "claim.ldap_to_email.pwdError": "Por favor digite a sua senha.",
- "claim.ldap_to_email.pwdNotMatch": "As senha não correspondem.",
- "claim.ldap_to_email.switchTo": "Trocar a conta para e-mail/senha",
- "claim.ldap_to_email.title": "Alternar Conta AD/LDAP para E-mail/Senha",
- "claim.oauth_to_email.confirm": "Confirmar Senha",
- "claim.oauth_to_email.description": "Após a alteração do tipo de conta, você só vai ser capaz de logar com seu e-mail e senha.",
- "claim.oauth_to_email.enterNewPwd": "Entre a nova senha para o sua conta de email no {site}",
- "claim.oauth_to_email.enterPwd": "Por favor entre uma senha.",
- "claim.oauth_to_email.newPwd": "Nova Senha",
- "claim.oauth_to_email.pwdNotMatch": "As senha não correspondem.",
- "claim.oauth_to_email.switchTo": "Trocar {type} para email e senha",
- "claim.oauth_to_email.title": "Trocar Conta {type} para E-mail",
- "confirm_modal.cancel": "Cancelar",
- "connecting_screen": "Conectando",
- "create_comment.addComment": "Adicionar um comentário...",
- "create_comment.comment": "Adicionar Comentário",
- "create_comment.commentLength": "Tamanho dos comentários precisa ter menos de {max} caracteres.",
- "create_comment.commentTitle": "Comentário",
- "create_comment.file": "Enviando arquivo",
- "create_comment.files": "Enviando arquivos",
- "create_post.comment": "Comentário",
- "create_post.error_message": "Sua mensagem é muito longa. Número de caracteres: {length}/{limit}",
- "create_post.post": "Post",
- "create_post.shortcutsNotSupported": "Atalhos do teclado não está disponível no seu dispositivo.",
- "create_post.tutorialTip": "
Enviando Mensagens
Digite aqui para escrever uma mensagem e pressione ENTER para posta-lá.
Clique no botão Anexo para enviar uma imagem ou arquivo.
",
- "create_post.write": "Escreva uma mensagem...",
- "create_team.agreement": "Para prosseguir e criar sua conta e utilizar {siteName}, você deve concordar com o nosso Termos de Serviço e com a Política de Privacidade. Se você não concordar, não poderá utilizar o {siteName}.",
- "create_team.display_name.charLength": "O nome deve ter {min} ou mais caracteres até um máximo de {max}. Você pode adicionar uma descrição da equipe depois.",
- "create_team.display_name.nameHelp": "Nome da sua equipe em qualquer idioma. Seu nome de equipe é mostrado em menus e títulos.",
- "create_team.display_name.next": "Próximo",
- "create_team.display_name.required": "Este campo é obrigatório",
- "create_team.display_name.teamName": "Nome da Equipe",
- "create_team.team_url.back": "Voltar para o passo anterior",
- "create_team.team_url.charLength": "O nome deve ter {min} ou mais caracteres até um máximo de {max}",
- "create_team.team_url.creatingTeam": "Criando equipe...",
- "create_team.team_url.finish": "Terminar",
- "create_team.team_url.hint": "
Curto e memorizável é o melhor
Use letras minúsculas, números e traços
Deve começar com uma letra e não pode terminar em um traço
",
- "create_team.team_url.regex": "Utilize apenas letras minúsculas, números e traços. Deve começar com uma letra e não pode terminar em um traço.",
- "create_team.team_url.required": "Este campo é obrigatório",
- "create_team.team_url.taken": "Esta URL começa com uma palavra reservada ou está indisponível. Por favor tente outra.",
- "create_team.team_url.teamUrl": "Equipe URL",
- "create_team.team_url.unavailable": "Esta URL foi usada ou está indisponível. Por favor tente outra.",
- "create_team.team_url.webAddress": "Escolha o endereço web para sua nova equipe:",
- "custom_emoji.empty": "Emoji personalizado não encontrado",
- "custom_emoji.header": "Emoji Personalizado",
- "custom_emoji.search": "Pesquisar Emoji Personalizado",
- "deactivate_member_modal.cancel": "Cancelar",
- "deactivate_member_modal.deactivate": "Desativar",
- "deactivate_member_modal.desc": "Esta ação desativa {username}. Eles serão desconectados e não terão acesso a nenhuma equipe ou canais neste sistema. Você tem certeza que deseja desativar {username}?",
- "deactivate_member_modal.title": "Desativar {username}",
- "default_channel.purpose": "Poste mensagens aqui que você quer que todos vejam. Todos se tornam automaticamente membros permanentes deste canal quando se juntam à equipe.",
- "delete_channel.cancel": "Cancelar",
- "delete_channel.confirm": "Confirmar EXCLUSÃO do Canal",
- "delete_channel.del": "Deletar",
- "delete_channel.question": "Isto irá apagar o canal da equipe e todo o conteúdo não vai estar mais disponível para os usuários.
Você tem certeza de que deseja apagar o canal {display_name}?",
- "delete_post.cancel": "Cancelar",
- "delete_post.comment": "Comentário",
- "delete_post.confirm": "Confirmar Delete {term}",
- "delete_post.del": "Deletar",
- "delete_post.post": "Post",
- "delete_post.question": "Tem certeza de que deseja excluir este {term}?",
- "delete_post.warning": "Este post tem {count, number} {count, plural, one {comentário} other {comentários}} nele.",
- "edit_channel_header.editHeader": "Editar o Cabeçalho do Canal...",
- "edit_channel_header.previewHeader": "Editar cabeçalho",
- "edit_channel_header_modal.cancel": "Cancelar",
- "edit_channel_header_modal.description": "Editar o texto que aparece junto ao nome do canal dentro do cabeçalho do canal.",
- "edit_channel_header_modal.error": "Este cabeçalho de canal é muito longo, por favor insira um menor",
- "edit_channel_header_modal.save": "Salvar",
- "edit_channel_header_modal.title": "Editar Cabeçalho para o {channel}",
- "edit_channel_header_modal.title_dm": "Editar cabeçalho",
- "edit_channel_private_purpose_modal.body": "Este texto aparece no menu \"Ver Informações\" do canal privado.",
- "edit_channel_purpose_modal.body": "Descreva como este canal deve ser utilizado. Este texto aparece na lista de canais no menu \"Mais...\" e ajuda os outros a decidir se deseja participar.",
- "edit_channel_purpose_modal.cancel": "Cancelar",
- "edit_channel_purpose_modal.error": "Este propósito do canal é muito longo, por favor insira um menor",
- "edit_channel_purpose_modal.save": "Salvar",
- "edit_channel_purpose_modal.title1": "Editar Propósito",
- "edit_channel_purpose_modal.title2": "Editar Propósito para ",
- "edit_command.save": "Atualizar",
- "edit_post.cancel": "Cancelar",
- "edit_post.edit": "Editar {title}",
- "edit_post.editPost": "Editar o post...",
- "edit_post.save": "Salvar",
- "email_signup.address": "Endereço de E-mail",
- "email_signup.createTeam": "Criar Equipe",
- "email_signup.emailError": "Por favor entre um endereço de e-mail válido.",
- "email_signup.find": "Encontrar minhas equipes",
- "email_verify.almost": "{siteName}: Você está quase pronto",
- "email_verify.failed": " Falha ao enviar verificação por email.",
- "email_verify.notVerifiedBody": "Por favor verifique seu endereço de email. Verifique por um email em sua caixa de entrada.",
- "email_verify.resend": "Re-enviar Email",
- "email_verify.sent": " Verificação de email enviado.",
- "email_verify.verified": "{siteName} Email Verificado",
- "email_verify.verifiedBody": "
",
- "email_verify.verifyFailed": "Falha ao verificar seu email.",
- "emoji_list.actions": "Ações",
- "emoji_list.add": "Adicionar Emoji Personalizado",
- "emoji_list.creator": "Criador",
- "emoji_list.delete": "Deletar",
- "emoji_list.delete.confirm.button": "Deletar",
- "emoji_list.delete.confirm.msg": "Esta ação exclui permanentemente o emoji personalizado. Tem certeza de que deseja excluí-lo?",
- "emoji_list.delete.confirm.title": "Excluir Emoji Personalizado",
- "emoji_list.empty": "Emoji Personalizado Não Encontrado",
- "emoji_list.header": "Emoji Personalizado",
- "emoji_list.help": "Emojis personalizados estão disponíveis para todos no seu servidor. Digite ':' na caixa de mensagens para trazer o menu de seleção de emojis. Outros usuários podem precisar atualizar a página antes que os novos emojis apareçam.",
- "emoji_list.help2": "Dica: Se você adicionar #, ##, ou ### como primeiro caractere em uma nova linha contendo um emoji, você poderá usar emoji com tamanho maior. Para testar, envia uma mensagem como: '# :smile:'.",
- "emoji_list.image": "Imagem",
- "emoji_list.name": "Nome",
- "emoji_list.search": "Pesquisar Emoji Personalizado",
- "emoji_list.somebody": "Alguém em outra equipe",
- "emoji_picker.activity": "Atividade",
- "emoji_picker.custom": "Personalizado",
- "emoji_picker.emojiPicker": "Seleção de Emoji",
- "emoji_picker.flags": "Bandeiras",
- "emoji_picker.foods": "Comidas",
- "emoji_picker.nature": "Natureza",
- "emoji_picker.objects": "Objetos",
- "emoji_picker.people": "Pessoas",
- "emoji_picker.places": "Lugares",
- "emoji_picker.recent": "Usados recentemente",
- "emoji_picker.search": "Buscar",
- "emoji_picker.symbols": "Símbolos",
- "error.local_storage.help1": "Ativar cookies",
- "error.local_storage.help2": "Desativar navegação privada",
- "error.local_storage.help3": "Use um navegador suportado (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost não foi capaz de carregar devido a suas configurações no navegador que impedem o uso do recurso de armazenamento local. Para permitir o carregamento do Mattermost, tente as seguintes ações:",
- "error.not_found.link_message": "Voltar para Mattermost",
- "error.not_found.message": "A página que você estava tentando alcançar não existe",
- "error.not_found.title": "Página não encontrada",
- "error_bar.expired": "Licença Enterprise está expirada e alguns recursos podem estar desativados. Favor renovar.",
- "error_bar.expiring": "Licença Enterprise expira em {date}. Favor renovar.",
- "error_bar.past_grace": "Licença Enterprise está expirada e alguns recursos podem estar desativados. Por favor entre em contato com o Administrador do Sistema para detalhes.",
- "error_bar.preview_mode": "Modo de visualização: Notificações por E-mail não foram configuradas",
- "error_bar.site_url": "Por favor configure seus {docsLink} usando o {link}",
- "error_bar.site_url.docsLink": "Site URL",
- "error_bar.site_url.link": "Console do Sistema",
- "error_bar.site_url_gitlab": "Por favor configure seus {docsLink} no Console do Sistema ou no gitlab.rb se você estiver utilizando o GitLab Mattermost.",
- "file_attachment.download": "Download",
- "file_info_preview.size": "Tamanho ",
- "file_info_preview.type": "Tipo do arquivo ",
- "file_upload.disabled": "Anexo de arquivos estão desabilitados.",
- "file_upload.fileAbove": "Arquivo acima {max}MB não pode ser enviado: {filename}",
- "file_upload.filesAbove": "Arquivos acima {max}MB não podem ser enviados: {filenames}",
- "file_upload.limited": "Limite máximo de uploads de {count, number} arquivos. Por favor use um post adicional para mais arquivos.",
- "file_upload.pasted": "Imagem Colada em ",
- "filtered_channels_list.search": "Procurar canais",
- "filtered_user_list.any_team": "Todos os Usuários",
- "filtered_user_list.count": "{count, number} {count, plural, one {membro} other {membros}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {membro} other {membros}} de {total, number} no total",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {membro} other {membros}} de {total, number} no total",
- "filtered_user_list.member": "Membro",
- "filtered_user_list.next": "Próximo",
- "filtered_user_list.prev": "Anterior",
- "filtered_user_list.search": "Buscar usuários",
- "filtered_user_list.searchButton": "Pesquisar",
- "filtered_user_list.show": "Filtro:",
- "filtered_user_list.team_only": "Membros desta Equipe",
- "find_team.email": "E-mail",
- "find_team.findDescription": "Foi enviado um e-mail com links para todas as equipes do qual você é membro.",
- "find_team.findTitle": "Encontre Sua Equipe",
- "find_team.getLinks": "Obter um e-mail com links para quaisquer equipes do qual você é membro.",
- "find_team.placeholder": "voce@dominio.com",
- "find_team.send": "Enviar",
- "find_team.submitError": "Por favor entre um endereço de e-mail válido",
- "flag_post.flag": "Marcar para seguir",
- "flag_post.unflag": "Desmarcar",
- "general_tab.chooseDescription": "Por favor escolha uma nova descrição para sua equipe",
- "general_tab.codeDesc": "Clique 'Edit' para re-gerar o Código de Convite.",
- "general_tab.codeLongDesc": "O Código de convite é usado como parte da URL no link de convite da equipe criado por {getTeamInviteLink} no menu principal. Re-gerar cria um novo link de convite de equipe e invalida os link anteriores.",
- "general_tab.codeTitle": "Código de Convite",
- "general_tab.emptyDescription": "Clique 'Editar' para adicionar uma descrição da equipe",
- "general_tab.getTeamInviteLink": "Obter Link de Convite de Equipe",
- "general_tab.includeDirDesc": "Incluindo esta equipe irá exibir o nome da equipe da seção Diretório Equipe da página inicial, e fornecer um link para a página de login.",
- "general_tab.no": "Não",
- "general_tab.openInviteDesc": "Quando permitido, um link para esta equipe vai ser incluído na página de destino permitindo que qualquer pessoa com uma conta possa participar desta equipe.",
- "general_tab.openInviteTitle": "Permitir que qualquer usuário com uma conta neste servidor possa se juntar a esta equipe",
- "general_tab.regenerate": "Re-Gerar",
- "general_tab.required": "Este campo é obrigatório",
- "general_tab.teamDescription": "Descrição da Equipe",
- "general_tab.teamDescriptionInfo": "Descrição da equipe fornece informações adicionais para ajudar os usuários a selecionar a equipe correta. Máximo de 50 caracteres.",
- "general_tab.teamName": "Nome da Equipe",
- "general_tab.teamNameInfo": "Defina o nome da equipe como aparece na sua tela de login e no topo na lateral esquerda.",
- "general_tab.title": "Definições Gerais",
- "general_tab.yes": "Sim",
- "get_app.alreadyHaveIt": "Já tem isso?",
- "get_app.androidAppName": "Mattermost para Android",
- "get_app.androidHeader": "Mattermost funciona melhor se você alternar para o nosso aplicativo Android",
- "get_app.continue": "continuar",
- "get_app.continueWithBrowser": "Ou {link}",
- "get_app.continueWithBrowserLink": "continuar no navegador",
- "get_app.iosHeader": "Mattermost funciona melhor se você alternar para o nosso aplicativo iPhone",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Abrir Mattermost",
- "get_link.clipboard": " Link copiado",
- "get_link.close": "Fechar",
- "get_link.copy": "Copiar Link",
- "get_post_link_modal.help": "O link abaixo permite que usuários autorizados possam ver seus posts.",
- "get_post_link_modal.title": "Copiar Permalink",
- "get_public_link_modal.help": "O link abaixo permite que qualquer pessoa veja este arquivo sem ser registrado neste servidor.",
- "get_public_link_modal.title": "Obter Link Público",
- "get_team_invite_link_modal.help": "Envie o link abaixo para sua equipe de trabalho para que eles se inscrevam nessa equipe. O Link de Convite de Equipe pode ser compartilhado com vários colegas de equipe, pois ele não muda a menos que seja re-gerado nas Configurações de Equipe por um Administrador da mesma.",
- "get_team_invite_link_modal.helpDisabled": "Criação de usuários está desabilitada para sua equipe. Por favor peça ao administrador de equipe por detalhes.",
- "get_team_invite_link_modal.title": "Link para Convite de Equipe",
- "help.attaching.downloading": "#### Download Arquivos\nFazer download de um arquivo anexado clicando no ícone de download ao lado da miniatura de arquivos ou abrindo o visualizador de arquivos e clicando em **Download**.",
- "help.attaching.dragdrop": "#### Arrastar e Soltar\nEnvie um arquivo ou uma seleção de arquivos arrastando-os do seu computador para barra lateral direita ou painel central. Arrastando e soltando os arquivos serão anexados a caixa de entrada de mensagem, então você pode, se desejar, digitar uma mensagem e pressionar **ENTER** para postar.",
- "help.attaching.icon": "#### Ícone de Anexo\nComo alternativa, fazer upload de arquivos clicando no ícone de clipe cinza dentro da caixa de entrada de mensagem. Isso abre o seu visualizador de arquivos do sistema, onde você pode navegar até os arquivos desejados e clique em **Abrir** para enviar os arquivos para a caixa de entrada de mensagens. Opcionalmente, digite uma mensagem e em seguida, pressione **ENTER** para postar.",
- "help.attaching.limitations": "## Limitação Tamanho de Arquivo\nMattermost suporta um máximo de cinco arquivos anexados por postagem, cada um com tamanho máximo de 50Mb.",
- "help.attaching.methods": "## Métodos de Anexar\nAnexe um arquivo arrastando e soltando ou clicando no ícone de anexar na caixa de entrada de mensagem.",
- "help.attaching.notSupported": "Visualização de documentos (Word, Excel, PPT) não é ainda suportado.",
- "help.attaching.pasting": "#### Colando Imagens\nNos navegadores Chrome e Edge isto é também possível para enviar arquivos colando eles a partir da área de transferência. Isto ainda não é suportado nos outros navegadores.",
- "help.attaching.previewer": "## Visualização de Arquivo\nMattermost tem um visualizador de arquivos nativo que é usado para ver a mídia, fazer download e compartilhar links públicos. Clique na miniatura do arquivo anexado para abrir o visualizador de arquivos.",
- "help.attaching.publicLinks": "#### Compartilhar Links Públicos\nLinks públicos permitem que você compartilhe arquivos anexados com pessoas fora da sua equipe Mattermost. Abra o visualizador de arquivo clicando na miniatura do anexo, então clique **Obter Link Público**. Isto abrirá um caixa de dialogo com um link para copiar. Quando o link for compartilhado e aberto por outro usuário, será feito download automaticamente do arquivo.",
- "help.attaching.publicLinks2": "Se **Obter Link Público** não estiver visível no visualizador de arquivo e você prefere este recurso ativo, você pode solicitar que o Administrador do Sistema ative o recurso no Console do Sistema em **Segurança** > **Links Públicos**.",
- "help.attaching.supported": "#### Tipos de Mídia Suportados\nSe você está tentando visualizar um tipo de mídia que não é suportado, o visualizador de arquivos vai abrir um ícone de anexo de mídia padrão. Formatos de mídia suportados dependem fortemente de seu navegador e sistema operacional, mas os seguintes formatos são suportados pelo Mattermost na maioria dos navegadores:",
- "help.attaching.supportedList": "- Imagens: BMP, GIF, JPG, JPEG, PNG\n- Vídeo: MP4\n- Audio: MP3, M4A\n- Documentos: PDF",
- "help.attaching.title": "# Anexando Arquivos\n_____",
- "help.commands.builtin": "## Comandos Nativos\nOs seguintes comandos slash estão disponíveis em todas as instalações Mattermost:",
- "help.commands.builtin2": "Comece digitando `/` e uma lista de opções de comando slash aparece acima da caixa de entrada de texto. As sugestões de preenchimento automático ajudam fornecendo um exemplo no texto preto e uma breve descrição do comando slash no texto cinza.",
- "help.commands.custom": "## Comandos Personalizados\nComandos slash personalizados se integram com aplicações externas. Por exemplo, uma equipe pode configurar um comando slash personalizado para verificar os registros de saúde internos com `/paciente joe smith` ou verificar o clima semanal em uma cidade com `/tempo toronto semana`. Verifique com o Administrador de Sistema ou abra a lista de preenchimento automático digitando `/` para verificar se a sua equipe configurou algum comando slash personalizado.",
- "help.commands.custom2": "Comandos slash personalizados estão desativados por padrão e podem ser ativados pelo Administrador do Sistema em **Console do Sistema** > **Integrações** > **Webhooks e Comandos**. Leia sobre como configurar comando slash personalizado em [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "Comandos slash executam operações no Mattermost digitando na caixa de entrada de texto. Digite `/` seguido por um comando e alguns argumentos para executar ações.\n\nComandos slash nativos vêm com todas as instalações Mattermost e comandos slash personalizado são configurados para interagir com aplicações externas. Saiba mais sobre a configuração de comandos slash personalizados em [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Executando Comandos\n___",
- "help.composing.deleting": "## Deletando uma mensagem\nDelete uma mensagem clicando no ícone **[...]** ao lado do texto da mensagem que você escreveu, em seguida, clique em **Deletar**. Administrador de Sistema e de Equipe podem excluir qualquer mensagem em seu sistema ou equipe.",
- "help.composing.editing": "## Edição de Mensagem\nEdite uma mensagem clicando no ícone **[...]** ao lado do texto de qualquer mensagem que você compôs, em seguida, clique em **Editar**. Após fazer modificações no texto da mensagem, pressione **ENTER** para salvá-las. Edições em mensagens não geram novas notificações de @menção, notificações da área de trabalho ou sons de notificação.",
- "help.composing.linking": "## Link para uma mensagem\nO recurso **Permalink** cria um link para qualquer mensagem. Compartilhar este link com outros usuários no canal lhes permite visualizar a mensagem lincada no Arquivos de Mensagem. Os usuários que não são membros do canal onde a mensagem foi postada não podem ver o permalink. Obter o permalink de qualquer mensagem clicando no ícone **[...]** ao lado do texto da mensagem > **Permalink** > **Copiar Link**.",
- "help.composing.posting": "## Postando uma Mensagem\nEscreva uma mensagem digitando na caixa de entrada de texto, em seguida, pressione ENTER para enviá-la. Use SHIFT+ENTER para criar uma nova linha sem enviar a mensagem. Para enviar mensagens pressionando CTRL+ENTER vá para **Menu Principal > Configurações de Conta > Enviar mensagens com CTRL+ENTER**.",
- "help.composing.posts": "#### Posts\nPosts podem ser consideradas as mensagens principais. Eles são as mensagens que, muitas vezes iniciam uma discussão com respostas. Posts são criados e enviados a partir da caixa de entrada de texto na parte inferior do painel central.",
- "help.composing.replies": "#### Respostas\nResponda a uma mensagem clicando no ícone de resposta ao lado de qualquer texto da mensagem. Esta ação abre a barra lateral direita, onde você pode ver as mensagens relacionadas, e então escrever e enviar sua resposta. As respostas são recuada ligeiramente no painel central para indicar que eles são mensagens filha de um post pai.\n\nAo compor uma resposta no lado direito, clique no ícone de expandir/fechar com duas setas na parte superior da barra lateral para tornar as coisas mais fáceis de ler.",
- "help.composing.title": "# Enviando Mensagens\n_____",
- "help.composing.types": "## Tipos de Mensagem\nResponda a postagem para manter a conversa organizada em tópicos.",
- "help.formatting.checklist": "Faça uma lista de tarefas, incluindo colchetes:",
- "help.formatting.checklistExample": "- [ ] Item um\n- [ ] Item dois\n- [x] Item concluído",
- "help.formatting.code": "## Bloco de Código\n\nCriar um bloco de código pelo recuo cada linha por quatro espaços, ou colocando ``` na linha acima e abaixo de seu código.",
- "help.formatting.codeBlock": "Bloco de código",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojis\n\nAbra o preenchimento automático de emoji digitando `:`. A lista completa de emojis pode ser encontrada [aqui](http://www.emoji-cheat-sheet.com/). Também é possível criar seu próprio [Emoji Personalizado](http://docs.mattermost.com/help/settings/custom-emoji.html) se o emoji que pretende utilizar não existir.",
- "help.formatting.example": "Exemplo:",
- "help.formatting.githubTheme": "**Tema GitHub**",
- "help.formatting.headings": "## Títulos\n\nFaça um título digitando # e um espaço antes de seu título. Para subtítulos usar mais #.",
- "help.formatting.headings2": "Alternativamente, você pode sublinhar o texto usando `===` ou `---` para criar títulos.",
- "help.formatting.headings2Example": "Cabeçalho Largo\n-------------",
- "help.formatting.headingsExample": "## Cabeçalho Largo\n### Cabeçalho Menor\n#### Cabeçalho Ainda Menor",
- "help.formatting.images": "## Imagens na Linha\n\nCrie imagens na linha usando `!` seguido do texto para imagem entre colchetes e o link entre parenteses. Adicione texto suspenso, colocando-o entre aspas após o link.",
- "help.formatting.imagesExample": "\n\ne\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Código na Linha\n\nCrie fonte monoespaçada na linha cercando o com acentos graves.",
- "help.formatting.intro": "Markdown torna fácil formatar mensagens. Digite uma mensagem como faria normalmente, e use essas regras para deixa-lá com formatação especial.",
- "help.formatting.lines": "## Linhas\n\nCrie uma linha usando três `*`, `_`, ou `-`.",
- "help.formatting.linkEx": "[Confira Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Links\n\nCrie texto para links colocando o texto desejado entre colchetes e o link associado entre parênteses.",
- "help.formatting.listExample": "* lista item um\n* lista item dois\n * item dois sub-item",
- "help.formatting.lists": "## Listas\n\nCrie uma lista usando `*` ou `-` como marcadores. Recue um marcador adicionando dois espaços em frente.",
- "help.formatting.monokaiTheme": "**Tema Monokai**",
- "help.formatting.ordered": "Faça uma lista ordenada usando números:",
- "help.formatting.orderedExample": "1. Item um\n2. Item dois",
- "help.formatting.quotes": "## Citar Bloco\n\nCrie um bloco citado usando `>`.",
- "help.formatting.quotesExample": "`> citar bloco` formata como:",
- "help.formatting.quotesRender": "> citar bloco",
- "help.formatting.renders": "Formata como:",
- "help.formatting.solirizedDarkTheme": "**Tema Solarized Dark**",
- "help.formatting.solirizedLightTheme": "**Tema Solarized Light**",
- "help.formatting.style": "## Estilo do Texto\n\nVocê pode usar `_` ou `*` em volta de uma palavra para deixar itálico. Use dois para deixar negrito.\n\n* `_itálico_` formata _itálico_\n* `**negrito**` formata **negrito**\n* `**_negrito-itálico_**` formata **_negrito-itálico_**\n* `~~tachado~~` formata ~~tachado~~",
- "help.formatting.supportedSyntax": "As linguagens suportadas são:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Destaque de Sintaxe\n\nPara adicionar destaque de sintaxe, digite o idioma a ser destacado após ``` no início do bloco de código. Mattermost também oferece quatro diferentes temas de código (GitHub, Solarized Dark, Solarized Light, Monokai) que podem ser alterados em **Configurações de Conta** > **Exibir** > **Tema** > **Tema Personalizado** > **Estilos Canal Central**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| Alinhado a Esquerda | Centralizado | Alinhado a Direita |\n| :------------ |:---------------:| -----:|\n| Coluna Esquerda 1 | este texto | $100 |\n| Coluna Esquerda 2 | é | $10 |\n| Coluna Esquerda 3 | centralizado | $1 |",
- "help.formatting.tables": "## Tabelas\n\nCrie uma tabela, colocando uma linha tracejada abaixo da linha de cabeçalho e separando as colunas com o carácter `|`. (As colunas não precisam se alinhar exatamente para que ele funcione). Escolha como alinhar colunas da tabela incluindo dois-pontos `:` dentro da linha de cabeçalho.",
- "help.formatting.title": "# Formatando Texto\n_____",
- "help.learnMore": "Leai mais sobre:",
- "help.link.attaching": "Anexando Arquivos",
- "help.link.commands": "Executando Comandos",
- "help.link.composing": "Compondo Mensagens e Respostas",
- "help.link.formatting": "Formatando Mensagens usando Markdown",
- "help.link.mentioning": "Mencionando Colegas de Equipe",
- "help.link.messaging": "Mensagens Básicas",
- "help.mentioning.channel": "#### @Canal\nVocê pode mencionar um canal todo digitando `@channel`. Todos os membros do canal irão receber uma menção de notificação da mesma forma que se os membros tivessem sido mencionados pessoalmente.",
- "help.mentioning.channelExample": "@channel grande trabalho nas entrevistas está semana. Eu acho que nós encontramos alguns excelentes potenciais candidatos!",
- "help.mentioning.mentions": "## @Menções\nUse @menção para chamar atenção de um membro específico da equipe.",
- "help.mentioning.recent": "## Menções Recentes\nClique `@` ao lado da caixa de pesquisa para consultar suas @menções recentes e palavras que disparam menções. Clique **Pular** ao lado do resultado da busca na barra lateral direita para ir ao painel central do canal no local da mensagem com a menção.",
- "help.mentioning.title": "# Mencionando Colegas de Equipe\n_____",
- "help.mentioning.triggers": "## Palavras Que Disparam Menções\nAlém de ser notificado por @usuário e @canal, você pode personalizar as palavras que desencadeiam notificações de menção em **Configurações de Conta** > **Notificações** > **Palavras que desencadeiam menções**. Por padrão, você receberá notificações de menções com seu primeiro nome, e você pode adicionar mais palavras, escrevendo-as na caixa de entrada separados por vírgulas. Isso é útil se você quiser ser notificado de todas as mensagens sobre determinados temas, por exemplo, \"entrevista\" ou \"marketing\".",
- "help.mentioning.username": "#### @Usuário\nVocê pode mencionar um colega de equipe usando o símbolo `@` mais seu nome de usuário para enviar uma notificação menção.\n\nDigite `@` para abrir uma lista de membros da equipe que podem ser mencionados. Para filtrar a lista, digite as primeiras letras de qualquer nome de usuário, nome, sobrenome ou apelido. As teclas de seta **Cima** e **Baixo** podem então ser usada para percorrer as entradas na lista, e pressione **ENTER** para selecionar qual o usuário a mencionar. Uma vez selecionado, o nome de usuário irá substituir automaticamente o nome completo ou apelido.\nO exemplo a seguir envia uma notificação menção especial a **alice** que a alerta do canal e mensagem onde ela foi mencionada. Se **alice** está ausente do Mattermost e tem ativo [notificações de e-mail](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications), então ela vai receber um alerta de e-mail de sua menção juntamente com o texto da mensagem.",
- "help.mentioning.usernameCont": "Se o usuário que você mencionou não pertence ao canal, uma mensagem do sistema será enviada para informá-lo. Esta é uma mensagem temporária visto apenas pela pessoa que desencadeou. Para adicionar o usuário mencionado para o canal, vá para o menu suspenso ao lado do nome do canal e selecione **Adicionar Membros**.",
- "help.mentioning.usernameExample": "@alice como foi sua entrevista como é o novo candidato?",
- "help.messaging.attach": "**Anexar arquivos** arrastando e soltando no Mattermost ou clicando no ícone anexo na caixa de entrada. ",
- "help.messaging.emoji": "**Rapidamente adicione emoji** digitando \":\", que irá abrir uma lista de emoji. Se os emojis existentes não cobrem o que você quer expressar, você pode também criar seu próprio [Emoji Personalizado](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Formate suas mensagens** usando Markdown que suporta o estilo do texto, títulos, links, emojis, blocos de código, citar bloco, tabelas, listas e imagens na linha.",
- "help.messaging.notify": "**Notificar colegas de equipe** quando eles são necessários digitando `@usuário`.",
- "help.messaging.reply": "**Responder a mensagens** clicando na seta de resposta ao lado do texto da mensagem.",
- "help.messaging.title": "# Mensagens Básico\n_____",
- "help.messaging.write": "**Escreva mensagens** usando a caixa de texto na parte inferior do Mattermost. Pressione ENTER para enviar a mensagem. Use SHIFT+ENTER para criar uma nova linha sem enviar a mensagem.",
- "installed_command.header": "Comandos Slash",
- "installed_commands.add": "Adicionar Comando Slash",
- "installed_commands.delete.confirm": "Esta ação irá apagar permanentemente o comando slash e irá quebrar qualquer integração que a use. Você está certo que deseja apagar?",
- "installed_commands.empty": "Nenhum comando encotrado",
- "installed_commands.header": "Comandos Slash",
- "installed_commands.help": "Use comandos barra para conectar a ferramentas externas ao Mattermost. {buildYourOwn} ou visite o {appDirectory} para encontrar aplicativos nativos, de terceiros e integrações.",
- "installed_commands.help.appDirectory": "Diretório de Aplicativos",
- "installed_commands.help.buildYourOwn": "Construa o seu próprio",
- "installed_commands.search": "Pesquisar Comandos Slash",
- "installed_commands.unnamed_command": "Comando Slash sem Nome",
- "installed_incoming_webhooks.add": "Adicionar Webhooks Entrada",
- "installed_incoming_webhooks.delete.confirm": "Esta ação irá apagar permanentemente o webhook de entrada e irá quebrar qualquer integração que a use. Você está certo que deseja apagar?",
- "installed_incoming_webhooks.empty": "Nenhum webhook de entrada encontrado",
- "installed_incoming_webhooks.header": "Webhooks Entrada",
- "installed_incoming_webhooks.help": "Use webhooks recebidos para conectar a ferramentas externas ao Mattermost. {buildYourOwn} ou visite o {appDirectory} para encontrar aplicativos nativos, de terceiros e integrações.",
- "installed_incoming_webhooks.help.appDirectory": "Diretório de Aplicativos",
- "installed_incoming_webhooks.help.buildYourOwn": "Construa o seu próprio",
- "installed_incoming_webhooks.search": "Pesquisar Webhooks de Entrada",
- "installed_incoming_webhooks.unknown_channel": "Webhook Privado",
- "installed_integrations.callback_urls": "Callback URLs: {urls}",
- "installed_integrations.client_id": "ID do Client: {clientId}",
- "installed_integrations.client_secret": "Chave Secreta do Cliente: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Criado por {creator} em {createAt, date, full}",
- "installed_integrations.delete": "Deletar",
- "installed_integrations.edit": "Editar",
- "installed_integrations.hideSecret": "Ocultar Chave Secreta",
- "installed_integrations.regenSecret": "Gerar Novamente Chave Secreta",
- "installed_integrations.regenToken": "Re-gerar Token",
- "installed_integrations.showSecret": "Mostrar Chave Secreta",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Gatilho Quando: {triggerWhen}",
- "installed_integrations.triggerWords": "Palavras Gatilho: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Aplicativo OAuth 2.0 sem nome",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "Adicionar Aplicativo OAuth 2.0",
- "installed_oauth_apps.callbackUrls": "URLs Callback (Uma Por Linha)",
- "installed_oauth_apps.cancel": "Cancelar",
- "installed_oauth_apps.delete.confirm": "Esta ação irá apagar permanentemente o OAuth 2.0 e irá quebrar qualquer integração que a use. Você está certo que deseja apagar?",
- "installed_oauth_apps.description": "Descrição",
- "installed_oauth_apps.empty": "Nenhum Aplicativo OAuth 2.0 encontrado",
- "installed_oauth_apps.header": "Aplicativos OAuth 2.0",
- "installed_oauth_apps.help": "Crie {oauthApplications} para integrar de forma segura bots e aplicativos de terceiros com o Mattermost. Visite o {appDirectory} para encontrar aplicativos nativos.",
- "installed_oauth_apps.help.appDirectory": "Diretório de Aplicativos",
- "installed_oauth_apps.help.oauthApplications": "Aplicativos OAuth 2.0",
- "installed_oauth_apps.homepage": "Página inicial",
- "installed_oauth_apps.iconUrl": "URL do Ícone",
- "installed_oauth_apps.is_trusted": "É Confiável: {isTrusted}",
- "installed_oauth_apps.name": "Nome de Exibição",
- "installed_oauth_apps.save": "Salvar",
- "installed_oauth_apps.search": "Pesquisar Aplicativos OAuth 2.0",
- "installed_oauth_apps.trusted": "É Confiável",
- "installed_oauth_apps.trusted.no": "Não",
- "installed_oauth_apps.trusted.yes": "Sim",
- "installed_outgoing_webhooks.add": "Adicionar Webhooks Saída",
- "installed_outgoing_webhooks.delete.confirm": "Esta ação irá apagar permanentemente o webhook de saída e irá quebrar qualquer integração que a use. Você está certo que deseja apagar?",
- "installed_outgoing_webhooks.empty": "Nenhum webhook de saída encontrado",
- "installed_outgoing_webhooks.header": "Webhooks Saída",
- "installed_outgoing_webhooks.help": "Use webhooks de saída para conectar ferramentas externas ao Mattermost. {buildYourOwn} ou visite o {appDirectory} para encontrar aplicativos nativos, de terceiros e integrações.",
- "installed_outgoing_webhooks.help.appDirectory": "Diretório de Aplicativos",
- "installed_outgoing_webhooks.help.buildYourOwn": "Construa o seu próprio",
- "installed_outgoing_webhooks.search": "Pesquisar Webhooks de Saída",
- "installed_outgoing_webhooks.unknown_channel": "Webhook Privado",
- "integrations.add": "Adicionar",
- "integrations.command.description": "Comandos slash envia evento para integrações externas",
- "integrations.command.title": "Comando Slash",
- "integrations.delete.confirm.button": "Deletar",
- "integrations.delete.confirm.title": "Deletar Integração",
- "integrations.done": "Feito",
- "integrations.edit": "Editar",
- "integrations.header": "Integrações",
- "integrations.help": "Visite o {appDirectory} para encontrar aplicativos nativos, de terceiros e integrações para o Mattermost.",
- "integrations.help.appDirectory": "Diretório de Aplicativos",
- "integrations.incomingWebhook.description": "Webhooks de entrada permite que integrações externas envie mensagens",
- "integrations.incomingWebhook.title": "Webhooks Entrada",
- "integrations.oauthApps.description": "OAuth 2.0 permite que aplicativos externos façam solicitações autorizada para a API Mattermost.",
- "integrations.oauthApps.title": "Aplicativos OAuth 2.0",
- "integrations.outgoingWebhook.description": "Webhooks de saída permite que integrações externas recebam e respondam a mensagens",
- "integrations.outgoingWebhook.title": "Webhooks Saída",
- "integrations.successful": "Configurado com Sucesso",
- "intro_messages.DM": "Este é o início do seu histórico de mensagens diretas com {teammate}. Mensagens diretas e arquivos compartilhados aqui não são mostrados para pessoas de fora desta área.",
- "intro_messages.GM": "Este é o início do seu histórico de mensagens em grupo com {names}. Mensagens e arquivos compartilhados aqui não são mostrados para pessoas de fora desta área.",
- "intro_messages.anyMember": " Qualquer membro pode participar e ler este canal.",
- "intro_messages.beginning": "Início do {name}",
- "intro_messages.channel": "canal",
- "intro_messages.creator": "Este é o início do {name} {type}, criado por {creator} em {date}.",
- "intro_messages.default": "
Início de {display_name}
Bem vindo a {display_name}!
Poste mensagens aqui que você quer que todos vejam. Todos se tornam automaticamente membros permanentes deste canal quando se juntam à equipe.
",
- "intro_messages.group": "canal privado",
- "intro_messages.group_message": "Este é o início de seu histórico de mensagens em grupo com esta equipe. Mensagens e arquivos compartilhados aqui não são mostrados para pessoas fora dessa área.",
- "intro_messages.invite": "Convidar outras pessoas para este {type}",
- "intro_messages.inviteOthers": "Convide outros para esta equipe",
- "intro_messages.noCreator": "Este é o início do {name} {type}, criado em {date}.",
- "intro_messages.offTopic": "
Início do {display_name}
Este é o início do {display_name}, um canal para conversas não relacionadas ao trabalho
",
- "intro_messages.onlyInvited": " Somente membros convidados podem ver este canal privado.",
- "intro_messages.purpose": " O propósito deste {type} é: {purpose}.",
- "intro_messages.setHeader": "Definir um Cabeçalho",
- "intro_messages.teammate": "Este é o início de seu histórico de mensagens com esta equipe. Mensagens diretas e arquivos compartilhados aqui não são mostrados para pessoas fora dessa área.",
- "invite_member.addAnother": "Adicionar outro",
- "invite_member.autoJoin": "Pessoas convidadas a participar automaticamente do canal {channel}.",
- "invite_member.cancel": "Cancelar",
- "invite_member.content": "E-mail está desativado para a sua equipe, e emails de convites não podem ser enviados. Contate o seu Administrador do Sistema para ativar e-mail e convites por e-mail.",
- "invite_member.disabled": "Criação de usuários está desabilitada para sua equipe. Por favor peça ao Administrador de Equipe por detalhes.",
- "invite_member.emailError": "Por favor entre um endereço de e-mail válido",
- "invite_member.firstname": "Primeiro nome",
- "invite_member.inviteLink": "Link para Convite de Equipe",
- "invite_member.lastname": "Último nome",
- "invite_member.modalButton": "Sim, Descartar",
- "invite_member.modalMessage": "Você tem convites não enviados, você tem certeza que quer descartar eles?",
- "invite_member.modalTitle": "Descartar Convites?",
- "invite_member.newMember": "Enviar Email de Convite",
- "invite_member.send": "Enviar Convite",
- "invite_member.send2": "Enviar Convites",
- "invite_member.sending": " Enviando",
- "invite_member.teamInviteLink": "Você também pode convidar pessoas usando o {link}.",
- "ldap_signup.find": "Encontrar minhas equipes",
- "ldap_signup.ldap": "Criar uma equipe com uma Conta AD/LDAP",
- "ldap_signup.length_error": "O nome deve ser de 3 ou mais caracteres até um máximo de 15",
- "ldap_signup.teamName": "Entre o nome da nova equipe",
- "ldap_signup.team_error": "Por favor entre o nome da equipe",
- "leave_private_channel_modal.leave": "Sim, deixar o canal",
- "leave_private_channel_modal.message": "Você tem certeza que deseja deixar o canal privado {channel}? Você precisar ser convidado novamente para se juntar a este canal no futuro.",
- "leave_private_channel_modal.title": "Deixar Canal Privado {channel}",
- "leave_team_modal.desc": "Você será removido de todos os canais públicos e privados. Se a equipe é privada você não será capaz de se juntar à equipe. Você tem certeza?",
- "leave_team_modal.no": "Não",
- "leave_team_modal.title": "Deixar a equipe?",
- "leave_team_modal.yes": "Sim",
- "loading_screen.loading": "Carregando",
- "login.changed": " Método de login alterada com sucesso",
- "login.create": "Crie um agora",
- "login.createTeam": "Criar uma nova equipe",
- "login.createTeamAdminOnly": "Está opção está disponível somente para o Administrador do Sistema, e não é exibida para outros usuários.",
- "login.email": "E-mail",
- "login.find": "Encontre suas outras equipes",
- "login.forgot": "Eu esqueci a minha senha",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Sua senha está incorreta.",
- "login.ldapUsername": "Usuário AD/LDAP",
- "login.ldapUsernameLower": "Usuário AD/LDAP",
- "login.noAccount": "Não tem uma conta? ",
- "login.noEmail": "Por favor digite seu email",
- "login.noEmailLdapUsername": "Por favor digite seu email ou {ldapUsername}",
- "login.noEmailUsername": "Por favor digite seu email ou usuário",
- "login.noEmailUsernameLdapUsername": "Por favor digite seu email, usuário ou {ldapUsername}",
- "login.noLdapUsername": "Por favor digite seu {ldapUsername}",
- "login.noMethods": "Nenhum método de login configurado. Por favor contate seu Administrador do Sistema.",
- "login.noPassword": "Por favor digite a sua senha",
- "login.noUsername": "Por favor digite seu usuário",
- "login.noUsernameLdapUsername": "Por favor digite seu usuário ou {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "no {siteName}",
- "login.or": "ou",
- "login.password": "Senha",
- "login.passwordChanged": " Senha atualizada com sucesso",
- "login.placeholderOr": " ou ",
- "login.session_expired": " Sua sessão expirou. Por favor faça login novamente.",
- "login.signIn": "Login",
- "login.signInLoading": "Iniciando a sessão...",
- "login.signInWith": "Login com:",
- "login.userNotFound": "Não foi possível encontrar uma conta que corresponda com as suas credenciais de login.",
- "login.username": "Usuário",
- "login.verified": " Email Verificado",
- "login_mfa.enterToken": "Para completar o login em processo, por favor entre um token do seu autenticador no smartphone",
- "login_mfa.submit": "Enviar",
- "login_mfa.token": "Token MFA",
- "login_mfa.tokenReq": "Por favor entre um token MFA",
- "member_item.makeAdmin": "Tornar Admin",
- "member_item.member": "Membro",
- "member_list.noUsersAdd": "Nenhum usuário para adicionar.",
- "members_popover.manageMembers": "Gerenciar Membros",
- "members_popover.msg": "Mensagem",
- "members_popover.title": "Membros do Canal",
- "members_popover.viewMembers": "Ver Membros",
- "mfa.confirm.complete": "Configuração completa!",
- "mfa.confirm.okay": "Ok",
- "mfa.confirm.secure": "Sua conta agora está segura. Na próxima vez que você fizer login, será pedido a você um código do aplicativo Google Authenticator",
- "mfa.setup.badCode": "Código inválido. Se este problema persistir, contate o Administrador do Sistema.",
- "mfa.setup.code": "Código MFA",
- "mfa.setup.codeError": "Por favor digite o código do Google Authenticator.",
- "mfa.setup.required": "Autenticação multi-fator é obrigatória em {siteName}.",
- "mfa.setup.save": "Salvar",
- "mfa.setup.secret": "Chave Secreta: {secret}",
- "mfa.setup.step1": "Passo 1: No seu smartphone, faça download do Google Authenticator no iTunes ou Google Play",
- "mfa.setup.step2": "Passo 2: Use o Google Authenticator para escanear este QR code, ou manualmente digite a chave",
- "mfa.setup.step3": "Passo 3: Digite o código gerado pelo Google Authenticator",
- "mfa.setupTitle": "Configuração Autenticação Multi-fator",
- "mobile.about.appVersion": "Versão do App: {version} (Build {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. Todos os direitos reservados",
- "mobile.about.database": "Banco de Dados: {type}",
- "mobile.about.serverVersion": "Versão do Servidor: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Versão do Servidor: {version}",
- "mobile.account.notifications.email.footer": "Quando desconectado ou ausente por mais de cinco minutos",
- "mobile.account_notifications.mentions_footer": "Seu usuário (\"@{username}\") sempre irá disparar menções.",
- "mobile.account_notifications.non-case_sensitive_words": "Outras palavras não sensíveis a maiúsculas e minúsculas...",
- "mobile.account_notifications.reply.header": "Enviar notificações de resposta para",
- "mobile.account_notifications.threads_mentions": "Menções em tópicos",
- "mobile.account_notifications.threads_start": "Tópicos que eu iniciei",
- "mobile.account_notifications.threads_start_participate": "Tópicos que eu iniciei ou participo",
- "mobile.advanced_settings.reset_button": "Restaurar",
- "mobile.advanced_settings.reset_message": "\nIsto irá apagar todos os dados offline e reiniciar o aplicativo. Você será automaticamente conectado novamente quando o aplicativo for reiniciado.\n",
- "mobile.advanced_settings.reset_title": "Limpar Cache",
- "mobile.advanced_settings.title": "Configurações Avançadas",
- "mobile.channel_drawer.search": "Ir para uma conversa",
- "mobile.channel_info.alertMessageDeleteChannel": "Você tem certeza que quer excluir o {term} {name}?",
- "mobile.channel_info.alertMessageLeaveChannel": "Você tem certeza que quer deixar o {term} {name}?",
- "mobile.channel_info.alertNo": "Não",
- "mobile.channel_info.alertTitleDeleteChannel": "Deletar {term}",
- "mobile.channel_info.alertTitleLeaveChannel": "Sair {term}",
- "mobile.channel_info.alertYes": "Sim",
- "mobile.channel_info.delete_failed": "Não foi possível apagar o canal {displayName}. Por favor verifique a sua conexão e tente novamente.",
- "mobile.channel_info.privateChannel": "Canal Privado",
- "mobile.channel_info.publicChannel": "Canal Público",
- "mobile.channel_list.alertMessageLeaveChannel": "Você tem certeza que quer deixar o {term} {name}?",
- "mobile.channel_list.alertNo": "Não",
- "mobile.channel_list.alertTitleLeaveChannel": "Sair {term}",
- "mobile.channel_list.alertYes": "Sim",
- "mobile.channel_list.closeDM": "Fechar Mensagem Direta",
- "mobile.channel_list.closeGM": "Fechar Mensagem em Grupo",
- "mobile.channel_list.dm": "Mensagem Direta",
- "mobile.channel_list.gm": "Mensagem em Grupo",
- "mobile.channel_list.not_member": "NÃO É UM MEMBRO",
- "mobile.channel_list.open": "Abrir {term}",
- "mobile.channel_list.openDM": "Abrir Mensagem Direta",
- "mobile.channel_list.openGM": "Abrir Mensagem em Grupo",
- "mobile.channel_list.privateChannel": "Canal Privado",
- "mobile.channel_list.publicChannel": "Canal Público",
- "mobile.channel_list.unreads": "NÃO LIDOS",
- "mobile.components.channels_list_view.yourChannels": "Seus canais:",
- "mobile.components.error_list.dismiss_all": "Descartar todos",
- "mobile.components.select_server_view.continue": "Continuar",
- "mobile.components.select_server_view.enterServerUrl": "Informe a URL do servidor",
- "mobile.components.select_server_view.proceed": "Prosseguir",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Criar",
- "mobile.create_channel.private": "Novo Canal Privado",
- "mobile.create_channel.public": "Novo Canal Público",
- "mobile.custom_list.no_results": "Nenhum Resultado",
- "mobile.drawer.teamsTitle": "Equipes",
- "mobile.edit_post.title": "Editando a Mensagem",
- "mobile.emoji_picker.activity": "ATIVIDADE",
- "mobile.emoji_picker.custom": "PERSONALIZADO",
- "mobile.emoji_picker.flags": "BANDEIRAS",
- "mobile.emoji_picker.foods": "COMIDAS",
- "mobile.emoji_picker.nature": "NATUREZA",
- "mobile.emoji_picker.objects": "OBJETOS",
- "mobile.emoji_picker.people": "PESSOAS",
- "mobile.emoji_picker.places": "LUGARES",
- "mobile.emoji_picker.symbols": "SIMBOLOS",
- "mobile.error_handler.button": "Relançar",
- "mobile.error_handler.description": "\nClique relançar para abrir a app novamente. Após o reinício, você pode relatar o problema no menu the configuração.\n",
- "mobile.error_handler.title": "Ocorreu um erro inesperado",
- "mobile.file_upload.camera": "Tirar Foto ou Vídeo",
- "mobile.file_upload.library": "Biblioteca de Fotos",
- "mobile.file_upload.more": "Mais",
- "mobile.file_upload.video": "Galeria de Videos",
- "mobile.help.title": "Ajuda",
- "mobile.image_preview.save": "Salvar imagem",
- "mobile.intro_messages.DM": "Este é o início do seu histórico de mensagens diretas com {teammate}. Mensagens diretas e arquivos compartilhados aqui não são mostrados para pessoas de fora desta área.",
- "mobile.intro_messages.default_message": "Este é o primeiro canal da equipe veja quando eles se registrarem - use para postar atualizações que todos devem saber.",
- "mobile.intro_messages.default_welcome": "Bem-vindo ao {name}!",
- "mobile.join_channel.error": "Não foi possível entrar no canal {displayName}. Por favor verifique a sua conexão e tente novamente.",
- "mobile.loading_channels": "Carregando Canais...",
- "mobile.loading_members": "Carregando Membros...",
- "mobile.loading_posts": "Carregando Mensagens...",
- "mobile.login_options.choose_title": "Escolha seu método de login",
- "mobile.managed.blocked_by": "Bloqueado por {vendor}",
- "mobile.managed.exit": "Editar",
- "mobile.managed.jailbreak": "Os dispositivos com Jailbroken não são confiáveis para {vendor}, por favor saia do aplicativo.",
- "mobile.managed.secured_by": "Garantido por {vendor} ",
- "mobile.markdown.code.plusMoreLines": "mais +{count, number} linhas",
- "mobile.more_dms.start": "Início",
- "mobile.more_dms.title": "Nova Conversa",
- "mobile.notice_mobile_link": "aplicativos móveis",
- "mobile.notice_platform_link": "plataforma",
- "mobile.notice_text": "Mattermost é possível graças ao software open source na nossa {platform} e {mobile}.",
- "mobile.notification.in": " em ",
- "mobile.offlineIndicator.connected": "Conectado",
- "mobile.offlineIndicator.connecting": "Conectando...",
- "mobile.offlineIndicator.offline": "Sem conexão com a internet",
- "mobile.open_dm.error": "Não foi possível entrar nas mensagens diretas com {displayName}. Por favor verifique a sua conexão e tente novamente.",
- "mobile.open_gm.error": "Não foi possível abrir uma mensagem em grupo com esses usuários. Por favor verifique sua conexão e tente novamente.",
- "mobile.post.cancel": "Cancelar",
- "mobile.post.delete_question": "Tem certeza de que deseja excluir este post?",
- "mobile.post.delete_title": "Deletar Post",
- "mobile.post.failed_delete": "Excluir mensagem",
- "mobile.post.failed_retry": "Tentar novamente",
- "mobile.post.failed_title": "Não foi possível enviar sua mensagem",
- "mobile.post.retry": "Atualizar",
- "mobile.post_info.add_reaction": "Adicionar Reação",
- "mobile.request.invalid_response": "Recebido uma resposta inválida do servidor.",
- "mobile.routes.channelInfo": "Informações",
- "mobile.routes.channelInfo.createdBy": "Criado por {creator} em ",
- "mobile.routes.channelInfo.delete_channel": "Deletar Canal",
- "mobile.routes.channelInfo.favorite": "Favorito",
- "mobile.routes.channel_members.action": "Remover Membros",
- "mobile.routes.channel_members.action_message": "Você deve selecionar pelo menos um membro para remover do canal.",
- "mobile.routes.channel_members.action_message_confirm": "Você tem certeza que quer remover o membro selecionado do canal?",
- "mobile.routes.channels": "Canais",
- "mobile.routes.code": "{language} Código",
- "mobile.routes.code.noLanguage": "Código",
- "mobile.routes.enterServerUrl": "Informe a URL do Servidor",
- "mobile.routes.login": "Login",
- "mobile.routes.loginOptions": "Selecionador de Login",
- "mobile.routes.mfa": "Autenticação Multi-Fator",
- "mobile.routes.postsList": "Lista de Posts",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "Selecione Equipe",
- "mobile.routes.settings": "Configurações",
- "mobile.routes.sso": "Single Sign-On",
- "mobile.routes.thread": "Tópico {channelName}",
- "mobile.routes.thread_dm": "Tópico Mensagem Direta",
- "mobile.routes.user_profile": "Perfil",
- "mobile.routes.user_profile.send_message": "Enviar Mensagem",
- "mobile.search.jump": "PULAR",
- "mobile.search.no_results": "Nenhum Resultado Encontrado",
- "mobile.select_team.choose": "Suas equipes: ",
- "mobile.select_team.join_open": "Equipes abertas que você pode se juntar",
- "mobile.select_team.no_teams": "Não existem equipes disponíveis para você entrar.",
- "mobile.server_ping_failed": "Não é possível conectar ao servidor. Por favor verifique a URL do seu servidor e a conexão de internet.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nUm upgrade no servidor é necessário para usar o Mattermost app. Por favor fale com o seu Administrador de sistema para mais detalhes.\n",
- "mobile.server_upgrade.title": "Atualização do servidor necessária",
- "mobile.server_url.invalid_format": "URL deve começar com http:// ou https://",
- "mobile.session_expired": "Sessão Expirada: Por favor faça o login para continuar recebendo as notificações.",
- "mobile.settings.clear": "Apagar Armazenamento Offline",
- "mobile.settings.clear_button": "Limpar",
- "mobile.settings.clear_message": "\nIsto irá apagar todos os dados offline e reiniciar o aplicativo. Você será automaticamente conectado novamente quando o aplicativo for reiniciado.\n",
- "mobile.settings.team_selection": "Seleção da Equipe",
- "mobile.suggestion.members": "Membros",
- "modal.manaul_status.ask": "Não me pergunte novamente",
- "modal.manaul_status.button": "Sim, defina meu status para \"Online\"",
- "modal.manaul_status.cancel": "Não, mantenha como \"{status}\"",
- "modal.manaul_status.message": "Você deseja alterar o seu status para \"Online\"?",
- "modal.manaul_status.title": "Seu status está configurado para \"{status}\"",
- "more_channels.close": "Fechar",
- "more_channels.create": "Criar Novo Canal",
- "more_channels.createClick": "Clique em 'Criar Novo Canal' para fazer um novo",
- "more_channels.join": "Participar",
- "more_channels.next": "Próximo",
- "more_channels.noMore": "Não há mais canais para participar",
- "more_channels.prev": "Anterior",
- "more_channels.title": "Mais Canais",
- "more_direct_channels.close": "Fechar",
- "more_direct_channels.message": "Mensagem",
- "more_direct_channels.new_convo_note": "Isto irá iniciar uma nova conversa. Se você adicionar muitas pessoas, considere em criar um canal privado.",
- "more_direct_channels.new_convo_note.full": "Você atingiu o número máximo de pessoas nesta conversa. Considere em criar um canal privado.",
- "more_direct_channels.title": "Mensagens Diretas",
- "msg_typing.areTyping": "{users} e {last} estão digitando...",
- "msg_typing.isTyping": "{user} está digitando...",
- "msg_typing.someone": "Alguém",
- "multiselect.add": "Adicionar",
- "multiselect.go": "Ir",
- "multiselect.list.notFound": "Nenhum item encontrado",
- "multiselect.numPeopleRemaining": "Utilize ↑↓ para navegar, ↵ para selecionar. Você pode adicionar mais {num, number}{num, plural, one {pessoa} other {pessoas}}. ",
- "multiselect.numRemaining": "Você pode adicionar mais {num, number}",
- "multiselect.placeholder": "Procura e adiciona membros",
- "navbar.addMembers": "Adicionar Membros",
- "navbar.click": "Clique aqui",
- "navbar.delete": "Deletar Canal...",
- "navbar.leave": "Deixar o Canal",
- "navbar.manageMembers": "Gerenciar Membros",
- "navbar.noHeader": "Sem cabeçalho de canal.{newline}{link} adicionar um.",
- "navbar.preferences": "Preferências de Notificação",
- "navbar.rename": "Renomear Canal...",
- "navbar.setHeader": "Definir Cabeçalho do Canal...",
- "navbar.setPurpose": "Definir Propósito do Canal...",
- "navbar.toggle1": "Alternar barra lateral",
- "navbar.toggle2": "Alternar barra lateral",
- "navbar.viewInfo": "Ver Informações",
- "navbar.viewPinnedPosts": "Visualizar Postagens Fixadas",
- "navbar_dropdown.about": "Sobre o Mattermost",
- "navbar_dropdown.accountSettings": "Definições de Conta",
- "navbar_dropdown.addMemberToTeam": "Adicionar Membros a Equipe",
- "navbar_dropdown.console": "Console do Sistema",
- "navbar_dropdown.create": "Criar uma Nova Equipe",
- "navbar_dropdown.emoji": "Emoji Personalizado",
- "navbar_dropdown.help": "Ajuda",
- "navbar_dropdown.integrations": "Integrações",
- "navbar_dropdown.inviteMember": "Enviar Email de Convite",
- "navbar_dropdown.join": "Junte-se a Outra Equipe",
- "navbar_dropdown.keyboardShortcuts": "Atalhos de teclado",
- "navbar_dropdown.leave": "Sair da Equipe",
- "navbar_dropdown.logout": "Logout",
- "navbar_dropdown.manageMembers": "Gerenciar Membros",
- "navbar_dropdown.nativeApps": "Download Aplicativos",
- "navbar_dropdown.report": "Relatar um Problema",
- "navbar_dropdown.switchTeam": "Alternar para {team}",
- "navbar_dropdown.switchTo": "Alternar para ",
- "navbar_dropdown.teamLink": "Obter Link de Convite de Equipe",
- "navbar_dropdown.teamSettings": "Configurações da Equipe",
- "navbar_dropdown.viewMembers": "Ver Membros",
- "notification.dm": "Mensagem Direta",
- "notify_all.confirm": "Confirmar",
- "notify_all.question": "Usando @all ou @channel você irá enviar notificações para {totalMembers} pessoas. Você está certo que deseja fazer isso?",
- "notify_all.title.confirm": "Confirmar o envio de notificações para o canal todo",
- "passwordRequirements": "Requerimentos de Senha:",
- "password_form.change": "Alterar minha senha",
- "password_form.click": "Clique aqui para logar.",
- "password_form.enter": "Entre a nova senha para o sua conta {siteName}.",
- "password_form.error": "Por favor, insira pelo menos {chars} caracteres.",
- "password_form.pwd": "Senha",
- "password_form.title": "Resetar Senha",
- "password_form.update": "Sua senha foi atualizada com sucesso.",
- "password_send.checkInbox": "Por favor verifique sua caixa de entrada.",
- "password_send.description": "Para resetar sua senha, entre o endereço de email que você usou para se inscrever",
- "password_send.email": "E-mail",
- "password_send.error": "Por favor entre um endereço de e-mail válido.",
- "password_send.link": "Se a conta existir, um e-mail de redefinição de senha será enviado para: {email}
",
- "password_send.reset": "Resetar minha senha",
- "password_send.title": "Resetar Senha",
- "pdf_preview.max_pages": "Download para ler mais páginas",
- "pending_post_actions.cancel": "Cancelar",
- "pending_post_actions.retry": "Tentar novamente",
- "permalink.error.access": "O permalink pertence a uma mensagem deletada ou a um canal o qual você não tem acesso.",
- "permalink.error.title": "Mensagem Não Localizada",
- "post_attachment.collapse": "Mostrar menos...",
- "post_attachment.more": "Mostrar mais...",
- "post_body.commentedOn": "Comentário da mensagem de {name}: ",
- "post_body.deleted": "(mensagem deletada)",
- "post_body.plusMore": " mais {count, number} {count, plural, one {outro arquivo} other {outros arquivos}}",
- "post_delete.notPosted": "Comentário não pode ser postado",
- "post_delete.okay": "Ok",
- "post_delete.someone": "Alguém deletou a mensagem no qual você tentou postar um comentário.",
- "post_focus_view.beginning": "Início do Canal de Arquivos",
- "post_info.del": "Deletar",
- "post_info.edit": "Editar",
- "post_info.message.visible": "(Visível somente para você)",
- "post_info.message.visible.compact": " (Visível somente para você)",
- "post_info.mobile.flag": "Marcar",
- "post_info.mobile.unflag": "Desmarcar",
- "post_info.permalink": "Permalink",
- "post_info.pin": "Fixar no canal",
- "post_info.pinned": "Fixado",
- "post_info.reply": "Responder",
- "post_info.system": "Sistema",
- "post_info.unpin": "Desafixar do canal",
- "post_message_view.edited": "(editado)",
- "posts_view.loadMore": "Carregar mais mensagens",
- "posts_view.loadingMore": "Carregando mais mensagens...",
- "posts_view.newMsg": "Novas Mensagens",
- "posts_view.newMsgBelow": "{count, plural, one {Nova mensagem} other {Novas mensagens}}",
- "quick_switch_modal.channels": "Canais",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Comece a digitar e então use TAB para alternar canais/equipes, ↑↓ para navegar, ↵ para selecionar e ESC para descartar.",
- "quick_switch_modal.help_mobile": "Digite para encontrar um canal.",
- "quick_switch_modal.help_no_team": "Digite para procurar um canal. Utilize ↑↓ para navegar, ↵ para selecionar, ESC para dispensar.",
- "quick_switch_modal.teams": "Equipes",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(clique para adicionar)",
- "reaction.clickToRemove": "(clique para remover)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {usuário} other {usuários}}",
- "reaction.reacted": "{users} {reactionVerb} com {emoji}",
- "reaction.reactionVerb.user": "reagiu",
- "reaction.reactionVerb.users": "reagiu",
- "reaction.reactionVerb.you": "reagiu",
- "reaction.reactionVerb.youAndUsers": "reagiu",
- "reaction.usersAndOthersReacted": "{users} e {otherUsers, number} {otherUsers, plural, one {outro usuário} other {outros usuários}}",
- "reaction.usersReacted": "{users} e {lastUser}",
- "reaction.you": "Você",
- "removed_channel.channelName": "o canal",
- "removed_channel.from": "Removido de ",
- "removed_channel.okay": "Ok",
- "removed_channel.remover": "{remover} removido você do {channel}",
- "removed_channel.someone": "Alguém",
- "rename_channel.cancel": "Cancelar",
- "rename_channel.defaultError": " - Não pode ser alterado para o canal padrão",
- "rename_channel.displayName": "Nome De Exibição",
- "rename_channel.displayNameHolder": "Insira o nome de exibição",
- "rename_channel.handleHolder": "caracteres minúsculos alfanuméricos",
- "rename_channel.lowercase": "Tem de ser caracteres minúsculos alfanuméricos",
- "rename_channel.maxLength": "Este campo precisa ter menos de {maxLength, number} caracteres",
- "rename_channel.minLength": "Nome do canal deve ter {minLength, number} caracteres ou mais",
- "rename_channel.required": "Este campo é obrigatório",
- "rename_channel.save": "Salvar",
- "rename_channel.title": "Renomear Canal",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Comentário",
- "rhs_comment.del": "Deletar",
- "rhs_comment.edit": "Editar",
- "rhs_comment.mobile.flag": "Marcar",
- "rhs_comment.mobile.unflag": "Desmarcar",
- "rhs_comment.permalink": "Permalink",
- "rhs_header.backToCallTooltip": "Voltar para Chamada",
- "rhs_header.backToFlaggedTooltip": "Voltar para Posts Marcados",
- "rhs_header.backToPinnedTooltip": "Voltar para os Posts Marcados",
- "rhs_header.backToResultsTooltip": "Voltar para os Resultados da Pesquisa",
- "rhs_header.closeSidebarTooltip": "Fechar a Barra Lateral",
- "rhs_header.closeTooltip": "Fechar a Barra Lateral",
- "rhs_header.details": "Detalhes da Mensagem",
- "rhs_header.expandSidebarTooltip": "Expandir a Barra Lateral",
- "rhs_header.expandTooltip": "Reduzir a Barra Lateral",
- "rhs_header.shrinkSidebarTooltip": "Reduzir a Barra Lateral",
- "rhs_root.del": "Deletar",
- "rhs_root.direct": "Mensagem Direta",
- "rhs_root.edit": "Editar",
- "rhs_root.mobile.flag": "Marcar",
- "rhs_root.mobile.unflag": "Desmarcar",
- "rhs_root.permalink": "Permalink",
- "rhs_root.pin": "Fixar no canal",
- "rhs_root.unpin": "Desafixar do canal",
- "search_bar.search": "Procurar",
- "search_bar.usage": "
Opções de Pesquisa
Utilize \"aspas\" para pesquisar frases
Use from: para encontrar mensagens de usuários específicos e in: para encontrar postagens em canais específicos
Se você está pesquisando uma parte da frase (ex. pesquisando \"rea\", procurando por \"reagir\" ou \"reação\"), acrescente um * ao seu termo de pesquisa
Devido ao grande volume de resultados, pesquisas com duas letras e palavras comuns como \"este\", \"um\" e \"é\" não aparecerão nos resultados de pesquisa
Use from: para encontrar mensagens de usuários específicos e in: para encontrar postagens em canais específicos
",
- "search_results.usageFlag1": "Você não marcou nenhuma mensagem ainda.",
- "search_results.usageFlag2": "Você pode marcar uma mensagem e comentários clicando no ",
- "search_results.usageFlag3": " ícone próximo a data.",
- "search_results.usageFlag4": "As bandeiras são uma forma de marcar as mensagens para segui-la. Suas bandeiras são pessoais, e não podem ser vistas por outros usuários.",
- "search_results.usagePin1": "Não existem postagens fixadas.",
- "search_results.usagePin2": "Todos os membros deste canal podem fixar mensagens importantes e úteis.",
- "search_results.usagePin3": "Mensagens fixadas são visíveis a todos os membros do canal.",
- "search_results.usagePin4": "Para fixar uma mensagem: Vá para a mensagem que você quer fixar e clique [...] > \"Fixar no canal\".",
- "setting_item_max.cancel": "Cancelar",
- "setting_item_max.save": "Salvar",
- "setting_item_min.edit": "Editar",
- "setting_picture.cancel": "Cancelar",
- "setting_picture.help": "Enviar uma imagem para perfil no formato BMP, JPG, JPEG ou PNG, com pelo menos {width}px na largura e {height}px na altura.",
- "setting_picture.save": "Salvar",
- "setting_picture.select": "Selecionar",
- "setting_upload.import": "Importar",
- "setting_upload.noFile": "Nenhum arquivo selecionado.",
- "setting_upload.select": "Selecione o arquivo",
- "shortcuts.browser.channel_next": "Avançar no histórico:\tAlt|Direita",
- "shortcuts.browser.channel_next.mac": "Avançar no histórico:\t⌘|]",
- "shortcuts.browser.channel_prev": "Voltar no histórico:\tAlt|Esquerda",
- "shortcuts.browser.channel_prev.mac": "Voltar no histórico:\t⌘|[",
- "shortcuts.browser.font_decrease": "Menos zoom:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Menos zoom:\t⌘|-",
- "shortcuts.browser.font_increase": "Mais zoom:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Mais zoom:\t⌘|+",
- "shortcuts.browser.header": "Comandos Nativos do Navegador",
- "shortcuts.browser.highlight_next": "Selecionar texto na próxima linha:\tShift|Baixo",
- "shortcuts.browser.highlight_prev": "Selecionar texto na linha anterior:\tShift|Cima",
- "shortcuts.browser.input.header": "Funciona dentro do campo de entrada",
- "shortcuts.browser.newline": "Cria uma nova linha:\tShift|Enter",
- "shortcuts.files.header": "Arquivos",
- "shortcuts.files.upload": "Enviar arquivos:\tCtrl|U",
- "shortcuts.files.upload.mac": "Enviar arquivos:\t⌘|U",
- "shortcuts.header": "Atalhos do teclado",
- "shortcuts.info": "Comece uma mensagem com / para listar todos os comandos à sua disposição.",
- "shortcuts.msgs.comp.channel": "Canal:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Autocompletar",
- "shortcuts.msgs.comp.username": "Usuário:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Editar a última mensagem no canal:\tUp",
- "shortcuts.msgs.header": "Mensagem",
- "shortcuts.msgs.input.header": "Funciona dentro de um campo de entrada vazio",
- "shortcuts.msgs.mark_as_read": "Marcar o canal atual como lido:\tEsc",
- "shortcuts.msgs.reply": "Responder a última mensagem no canal:\tShift|Cima",
- "shortcuts.msgs.reprint_next": "Reimprimir próxima mensagem:\tCtrl|Baixo",
- "shortcuts.msgs.reprint_next.mac": "Reimprimir próxima mensagem:\t⌘|Baixo",
- "shortcuts.msgs.reprint_prev": "Reimprimir a mensagem anterior:\tCtrl|Cima",
- "shortcuts.msgs.reprint_prev.mac": "Reimprimir a mensagem anterior:\t⌘|Cima",
- "shortcuts.nav.direct_messages_menu": "Menu de mensagens diretas:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Menu de mensagens diretas:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navegação",
- "shortcuts.nav.next": "Próximo canal:\tAlt|Baixo",
- "shortcuts.nav.next.mac": "Próximo canal:\t⌥|Baixo",
- "shortcuts.nav.prev": "Canal anterior:\tAlt|Cima",
- "shortcuts.nav.prev.mac": "Canal anterior:\t⌥|Cima",
- "shortcuts.nav.recent_mentions": "Menções recentes:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Menções recentes:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Configurações de conta:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Configurações de conta:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Troca rápida de canal:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Troca rápida de canal:\t⌘|K",
- "shortcuts.nav.unread_next": "Próximo canal não lido:\tAlt|Shift|Baixo",
- "shortcuts.nav.unread_next.mac": "Próximo canal não lido:\t⌥|Shift|Baixo",
- "shortcuts.nav.unread_prev": "Canal anterior não lido:\tAlt|Shift|Cima",
- "shortcuts.nav.unread_prev.mac": "Canal anterior não lido:\t⌥|Shift|Cima",
- "sidebar.channels": "CANAIS PÚBLICOS",
- "sidebar.createChannel": "Criar um novo canal público",
- "sidebar.createGroup": "Criar um novo canal privado",
- "sidebar.direct": "MENSAGENS DIRETAS",
- "sidebar.favorite": "CANAIS FAVORITOS",
- "sidebar.leave": "Deixar o canal",
- "sidebar.mainMenu": "Menu Principal",
- "sidebar.more": "Mais",
- "sidebar.moreElips": "Mais...",
- "sidebar.otherMembers": "Fora desta equipe",
- "sidebar.pg": "CANAIS PRIVADOS",
- "sidebar.removeList": "Remover da lista",
- "sidebar.tutorialScreen1": "
Canais
Canais organizam conversas em diferentes tópicos. Eles estão abertos a todos em sua equipe. Para enviar comunicações privadas utilize Mensagens Diretas para uma única pessoa ou Canais Privados para várias pessoas.
",
- "sidebar.tutorialScreen2": "
Canais \"{townsquare}\" e \"{offtopic}\"
Aqui estão dois canais públicos para começar:
{townsquare} é um lugar comunicação de toda equipe. Todo mundo em sua equipe é um membro deste canal.
{offtopic} é um lugar para diversão e humor fora dos canais relacionados com o trabalho. Você e sua equipe podem decidir qual outros canais serão criados.
",
- "sidebar.tutorialScreen3": "
Criando e Participando de Canais
Clique em \"Mais...\" para criar um novo canal ou participar de um já existente.
Você também pode criar um novo canal ao clicar no símbolo \"+\" ao lado do cabeçalho canal público ou privado.
",
- "sidebar.unreads": "Mais não lidos",
- "sidebar_header.tutorial": "
Menu Principal
O Menu Principal é onde você pode Convidar Para Equipe, acessar sua Definição de Conta e ajustar o seu Tema de Cores.
Administradores de equipe podem também acessar suas Configurações de Equipe a partir deste menu.
Administradores de Sistema vão encontrar em Console do Sistema opções para administrar todo o sistema.
",
- "sidebar_right_menu.accountSettings": "Definições de Conta",
- "sidebar_right_menu.addMemberToTeam": "Adicionar Membros a Equipe",
- "sidebar_right_menu.console": "Console do Sistema",
- "sidebar_right_menu.flagged": "Posts Marcados",
- "sidebar_right_menu.help": "Ajuda",
- "sidebar_right_menu.inviteNew": "Enviar Email de Convite",
- "sidebar_right_menu.logout": "Logout",
- "sidebar_right_menu.manageMembers": "Gerenciar Membros",
- "sidebar_right_menu.nativeApps": "Download Aplicativos",
- "sidebar_right_menu.recentMentions": "Menções Recentes",
- "sidebar_right_menu.report": "Relatar um Problema",
- "sidebar_right_menu.teamLink": "Obter Link de Convite de Equipe",
- "sidebar_right_menu.teamSettings": "Configurações da Equipe",
- "sidebar_right_menu.viewMembers": "Ver Membros",
- "signup.email": "Email e Senha",
- "signup.gitlab": "GitLab Single-Sign-On",
- "signup.google": "Conta Google",
- "signup.ldap": "Credenciais AD/LDAP",
- "signup.office365": "Office 365",
- "signup.title": "Criar uma conta com:",
- "signup_team.createTeam": "Ou Criar uma Equipe",
- "signup_team.disabled": "A criação de equipe foi desativada. Por favor, entre em contato com um administrador para o acesso.",
- "signup_team.join_open": "Equipes que você pode se juntar: ",
- "signup_team.noTeams": "Não existe equipes incluídas no Diretório de Equipe e a criação de equipes foi desativada.",
- "signup_team.no_open_teams": "Nenhuma equipe disponível para se juntar. Por favor peça ao administrador por um convite.",
- "signup_team.no_open_teams_canCreate": "Nenhuma equipe disponível para se juntar. Por favor crie uma nova equipe ou peça ao administrador por um convite.",
- "signup_team.no_teams": "Nenhuma equipe foi criada. Por favor entre em contato com o administrador.",
- "signup_team.no_teams_canCreate": "Nenhuma equipe foi criada. Você pode criar uma clicando \"Criar uma nova equipe\".",
- "signup_team.none": "Nenhum método de criação da equipe foi habilitado. Por favor, entre em contato com um administrador para o acesso.",
- "signup_team_complete.completed": "Você já concluiu o processo de inscrição para este convite ou este convite expirou.",
- "signup_team_confirm.checkEmail": "Por favor, verifique seu e-mail: {email} Seu e-mail contém um link para configurar a sua equipe",
- "signup_team_confirm.title": "Inscrição Completa",
- "signup_team_system_console": "Ir para Console do Sistema",
- "signup_user_completed.choosePwd": "Escolha sua senha",
- "signup_user_completed.chooseUser": "Escolha o seu nome de usuário",
- "signup_user_completed.create": "Criar Conta",
- "signup_user_completed.emailHelp": "Email valido necessário para inscrição",
- "signup_user_completed.emailIs": "Seu endereço de e-mail é {email}. Você irá usar esse endereço para logar no {siteName}.",
- "signup_user_completed.expired": "Você já concluiu o processo de inscrição para este convite ou este convite expirou.",
- "signup_user_completed.gitlab": "com GitLab",
- "signup_user_completed.google": "com Google",
- "signup_user_completed.haveAccount": "Já tem uma conta?",
- "signup_user_completed.invalid_invite": "O link convite era inválido. Por favor fale com seu Administrador para receber um convite.",
- "signup_user_completed.lets": "Vamos criar a sua conta",
- "signup_user_completed.no_open_server": "Este servidor não permite inscrições abertas. Por favor fale com seu Administrador para receber um convite.",
- "signup_user_completed.none": "Nenhum método de criação de equipe foi habilitado. Por favor, entre em contato com um administrador para o acesso.",
- "signup_user_completed.office365": "com Office 365",
- "signup_user_completed.onSite": "no {siteName}",
- "signup_user_completed.or": "ou",
- "signup_user_completed.passwordLength": "Por favor entre de {min} a {max} caracteres",
- "signup_user_completed.required": "Este campo é obrigatório",
- "signup_user_completed.reserved": "Este nome de usuário é reservado, por favor, escolha um novo.",
- "signup_user_completed.signIn": "Clique aqui para fazer login.",
- "signup_user_completed.userHelp": "O nome de usuário precisa começar com uma letra, e conter entre {min} e {max} caracteres minúsculos contendo números, letras, e os símbolos '.', '-' e '_'",
- "signup_user_completed.usernameLength": "O nome de usuário precisa começar com uma letra, e conter entre {min} e {max} caracteres minúsculos contendo números, letras, e os símbolos '.', '-' e '_'.",
- "signup_user_completed.validEmail": "Por favor entre um endereço de e-mail válido",
- "signup_user_completed.welcome": "Bem-vindo:",
- "signup_user_completed.whatis": "Qual é o seu endereço de e-mail?",
- "signup_user_completed.withLdap": "Com suas credenciais AD/LDAP",
- "sso_signup.find": "Encontrar minhas equipes",
- "sso_signup.gitlab": "Criar uma equipe com uma conta GitLab",
- "sso_signup.google": "Criar equipe com a Conta do Google Apps",
- "sso_signup.length_error": "O nome deve ser de 3 ou mais caracteres até um máximo de 15",
- "sso_signup.teamName": "Entre o nome da nova equipe",
- "sso_signup.team_error": "Por favor entre o nome da equipe",
- "status_dropdown.set_away": "Ausente",
- "status_dropdown.set_offline": "Desconectado",
- "status_dropdown.set_online": "Conectado",
- "suggestion.loading": "Carregando...",
- "suggestion.mention.all": "ATENÇÃO: Todos no canal serão mencionados.",
- "suggestion.mention.channel": "Notifica todos no canal",
- "suggestion.mention.channels": "Meus Canais",
- "suggestion.mention.here": "Notifica todos os conectados ao canal",
- "suggestion.mention.in_channel": "Canais",
- "suggestion.mention.members": "Membros do Canal",
- "suggestion.mention.morechannels": "Outros Canais",
- "suggestion.mention.nonmembers": "Não no Canal",
- "suggestion.mention.not_in_channel": "Outros Canais",
- "suggestion.mention.special": "Menções Especiais",
- "suggestion.search.private": "Canais Privados",
- "suggestion.search.public": "Canais Públicos",
- "system_users_list.count": "{count, number} {count, plural, one {usuário} other {usuários}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {usuário} other {usuários}} de {total, number} no total",
- "system_users_list.countSearch": "{count, number} {count, plural, one {usuário} other {usuários}} de {total, number} no total",
- "team_export_tab.download": "download",
- "team_export_tab.export": "Exportar",
- "team_export_tab.exportTeam": "Exportar sua equipe",
- "team_export_tab.exporting": " Exportando...",
- "team_export_tab.ready": " Pronto para ",
- "team_export_tab.unable": " Não foi possível exportar: {error}",
- "team_import_tab.failure": " Falha na importação: ",
- "team_import_tab.import": "Importar",
- "team_import_tab.importHelpDocsLink": "documentação",
- "team_import_tab.importHelpExportInstructions": "Slack > Configurações de Equipe > Importar/Exportar Dados > Exportar > Iniciar Exportação",
- "team_import_tab.importHelpExporterLink": "Exportador Avançado Slack",
- "team_import_tab.importHelpLine1": "Importação Slack para Mattermost suporta a importação de mensagens nos canais públicos da sua equipe Slack.",
- "team_import_tab.importHelpLine2": "Para importar uma equipe do Slack, vá para {exportInstructions}. Veja {uploadDocsLink} para saber mais.",
- "team_import_tab.importHelpLine3": "Para importar postagens com arquivos anexos, veja {slackAdvancedExporterLink} para detalhes.",
- "team_import_tab.importSlack": "Importar do Slack (Beta)",
- "team_import_tab.importing": " Importando...",
- "team_import_tab.successful": " Importado com sucesso: ",
- "team_import_tab.summary": "Ver Resumo",
- "team_member_modal.close": "Fechar",
- "team_member_modal.members": "{team} Membros",
- "team_members_dropdown.confirmDemoteDescription": "Se você rebaixar você mesmo de Admin de Sistema e não exista outro usuário como privilegios de Admin de Sistema, você precisa-rá re-inscrever um Admin de Sistema acessando o servidor Mattermost através do terminal e executando o seguinte comando.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Confirmar o rebaixamento de Admin Sistema",
- "team_members_dropdown.confirmDemotion": "Confirmar Rebaixamento",
- "team_members_dropdown.confirmDemotionCmd": "platform roles system_admin {username}",
- "team_members_dropdown.inactive": "Inativo",
- "team_members_dropdown.leave_team": "Remover da equipe",
- "team_members_dropdown.makeActive": "Ativar",
- "team_members_dropdown.makeAdmin": "Tornar Admin de Equipe",
- "team_members_dropdown.makeInactive": "Desativar",
- "team_members_dropdown.makeMember": "Tornar Membro",
- "team_members_dropdown.member": "Membro",
- "team_members_dropdown.systemAdmin": "Admin do Sistema",
- "team_members_dropdown.teamAdmin": "Admin Equipe",
- "team_settings_modal.exportTab": "Exportar",
- "team_settings_modal.generalTab": "Geral",
- "team_settings_modal.importTab": "Importar",
- "team_settings_modal.title": "Configurações da Equipe",
- "team_sidebar.join": "Outras equipes que você pode se juntar.",
- "textbox.bold": "**negrito**",
- "textbox.edit": "Editar mensagem",
- "textbox.help": "Ajuda",
- "textbox.inlinecode": "`código`",
- "textbox.italic": "_itálico_",
- "textbox.preformatted": "```pré-formatado```",
- "textbox.preview": "Pré-visualização",
- "textbox.quote": ">citar",
- "textbox.strike": "tachado",
- "tutorial_intro.allSet": "Está tudo pronto",
- "tutorial_intro.end": "Clique em \"Próximo\" para entrar em {channel}. Este é o primeiro canal que sua equipe de trabalho vê quando eles se inscrevem. Use para postar atualizações que todos precisam saber.",
- "tutorial_intro.invite": "Convidar pessoas para equipe",
- "tutorial_intro.mobileApps": "Instalar os aplicativos {link} para fácil acesso e notificações em movimento.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS e Android",
- "tutorial_intro.next": "Próximo",
- "tutorial_intro.screenOne": "
Bem vindo ao:
Mattermost
Toda comunicação da sua equipe em um só lugar, pesquisas instantâneas disponível em qualquer lugar
Mantenha sua equipe conectada para ajudá-los a conseguir o que mais importa.
",
- "tutorial_intro.screenTwo": "
Como Mattermost funciona:
A comunicação acontece em canais públicos de discussão, canais privados e mensagens diretas.
Tudo é arquivado e pesquisável a partir de qualquer desktop com suporte a web, laptop ou celular.
",
- "tutorial_intro.skip": "Pular o tutorial",
- "tutorial_intro.support": "Precisa de alguma coisa, envie um e-mail para nós no ",
- "tutorial_intro.teamInvite": "Convidar pessoas para equipe",
- "tutorial_intro.whenReady": " quando você estiver pronto.",
- "tutorial_tip.next": "Próximo",
- "tutorial_tip.ok": "Ok",
- "tutorial_tip.out": "Recusar estas dicas.",
- "tutorial_tip.seen": "Viu isso antes? ",
- "update_command.cancel": "Cancelar",
- "update_command.confirm": "Editar Comando Slash",
- "update_command.question": "Suas alterações podem fazer parar de funcionar o comando slash existente. Tem a certeza de que pretende atualizá-lo?",
- "update_command.update": "Atualizar",
- "update_incoming_webhook.update": "Atualizar",
- "update_outgoing_webhook.confirm": "Editar Webhooks de Saída",
- "update_outgoing_webhook.question": "Suas alterações podem fazer parar de funcionar webhook de saída existente. Tem a certeza de que pretende atualizá-lo?",
- "update_outgoing_webhook.update": "Atualizar",
- "upload_overlay.info": "Soltar um arquivo para enviá-lo.",
- "user.settings.advance.embed_preview": "Para o primeiro link da web em uma mensagem, exiba uma visualização do conteúdo do site abaixo da mensagem, se disponível",
- "user.settings.advance.embed_toggle": "Exibir mostrar/esconder para todas as pre-visualizações",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Recurso} other {Recursos}} Ativado",
- "user.settings.advance.formattingDesc": "Se ativado, posts serão formatados para criar links, exibir emoji, estilo de texto e adicionar quebra de linhas. Por padrão é definido como ativado. Mudando está configuração será necessário recarregar a página.",
- "user.settings.advance.formattingTitle": "Ativar Formatação de Post",
- "user.settings.advance.joinLeaveDesc": "Quando \"Ligado\", Mensagens do Sistema dizendo que um usuário entrou ou saiu de um canal serão visíveis. Quando \"Off\", as Mensagens do Sistema sobre entrada e saída de um canal serão ocultadas. Uma mensagem ainda vai aparecer quando você é adicionado a um canal para que você possa receber uma notificação.",
- "user.settings.advance.joinLeaveTitle": "Ativar Mensagens Juntar/Deixar",
- "user.settings.advance.markdown_preview": "Mostrar opção pré-visualização markdown na caixa de entrada de mensagens",
- "user.settings.advance.off": "Desligado",
- "user.settings.advance.on": "Ligado",
- "user.settings.advance.preReleaseDesc": "Verifique todos os recursos de pré-lançamento que você gostaria de visualizar. Você também pode precisar atualizar a página antes das configuração terem efeito.",
- "user.settings.advance.preReleaseTitle": "Visualizar recursos de pré-lançamento",
- "user.settings.advance.sendDesc": "Se habilitado ENTER insere uma nova linha e CTRL+ENTER envia a mensagem.",
- "user.settings.advance.sendTitle": "Enviar mensagens com CTRL+ENTER",
- "user.settings.advance.slashCmd_autocmp": "Ativar aplicação externa para autocompletar comandos slash",
- "user.settings.advance.title": "Configurações Avançadas",
- "user.settings.advance.webrtc_preview": "Ativar a capacidade de fazer e receber chamadas WebRTC um-pra-um",
- "user.settings.custom_theme.awayIndicator": "Indicador de Afastamento",
- "user.settings.custom_theme.buttonBg": "Fundo Botão",
- "user.settings.custom_theme.buttonColor": "Texto do Botão",
- "user.settings.custom_theme.centerChannelBg": "Fundo Centro Canal",
- "user.settings.custom_theme.centerChannelColor": "Canal Central Texto",
- "user.settings.custom_theme.centerChannelTitle": "Estilos do Canal Central",
- "user.settings.custom_theme.codeTheme": "Código do Tema",
- "user.settings.custom_theme.copyPaste": "Copie e cole para compartilhar o tema de cores:",
- "user.settings.custom_theme.linkButtonTitle": "Estilos de Links e Botões",
- "user.settings.custom_theme.linkColor": "Cor do link",
- "user.settings.custom_theme.mentionBj": "Fundo Menção Jewel",
- "user.settings.custom_theme.mentionColor": "Menção Texto Jewel",
- "user.settings.custom_theme.mentionHighlightBg": "Fundo Menção Realçar",
- "user.settings.custom_theme.mentionHighlightLink": "Menção Realçar Link",
- "user.settings.custom_theme.newMessageSeparator": "Novo Separador de Mensagem",
- "user.settings.custom_theme.onlineIndicator": "Indicador Conectado",
- "user.settings.custom_theme.sidebarBg": "Fundo Barra lateral",
- "user.settings.custom_theme.sidebarHeaderBg": "Fundo Barra latera Cabeçalho",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Barra lateral Texto",
- "user.settings.custom_theme.sidebarText": "Texto Barra lateral",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Barra lateral Borda Texto Ativo",
- "user.settings.custom_theme.sidebarTextActiveColor": "Barra lateral Cor Texto Ativo",
- "user.settings.custom_theme.sidebarTextHoverBg": "Fundo Barra lateral Sobre Texto",
- "user.settings.custom_theme.sidebarTitle": "Estilos da Barra Lateral",
- "user.settings.custom_theme.sidebarUnreadText": "Barra Lateral Texto Não Lido",
- "user.settings.display.channelDisplayTitle": "Modo de Exibição do Canal",
- "user.settings.display.channeldisplaymode": "Selecione a largura do centro do canal.",
- "user.settings.display.clockDisplay": "Exibição do Relógio",
- "user.settings.display.collapseDesc": "Defina se as visualizações de links de imagens serão exibidas como expandidas ou recolhidas por padrão. Esta configuração também pode ser controlada usando os comandos slash /expand e /collapse.",
- "user.settings.display.collapseDisplay": "Exibição padrão de visualizações de links de imagens",
- "user.settings.display.collapseOff": "Recolhido",
- "user.settings.display.collapseOn": "Expandido",
- "user.settings.display.fixedWidthCentered": "Largura fixa, centralizada",
- "user.settings.display.fullScreen": "Largura inteira",
- "user.settings.display.language": "Idioma",
- "user.settings.display.messageDisplayClean": "Padrão",
- "user.settings.display.messageDisplayCleanDes": "Fácil de examinar e ler.",
- "user.settings.display.messageDisplayCompact": "Compacto",
- "user.settings.display.messageDisplayCompactDes": "Ajustar quantas mensagens na tela que puder.",
- "user.settings.display.messageDisplayDescription": "Selecione como as mensagens no canal podem ser mostradas.",
- "user.settings.display.messageDisplayTitle": "Exibição de Mensagem",
- "user.settings.display.militaryClock": "Relógio de 24 horas (exemplo: 16:00)",
- "user.settings.display.nameOptsDesc": "Ajustar como mostrar outros nomes de usuários nas postagens e lista de Mensagens Diretas.",
- "user.settings.display.normalClock": "Relógio de 12 horas (exemplo: 4:00 PM)",
- "user.settings.display.preferTime": "Selecione como você prefere que a hora seja mostrada.",
- "user.settings.display.theme.applyToAllTeams": "Aplicar novo tema para todas as minhas equipes",
- "user.settings.display.theme.customTheme": "Tema Personalizado",
- "user.settings.display.theme.describe": "Abrir para gerenciar seu tema",
- "user.settings.display.theme.import": "Importar tema de cores do Slack",
- "user.settings.display.theme.otherThemes": "Veja outros temas",
- "user.settings.display.theme.themeColors": "Tema de Cores",
- "user.settings.display.theme.title": "Tema",
- "user.settings.display.title": "Configurações de Exibição",
- "user.settings.general.checkEmail": "Verifique seu email em {email} para confirmar o endereço.",
- "user.settings.general.checkEmailNoAddress": "Verifique seu email para confirmar seu novo endereço",
- "user.settings.general.close": "Fechar",
- "user.settings.general.confirmEmail": "Confirmar o email",
- "user.settings.general.currentEmail": "Email Atual",
- "user.settings.general.email": "E-mail",
- "user.settings.general.emailGitlabCantUpdate": "Login ocorre através do GitLab. Email não pode ser atualizado. Endereço de email utilizado para notificações é {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Login ocorre através do Google. Email não pode ser atualizado. Endereço de email utilizado para notificações é {email}.",
- "user.settings.general.emailHelp1": "Email é usado para login, notificações, e redefinição de senha. Requer verificação de email se alterado.",
- "user.settings.general.emailHelp2": "Email foi desativado pelo seu Administrador de Sistema. Nenhuma notificação por email será enviada até isto ser habilitado.",
- "user.settings.general.emailHelp3": "Email é usado para login, notificações e redefinição de senha.",
- "user.settings.general.emailHelp4": "Uma verificação por email foi enviada para {email}.",
- "user.settings.general.emailLdapCantUpdate": "Login ocorre através de AD/LDAP. Email não pode ser atualizado. Endereço de email utilizado para notificações é {email}.",
- "user.settings.general.emailMatch": "Os novos emails que você inseriu não correspondem.",
- "user.settings.general.emailOffice365CantUpdate": "Login ocorre através do Office 365. Email não pode ser atualizado. Endereço de email utilizado para notificações é {email}.",
- "user.settings.general.emailSamlCantUpdate": "Login ocorre através SAML. Email não pode ser atualizado. Endereço de email utilizado para notificações é {email}.",
- "user.settings.general.emailUnchanged": "Seu novo endereço de email é o mesmo do seu endereço de email antigo.",
- "user.settings.general.emptyName": "Clique 'Editar' para adicionar seu nome completo",
- "user.settings.general.emptyNickname": "Clique 'Editar' para adicionar um apelido",
- "user.settings.general.emptyPosition": "Clique 'Editar' para adicionar seu cargo / posição",
- "user.settings.general.field_handled_externally": "Este campo é tratada pelo seu provedor de login. Se você quiser mudá-lo, você precisa fazê-lo através de seu provedor de login.",
- "user.settings.general.firstName": "Primeiro nome",
- "user.settings.general.fullName": "Nome Completo",
- "user.settings.general.imageTooLarge": "Não é possível fazer upload da imagem de perfil. O arquivo é muito grande.",
- "user.settings.general.imageUpdated": "Imagem última atualização {date}",
- "user.settings.general.lastName": "Último Nome",
- "user.settings.general.loginGitlab": "Login feito através do GitLab ({email})",
- "user.settings.general.loginGoogle": "Login feito através do Google ({email})",
- "user.settings.general.loginLdap": "Login feito através de AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Login feito através do Office 365 ({email})",
- "user.settings.general.loginSaml": "Login feito através de SAML ({email})",
- "user.settings.general.mobile.emptyName": "Clique para adicionar seu nome completo",
- "user.settings.general.mobile.emptyNickname": "Clique para adicionar um apelido",
- "user.settings.general.mobile.emptyPosition": "Clique para adicionar seu cargo / posição",
- "user.settings.general.mobile.uploadImage": "Clique em para enviar uma imagem.",
- "user.settings.general.newAddress": "Novo Endereço: {email} Verifique seu email para checar o endereço acima.",
- "user.settings.general.newEmail": "Novo Email",
- "user.settings.general.nickname": "Apelido",
- "user.settings.general.nicknameExtra": "Use Apelidos para um nome você pode ser chamado assim, isso é diferente de seu primeiro nome e nome de usuário. Este é mais frequentemente usado quando duas ou mais pessoas têm nomes semelhantes de usuário.",
- "user.settings.general.notificationsExtra": "Por padrão, você receberá uma notificação de menção quando alguém digitar seu nome. Vá para definições {notify} para alterar esse padrão.",
- "user.settings.general.notificationsLink": "Notificações",
- "user.settings.general.position": "Cargo",
- "user.settings.general.positionExtra": "Utilize Posição para seu papel ou cargo. Isto será mostrado no seu profile.",
- "user.settings.general.profilePicture": "Imagem do Perfil",
- "user.settings.general.title": "Definições Gerais",
- "user.settings.general.uploadImage": "Clique em 'Editar' para enviar uma imagem.",
- "user.settings.general.username": "Usuário",
- "user.settings.general.usernameInfo": "Coloque alguma coisa fácil para sua equipe reconhecer e relembrar.",
- "user.settings.general.usernameReserved": "Este nome de usuário é reservado, por favor escolha um novo.",
- "user.settings.general.usernameRestrictions": "O nome de usuário precisa começar com uma letra, e conter entre {min} e {max} caracteres minúsculos contendo números, letras, e os símbolos '.', '-' e '_'.",
- "user.settings.general.validEmail": "Por favor entre um endereço de e-mail válido",
- "user.settings.general.validImage": "Somente imagens em JPG ou PNG podem ser usadas como imagem do perfil",
- "user.settings.import_theme.cancel": "Cancelar",
- "user.settings.import_theme.importBody": "Para importar um tema, vá para uma equipe do Slack e procure por \"Preferences -> Sidebar Theme\". Abra a opção de tema personalizado, copie os valores das cores do tema e cole-os aqui:",
- "user.settings.import_theme.importHeader": "Importar Tema Slack",
- "user.settings.import_theme.submit": "Enviar",
- "user.settings.import_theme.submitError": "Formato inválido, por favor tente copiar e colar novamente.",
- "user.settings.languages.change": "Alterar o idioma da interface",
- "user.settings.languages.promote": "Escolha qual idioma Mattermost exibirá a interface do usuário.
Gostaria de ajudar com as traduções? Junte-se ao Mattermost Translation Server para contribuir.",
- "user.settings.mfa.add": "Adicionar MFA para sua conta",
- "user.settings.mfa.addHelp": "Adicionando autenticação multi-fator irá tornar sua conta mais segura requisitando um código do seu smartphone a cada vez que você fizer login",
- "user.settings.mfa.addHelpQr": "Por favor escaneie o código QR com o aplicativo Google Authenticator no smartphone e preencha com o token fornecido pelo aplicativo. Se você não conseguir escanear o código, você pode manualmente inserir a chave fornecida.",
- "user.settings.mfa.enterToken": "Token (somente números)",
- "user.settings.mfa.qrCode": "Código de Barra",
- "user.settings.mfa.remove": "Remover MFA da sua conta",
- "user.settings.mfa.removeHelp": "Remoção da autenticação multi-fator significa que você não vai mais exigir um código de acesso baseado no telefone para fazer login na sua conta.",
- "user.settings.mfa.requiredHelp": "Autenticação multi-fator é obrigatória neste servidor. Reset só é recomendado quando você precisa alterar a geração de código para um novo dispositivo. Você será obrigado a configurá-lo novamente imediatamente.",
- "user.settings.mfa.reset": "Remover MFA da sua conta",
- "user.settings.mfa.secret": "Chave Secreta",
- "user.settings.mfa.title": "Autenticação Multi-Fator",
- "user.settings.modal.advanced": "Avançado",
- "user.settings.modal.confirmBtns": "Sim, Descartar",
- "user.settings.modal.confirmMsg": "Você tem alterações não salvas, você tem certeza que quer descartar elas?",
- "user.settings.modal.confirmTitle": "Descartar alterações?",
- "user.settings.modal.display": "Exibição",
- "user.settings.modal.general": "Geral",
- "user.settings.modal.notifications": "Notificações",
- "user.settings.modal.security": "Segurança",
- "user.settings.modal.title": "Definições de Conta",
- "user.settings.notifications.allActivity": "Para todas as atividades",
- "user.settings.notifications.channelWide": "Menções para todo canal \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Fechar",
- "user.settings.notifications.comments": "Responder notificações",
- "user.settings.notifications.commentsAny": "Dispara notificações de mensagens em resposta a tópicos que eu iniciei ou participo",
- "user.settings.notifications.commentsInfo": "Além de notificações para quando você for mencionado, selecione se você gostaria de receber notificações sobre respostas de tópicos.",
- "user.settings.notifications.commentsNever": "Não disparar notificações para respostas mensagens a menos que eu for mencionado",
- "user.settings.notifications.commentsRoot": "Dispara notificações de mensagens em tópicos que eu iniciei",
- "user.settings.notifications.desktop": "Enviar notificações de desktop",
- "user.settings.notifications.desktop.allNoSoundForever": "Para toda atividade, sem som, mostrada indefinidamente",
- "user.settings.notifications.desktop.allNoSoundTimed": "Para toda atividade, sem som, mostrada por {seconds} segundos",
- "user.settings.notifications.desktop.allSoundForever": "Para toda atividade, com som, mostrada indefinidamente",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Para toda atividade, mostrada indefinidamente",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Para toda atividade, mostrada por {seconds} segundos",
- "user.settings.notifications.desktop.allSoundTimed": "Para toda atividade, sem som, mostrada por {seconds} segundos",
- "user.settings.notifications.desktop.duration": "Duração da notificação",
- "user.settings.notifications.desktop.durationInfo": "Define o tempo que as notificações no desktop permanecerão na tela ao usar o Firefox ou o Chrome. As notificações no desktop no Edge e no Safari só podem permanecer na tela por um máximo de 5 segundos.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Para menções e mensagens diretas, sem som, mostrada indefinidamente",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Para menções e mensagens diretas, sem som, mostradas por {seconds} segundos",
- "user.settings.notifications.desktop.mentionsSoundForever": "Para menções e mensagens diretas, com som, mostrada indefinidamente",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Para menções e mensagens diretas, mostrada indefinidamente",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Para menções e mensagens diretas, mostradas por {seconds} segundos",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Para menções e mensagens diretas, com som, mostrada por {seconds} segundos",
- "user.settings.notifications.desktop.seconds": "{seconds} segundos",
- "user.settings.notifications.desktop.sound": "Som da notificação",
- "user.settings.notifications.desktop.title": "Notificação no desktop",
- "user.settings.notifications.desktop.unlimited": "Ilimitado",
- "user.settings.notifications.desktopSounds": "Som de notificação no desktop",
- "user.settings.notifications.email.disabled": "Desativado pelo Administrador do Sistema",
- "user.settings.notifications.email.disabled_long": "As notificações por e-mail foram desativadas pelo Administrador do Sistema.",
- "user.settings.notifications.email.everyHour": "A cada hora",
- "user.settings.notifications.email.everyXMinutes": "A cada {count, plural, one {minuto} other {{count, number} minutos}}",
- "user.settings.notifications.email.immediately": "Imediatamente",
- "user.settings.notifications.email.never": "Nunca",
- "user.settings.notifications.email.send": "Enviar notificações por email",
- "user.settings.notifications.emailBatchingInfo": "Notificações recebidas dentro do período de tempo selecionado são combinadas e enviadas em um único email.",
- "user.settings.notifications.emailInfo": "Notificações de menções e mensagens diretas, são enviadas por e-mail quando você está desconectado ou ausente do {siteName} por mais de 5 minutos.",
- "user.settings.notifications.emailNotifications": "Notificações por email",
- "user.settings.notifications.header": "Notificações",
- "user.settings.notifications.info": "Notificações no desktop estão disponíveis no Edge, Firefox, Safari, Chrome e Mattermost Desktop Apps.",
- "user.settings.notifications.mentionsInfo": "As Menções são ativadas quando alguém envia uma mensagem que inclui seu usuário (\"@{username}\") ou qualquer uma das opções selecionadas acima.",
- "user.settings.notifications.never": "Nunca",
- "user.settings.notifications.noWords": "Nenhuma palavra configurada",
- "user.settings.notifications.off": "Desligado",
- "user.settings.notifications.on": "Ligado",
- "user.settings.notifications.onlyMentions": "Somente para menções e mensagens diretas",
- "user.settings.notifications.push": "Notificações push móvel",
- "user.settings.notifications.push_notification.status": "Disparar notificações push quando",
- "user.settings.notifications.sensitiveName": "Seu primeiro nome sensível a maiúsculas e minúsculas \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Seu usuário não sensível a maiúsculas \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Outras palavras não sensível a maiúscula, separadas por virgulas:",
- "user.settings.notifications.soundConfig": "Por favor configurar sons de notificações nas configurações do seu navegador",
- "user.settings.notifications.sounds_info": "Sons para notificações estão disponíveis no IE11, Safari, Chrome e Mattermost Desktop Apps.",
- "user.settings.notifications.teamWide": "Mencionar toda a equipe \"@all\"",
- "user.settings.notifications.title": "Configurações de Notificação",
- "user.settings.notifications.wordsTrigger": "Palavras que desencadeiam menções",
- "user.settings.push_notification.allActivity": "Para todas as atividades",
- "user.settings.push_notification.allActivityAway": "Para toda atividade quando ausente ou desconectado",
- "user.settings.push_notification.allActivityOffline": "Para toda atividade quando desconectado",
- "user.settings.push_notification.allActivityOnline": "Para toda atividade quando conectado, ausente ou desconectado",
- "user.settings.push_notification.away": "Ausente ou desconectado",
- "user.settings.push_notification.disabled": "Desativado pelo Administrador do Sistema",
- "user.settings.push_notification.disabled_long": "Notificações push para dispositivos móveis foram desativados pelo Administrador do Sistema.",
- "user.settings.push_notification.info": "Alertas de notificação são enviados para o seu dispositivo móvel quando há atividade no Mattermost.",
- "user.settings.push_notification.off": "Desligado",
- "user.settings.push_notification.offline": "Desconectado",
- "user.settings.push_notification.online": "Conectado, ausente ou desconectado",
- "user.settings.push_notification.onlyMentions": "Somente para menções e mensagens diretas",
- "user.settings.push_notification.onlyMentionsAway": "Para menções e mensagens diretas quando ausente ou desconectado",
- "user.settings.push_notification.onlyMentionsOffline": "Para menções e mensagens diretas quando desconectado",
- "user.settings.push_notification.onlyMentionsOnline": "Para menções e mensagens diretas quando conectado, ausente ou desconectado",
- "user.settings.push_notification.send": "Enviar notificações push móvel",
- "user.settings.push_notification.status": "Disparar notificações push quando",
- "user.settings.push_notification.status_info": "Alertas de notificação só são enviados para o seu dispositivo móvel quando seu status conectado corresponder à seleção acima.",
- "user.settings.security.active": "Ativo",
- "user.settings.security.close": "Fechar",
- "user.settings.security.currentPassword": "Senha Atual",
- "user.settings.security.currentPasswordError": "Por favor entre sua senha atual.",
- "user.settings.security.deauthorize": "Desautorize",
- "user.settings.security.emailPwd": "Email e Senha",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Inativo",
- "user.settings.security.lastUpdated": "Última atualização {date} {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Login feito através do GitLab",
- "user.settings.security.loginGoogle": "Login feito através do Google Apps",
- "user.settings.security.loginLdap": "Login feito através de AD/LDAP",
- "user.settings.security.loginOffice365": "Login feito através do Office 365",
- "user.settings.security.loginSaml": "Login feito através do SAML",
- "user.settings.security.logoutActiveSessions": "Ver e fazer Logout das Sessões Ativas",
- "user.settings.security.method": "Método de Login",
- "user.settings.security.newPassword": "Nova Senha",
- "user.settings.security.noApps": "Nenhuma Aplicação OAuth 2.0 está autorizada.",
- "user.settings.security.oauthApps": "Aplicativos OAuth 2.0",
- "user.settings.security.oauthAppsDescription": "Clique 'Editar' para gerenciar sua Aplicação OAuth 2.0",
- "user.settings.security.oauthAppsHelp": "Aplicações atuam em seu nome para acessar seus dados com base nas permissões que você conceder.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Você pode ter somente um método de login por vez. Trocando o método de login será enviado um email de notificação se você alterar com sucesso.",
- "user.settings.security.password": "Senha",
- "user.settings.security.passwordError": "Uma senha precisa conter entre {min} e {max} caracteres.",
- "user.settings.security.passwordErrorLowercase": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula.",
- "user.settings.security.passwordErrorLowercaseNumber": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula e pelo menos um número.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula, pelo menos um número, e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula e pelo menos uma letra maiúscula.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula, pelo menos uma letra maiúscula, e pelo menos um número.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula, pelo menos uma letra maiúscula, pelo menos um número, e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra minúscula, pelo menos uma letra maiúscula, e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos um número.",
- "user.settings.security.passwordErrorNumberSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos um número e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra maiúscula.",
- "user.settings.security.passwordErrorUppercaseNumber": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra maiúscula e pelo menos um número.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra maiúscula, pelo menos um número, e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Sua senha deve conter de {min} a {max} caracteres constituídos por pelo menos uma letra maiúscula e pelo menos um símbolo (ex. \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Login ocorreu através do GitLab. Senha não pode ser atualizada.",
- "user.settings.security.passwordGoogleCantUpdate": "Login ocorreu através do Google Apps. Senha não pode ser atualizada.",
- "user.settings.security.passwordLdapCantUpdate": "Login ocorreu através de AD/LDAP. Senha não pode ser atualizada.",
- "user.settings.security.passwordMatchError": "As novas senhas que você inseriu não correspondem.",
- "user.settings.security.passwordMinLength": "Comprimento mínimo inválido, não é possível mostrar pré-visualização.",
- "user.settings.security.passwordOffice365CantUpdate": "Login ocorreu através do Office 365. Senha não pode ser atualizada.",
- "user.settings.security.passwordSamlCantUpdate": "Este campo é tratada pelo seu provedor de login. Se você quiser mudá-lo, você precisa fazê-lo através de seu provedor de login.",
- "user.settings.security.retypePassword": "Digite Novamente a nova Senha",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Trocar para usar email e senha",
- "user.settings.security.switchGitlab": "Trocar para usar GitLab SSO",
- "user.settings.security.switchGoogle": "Trocar para usar Google SSO",
- "user.settings.security.switchLdap": "Alternar para usar AD/LDAP",
- "user.settings.security.switchOffice365": "Alternar para usar Office 365 SSO",
- "user.settings.security.switchSaml": "Trocar para usar SAML SSO",
- "user.settings.security.title": "Configurações de Segurança",
- "user.settings.security.viewHistory": "Ver Histórico de Acesso",
- "user.settings.tokens.cancel": "Cancelar",
- "user.settings.tokens.clickToEdit": "Clique 'Editar' para gerenciar seus tokens de acesso individual",
- "user.settings.tokens.confirmCreateButton": "Sim, Criar",
- "user.settings.tokens.confirmCreateMessage": "Você está gerando um token de acesso individual com permissões de Administrador do Sistema. Tem certeza de que deseja criar esse token?",
- "user.settings.tokens.confirmCreateTitle": "Criar Token de Acesso Individual Administrador do Sistema",
- "user.settings.tokens.confirmDeleteButton": "Sim, Excluir",
- "user.settings.tokens.confirmDeleteMessage": "Quaisquer integrações que usem este token não poderão mais acessar a API Mattermost. Você não pode desfazer está ação.
Você tem certeza que quer excluir o token {description}?",
- "user.settings.tokens.confirmDeleteTitle": "Excluir Token?",
- "user.settings.tokens.copy": "Copie o token de acesso abaixo. Você não poderá vê-lo novamente!",
- "user.settings.tokens.create": "Criar Novo Token",
- "user.settings.tokens.delete": "Excluir",
- "user.settings.tokens.description": "Tokens de acesso individual funcionam similar a tokens de sessão e podem ser usados por integrações para autenticar em uma API REST.",
- "user.settings.tokens.description_mobile": "Tokens de acesso individual funcionam similar a tokens de sessão e podem ser usados por integrações para autenticar em uma API REST. Crie novos tokens no seu computador.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "Descrição Token: ",
- "user.settings.tokens.nameHelp": "Digite a descrição para seu token para lembrar o que ele faz.",
- "user.settings.tokens.nameRequired": "Por favor digite uma descrição.",
- "user.settings.tokens.save": "Salvar",
- "user.settings.tokens.title": "Tokens de Acesso Individual",
- "user.settings.tokens.token": "Token de Acesso: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "Não há tokens de acesso pessoais.",
- "user_list.notFound": "Nenhum usuário encontrado",
- "user_profile.send.dm": "Enviar Mensagem",
- "user_profile.webrtc.call": "Iniciar Video Chamada",
- "user_profile.webrtc.offline": "O usuário está desconectado",
- "user_profile.webrtc.unavailable": "Nova chamada não disponível até que você termine a chamada existente",
- "view_image.loading": "Carregando ",
- "view_image_popover.download": "Download",
- "view_image_popover.file": "Arquivo {count, number} de {total, number}",
- "view_image_popover.publicLink": "Obter O Link Público",
- "web.footer.about": "Sobre",
- "web.footer.help": "Ajuda",
- "web.footer.privacy": "Privacidade",
- "web.footer.terms": "Termos",
- "web.header.back": "Voltar",
- "web.header.logout": "Logout",
- "web.root.signup_info": "Toda comunicação em um só lugar, pesquisável e acessível em qualquer lugar",
- "webrtc.busy": "{username} está ocupado.",
- "webrtc.call": "Chamada",
- "webrtc.callEnded": "Terminada a chamada com {username}.",
- "webrtc.cancel": "Cancelar chamada",
- "webrtc.cancelled": "{username} cancelou a chamada.",
- "webrtc.declined": "Sua chamada foi recusada por {username}.",
- "webrtc.disabled": "{username} está com WebRTC desativado, e não pode receber chamadas. Para ativar o recurso, eles devem ir para Configurações de Conta > Avançado > Visualizar recursos de pré-lançamento e ativar WebRTC.",
- "webrtc.failed": "Houve um problema na conexão da vídeo chamada.",
- "webrtc.hangup": "Desligar",
- "webrtc.header": "Chamada com {username}",
- "webrtc.inProgress": "Você já tem uma chamada em progresso. Por favor desligue primeiro.",
- "webrtc.mediaError": "Não foi possível acessar a câmera ou microfone.",
- "webrtc.mute_audio": "Silenciar microfone",
- "webrtc.noAnswer": "{username} não está respondendo a chamada.",
- "webrtc.notification.answer": "Resposta",
- "webrtc.notification.decline": "Recusar",
- "webrtc.notification.incoming_call": "{username} está chamando.",
- "webrtc.notification.returnToCall": "Retornar a chamada em curso com {username}",
- "webrtc.offline": "{username} está desconectado.",
- "webrtc.pause_video": "Desligar a câmera",
- "webrtc.unmute_audio": "Ligar microfone",
- "webrtc.unpause_video": "Ligar a câmera",
- "webrtc.unsupported": "O cliente de {username} não suporta vídeo chamadas.",
- "youtube_video.notFound": "Vídeo não encontrado"
-}
diff --git a/webapp/i18n/ru.json b/webapp/i18n/ru.json
deleted file mode 100644
index f111638be7e..00000000000
--- a/webapp/i18n/ru.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Закрыть",
- "about.copyright": "Copyright 2015 - {currentYear} Mattermost, Inc. Все права защищены",
- "about.database": "База данных:",
- "about.date": "Дата сборки:",
- "about.enterpriseEditionLearn": "Подробнее о редакции Enterprise читайте на ",
- "about.enterpriseEditionSt": "Современное общение в вашей внутренней сети",
- "about.enterpriseEditione1": "Enterprise Edition",
- "about.hash": "Хэш сборки:",
- "about.hashee": "Хэш сборки EE:",
- "about.licensed": "Лицензия зарегистрирована на:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Номер сборки:",
- "about.teamEditionLearn": "Присоединяйтесь к сообществу Mattermost на ",
- "about.teamEditionSt": "Всё общение вашей команды собрано в одном месте, с мгновенным поиском и доступом отовсюду.",
- "about.teamEditiont0": "Team Edition",
- "about.teamEditiont1": "Enterprise Edition",
- "about.title": "О Mattermost",
- "about.version": "Версия:",
- "access_history.title": "История активности",
- "activity_log.activeSessions": "Активные сессии",
- "activity_log.browser": "Браузер: {browser}",
- "activity_log.firstTime": "Первая активность: {date}, {time}",
- "activity_log.lastActivity": "Последняя активность: {date}, {time}",
- "activity_log.logout": "Выйти",
- "activity_log.moreInfo": "Подробнее",
- "activity_log.os": "ОС: {os}",
- "activity_log.sessionId": "Идентификатор сессии: {id}",
- "activity_log.sessionsDescription": "Создание сессии происходит при входе с нового браузера или устройства. Они позволяют использовать Mattermost без необходимости повторного входа на протяжении времени, установленного Администратором системы. Если вы хотите завершить сессию, нажмите кнопку 'Выйти'.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Приложение для Android",
- "activity_log_modal.androidNativeClassicApp": "Android Native Classic App",
- "activity_log_modal.desktop": "Приложение для ПК",
- "activity_log_modal.iphoneNativeApp": "Приложение для iPhone",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Native Classic App",
- "add_command.autocomplete": "Автодополнение",
- "add_command.autocomplete.help": "(Необязательно) Показывать слэш-команду в списке автодополнения.",
- "add_command.autocompleteDescription": "Описание для автодополнения",
- "add_command.autocompleteDescription.help": "(Необязательно) Короткое описание слэш-команды для списка автодополнения.",
- "add_command.autocompleteDescription.placeholder": "Пример: \"Возвращает результаты поиска по записям пациентов\"",
- "add_command.autocompleteHint": "Подсказка для автодополнения",
- "add_command.autocompleteHint.help": "(Необязательно) Аргументы слэш-команды, показываемые как подсказка в списке автодополнения.",
- "add_command.autocompleteHint.placeholder": "Пример: [Имя пациента]",
- "add_command.cancel": "Отмена",
- "add_command.description": "Описание",
- "add_command.description.help": "Описание входящего вебхука.",
- "add_command.displayName": "Отображаемое имя",
- "add_command.displayName.help": "Отображаемое имя слэш-команды длиной до 64 символов.",
- "add_command.doneHelp": "Ваша slash-команда настроена. Следующий токен будет отправлен с полезной нагрузкой в исходящем запросе. Пожалуйста, используйте этот токен для проверки запроса от вашей команды в Mattermost (см. документацию для получения дополнительной информации).",
- "add_command.iconUrl": "Иконка ответа",
- "add_command.iconUrl.help": "(Необязательно) Выберите иконку для отображения вместо картинки профиля в ответах на эту слэш-команду. Введите URL .png или .jpg файла, разрешением минимум 128 на 128 пикселей.",
- "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
- "add_command.method": "Метод запроса",
- "add_command.method.get": "GET",
- "add_command.method.help": "Метод, которым будет произведен запрос к URL.",
- "add_command.method.post": "POST",
- "add_command.save": "Сохранить",
- "add_command.token": "Токен: {token}",
- "add_command.trigger": "Ключевое слово",
- "add_command.trigger.help": "Ключевое слово должно быть уникальным и не может ни начинаться со слэша, ни содержать пробелы.",
- "add_command.trigger.helpExamples": "Пример: клиент, сотрудник, пациент, погода",
- "add_command.trigger.helpReserved": "Зарезервировано: {link}",
- "add_command.trigger.helpReservedLinkText": "смотрите список встроенных слэш-команд",
- "add_command.trigger.placeholder": "Ключевое слово, например \"привет\"",
- "add_command.triggerInvalidLength": "Ключевое слово должно содержать от {min} до {max} символов",
- "add_command.triggerInvalidSlash": "Ключевое слово не может начинаться с /",
- "add_command.triggerInvalidSpace": "Ключевое слово не может содержать пробелы",
- "add_command.triggerRequired": "Необходимо ввести ключевое слово",
- "add_command.url": "URL запроса",
- "add_command.url.help": "URL, который будет запрошен методом HTTP POST или GET при использовании слэш-команды.",
- "add_command.url.placeholder": "Адрес должен начинаться с http:// или https://",
- "add_command.urlRequired": "Необходимо указать URL запроса",
- "add_command.username": "Имя пользователя для ответа",
- "add_command.username.help": "(Необязательно) Выберите имя пользователя для ответов для этой слэш-команды. Имя пользователя должно содержать не более 22 символов, состоящих из букв в нижнем регистре, цифр, символов \"-\", \"_\", и \".\" .",
- "add_command.username.placeholder": "Имя пользователя",
- "add_emoji.cancel": "Отменить",
- "add_emoji.header": "Добавить",
- "add_emoji.image": "Изображение",
- "add_emoji.image.button": "Выбрать",
- "add_emoji.image.help": "Выберите изображение для вашего эмодзи. Изображение может быть в формате gif, png или jpeg и не должно превышать размера в 1 МБ. Изображение автоматически изменится в размере до 128 на 128 пикселей с сохранением пропорций.",
- "add_emoji.imageRequired": "Требуется изображение для смайлика",
- "add_emoji.name": "Имя",
- "add_emoji.name.help": "Выберите имя для смайлика, длиной до 64 символов, используя буквы, цифры и символы '-' и '_'.",
- "add_emoji.nameInvalid": "Имя смайлика может содержать только цифры, буквы и символы '-' и '_'.",
- "add_emoji.nameRequired": "Требуется изображение для смайлика",
- "add_emoji.nameTaken": "Это имя уже занято. Пожалуйста, выберите другое.",
- "add_emoji.preview": "Предварительный просмотр",
- "add_emoji.preview.sentence": "Это предложение с {image} в нем.",
- "add_emoji.save": "Сохранить",
- "add_incoming_webhook.cancel": "Отмена",
- "add_incoming_webhook.channel": "Канал",
- "add_incoming_webhook.channel.help": "Публичный или приватный канал, который будет получать содержимое вебхука. Вы должны состоять в приватном канале, чтобы установить вебхук.",
- "add_incoming_webhook.channelRequired": "Необходим действующий канал",
- "add_incoming_webhook.description": "Описание",
- "add_incoming_webhook.description.help": "Описание входящего вебхука.",
- "add_incoming_webhook.displayName": "Отображаемое имя",
- "add_incoming_webhook.displayName.help": "Имя вебхука длиной до 64 символов.",
- "add_incoming_webhook.doneHelp": "Входящий вебхук был установлен. Пожалуйста отправляйте данные на этот URL (смотрите документацию для получения подробностей).",
- "add_incoming_webhook.name": "Имя",
- "add_incoming_webhook.save": "Сохранить",
- "add_incoming_webhook.url": "URL: {url}",
- "add_oauth_app.callbackUrls.help": "URI, на который будет совершено перенаправление после подтверждения или отклонения авторизации приложения, и который должен обработать код авторизации или токен доступа. Должен быть правильным URL и начинаться с http:// или https://.",
- "add_oauth_app.callbackUrlsRequired": "Требуется хотя бы один URL для обратного вызова",
- "add_oauth_app.clientId": "ID клиента:{id}",
- "add_oauth_app.clientSecret": "Секрет клиента: {secret}",
- "add_oauth_app.description.help": "Описание приложения OAuth 2.0.",
- "add_oauth_app.descriptionRequired": "Описание приложения OAuth 2.0 должно быть заполнено.",
- "add_oauth_app.doneHelp": "Ваше приложение OAuth 2.0 установлено. При запросе авторизации вашего приложение используйте следующие Client ID и Client Secret (смотрите документацию для подробностей).",
- "add_oauth_app.doneUrlHelp": "Следующая информация - это ваши разрешенные URL-адреса для перенаправления.",
- "add_oauth_app.header": "Добавить",
- "add_oauth_app.homepage.help": "URL домашней страницы приложения OAuth 2.0. Убедитесь, что URL использует схему HTTP или HTTPS, соответствующую настройкам сервера.",
- "add_oauth_app.homepageRequired": "Домашняя страница приложения OAuth 2.0 должна быть указана.",
- "add_oauth_app.icon.help": "(Необязательно) URL изображения для приложения OAuth 2.0. Убедитесь, что URL использует схему HTTP или HTTPS, соответствующую настройкам сервера.",
- "add_oauth_app.name.help": "Отображаемое имя приложения OAuth 2.0 длиной до 64 символов.",
- "add_oauth_app.nameRequired": "Имя приложения OAuth 2.0 должно быть указано.",
- "add_oauth_app.trusted.help": "Если выбрано, приложение OAuth 2.0 будет считаться доверенным и Mattermost не будет требовать подтверждения от пользователя. Иначе, в дополнительном окне пользователю будет предложено подтвердить или отклонить авторизацию.",
- "add_oauth_app.url": "URL ссылка(-и): {url}",
- "add_outgoing_webhook.callbackUrls": "URL обратного вызова (по одному на строку)",
- "add_outgoing_webhook.callbackUrls.help": "URL, на который будут отправляться сообщения.",
- "add_outgoing_webhook.callbackUrlsRequired": "Требуется хотя бы один URL обратного вызова",
- "add_outgoing_webhook.cancel": "Отмена",
- "add_outgoing_webhook.channel": "Канал",
- "add_outgoing_webhook.channel.help": "Публичный канал, из которого будет получаться содержимое вебхука. Можно не указывать, если задано хотя бы одно Ключевое Слово.",
- "add_outgoing_webhook.contentType.help1": "Выберите тип содержимого, с которым будет отправлен ответ.",
- "add_outgoing_webhook.contentType.help2": "Если выбран тип application/x-www-form-urlencoded, сервер предполагает, что вы сами закодируете параметры в формат URL.",
- "add_outgoing_webhook.contentType.help3": "Если выбран тип application/json, сервер предполагает, что вы отправляете JSON данные.",
- "add_outgoing_webhook.content_Type": "Тип содержимого",
- "add_outgoing_webhook.description": "Описание",
- "add_outgoing_webhook.description.help": "Описание исходящего вебхука.",
- "add_outgoing_webhook.displayName": "Отображаемое имя",
- "add_outgoing_webhook.displayName.help": "Имя вебхука длиной до 64 символов.",
- "add_outgoing_webhook.doneHelp": "Исходящий вебхук установлен. Следующий токен должен быть отправлен в заголовке. Пожалуйста, используйте его для проверки запроса от вашей команды (смотрите документацию для подробностей).",
- "add_outgoing_webhook.name": "Имя",
- "add_outgoing_webhook.save": "Сохранить",
- "add_outgoing_webhook.token": "Токен: {token}",
- "add_outgoing_webhook.triggerWords": "Ключевые слова (по одному на строку)",
- "add_outgoing_webhook.triggerWords.help": "Сообщение, начинающееся с указанного слова, будет вызывать отправку вебхука. Можно не указывать, если выбран Канал.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Необходим действующий канал или список ключевых слов",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Условие срабатывания",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Выберите, будет ли вебхук отправлен только если первое слово точно совпадает с ключевым словом или если оно хотя бы начинается с него.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "Первое слово соответствует слову события полностью",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "Первое слово начинается со слова триггера",
- "add_users_to_team.title": "Добавить нового участника в команду {teamName}",
- "admin.advance.cluster": "Высокая доступность",
- "admin.advance.metrics": "Мониторинг производительности",
- "admin.audits.reload": "Перезагрузить логи активности пользователя",
- "admin.audits.title": "Логи активности пользователя",
- "admin.authentication.email": "Аутентификация по электронной почте",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Заметка:",
- "admin.client_versions.androidLatestVersion": "Latest Android Version",
- "admin.client_versions.androidLatestVersionHelp": "The latest released Android version",
- "admin.client_versions.androidMinVersion": "Minimum Android Version",
- "admin.client_versions.androidMinVersionHelp": "The minimum compliant Android version",
- "admin.client_versions.desktopLatestVersion": "Latest Desktop Version",
- "admin.client_versions.desktopLatestVersionHelp": "The latest released Desktop version",
- "admin.client_versions.desktopMinVersion": "Minimum Destop Version",
- "admin.client_versions.desktopMinVersionHelp": "The minimum compliant Desktop version",
- "admin.client_versions.iosLatestVersion": "Latest IOS Version",
- "admin.client_versions.iosLatestVersionHelp": "The latest released IOS version",
- "admin.client_versions.iosMinVersion": "Minimum IOS Version",
- "admin.client_versions.iosMinVersionHelp": "The minimum compliant IOS version",
- "admin.cluster.enableDescription": "Если включено, Mattermost запустится в режиме высокой доступности. Пожалуйста, обратитесь к документациидля получения сведений по настройкам режима High Availability.",
- "admin.cluster.enableTitle": "Включить режим высокой доступности:",
- "admin.cluster.interNodeListenAddressDesc": "Адрес интерфейса, используемого для связи с другими серверами.",
- "admin.cluster.interNodeListenAddressEx": "Например: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Адрес межузлового прослушивания:",
- "admin.cluster.interNodeUrlsDesc": "Внутренние/частные адреса всех серверов Mattermost, разделенные точкой.",
- "admin.cluster.interNodeUrlsEx": "Например: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Межузловые URL:",
- "admin.cluster.loadedFrom": "Конфигурационный файл был загружен с узла с идентификатором {clusterId}. Пожалуйста, обратитесь к руководству по разрешению проблем в нашей документации, если вы открываете системную консоль через балансировщик нагрузки и испытываете проблемы.",
- "admin.cluster.noteDescription": "Изменение свойств в этой секции потребуют перезагрузки сервера. При использованиии режима высокой доступности, системная консоль устанавливается в режим только для чтения и настройки могут быть изменены только через файл конфигурации, если ReadOnlyConfig отключён.",
- "admin.cluster.should_not_change": "ВНИМАНИЕ: Эти настройки могут не синхронизироваться с остальными серверами в кластере. Межузловая связь высокой доступности не запустится, пока вы не сделаете config.json одинаковым на всех серверах и не перезапустите Mattermost. Пожалуйста, обратитесь к документации, чтобы узнать, как добавить или удалить сервер из кластера. Если вы открываете системную консоль через балансировщик нагрузки и испытываете проблемы, пожалуйста, смотрите руководство по разрешению проблем в нашей документации.",
- "admin.cluster.status_table.config_hash": "MD5-хеш файла конфигурации",
- "admin.cluster.status_table.hostname": "Имя сервера",
- "admin.cluster.status_table.id": "ID узла",
- "admin.cluster.status_table.reload": " Перезагрузка состояния кластера",
- "admin.cluster.status_table.status": "Состояние",
- "admin.cluster.status_table.url": "Gossip Address",
- "admin.cluster.status_table.version": "Версия",
- "admin.cluster.unknown": "неизвестный",
- "admin.compliance.directoryDescription": "Каталог в который сохраняются отчеты о соответствии. Если пусто, - сохраняются в ./data/.",
- "admin.compliance.directoryExample": "Например: \"./data/\"",
- "admin.compliance.directoryTitle": "Каталог отчетов о соответствии:",
- "admin.compliance.enableDailyDesc": "Когда истина, Mattermost будет производить ежедневные комплаенс-отчеты.",
- "admin.compliance.enableDailyTitle": "Включить ежедневный отчет:",
- "admin.compliance.enableDesc": "Если включено, Mattermost разрешает отчеты о соответствии из вкладки Соответствие и Аудит. Смотрите документацию, чтобы узнать больше.",
- "admin.compliance.enableTitle": "Разрешить отчеты о соответствии:",
- "admin.compliance.false": "выключены",
- "admin.compliance.noLicense": "
Примечание:
Соответствие – это корпоративная возможность. Ваша текущая лицензия не поддерживает соответствие. Нажмите здесь для получения информации о корпоративном лицензировании и о ценах.
\"Send generic description with sender and channel names\" includes the name of the person who sent the message and the channel it was sent in, but not the message text.
\"Send full message snippet\" includes a message excerpt in push notifications, which may contain confidential information sent in messages. If your Push Notification Service is outside your firewall, it is *highly recommended* this option only be used with an \"https\" protocol to encrypt the connection.",
- "admin.email.pushContentTitle": "Содержание push уведомления:",
- "admin.email.pushDesc": "Обычно в продуктиве включено. Если включено, Mattermost пытается отправить iOS и Android уведомления сервер уведомлений.",
- "admin.email.pushOff": "Не отправлять push-уведомления",
- "admin.email.pushOffHelp": "Подробное описание данной опции доступно в документации.",
- "admin.email.pushServerDesc": "Расположение службы push-уведомлений Mattermost, которую Вы можете установить за своим брандмауэром, используя https://github.com/mattermost/push-proxy. Для тестирования Вы можете использовать http://push-test.mattermost.com, который соединяется с демонстрационным приложением для iOS Mattermost из Apple AppStore. Не используйте тестовую службу для постоянного рабочего использования.",
- "admin.email.pushServerEx": "Например: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Сервер push уведомлений:",
- "admin.email.pushTitle": "Включить push-уведомления: ",
- "admin.email.requireVerificationDescription": "Если истина, для разрешения входа Mattermost требует подтверждения адреса эл. почты после создания учетной записи. Обычно включается в production-системе. Разработчики могут отключить подтверждение адреса эл. почты для упрощения работы.",
- "admin.email.requireVerificationTitle": "Требовать подтверждение адреса электронной почты: ",
- "admin.email.selfPush": "Введите адрес сервиса отправки push-уведомлений вручную",
- "admin.email.skipServerCertificateVerification.description": "Если включено, Mattermost не будет проверять сертификат почтового сервера.",
- "admin.email.skipServerCertificateVerification.title": "Пропустить проверку сертификата:",
- "admin.email.smtpPasswordDescription": "The password associated with the SMTP username.",
- "admin.email.smtpPasswordExample": "Например: \"yourpassword\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "Пароль SMTP Сервера:",
- "admin.email.smtpPortDescription": "Порт SMTP сервера.",
- "admin.email.smtpPortExample": "Пример: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "Порт SMTP Сервера:",
- "admin.email.smtpServerDescription": "Адрес SMTP сервера.",
- "admin.email.smtpServerExample": "Например: \"smtp.yourcompany.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "SMTP Сервер:",
- "admin.email.smtpUsernameDescription": "The username for authenticating to the SMTP server.",
- "admin.email.smtpUsernameExample": "Например: \"admin@yourcompany.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "Имя пользователя SMTP:",
- "admin.email.testing": "Проверка...",
- "admin.false": "нет",
- "admin.file.enableFileAttachments": "Allow File Sharing:",
- "admin.file.enableFileAttachmentsDesc": "When false, disables file sharing on the server. All file and image uploads on messages are forbidden across clients and devices, including mobile.",
- "admin.file.enableMobileDownloadDesc": "When false, disables file downloads on mobile apps. Users can still download files from a mobile web browser.",
- "admin.file.enableMobileDownloadTitle": "Allow File Downloads on Mobile:",
- "admin.file.enableMobileUploadDesc": "When false, disables file uploads on mobile apps. If Allow File Sharing is set to true, users can still upload files from a mobile web browser.",
- "admin.file.enableMobileUploadTitle": "Allow File Uploads on Mobile:",
- "admin.file_upload.chooseFile": "Выбрать файл",
- "admin.file_upload.noFile": "Нет загруженный файлов",
- "admin.file_upload.uploadFile": "Загрузить",
- "admin.files.images": "Изображения",
- "admin.files.storage": "Хранилище",
- "admin.general.configuration": "Параметры",
- "admin.general.localization": "Локализация",
- "admin.general.localization.availableLocalesDescription": "Выберите, какие языки будут доступны пользователям в Настройках учетной записи (оставьте это поле пустым, чтобы сделать доступными все поддерживаемые языки). Если вы вручную добавляете новые языки, Язык клиента по умолчанию должен быть добавлен до сохранения этой настройки.
Желаете помочь с переводами? Присоединяйтесь к серверу переводов Mattermost, чтобы внести свой вклад.",
- "admin.general.localization.availableLocalesNoResults": "Ничего не найдено",
- "admin.general.localization.availableLocalesNotPresent": "Язык клиента по умолчанию должен быть включён в список доступных языков",
- "admin.general.localization.availableLocalesTitle": "Доступные языки:",
- "admin.general.localization.clientLocaleDescription": "Язык по умолчанию для новых пользователей и страниц при первом входе в систему.",
- "admin.general.localization.clientLocaleTitle": "Язык клиента по умолчанию:",
- "admin.general.localization.serverLocaleDescription": "Язык системных сообщений и лога по умолчанию. Требует перезагрузки сервера прежде чем вступит в силу.",
- "admin.general.localization.serverLocaleTitle": "Язык сервера по умолчанию:",
- "admin.general.log": "Ведение журнала",
- "admin.general.policy": "Policy",
- "admin.general.policy.allowBannerDismissalDesc": "When true, users can dismiss the banner until its next update. When false, the banner is permanently visible until it is turned off by the System Admin.",
- "admin.general.policy.allowBannerDismissalTitle": "Включить возможность скрытия баннера:",
- "admin.general.policy.allowEditPostAlways": "Время не указано",
- "admin.general.policy.allowEditPostDescription": "Установить политику продолжительности времени после публикации сообщений, в течение которого авторы могут их редактировать",
- "admin.general.policy.allowEditPostNever": "Никогда",
- "admin.general.policy.allowEditPostTimeLimit": "секунд после публикации",
- "admin.general.policy.allowEditPostTitle": "Разрешить пользователям редактировать свои сообщения:",
- "admin.general.policy.bannerColorTitle": "Цвет баннера:",
- "admin.general.policy.bannerTextColorTitle": "Цвет текста баннера:",
- "admin.general.policy.bannerTextDesc": "Text that will appear in the announcement banner.",
- "admin.general.policy.bannerTextTitle": "Текст баннера:",
- "admin.general.policy.enableBannerDesc": "Включить баннер с объявлением для всех команд.",
- "admin.general.policy.enableBannerTitle": "Enable Announcement Banner:",
- "admin.general.policy.permissionsAdmin": "Группа и Администраторы системы",
- "admin.general.policy.permissionsAll": "Все участники команды",
- "admin.general.policy.permissionsAllChannel": "Все участники канала",
- "admin.general.policy.permissionsChannelAdmin": "Администраторы системы, каналов и команд",
- "admin.general.policy.permissionsDeletePostAdmin": "Администраторы команд и администраторы системы",
- "admin.general.policy.permissionsDeletePostAll": "Авторы сообщений могут удалять свои сообщения и администраторы могут удалять любые сообщения",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Администраторы системы",
- "admin.general.policy.permissionsSystemAdmin": "Администраторы Системы",
- "admin.general.policy.restrictPostDeleteDescription": "Установка правил, кто имеет право удалять сообщения.",
- "admin.general.policy.restrictPostDeleteTitle": "Каким пользователям позволять удалять сообщения:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Установите политики того, кто может создавать закрытые каналы.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Включить возможность создания личных каналов для:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "командная строка",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Установите кто может удалять личные каналы. Удалённые каналы можно восстановить из базы данных с помощью {commandLineToolLink}.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Включить возможность удаления личных каналов для:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Установите кто может добавлять и удалять участников из личных каналов.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Разрешить управление участниками личных каналов для:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Задайте политики того, кто может добавлять и изменять заголовок или цель приватного канала. ",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Включить возможность изменять названия личных каналов для:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Установите политики того, кто может создавать публичные каналы.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Включить возможность создания публичных каналов для:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "командная строка",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Установите политики того, кто может удалять публичные каналы. Удалённые каналы могут быть восстановлены из базы данных с помощью {commandLineToolLink}.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Включить возможность удаления публичных каналов для:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Задайте политики того, кто может создавать, удалять, переименовывать общедоступные каналы и устанавливать для них заголовок или цель.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Включить возможность изменять названия публичных каналов для:",
- "admin.general.policy.teamInviteDescription": "Задайте политики того, кто сможет приглашать других в команду, используя опции главного меню Пригласить нового участника для приглашения новых пользователей по электронной почте, или Получить ссылку для приглашения в команду. Если для того, чтобы поделиться ссылкой, была использована опция Получить ссылку для приглашения в команду, вы можете сделать устаревшим код приглашения в Настройки команды > Код приглашения после того, как нужные пользователи присоединятся к команде.",
- "admin.general.policy.teamInviteTitle": "Включить отправку приглашения в команды из:",
- "admin.general.privacy": "Конфиденциальность",
- "admin.general.usersAndTeams": "Пользователи и команды",
- "admin.gitab.clientSecretDescription": "Получите это значение с помощью вышеуказанных инструкций для входа в GitLab.",
- "admin.gitlab.EnableHtmlDesc": "
Войдите в свою учетную запись на GitLab и пройдите в Настройки профиля -> Приложения.
Введите перенаправляющие URI-адреса \"/login/gitlab/complete\" (пример: http://localhost:8065/login/gitlab/complete) и \"/signup/gitlab/complete\".
Затем используйте поля \"Секретный ключ приложения\" и \"Идентификатор приложения\" из GitLab для заполнения опций ниже.
Заполните URL-адреса конечных точек ниже.
",
- "admin.gitlab.authDescription": "Введите https:///oauth/authorize (например https://example.com:3000/oauth/authorize). Убедитесь, используете ли вы HTTP или HTTPS в своем URL-адресе в соответствии с настройками своего сервера.",
- "admin.gitlab.authExample": "Например: \"https:///oauth/authorize\"",
- "admin.gitlab.authTitle": "Конечная точка авторизации:",
- "admin.gitlab.clientIdDescription": "Получите это значение с помощью вышеуказанных инструкций для входа в GitLab.",
- "admin.gitlab.clientIdExample": "Например: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientIdTitle": "ID приложения:",
- "admin.gitlab.clientSecretExample": "Например: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.gitlab.clientSecretTitle": "Секретный ключ приложения:",
- "admin.gitlab.enableDescription": "Когда включено, Mattermost позволит создавать команды и входить при помощи GitLab OAuth.",
- "admin.gitlab.enableTitle": "Включить аутентификацию через GitLab:",
- "admin.gitlab.settingsTitle": "Параметры GitLab",
- "admin.gitlab.tokenDescription": "Введите https:///oauth/token. Убедитесь, используете ли вы HTTP или HTTPS в своем URL-адресе в соответствии с настройками своего сервера.",
- "admin.gitlab.tokenExample": "Например: \"https:///oauth/token\"",
- "admin.gitlab.tokenTitle": "Адрес выдачи токена:",
- "admin.gitlab.userDescription": "Введите https:///api/v3/user. Убедитесь, используете ли вы HTTP или HTTPS в своем URL-адресе в соответствии с настройками своего сервера.",
- "admin.gitlab.userExample": "Например: \"https:///api/v3/user\"",
- "admin.gitlab.userTitle": "Конечная точка пользовательского API:",
- "admin.google.EnableHtmlDesc": "
Перейдите к https://console.developers.google.com, нажмите Учетные данные в боковой панели слева и введите \"Mattermost - имя-вашей-компании\" в качестве Названия проекта, затем нажмите Создать.
Нажмите на заголовок окно запроса доступа OAuth и введите \"Mattermost\" в качестве Названия продукта, которое видят пользователи, затем нажмите Сохранить.
Под заголовком Учетные данные нажмите Создать учетные данные, выберите Идентификатор клиента OAuth и выберите Веб приложение.
Под Ограничения и Разрешенные URI перенаправления введите url-вашего-mattermost/signup/google/complete (пример: http://localhost:8065/signup/google/complete). Нажмите Создать.
Вставьте идентификатор клиента и секрет клиента в поля ниже, затем нажмите Сохранить.
Наконец, перейдите в Google+ API и нажмите Включить. Может потребоваться несколько минут для передачи через системы Google.
",
- "admin.google.authTitle": "Конечная точка авторизации:",
- "admin.google.clientIdDescription": "Идентификатор клиента, полученный при регистрации вашего приложения в Google.",
- "admin.google.clientIdExample": "Например: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "ID клиента:",
- "admin.google.clientSecretDescription": "Секрет клиента, полученный при регистрации вашего приложения в Google.",
- "admin.google.clientSecretExample": "Например: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "Клиентский ключ",
- "admin.google.tokenTitle": "Конечная точка токена:",
- "admin.google.userTitle": "Конечная точка API пользователя:",
- "admin.image.amazonS3BucketDescription": "Имя вашей S3 корзины в AWS.",
- "admin.image.amazonS3BucketExample": "Например: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Корзина:",
- "admin.image.amazonS3EndpointDescription": "Адрес вашего совместимого хранилища S3 . По умолчанию `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Например: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Конечная точка Amazon S3:",
- "admin.image.amazonS3IdDescription": "Получите эти учетные данные от своего администратора Amazon EC2.",
- "admin.image.amazonS3IdExample": "Например: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "ID ключа доступа Amazon S3:",
- "admin.image.amazonS3RegionDescription": "AWS регион, который вы выбрали для создания S3 корзины.",
- "admin.image.amazonS3RegionExample": "Например: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Регион Amazon S3:",
- "admin.image.amazonS3SSEDescription": "When true, encrypt files in Amazon S3 using server-side encryption with Amazon S3-managed keys. See documentation to learn more.",
- "admin.image.amazonS3SSEExample": "Пример: \"Роль\"",
- "admin.image.amazonS3SSETitle": "Enable Server-Side Encryption for Amazon S3:",
- "admin.image.amazonS3SSLDescription": "Если отключено, будет позволено подключаться к Amazon S3 по незащищённому соединению. По умолчанию используются только защищённые соединения.",
- "admin.image.amazonS3SSLExample": "Пример: \"true\"",
- "admin.image.amazonS3SSLTitle": "Включить защищённые соединения с Amazon S3:",
- "admin.image.amazonS3SecretDescription": "Получите эти учетные данные от своего администратора Amazon EC2.",
- "admin.image.amazonS3SecretExample": "Например: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 секретный ключ доступа:",
- "admin.image.localDescription": "Директория в которую будут размещаться изображения и файлы. Если не указано, по умолчанию ./data/.",
- "admin.image.localExample": "Например: \"./data/\"",
- "admin.image.localTitle": "Каталог хранения:",
- "admin.image.maxFileSizeDescription": "Максимальный размер файла для отправки в сообщениях. Внимание: Проверьте, что памяти сервера достаточно для этой настройки. Файлы больших размеров увеличивают риск сбоя сервера и неудачных загрузок файлов из-за проблем в подключении к сети.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "Максимальный размер файла:",
- "admin.image.publicLinkDescription": "32-символьная соль для подписи ссылок на публичные изображения. Случайно генерируется во время инсталляции. Нажмите \"Создать новую\" для генерации новой соли.",
- "admin.image.publicLinkExample": "Например: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Соль для публичных ссылок:",
- "admin.image.shareDescription": "Разрешить пользователям обмениваться общедоступными ссылками на файлы и изображения.",
- "admin.image.shareTitle": "Включить публичные ссылки на файлы: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Система хранения, в которой сохраняются приложенные файлы и изображения.
Выбор \"Amazon S3\" включает поля для ввода ваших учетных данных и деталей хранилища Amazon.
Выбор \"Локальной файловой системы\" включает поля для указания локального файлового каталога.",
- "admin.image.storeLocal": "Локальная файловая система",
- "admin.image.storeTitle": "Хранилище файлов:",
- "admin.integrations.custom": "Пользовательские интеграции",
- "admin.integrations.external": "Внешние службы",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "База поиска (baseDN) — ветка DIT, с которой Mattermost должен начать поиск по пользователям в дереве AD/LDAP.",
- "admin.ldap.baseEx": "Например: \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "Пароль для пользователя в \"Пользователь для связывания\".",
- "admin.ldap.bindPwdTitle": "Пароль для связывания",
- "admin.ldap.bindUserDesc": "Имя пользователя, используемое для выполнения поиска в AD/LDAP. Обычно, это должна быть учетная запись, созданная специально для работы с Mattermost. Она должна иметь права, ограниченные чтением части дерева AD/LDAP, указанной в поле BaseDN.",
- "admin.ldap.bindUserTitle": "Пользователь для связывания:",
- "admin.ldap.emailAttrDesc": "Атрибут AD/LDAP, значение которого будет использоваться для заполнения адресов электронной почты пользователей Mattermost.",
- "admin.ldap.emailAttrEx": "Например: \"mail\" or \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "Атрибут эл.почта:",
- "admin.ldap.enableDesc": "Когда активировано, то Mattermost позволяет входить используя AD/LDAP",
- "admin.ldap.enableTitle": "Включить вход с помощью AD/LDAP:",
- "admin.ldap.firstnameAttrDesc": "(Опционально) Этот атрибут для AD/LDAP сервера который будет использоваться для заполнения имени пользователя в Mattermost. Если он установлен, пользователи не смогут редактировать свои имена т.к. они будут синхронизироваться с LDAP сервером. Если атрибут не заполнен, пользователи смогут изменить их собственные имена в Настройках пользователя.",
- "admin.ldap.firstnameAttrEx": "Например: \"givenName\"",
- "admin.ldap.firstnameAttrTitle": "Атрибут имени",
- "admin.ldap.idAttrDesc": "Атрибут AD/LDAP, который будет использоваться в качестве уникального идентификатора в Mattermost. Это должен быть атрибут AD/LDAP, значение которого не будет меняться, например имя пользователя или его идентификатор. Если значение этого атрибута изменится, в Mattermost будет создана новая учетная запись, не имеющая к старой никакого отношения. Значение этого атрибута используется в поле \"Имя пользователя AD/LDAP\" на странице входа в Mattermost. В большинстве случаев, это тот же атрибут, что используется в качестве \"Атрибута имени пользователя\" выше. Если ваша команда обычно использует учетные записи в стиле domain\\\\username для входа в другие сервисы с использованием AD/LDAP, вы можете указать domain\\\\username и здесь для сохранения единообразия.",
- "admin.ldap.idAttrEx": "Например: \"sAMAccountName\"",
- "admin.ldap.idAttrTitle": "ID атрибут:",
- "admin.ldap.lastnameAttrDesc": "(Опционально) Этот атрибут для AD/LDAP сервера который будет использоваться для заполнения фамилии пользователя в Mattermost. Если он установлен, пользователи не смогут редактировать свои фамилии т.к. они будут синхронизироваться с LDAP сервером. Если атрибут не заполнен, пользователи смогут изменить их собственные фамилии в Настройках пользователя.",
- "admin.ldap.lastnameAttrEx": "Например: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Атрибут фамилии:",
- "admin.ldap.ldap_test_button": "Тест AD/LDAP",
- "admin.ldap.loginNameDesc": "Подсказка, которая появляется в поле логина на странице входа. По умолчанию \"Логин AD/LDAP\".",
- "admin.ldap.loginNameEx": "Например: \"Имя пользователя AD/LDAP\"",
- "admin.ldap.loginNameTitle": "Login Field Name:",
- "admin.ldap.maxPageSizeEx": "Например: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Максимальное количество пользователей, которое Mattermost может запросить с AD/LDAP сервера. 0 отключает ограничение.",
- "admin.ldap.maxPageSizeTitle": "Максимальный размер страницы:",
- "admin.ldap.nicknameAttrDesc": "(Опционально) Этот атрибут для AD/LDAP сервера который будет использоваться для заполнения прозвища пользователя в Mattermost. Если он установлен, пользователи не смогут редактировать свои прозвища т.к. они будут синхронизироваться с LDAP сервером. Если атрибут не заполнен, пользователи смогут изменить их собственные прозвища в Настройках пользователя.",
- "admin.ldap.nicknameAttrEx": "Например: \"nickname\"",
- "admin.ldap.nicknameAttrTitle": "Атрибут Никнейм",
- "admin.ldap.noLicense": "
Примечание:
Поддержка AD/LDAP является расширенным функционалом. Ваша текущая лицензия не поддерживает AD/LDAP. Нажмите здесь для получения информации и цены расширенной лицензии.
",
- "admin.ldap.portDesc": "Порт, который будет использоваться Mattermost для подключения к серверу AD/LDAP. Значение по умолчанию 389.",
- "admin.ldap.portEx": "Например: \"389\"",
- "admin.ldap.portTitle": "Порт AD/LDAP:",
- "admin.ldap.positionAttrDesc": "(Необязательно) Атрибут на сервере AD/LDAP, который будет использоваться для заполнения поля позиции в Mattermost.",
- "admin.ldap.positionAttrEx": "Пример: \"заголовок\"",
- "admin.ldap.positionAttrTitle": "Расположение атрибута:",
- "admin.ldap.queryDesc": "Значение тайм-аута для запросов к серверу AD/LDAP. Увеличьте, если Вы получаете ошибки при подключении, вызванные медленным сервером AD/LDAP.",
- "admin.ldap.queryEx": "Например: \"60\"",
- "admin.ldap.queryTitle": "Таймаут запроса (секунды):",
- "admin.ldap.serverDesc": "Домен или IP-адрес сервера AD/LDAP.",
- "admin.ldap.serverEx": "Например: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "Сервер AD/LDAP:",
- "admin.ldap.skipCertificateVerification": "Пропустить проверку сертификата:",
- "admin.ldap.skipCertificateVerificationDesc": "Пропустить этап верификации сертификата для TLS или STARTTLS соединений. Не рекомендовано для production среды, где TLS обязателен. Только для тестирования.",
- "admin.ldap.syncFailure": "Ошибка синхронизации: {error}",
- "admin.ldap.syncIntervalHelpText": "Синхронизация обновления пользовательской информации из AD/LDAP с Mattermost. Например, при изменении имени пользователя на сервере AD/LDAP, во время синхронизации произойдет обновление данных в Mattermost. Учетные записи, которые будут удалены или заблокированы на сервере AD/LDAP имеют свои учетные записи Mattermost и они будут переведены в состояние \"Неактивный\", пользовательская сессия при этом будет удалена. Mattermost выполняет синхронизацию через определенный интервал. Например, если введено 60, то Mattermost синхронизируется данные через каждые 60 минут.",
- "admin.ldap.syncIntervalTitle": "Интервал синхронизации (в минутах):",
- "admin.ldap.syncNowHelpText": "Инициировать синхронизацию AD/LDAP немедленно.",
- "admin.ldap.sync_button": "Синхронизировать с AD/LDAP сейчас",
- "admin.ldap.testFailure": "Ошибка теста AD/LDAP: {error}",
- "admin.ldap.testHelpText": "Тесты, если сервер Mattermost не сможет подключиться к указанному серверу AD/LDAP. См лог-файл для получения более детальных сообщений об ошибках.",
- "admin.ldap.testSuccess": "Тестирование AD/LDAP успешно завершено",
- "admin.ldap.uernameAttrDesc": "Атрибут на сервере AD/LDAP, который будет использоваться для заполнения имени пользователя в Mattermost. Он может быть таким же, как атрибут идентификатор.",
- "admin.ldap.userFilterDisc": "(Необязательно) Введите фильтр AD/LDAP, используемый при поиске объектов пользователь. Только пользователи, выбранные запросом будут иметь возможность получить доступ к Mattermost. Для Active Directory, запрос для отбора только активных пользователей такой: (&(objectCategory=Person)(!UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Например: \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Фильтр пользователей:",
- "admin.ldap.usernameAttrEx": "Например: \"sAMAccountName\"",
- "admin.ldap.usernameAttrTitle": "Атрибут Имя пользователя:",
- "admin.license.choose": "Выберите файл",
- "admin.license.chooseFile": "Выберите файл",
- "admin.license.edition": "Редакция:",
- "admin.license.key": "Лицензионный ключ:",
- "admin.license.keyRemove": "Удалить Enterprise Лицензию и Откатить Сервер",
- "admin.license.noFile": "Файл не загружен",
- "admin.license.removing": "Удаление лицензии...",
- "admin.license.title": "Редакция и лицензия",
- "admin.license.type": "Лицензия: ",
- "admin.license.upload": "Загрузить",
- "admin.license.uploadDesc": "Загрузите лицензионный ключ для Mattermost Enterprise Edition для получения расширенных возможностей. Посетите сайт, чтобы узнать о преимуществах Enterprise Edition или заказать ключ.",
- "admin.license.uploading": "Загрузка лицензии...",
- "admin.log.consoleDescription": "Как правило, значение false в продакшене. Разработчики могут установить в этом поле значение true для вывода сообщений журнала на консоль в зависимости от параметров уровня логирования в консоли. Если значение true, сервер пишет сообщения в стандартный выходной поток (stdout).",
- "admin.log.consoleTitle": "Исходящие журналы в консоль:",
- "admin.log.enableDiagnostics": "Включение диагностики и отчетов об ошибках:",
- "admin.log.enableDiagnosticsDescription": "Включите функцию отправки отчётов об ошибках и диагностической информации для того, чтобы мы смогли улучшить Mattermost. Прочтите нашу политику безопасности.",
- "admin.log.enableWebhookDebugging": "Включить отладку Webhook-ов:",
- "admin.log.enableWebhookDebuggingDescription": "Вы можете установить это значение в false, чтобы отключить отладочное журналирование тел всех запросов входящие вебхуки.",
- "admin.log.fileDescription": "Обычно включается в priduction. Если включено, события журнала записываются в файл mattermost.log из каталога указанной в опции Каталог с файлом Журнала. Файлы журнала обновляются по достижении 10000 строк и хранятся в том же каталоге, именованные по дате и порядковому номеру. Пример, mattermost.2017-11-05.001",
- "admin.log.fileLevelDescription": "Эта настройка определяет уровень детализации, на котором события записываются в лог-файл. ERROR: Записываются только сообщения об ошибках. INFO: Записываются сообщения об ошибках и информация о процессе запуска и инициализации. DEBUG: Высокодетализированный вывод для отладки разработчиками при решении проблем.",
- "admin.log.fileLevelTitle": "Файловый уровень логирования:",
- "admin.log.fileTitle": "Исходящие журнали в файл: ",
- "admin.log.formatDateLong": "Дата (2006/01/02)",
- "admin.log.formatDateShort": "Дата (01/02/06)",
- "admin.log.formatDescription": "Формат сообщений в логе. Если поле пустое, будет выбран формат \"[%D %T] [%L] %M\", где:",
- "admin.log.formatLevel": "Уровень (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "Сообщение",
- "admin.log.formatPlaceholder": "Введите ваш формат файла",
- "admin.log.formatSource": "Источник",
- "admin.log.formatTime": "Время (15:04:05 MST)",
- "admin.log.formatTitle": "Формат файла:",
- "admin.log.levelDescription": "Эта настройка определяет уровень детализации, на котором события записываются в консоль. ERROR: Записываются только сообщения об ошибках. INFO: Записываются сообщения об ошибках и информация о процессе запуска и инициализации. DEBUG: Высокодетализированный вывод для отладки разработчиками при решении проблем.",
- "admin.log.levelTitle": "Уровень логирования в консоли:",
- "admin.log.locationDescription": "The location of the log files. If blank, they are stored in the ./logs directory. The path that you set must exist and Mattermost must have write permissions in it.",
- "admin.log.locationPlaceholder": "Укажите расположение файла",
- "admin.log.locationTitle": "Каталог с файлом журнала:",
- "admin.log.logSettings": "Настройки журнала",
- "admin.logs.bannerDesc": "To look up users by User ID or Token ID, go to Reporting > Users and paste the ID into the search filter.",
- "admin.logs.reload": "Перезагрузить",
- "admin.logs.title": "Серверные логи",
- "admin.manage_roles.additionalRoles": "Select additional permissions for the account. Read more about roles and permissions.",
- "admin.manage_roles.allowUserAccessTokens": "Allow this account to generate personal access tokens.",
- "admin.manage_roles.cancel": "Отмена",
- "admin.manage_roles.manageRolesTitle": "Manage Roles",
- "admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
- "admin.manage_roles.postAllPublicRoleTitle": "post:channels",
- "admin.manage_roles.postAllRole": "Access to post to all Mattermost channels including direct messages.",
- "admin.manage_roles.postAllRoleTitle": "post:all",
- "admin.manage_roles.save": "Сохранить",
- "admin.manage_roles.saveError": "Unable to save roles.",
- "admin.manage_roles.systemAdmin": "Администратор системы",
- "admin.manage_roles.systemMember": "Участник",
- "admin.manage_tokens.manageTokensTitle": "Manage Personal Access Tokens",
- "admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to interact with this Mattermost server. Learn more about personal access tokens.",
- "admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
- "admin.metrics.enableDescription": "Если включено, в Mattermost будет включен сбор данных о производительности и профилирование. Дополнительную информацию по конфигурации мониторинга производительности смотрите в документации.",
- "admin.metrics.enableTitle": "Включить мониторинг производительности",
- "admin.metrics.listenAddressDesc": "Адрес, прослушиваемый сервером для предоставления метрик производительности",
- "admin.metrics.listenAddressEx": "Например: \":8065\"",
- "admin.metrics.listenAddressTitle": "Прослушиваемый адрес:",
- "admin.mfa.bannerDesc": "Multi-factor authentication is available for accounts with AD/LDAP or email login. If other login methods are used, MFA should be configured with the authentication provider.",
- "admin.mfa.cluster": "Высокий",
- "admin.mfa.title": "Включить многофакторную аутентификацию",
- "admin.nav.administratorsGuide": "Руководство администратора",
- "admin.nav.commercialSupport": "Коммерческая поддержка",
- "admin.nav.help": "Помощь",
- "admin.nav.logout": "Выйти",
- "admin.nav.report": "Сообщить об ошибке",
- "admin.nav.switch": "Выбор команды",
- "admin.nav.troubleshootingForum": "Форум поддержки",
- "admin.notifications.email": "Эл. почта",
- "admin.notifications.push": "Мобильные оповещения",
- "admin.notifications.title": "Настройки уведомлений",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "Запретить вход через OAuth 2.0 поставщика",
- "admin.oauth.office365": "Office 365 (Бета)",
- "admin.oauth.providerDescription": "Если включено, Mattermost может выступать в качестве провайдера OAuth 2.0, позволяя Mattermost предоставлять API авторизации для внешних приложений. Смотрите документацию для подробностей.",
- "admin.oauth.providerTitle": "Включить поставщика услуг OAuth 2.0:",
- "admin.oauth.select": "Выбрать OAuth 2.0 провайдера:",
- "admin.office365.EnableHtmlDesc": "
Войдите в свою учетную запись Microsoft или Office 365. Убедитесь, что эта учетная запись принадлежит тому же арендатору, через которого вы хотели бы позволить пользователям вход.
Перейдите к https://apps.dev.microsoft.com, нажмите Перейти к списку приложений > Добавить приложение и используйте \"Mattermost - имя-вашей-компании\" в качестве Названия приложения.
Под Секретами приложения нажмите Создать новый пароль и вставьте его в поле Секретный пароль приложения ниже.
Под Платформами нажмите Добавление платформы, выберите Веб и введите url-вашего-mattermost/signup/office365/complete (пример: http://localhost:8065/signup/office365/complete) под URI перенаправления. Также снимите отметку с Разрешить неявный поток.
Наконец, нажмите Сохранить, а затем вставьте Код приложения ниже.
",
- "admin.office365.authTitle": "Конечная точка авторизации:",
- "admin.office365.clientIdDescription": "Идентификатор приложения/клиента, полученный при регистрации вашего приложения в Microsoft.",
- "admin.office365.clientIdExample": "Например: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "Идентификатор приложения:",
- "admin.office365.clientSecretDescription": "Секретный пароль приложения, созданный вами при регистрации вашего приложения в Microsoft.",
- "admin.office365.clientSecretExample": "Например: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Пароль приложения:",
- "admin.office365.tokenTitle": "Конечная точка токена:",
- "admin.office365.userTitle": "Конечная точка API пользователя:",
- "admin.password.lowercase": "Хотя бы одна строчная буква",
- "admin.password.minimumLength": "Минимальная длина пароля:",
- "admin.password.minimumLengthDescription": "Минимальное количество символов требуемых для пароля. Целое число от {min} до {max}.",
- "admin.password.minimumLengthExample": "Например: \"5\"",
- "admin.password.number": "Как минимум одно число",
- "admin.password.preview": "Ошибка предварительного просмотра",
- "admin.password.requirements": "Требования к паролю:",
- "admin.password.requirementsDescription": "Виды символов требуемых для пароля.",
- "admin.password.symbol": "Хотя бы один символ (\"~!@#$%^&*()\")",
- "admin.password.uppercase": "Хотя бы одна заглавная буква",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "channelurl",
- "admin.plugins.jira.enabledDescription": "When true, you can configure JIRA webhooks to post message in Mattermost. To help combat phishing attacks, all posts are labelled by a BOT tag.",
- "admin.plugins.jira.enabledLabel": "Enable JIRA:",
- "admin.plugins.jira.secretDescription": "This secret is used to authenticate to Mattermost.",
- "admin.plugins.jira.secretLabel": "Секрет",
- "admin.plugins.jira.secretParamPlaceholder": "Секрет",
- "admin.plugins.jira.secretRegenerateDescription": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing JIRA integrations.",
- "admin.plugins.jira.setupDescription": "Use this webhook URL to set up the JIRA integration. See {webhookDocsLink} to learn more.",
- "admin.plugins.jira.teamParamPlaceholder": "teamurl",
- "admin.plugins.jira.userDescription": "Select the username that this integration is attached to.",
- "admin.plugins.jira.userLabel": "Пользователи",
- "admin.plugins.jira.webhookDocsLink": "документация",
- "admin.privacy.showEmailDescription": "Отключите, чтобы скрыть email адреса пользователей от всех, кроме системных администраторов.",
- "admin.privacy.showEmailTitle": "Показать Email: ",
- "admin.privacy.showFullNameDescription": "Когда выключено, имена и фамилии участников видны только Системному Администратору. Вместо имени и фамилии отображается Имя пользователя.",
- "admin.privacy.showFullNameTitle": "Показать полное имя: ",
- "admin.purge.button": "Очистить все кэши",
- "admin.purge.loading": " Загрузка…",
- "admin.purge.purgeDescription": "Это действие приведёт к очистке всех кэшей для таких вещей, как сессии, аккаунты, канала и т. д. Если Mattermost развёрнут в режиме высокой доступности, это приведёт к очистке кэшей на всех серверах в кластере.Очистка кэшей может отрицательно повлиять на производительность.",
- "admin.purge.purgeFail": "Очистка не удалась: {error}",
- "admin.rate.enableLimiterDescription": "Когда true, API регулируются по уровням, указанным ниже.",
- "admin.rate.enableLimiterTitle": "Включить ограничение скорости:",
- "admin.rate.httpHeaderDescription": "When filled in, vary rate limiting by HTTP header field specified (e.g. when configuring NGINX set to \"X-Real-IP\", when configuring AmazonELB set to \"X-Forwarded-For\").",
- "admin.rate.httpHeaderExample": "Например: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "Изменять ограничение скорости по HTTP заголовку",
- "admin.rate.maxBurst": "Максимальное превышение размера пакета",
- "admin.rate.maxBurstDescription": "Ограничение максимального количества запросов в секунду.",
- "admin.rate.maxBurstExample": "Например: \"100\"",
- "admin.rate.memoryDescription": "Максимальное количество подключенных к системе пользовательских сессий, определенное параметрами \"Изменять ограничение скорости по удаленному адресу\" и \"Изменять ограничение скорости по HTTP заголовку\" ниже.",
- "admin.rate.memoryExample": "Например: \"10000\"",
- "admin.rate.memoryTitle": "Размер хранилища памяти:",
- "admin.rate.noteDescription": "Изменения в этой секции потребуют перезагрузки сервера.",
- "admin.rate.noteTitle": "Заметка:",
- "admin.rate.queriesDescription": "Ограничивать API при таком количество запросов в секунду.",
- "admin.rate.queriesExample": "Например: \"10\"",
- "admin.rate.queriesTitle": "Максимальное количество запросов в секунду:",
- "admin.rate.remoteDescription": "Когда true, API ограничения скорости доступно по IP адресу.",
- "admin.rate.remoteTitle": "Изменять ограничение скорости по удаленному адресу:",
- "admin.rate.title": "Настройки ограничения скорости",
- "admin.recycle.button": "Обновить подключения баз данных",
- "admin.recycle.loading": " Обработка...",
- "admin.recycle.recycleDescription": "Варианты развертывания с использованием нескольких баз данных могут переключаться с одной основной базы данных на другую без перезапуска сервера Mattermost путем обновления файла \"config.json\" для новой требуемой конфигурации и использования функции {reloadConfiguration} для загрузки новых настроек во время работы сервера. После этого, администратор должен использовать выполнить функцию {featureName} для обновления соединения с базой данных на основе новых настроек.",
- "admin.recycle.recycleDescription.featureName": "Обновить подключения к базе данных",
- "admin.recycle.recycleDescription.reloadConfiguration": "Конфигурация > Перезагрузить конфигурацию с диска",
- "admin.recycle.reloadFail": "Обновление не удалось: {error}",
- "admin.regenerate": "Создать новую",
- "admin.reload.button": "Перезагрузить конфигурацию с диска",
- "admin.reload.loading": " Загрузка…",
- "admin.reload.reloadDescription": "Варианты развертывания с использованием нескольких баз данных могут переключаться с одной основной базы данных на другую без перезапуска сервера Mattermost путем обновления файла \"config.json\" для новой требуемой конфигурации и использования функции {featureName} для загрузки новых настроек во время работы сервера. После этого, администратор должен использовать выполнить функцию {recycleDatabaseConnections} для обновления соединения с базой данных на основе новых настроек.",
- "admin.reload.reloadDescription.featureName": "Перезагрузить конфигурацию с диска",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "База данных > Обновить подключения к базе данных",
- "admin.reload.reloadFail": "Неудачная перезагрузка: {error}",
- "admin.requestButton.loading": " Загрузка…",
- "admin.requestButton.requestFailure": "Сбой теста: {error}",
- "admin.requestButton.requestSuccess": "Тестирование успешно завершено",
- "admin.reset_password.close": "Закрыть",
- "admin.reset_password.newPassword": "Новый пароль",
- "admin.reset_password.select": "Выбор",
- "admin.reset_password.submit": "Пожалуйста введите как минимум {chars} символов.",
- "admin.reset_password.titleReset": "Сброс пароля",
- "admin.reset_password.titleSwitch": "Переключить аккаунт на E-Mail/Пароль",
- "admin.saml.assertionConsumerServiceURLDesc": "Введите https:///login/sso/saml. Убедитесь, используете ли вы HTTP или HTTPS в своем URL-адресе в соответствии с настройками своего сервера. Это поле также известно как URL сервиса обработки утверждений.",
- "admin.saml.assertionConsumerServiceURLEx": "Например: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Адрес для входа через поставщика услуг:",
- "admin.saml.bannerDesc": "Атрибуты пользователя на SAML сервере, включая деактивацию или удаление пользователя, обновляются в Mattermost во время пользовательского входа в систему. Подробности можно посмотреть тут: https://docs.mattermost.com/deployment/sso-saml.html",
- "admin.saml.emailAttrDesc": "Атрибута LDAP сервера, который будет использоваться для заполнения фамилия пользователями в Mattermost.",
- "admin.saml.emailAttrEx": "Например: \"Email\" или \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "Атрибут эл.почта:",
- "admin.saml.enableDescription": "Если да, то Mattermost позволяет входить с помощью SAML. Пожалуйста, посмотрите документацию, чтобы узнать больше о настройке SAML для Mattermost.",
- "admin.saml.enableTitle": "Включить вход через SAML:",
- "admin.saml.encryptDescription": "When false, Mattermost will not decrypt SAML Assertions encrypted with your Service Provider Public Certificate. Not recommended for production environments. For testing only.",
- "admin.saml.encryptTitle": "Включить шифрование:",
- "admin.saml.firstnameAttrDesc": "(Необязательно) Атрибут в SAML, которые будут использоваться для заполнения имени пользователей в Mattermost.",
- "admin.saml.firstnameAttrEx": "Например: \"FirstName\"",
- "admin.saml.firstnameAttrTitle": "Атрибут имени:",
- "admin.saml.idpCertificateFileDesc": "Cертификат публичной аутентификации, выданный вашим Удостоверяющим Центром.",
- "admin.saml.idpCertificateFileRemoveDesc": "Удалить сертификат публичной аутентификации, выданный вашим Удостоверяющим Центром.",
- "admin.saml.idpCertificateFileTitle": "Публичный сертификат Удостоверяющего Центра:",
- "admin.saml.idpDescriptorUrlDesc": "URL-адрес издателя поставщика учетных записей, который вы используете для запросов SAML.",
- "admin.saml.idpDescriptorUrlEx": "Например: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "URL-адрес издателя поставщика учетных записей:",
- "admin.saml.idpUrlDesc": "URL-адрес, на который Mattermost отправляет SAML-запрос для запуска последовательности входа.",
- "admin.saml.idpUrlEx": "Например: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO URL:",
- "admin.saml.lastnameAttrDesc": "(Необязательно) Атрибут в SAML, который будет использоваться для заполнения фамилии пользователей в Mattermost.",
- "admin.saml.lastnameAttrEx": "Например: \"LastName\"",
- "admin.saml.lastnameAttrTitle": "Атрибут Фамилия:",
- "admin.saml.localeAttrDesc": "(Необязательно) Атрибут в SAML, который будет использоваться для заполнения языка пользователей в Mattermost.",
- "admin.saml.localeAttrEx": "Например: \"Locale\" или \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Атрибут Предпочитаемый язык:",
- "admin.saml.loginButtonTextDesc": "(Необязательно) Текст, который отображается на кнопке входа в систему на странице входа. По умолчанию \"Используя SAML\".",
- "admin.saml.loginButtonTextEx": "Например: \"With OKTA\"",
- "admin.saml.loginButtonTextTitle": "Текст кнопки входа:",
- "admin.saml.nicknameAttrDesc": "(Необязательно) Атрибут в SAML, который будет использоваться для заполнения псевдонима (nickname) пользователей в Mattermost.",
- "admin.saml.nicknameAttrEx": "Например: \"Nickname\"",
- "admin.saml.nicknameAttrTitle": "Атрибут Никнейм:",
- "admin.saml.positionAttrDesc": "(Необязательно) Атрибут в SAML, который будет использоваться для заполнения позиции пользователей в Mattermost.",
- "admin.saml.positionAttrEx": "Пример: \"Роль\"",
- "admin.saml.positionAttrTitle": "Расположение атрибута:",
- "admin.saml.privateKeyFileFileDesc": "Закрытый ключ используется для расшифровки SAML данных от провайдера идентификации.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Удалить секретный ключ, используемый для расшифровки SAML данных от провайдера идентификации.",
- "admin.saml.privateKeyFileTitle": "Закрытый ключ поставщика услуг:",
- "admin.saml.publicCertificateFileDesc": "Сертификат, используемый для подписывания SAML-запроса к поставщику учетных записей при входе, инициированном поставщиком услуги, когда этим поставщиком является Mattermost.",
- "admin.saml.publicCertificateFileRemoveDesc": "Удаление сертификата, используемого для подписывания SAML-запроса к поставщику учетных записей при входе, инициированном поставщиком услуги, когда этим поставщиком является Mattermost.",
- "admin.saml.publicCertificateFileTitle": "Публичный сертификат поставщика услуг:",
- "admin.saml.remove.idp_certificate": "Удалить сертификат провайдера идентификации (IdP)",
- "admin.saml.remove.privKey": "Удалить приватный ключ поставщика услуг",
- "admin.saml.remove.sp_certificate": "Удалить сертификат поставщика услуг",
- "admin.saml.removing.certificate": "Удаление сертификата...",
- "admin.saml.removing.privKey": "Удаление приватного ключа...",
- "admin.saml.uploading.certificate": "Загрузка сертификата...",
- "admin.saml.uploading.privateKey": "Загрузка приватного ключа...",
- "admin.saml.usernameAttrDesc": "Атрибут в SAML, который будет использоваться для заполнения поля имя пользователя в Mattermost.",
- "admin.saml.usernameAttrEx": "Например: \"Username\"",
- "admin.saml.usernameAttrTitle": "Атрибут Имя пользователя:",
- "admin.saml.verifyDescription": "When false, Mattermost will not verify that the signature sent from a SAML Response matches the Service Provider Login URL. Not recommended for production environments. For testing only.",
- "admin.saml.verifyTitle": "Проверка подписи:",
- "admin.save": "Сохранить",
- "admin.saving": "Сохранение конфигурации...",
- "admin.security.connection": "Подключения",
- "admin.security.inviteSalt.disabled": "Соль не может быть изменена, пока выключена отправка электронных сообщений.",
- "admin.security.login": "Логин",
- "admin.security.password": "Пароль",
- "admin.security.passwordResetSalt.disabled": "Соль не может быть изменена, пока отключена отправка email сообщений.",
- "admin.security.public_links": "Публичные ссылки",
- "admin.security.requireEmailVerification.disabled": "Невозможно включить верификацию email адреса, пока выключена отправка email сообщений.",
- "admin.security.session": "Сеансы",
- "admin.security.signup": "Регистрация",
- "admin.select_team.close": "Закрыть",
- "admin.select_team.select": "Выбор",
- "admin.select_team.selectTeam": "Выберите команду",
- "admin.service.attemptDescription": "Количество разрешенных попыток входа до блокировки пользователя и необходимости сбросить пароль через электронную почту.",
- "admin.service.attemptExample": "Например: \"10\"",
- "admin.service.attemptTitle": "Максимальное количество попыток входа:",
- "admin.service.cmdsDesc": "Если истина, пользовательские слэш-команды будут разрешены. Смотрите документацию, чтобы узнать больше.",
- "admin.service.cmdsTitle": "Включить пользовательские Slash-команды: ",
- "admin.service.corsDescription": "Разрешить кросс-доменные запросы с указанного домена. Укажите \"*\", если Вы хотите разрешить CORS с любого домена, или оставьте поле пустым, что бы отключить эту возможность.",
- "admin.service.corsEx": "http://example.com",
- "admin.service.corsTitle": "Разрешить кроссдоменные запросы от:",
- "admin.service.developerDesc": "Если включён, на красной панели сверху будут показываться ошибки JavaScript. Не рекомендуется использовать на \"боевом\" сервере. ",
- "admin.service.developerTitle": "Включить режим разработчика:",
- "admin.service.enableAPIv3": "Разрешить использование API v3:",
- "admin.service.enableAPIv3Description": "Set to false to disable all version 3 endpoints of the REST API. Integrations that rely on API v3 will fail and can then be identified for migration to API v4. API v3 is deprecated and will be removed in the near future. See https://api.mattermost.com for details.",
- "admin.service.enforceMfaDesc": "When true, multi-factor authentication is required for login. New users will be required to configure MFA on signup. Logged in users without MFA configured are redirected to the MFA setup page until configuration is complete.
If your system has users with login methods other than AD/LDAP and email, MFA must be enforced with the authentication provider outside of Mattermost.",
- "admin.service.enforceMfaTitle": "Принудительная многофакторная аутентификация:",
- "admin.service.forward80To443": "Перенаправить 80 порт на 443:",
- "admin.service.forward80To443Description": "Перенаправляет весь незащищённый трафик с 80 порта на 443",
- "admin.service.googleDescription": "Задайте этот ключ, чтобы включить отображение подписей к предпросмотрам встроенных YouTube-видео. Без этого ключа предпросмотры YouTube-видео по прежнему будут создаваться на основе гиперссылок, появляющихся в сообщениях или комментариях, но название видео отображаться не будет. Посмотрите Google Developers Tutorial, для того чтобы узнать, как получить ключ.",
- "admin.service.googleExample": "Например: 7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV",
- "admin.service.googleTitle": "Ключ Google API:",
- "admin.service.iconDescription": "Если истина, вебхукам, командам и прочим интеграциям, таким как Zapier будет позволено изменять изображение профиля, от имени которого они создают посты. Примечание: совместно с предоставлением интеграциям права переопределять имена пользователей, пользователи могу получить возможность выполнять фишинговые атаки, пытаясь выдать себя за других пользователей.",
- "admin.service.iconTitle": "Разрешить интеграциям переопеределять иконки изображений профилей:",
- "admin.service.insecureTlsDesc": "When true, any outgoing HTTPS requests will accept unverified, self-signed certificates. For example, outgoing webhooks to a server with a self-signed TLS certificate, using any domain, will be allowed. Note that this makes these connections susceptible to man-in-the-middle attacks.",
- "admin.service.insecureTlsTitle": "Разрешить Небезопасные Исходящие Соединения: ",
- "admin.service.integrationAdmin": "Ограничить управление интеграцией для администраторов:",
- "admin.service.integrationAdminDesc": "Если истина, вебхуки и слэш-команды могут быть созданы, изменены и просмотрены только командными и системными админами, а приложения OAuth 2.0 - системными админами. После того, как интеграции созданы админом, они становятся доступны всем пользователям.",
- "admin.service.internalConnectionsDesc": "In testing environments, such as when developing integrations locally on a development machine, use this setting to specify domains, IP addresses, or CIDR notations to allow internal connections. Not recommended for use in production, since this can allow a user to extract confidential data from your server or internal network.
By default, user-supplied URLs such as those used for Open Graph metadata, webhooks, or slash commands will not be allowed to connect to reserved IP addresses including loopback or link-local addresses used for internal networks. Push notification, OAuth 2.0 and WebRTC server URLs are trusted and not affected by this setting.",
- "admin.service.internalConnectionsEx": "webhooks.internal.example.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Allow untrusted internal connections to: ",
- "admin.service.letsEncryptCertificateCacheFile": "Файл кэша сертификата Let's Encrypt:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Полученные сертификаты и данные от Let's Encrypt будут храниться в этом файле.",
- "admin.service.listenAddress": "Прослушиваемый адрес:",
- "admin.service.listenDescription": "Адрес и порт для привязки и ожидания соединений. Указание \":8065\" приведет к привязке ко всем сетевым интерфейсам. Указание \"127.0.0.1:8065\" приведет к привязке к сетевому интерфейсу, с указанным IP-адресом. Если вы выбираете порт нижнего уровня (так называемые \"системные порты\" или \"хорошо известные порты\", в диапазоне 0-1023), вы должны обладать необходимыми правами, для привязку к этому порту. На Linux вы можете выполнить: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\", что позволит Mattermost привязываться к известным портам.",
- "admin.service.listenExample": "Например: \":8065\"",
- "admin.service.mfaDesc": "When true, users with AD/LDAP or email login can add multi-factor authentication to their account using Google Authenticator.",
- "admin.service.mfaTitle": "Включить мультифакторную аутентификацию:",
- "admin.service.mobileSessionDays": "Длина сессии на мобильных устройствах (дней):",
- "admin.service.mobileSessionDaysDesc": "Количество дней с последнего ввода пользователем своих учетных данных до истечения срока пользовательской сессии. После изменения этого параметра, новая продолжительность сессии вступит в силу после следующего ввода пользователями своих учетных данных.",
- "admin.service.outWebhooksDesc": "Если истина, исходящие вебхуки будут разрешены. Смотрите документацию, чтобы узнать больше.",
- "admin.service.outWebhooksTitle": "Разрешить исходящие вебхуки: ",
- "admin.service.overrideDescription": "Если истина, вебхукам, командам и прочим интеграциям, таким как Zapier, будет позволено менять имя пользователя, от имени которого они создают посты. Примечание: совместно с предоставлением интеграциям права переопределять иконки изображений профиля, пользователи могут получить возможность выполнять фишинговые атаки, пытаясь выдать себя за других пользователей.",
- "admin.service.overrideTitle": "Разрешить интеграциям переопределять имена:",
- "admin.service.readTimeout": "Тайм-аут чтения:",
- "admin.service.readTimeoutDescription": "Максимально допустимое время от момента установки соединения до полного чтения тела запроса.",
- "admin.service.securityDesc": "Если включено, администратор системы получит уведомление о выходе новых обновлений безопасности анонсированных за 12 часов. Потребует включение email.",
- "admin.service.securityTitle": "Включить оповещения безопасности: ",
- "admin.service.sessionCache": "Кэш сессиий (в минутах):",
- "admin.service.sessionCacheDesc": "Продолжительность кеширования сессии в памяти (в минутах).",
- "admin.service.sessionDaysEx": "Например: \"30\"",
- "admin.service.siteURL": "Адрес сайта:",
- "admin.service.siteURLDescription": "The URL that users will use to access Mattermost. Standard ports, such as 80 and 443, can be omitted, but non-standard ports are required. For example: http://mattermost.example.com:8065. This setting is required.",
- "admin.service.siteURLExample": "Например: \"https://mattermost.example.com:1234\"",
- "admin.service.ssoSessionDays": "Длина сессии SSO (дней):",
- "admin.service.ssoSessionDaysDesc": "Количество дней с последнего ввода пользователем своих учетных данных до истечения срока пользовательской сессии. Если метод аутентификации - SAML или GitLab, пользователь может быть автоматически впущен обратно в Mattermost, если он уже вошел в SAML или GitLab. После изменения этого параметра он вступит в силу после следующего ввода пользователем своих учетных данных.",
- "admin.service.testingDescription": "Если включена, становится доступна слеш-команда /test, предназначенная для загрузки тестовых учетных записей, данных и форматирования текста. Изменение этого параметра требует перезагрузки сервера для вступления в силу.",
- "admin.service.testingTitle": "Включить команду тестирования: ",
- "admin.service.tlsCertFile": "Файл сертификата TLS:",
- "admin.service.tlsCertFileDescription": "Файл сертификата для использования.",
- "admin.service.tlsKeyFile": "Файл ключа TLS:",
- "admin.service.tlsKeyFileDescription": "Приватный ключ для использования.",
- "admin.service.useLetsEncrypt": "Использовать Let's Encrypt:",
- "admin.service.useLetsEncryptDescription": "Включить автоматическое получение сертификатов от Let's Encrypt. Сертификат будет получен, когда клиент попытается установить соединение с нового домена. Это будет работать для множества разных доменов.",
- "admin.service.userAccessTokensDescLabel": "Имя:",
- "admin.service.userAccessTokensDescription": "When true, users can create personal access tokens for integrations in Account Settings > Security. They can be used to authenticate against the API and give full access to the account.
To manage who can create personal access tokens or to search users by token ID, go to the System Console > Users page.",
- "admin.service.userAccessTokensIdLabel": "Token ID: ",
- "admin.service.userAccessTokensTitle": "Enable Personal Access Tokens: ",
- "admin.service.webSessionDays": "Продолжительность сессии AD/LDAP и электронной почты (в днях):",
- "admin.service.webSessionDaysDesc": "Количество дней с последнего ввода пользователем своих учетных данных до истечения срока пользовательской сессии. После изменения этого параметра, новая продолжительность сессии вступит в силу после следующего ввода пользователями своих учетных данных.",
- "admin.service.webhooksDescription": "Если истина, входящие вебхуки будут разрешены. В целях борьбы с фишинговыми атаками, все посты от имени вебхуков будут помечены тэгом БОТ. Смотрите документацию, чтобы узнать больше.",
- "admin.service.webhooksTitle": "Разрешить входящие вебхуки:",
- "admin.service.writeTimeout": "Тайм-аут записи:",
- "admin.service.writeTimeoutDescription": "При использовании HTTP (небезопасно) — максимально допустимое время с момента окончания чтения заголовка запроса до окончания записи ответа. В случае с HTTPS — полное время с момента установки соединения до окончания записи ответа.",
- "admin.sidebar.advanced": "Дополнительно",
- "admin.sidebar.audits": "Аудит",
- "admin.sidebar.authentication": "Аутентификация",
- "admin.sidebar.client_versions": "Client Versions",
- "admin.sidebar.cluster": "Высокая доступность (HA)",
- "admin.sidebar.compliance": "Соответствие стандартам",
- "admin.sidebar.configuration": "Конфигурация",
- "admin.sidebar.connections": "Соединения",
- "admin.sidebar.customBrand": "Пользовательский бренд",
- "admin.sidebar.customIntegrations": "Пользовательские интеграции",
- "admin.sidebar.customization": "Настройка",
- "admin.sidebar.database": "База данных",
- "admin.sidebar.developer": "Разработчик",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "Электронная почта",
- "admin.sidebar.emoji": "Эмодзи",
- "admin.sidebar.external": "Внешние службы",
- "admin.sidebar.files": "Файлы",
- "admin.sidebar.general": "Общие",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Интеграции",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Право и поддержка",
- "admin.sidebar.license": "Редакция и Лицензия",
- "admin.sidebar.linkPreviews": "Предварительный просмотр ссылок",
- "admin.sidebar.localization": "Локализация",
- "admin.sidebar.logging": "Журналирование",
- "admin.sidebar.login": "Login",
- "admin.sidebar.logs": "Журналы",
- "admin.sidebar.metrics": "Мониторинг производительности",
- "admin.sidebar.mfa": "МФА",
- "admin.sidebar.nativeAppLinks": "Ссылки на приложения Mattermost",
- "admin.sidebar.notifications": "Уведомления",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "ДРУГИЕ",
- "admin.sidebar.password": "Пароль",
- "admin.sidebar.policy": "Политики",
- "admin.sidebar.privacy": "Безопасность",
- "admin.sidebar.publicLinks": "Публичные ссылки",
- "admin.sidebar.push": "Мобильные Push-уведомления",
- "admin.sidebar.rateLimiting": "Ограничение скорости",
- "admin.sidebar.reports": "ОТЧЁТЫ",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Безопасность",
- "admin.sidebar.sessions": "Сеансы",
- "admin.sidebar.settings": "НАСТРОЙКИ",
- "admin.sidebar.signUp": "Зарегистрироваться",
- "admin.sidebar.sign_up": "Зарегистрироваться",
- "admin.sidebar.statistics": "Статистика команды",
- "admin.sidebar.storage": "Хранилище",
- "admin.sidebar.support": "Право и поддержка",
- "admin.sidebar.users": "Пользователи",
- "admin.sidebar.usersAndTeams": "Пользователи и команды",
- "admin.sidebar.view_statistics": "Статистика системы",
- "admin.sidebar.webrtc": "WebRTC (Бета)",
- "admin.sidebarHeader.systemConsole": "Системная консоль",
- "admin.sql.dataSource": "Источник данных:",
- "admin.sql.driverName": "Имя драйвера:",
- "admin.sql.keyDescription": "32-символьная соль для шифрования и дешифрования чувствительных полей в базе данных.",
- "admin.sql.keyExample": "Например: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "Ключ шифрования At Rest:",
- "admin.sql.maxConnectionsDescription": "Максимальное количество неактивных соединений, которые остаются открытыми для базы данных.",
- "admin.sql.maxConnectionsExample": "Например: \"10\"",
- "admin.sql.maxConnectionsTitle": "Максимальное число неактивных соединений:",
- "admin.sql.maxOpenDescription": "Максимальное количество открытых соединений, которые остаются открытыми для базы данных.",
- "admin.sql.maxOpenExample": "Например: \"10\"",
- "admin.sql.maxOpenTitle": "Максимальное число открытых соединений:",
- "admin.sql.noteDescription": "Изменение параметров в этой секции потребует перезагрузки сервера.",
- "admin.sql.noteTitle": "Заметка:",
- "admin.sql.queryTimeoutDescription": "The number of seconds to wait for a response from the database after opening a connection and sending the query. Errors that you see in the UI or in the logs as a result of a query timeout can vary depending on the type of query.",
- "admin.sql.queryTimeoutExample": "Например: \"30\"",
- "admin.sql.queryTimeoutTitle": "Тайм-аут запроса:",
- "admin.sql.replicas": "Реплики источника данных:",
- "admin.sql.traceDescription": "(Режим разработчика) Если включена, все исполняемые SQL-запросы будут записаны в лог.",
- "admin.sql.traceTitle": "Трассировка:",
- "admin.sql.warning": "Внимание: генерация новой соли может привести к возвращению пустых результатов из базы данных для некоторых колонок.",
- "admin.support.aboutDesc": "URL страницы \"О программе\", отображаемый на странице входа. Если поле не заполнено, ссылка \"О программе\" скрыта.",
- "admin.support.aboutTitle": "О программе:",
- "admin.support.emailHelp": "Email address displayed on email notifications and during tutorial for end users to ask support questions.",
- "admin.support.emailTitle": "Email техподдержки:",
- "admin.support.helpDesc": "URL страницы \"О программе\", отображаемый на странице входа. Если поле не заполнено, ссылка \"О программе\" скрыта.",
- "admin.support.helpTitle": "Ссылка на раздел \"Помощь\":",
- "admin.support.noteDescription": "Если ссылки на внешний сайт, URL-адрес должен начинаться с http:// или https://.",
- "admin.support.noteTitle": "Заметка:",
- "admin.support.privacyDesc": "URL страницы \"О программе\", отображаемый на странице входа. Если поле не заполнено, ссылка \"О программе\" скрыта.",
- "admin.support.privacyTitle": "Ссылка на политику конфиденциальности:",
- "admin.support.problemDesc": "The URL for the Report a Problem link in the Main Menu. If this field is empty, the link is removed from the Main Menu.",
- "admin.support.problemTitle": "Ссылка на \"Сообщить о проблеме\":",
- "admin.support.termsDesc": "Ссылка на условия, в соответствии с которыми пользователи могут использовать ваш онлайн сервис. По умолчанию, они включают \"Условия использования Mattermost (конечные пользователи)\", разъясняющие условия, в соответствии с которыми программное обеспечение Mattermost предоставляется конечным пользователям. Если вы измените стандартную ссылку, добавьте свои собственные условия использования предоставляемого вами сервиса. Ваши новые условия должны включать ссылку на стандарные условия, с тем чтобы конечные пользователи были осведомлены об Условиях использования программного обеспечения Mattermost (конечными пользователями).",
- "admin.support.termsTitle": "Ссылка на условия использования:",
- "admin.system_analytics.activeUsers": "Активные пользователи с сообщениями",
- "admin.system_analytics.title": "эта Cистема",
- "admin.system_analytics.totalPosts": "Всего сообщений",
- "admin.system_users.allUsers": "Все пользователи",
- "admin.system_users.noTeams": "Нет команд",
- "admin.system_users.title": "{siteName} Пользователи",
- "admin.team.brandDesc": "Включите фирменный стиль для показа изображения и сопровождающего текста на странице входа.",
- "admin.team.brandDescriptionExample": "Все способы общения команды собраны в одном месте, с возможностью мгновенного поиска и доступом отовсюду",
- "admin.team.brandDescriptionHelp": "Описание сервиса отображаемое на экранах входа и пользовательского интерфейса. Если не указано, то отображается \"Общение всей команды в одном месте, с возможностью поиска и доступом отовсюду\".",
- "admin.team.brandDescriptionTitle": "Описание сайта: ",
- "admin.team.brandImageTitle": "Пользовательское изображение бренда:",
- "admin.team.brandTextDescription": "Текст, который появится под пользовательским изображением бренда на экране входа в систему. Поддержка Markdown-форматирования текста. Максимум 500 символов.",
- "admin.team.brandTextTitle": "Пользовательский текст бренда:",
- "admin.team.brandTitle": "Включить пользовательский брендинг: ",
- "admin.team.chooseImage": "Выберите новое изображение",
- "admin.team.dirDesc": "When true, teams that are configured to show in team directory will show on main page inplace of creating a new team.",
- "admin.team.dirTitle": "Включить Team Directory: ",
- "admin.team.maxChannelsDescription": "Максимальное количество каналов на команду, включая активные и удалённые.",
- "admin.team.maxChannelsExample": "Например: \"100\"",
- "admin.team.maxChannelsTitle": "Максимальное количество каналов на команду:",
- "admin.team.maxNotificationsPerChannelDescription": "Maximum total number of users in a channel before users typing messages, @all, @here, and @channel no longer send notifications because of performance.",
- "admin.team.maxNotificationsPerChannelExample": "Например: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Максимальное количество уведомлений на канал:",
- "admin.team.maxUsersDescription": "Максимальное количество пользователей на команду.",
- "admin.team.maxUsersExample": "Например: \"25\"",
- "admin.team.maxUsersTitle": "Максимальное количество пользователей в команде:",
- "admin.team.noBrandImage": "Изображение бренда не загружено",
- "admin.team.openServerDescription": "Если включено, каждый может зарегистрироваться без приглашения.",
- "admin.team.openServerTitle": "Открытый сервер: ",
- "admin.team.restrictDescription": "Команды и аккаунты пользователей могут быть созданы только с указанного домена (например, \"mattermost.org\"), или с доменов, заданных разделённым запятыми списком доменов (например, corp.mattermost.com, mattermost.org\").",
- "admin.team.restrictDirectMessage": "Enable users to open Direct Message channels with:",
- "admin.team.restrictDirectMessageDesc": "'Any user on the Mattermost server' enables users to open a Direct Message channel with any user on the server, even if they are not on any teams together. 'Any member of the team' limits the ability to open Direct Message channels to only users who are in the same team.",
- "admin.team.restrictExample": "Например: \"corp.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Когда включено, Вы не сможете использовать зарезервированные слова в имени команды (такие как www, admin, support, test, channel и др.)",
- "admin.team.restrictNameTitle": "Запрещённые имена команд:",
- "admin.team.restrictTitle": "Ограничить создание аккаунтов с указанных почтовых доменов:",
- "admin.team.restrict_direct_message_any": "Все пользователи сервера Mattermost",
- "admin.team.restrict_direct_message_team": "Все участники команды",
- "admin.team.showFullname": "Показывать имя и фамилию",
- "admin.team.showNickname": "Показывать псевдоним, если существует, иначе показывать имя и фамилию",
- "admin.team.showUsername": "Показывать имя пользователя (по умолчанию)",
- "admin.team.siteNameDescription": "Отображаемое имя сервиса в окне входа и пользовательском интерфейсе.",
- "admin.team.siteNameExample": "Например: \"Mattermost\"",
- "admin.team.siteNameTitle": "Название сайта:",
- "admin.team.teamCreationDescription": "Когда выключено, только системные администраторы могут создавать команды.",
- "admin.team.teamCreationTitle": "Включить создание команды: ",
- "admin.team.teammateNameDisplay": "Отображение имени в команде",
- "admin.team.teammateNameDisplayDesc": "Установите, как отображать Ваши имена в постах и в списке выбора личных сообщений.",
- "admin.team.upload": "Загрузить",
- "admin.team.uploadDesc": "Настройте свой пользовательский интерфейс, добавив пользовательское изображение на экране входа в систему. Рекомендуемый максимальный размер изображения составляет менее 2 МБ.",
- "admin.team.uploaded": "Загружено!",
- "admin.team.uploading": "Загрузка…",
- "admin.team.userCreationDescription": "When false, the ability to create accounts is disabled. The create account button displays error when pressed.",
- "admin.team.userCreationTitle": "Разрешить создание аккаунта",
- "admin.team_analytics.activeUsers": "Активные пользователи с сообщениями",
- "admin.team_analytics.totalPosts": "Всего сообщений",
- "admin.true": "да",
- "admin.user_item.authServiceEmail": "Метод входа: Электронная почта",
- "admin.user_item.authServiceNotEmail": "Метод входа: {service}",
- "admin.user_item.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
- "admin.user_item.confirmDemoteRoleTitle": "Подтверждение понижения администратором системы",
- "admin.user_item.confirmDemotion": "Подтвердить понижение",
- "admin.user_item.confirmDemotionCmd": "platform roles system_admin {username}",
- "admin.user_item.emailTitle": "Email: {email}",
- "admin.user_item.inactive": "Неактивен",
- "admin.user_item.makeActive": "Активировать",
- "admin.user_item.makeInactive": "Деактивировать",
- "admin.user_item.makeMember": "Сделать участником",
- "admin.user_item.makeSysAdmin": "Сделать администратором системы",
- "admin.user_item.makeTeamAdmin": "Сделать администратором команды",
- "admin.user_item.manageRoles": "Manage Roles",
- "admin.user_item.manageTeams": "Управление командами",
- "admin.user_item.manageTokens": "Manage Tokens",
- "admin.user_item.member": "Участник",
- "admin.user_item.mfaNo": ", MFA: Нет",
- "admin.user_item.mfaYes": ", MFA: Да",
- "admin.user_item.resetMfa": "Удалить MFA",
- "admin.user_item.resetPwd": "Сброс пароля",
- "admin.user_item.switchToEmail": "Переключение на E-Mail/Пароль",
- "admin.user_item.sysAdmin": "Администратор системы",
- "admin.user_item.teamAdmin": "Team Admin",
- "admin.user_item.userAccessTokenPostAll": "(with post:all personal access tokens)",
- "admin.user_item.userAccessTokenPostAllPublic": "(with post:channels personal access tokens)",
- "admin.user_item.userAccessTokenYes": "(with personal access tokens)",
- "admin.webrtc.enableDescription": "При выборе Mattermost позволяет совершать тет-а-тет видеозвонки. WebRTC звонки доступны в браузерах Chrome и Firefox, а так же в приложениях Mattermost.",
- "admin.webrtc.enableTitle": "Включить Mattermost WebRTC:",
- "admin.webrtc.gatewayAdminSecretDescription": "Введите пароль для доступа к узлу администрирования.",
- "admin.webrtc.gatewayAdminSecretExample": "Например: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Gateway Admin Secret:",
- "admin.webrtc.gatewayAdminUrlDescription": "Введите https://:/admin.Проверьте что используете HTTP или HTTPS в вашем URL в зависимости от конфигурации сервера. Mattermost WebRTC использует этот URL чтобы брать валидные токены для установки соединения для каждого подключения.",
- "admin.webrtc.gatewayAdminUrlExample": "Например: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Адрес узла администрирования:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "Введите wss://:. Убедитесь, что используете WS or WSS в вашем адресе в зависимости от конфигурации сервера. WebSocket используется для уведомления и установки соединения между пирами.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Например: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Адрес шлюза WebSocket:",
- "admin.webrtc.stunUriDescription": "Введите URI сервера STUN::. STUN — стандартизированный сетевой протокол позволяющий серверу предоставлять свой публичный IP клиентам находящимся за NAT.",
- "admin.webrtc.stunUriExample": "Например: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN URI",
- "admin.webrtc.turnSharedKeyDescription": "Введите публичный ключ сервера TURN. Он используется в генерации паролей для установки соединения. Каждый пароль действителен в течении короткого периода времени.",
- "admin.webrtc.turnSharedKeyExample": "Например: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "Публичный ключ TURN:",
- "admin.webrtc.turnUriDescription": "Введите адрес TURN: turn::. TURN является стандартизированным сетевым протоколом, который помогает устройствам установить соединение, используя публичные ретранслирующие IP адреса, если они находятся за симметричным NAT.",
- "admin.webrtc.turnUriExample": "Например: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN URI",
- "admin.webrtc.turnUsernameDescription": "Введите ваше имя пользователя TURN-сервера.",
- "admin.webrtc.turnUsernameExample": "Например: \"myusername\"",
- "admin.webrtc.turnUsernameTitle": "Имя пользователя TURN:",
- "admin.webserverModeDisabled": "Выключено",
- "admin.webserverModeDisabledDescription": "Mattermost сервер не будет обслуживать статические файлы.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Mattermost сервер будет обслуживать статические gzip файлы.",
- "admin.webserverModeHelpText": "сжатие GZIP применяется к файлам со статическим содержимым. Рекомендуется включить GZIP для улучшения производительности, если ваше окружение имеет специфические ограничения, такие как прокси сервер, то включение сжатия GZIP может снизить производительность доставки файлов.",
- "admin.webserverModeTitle": "Режим веб-сервера:",
- "admin.webserverModeUncompressed": "Без сжатия",
- "admin.webserverModeUncompressedDescription": "Mattermost сервер будет отдавать несжатые статические файлы.",
- "analytics.chart.loading": "Загрузка...",
- "analytics.chart.meaningful": "Недостаточно данных для представления.",
- "analytics.system.activeUsers": "Активные пользователи с сообщениями",
- "analytics.system.channelTypes": "Типы канала",
- "analytics.system.dailyActiveUsers": "Активность пользователей за день",
- "analytics.system.monthlyActiveUsers": "Активность пользователей за месяц",
- "analytics.system.postTypes": "Сообщения, файлы и хештэги",
- "analytics.system.privateGroups": "Приватные каналы",
- "analytics.system.publicChannels": "Публичные каналы",
- "analytics.system.skippedIntensiveQueries": "Для максимальной производительности некоторая статистика отключена. Вы можете включить её снова в файле конфигурации config.json. Смотрите: https://docs.mattermost.com/administration/statistics.html",
- "analytics.system.textPosts": "Только текстовые сообщения",
- "analytics.system.title": "Статистика системы",
- "analytics.system.totalChannels": "Всего каналов",
- "analytics.system.totalCommands": "Всего комманд",
- "analytics.system.totalFilePosts": "Сообщения с файлами",
- "analytics.system.totalHashtagPosts": "Сообщения с хештегами",
- "analytics.system.totalIncomingWebhooks": "Входящие вебхуки",
- "analytics.system.totalMasterDbConnections": "Подключений к главной БД",
- "analytics.system.totalOutgoingWebhooks": "Исходящие Webhook-и",
- "analytics.system.totalPosts": "Всего сообщений",
- "analytics.system.totalReadDbConnections": "Подключений к реплике БД",
- "analytics.system.totalSessions": "Всего сессий",
- "analytics.system.totalTeams": "Всего команд",
- "analytics.system.totalUsers": "Всего пользователей",
- "analytics.system.totalWebsockets": "Соединений Websocket",
- "analytics.team.activeUsers": "Активные пользователи с сообщениями",
- "analytics.team.newlyCreated": "Новые пользователи",
- "analytics.team.noTeams": "There are no teams on this server for which to view statistics.",
- "analytics.team.privateGroups": "Приватные каналы",
- "analytics.team.publicChannels": "Публичные каналы",
- "analytics.team.recentActive": "Недавние активные пользователи",
- "analytics.team.recentUsers": "Недавние активные пользователи",
- "analytics.team.title": "Статистика команды {team}",
- "analytics.team.totalPosts": "Всего сообщений",
- "analytics.team.totalUsers": "Всего пользователей",
- "api.channel.add_member.added": "{addedUsername} добавлен на канал участником {username}",
- "api.channel.delete_channel.archived": "{username} произвёл архивирование канала.",
- "api.channel.join_channel.post_and_forget": "{username} присоединился к каналу.",
- "api.channel.leave.left": "{username} покинул канал.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} сменил отображаемое имя канала с {old} на {new}",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} удалил заголовок канала (было: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} изменил заголовок канала с {old} на {new}",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} изменил заголовок канала на {new}",
- "api.channel.remove_member.removed": "{removedUsername} был удалён с канала",
- "app.channel.post_update_channel_purpose_message.removed": "{username} удалил заголовок канала (было: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username} сменил заголовок канала с {old} на {new}",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} установил заголовок канала: {new}",
- "audit_table.accountActive": "Аккаунт активирован",
- "audit_table.accountInactive": "Аккаунт деактивирован",
- "audit_table.action": "Действие",
- "audit_table.attemptedAllowOAuthAccess": "Attempted to allow a new OAuth service access",
- "audit_table.attemptedLicenseAdd": "Попытка добавления новой лицензии",
- "audit_table.attemptedLogin": "Попытка входа",
- "audit_table.attemptedOAuthToken": "Попытка получить токен OAuth",
- "audit_table.attemptedPassword": "Попытка изменить пароль",
- "audit_table.attemptedRegisterApp": "Попытка регистрации нового OAuth приложения с идентификатором {id}",
- "audit_table.attemptedReset": "Попытался сбросить пароль",
- "audit_table.attemptedWebhookCreate": "Попытался создать webhook",
- "audit_table.attemptedWebhookDelete": "Попытка удаления вебхука",
- "audit_table.by": " пользователем {username}",
- "audit_table.byAdmin": " админом",
- "audit_table.channelCreated": "Создан канал {channelName}",
- "audit_table.channelDeleted": "Удален канал с URL {url}",
- "audit_table.establishedDM": "Установлен канал прямого обмена сообщениями с {username}",
- "audit_table.failedExpiredLicenseAdd": "Ошибка добавления новой лицензии потому что она закончилась или ещё не началась.",
- "audit_table.failedInvalidLicenseAdd": "Не удалось добавить недействительную лицензию",
- "audit_table.failedLogin": "Неудачная попытка входа",
- "audit_table.failedOAuthAccess": "Failed to allow a new OAuth service access - the redirect URI did not match the previously registered callback",
- "audit_table.failedPassword": "Не удалось изменить пароль - попытка обновления пользователя, вошедшего в систему с помощью OAuth",
- "audit_table.failedWebhookCreate": "Failed to create a webhook - bad channel permissions",
- "audit_table.failedWebhookDelete": "Сбой при удалении вебхука - несоответствующие условия",
- "audit_table.headerUpdated": "Обновлен заголовок канала {channelName}",
- "audit_table.ip": "IP-адрес",
- "audit_table.licenseRemoved": "Лицензия успешно удалена",
- "audit_table.loginAttempt": " (Попытка входа)",
- "audit_table.loginFailure": " (Ошибка входа)",
- "audit_table.logout": "Вы успешно вышли из своего аккаунта",
- "audit_table.member": "участник",
- "audit_table.nameUpdated": "Обновлено имя канала {channelName}",
- "audit_table.oauthTokenFailed": "Failed to get an OAuth access token - {token}",
- "audit_table.revokedAll": "Завершены все сессии для этой команды",
- "audit_table.sentEmail": "На {email} отправлено сообщение для сброса пароля",
- "audit_table.session": "Идентификатор сессии",
- "audit_table.sessionRevoked": "Сессия с id {sessionId} была разорвана",
- "audit_table.successfullLicenseAdd": "Новая лицензия успешно добавлена",
- "audit_table.successfullLogin": "Успешный вход",
- "audit_table.successfullOAuthAccess": "Successfully gave a new OAuth service access",
- "audit_table.successfullOAuthToken": "Successfully added a new OAuth service",
- "audit_table.successfullPassword": "Пароль успешно изменён",
- "audit_table.successfullReset": "Пароль успешно сброшен",
- "audit_table.successfullWebhookCreate": "Webhook успешно создан",
- "audit_table.successfullWebhookDelete": "Webhook успешно удалён",
- "audit_table.timestamp": "Временная метка",
- "audit_table.updateGeneral": "Основные настройки аккаунта обновлены",
- "audit_table.updateGlobalNotifications": "Настройки глобальных уведомлений обновлены",
- "audit_table.updatePicture": "Изображение вашего профиля обновлено",
- "audit_table.updatedRol": "Роль пользователя обновлена на ",
- "audit_table.userAdded": "Добавлен пользователь {username} в канал {channelName}",
- "audit_table.userId": "ID пользователя",
- "audit_table.userRemoved": "Удален пользователь {username} из канала {channelName}",
- "audit_table.verified": "Адрес электронной почты подтвержден",
- "authorize.access": "Предоставить {appName} доступ?",
- "authorize.allow": "Разрешить",
- "authorize.app": "Приложение {appName} запрашивает разрешение на просмотр и модификацию вашей базовой информации.",
- "authorize.deny": "Запретить",
- "authorize.title": "{appName} желает подключиться к вашей Mattermost учетной записи",
- "backstage_list.search": "Поиск",
- "backstage_navbar.backToMattermost": "Возврат к {siteName}",
- "backstage_sidebar.emoji": "Пользовательские эмодзи",
- "backstage_sidebar.integrations": "Интеграции",
- "backstage_sidebar.integrations.commands": "Cлэш-команды",
- "backstage_sidebar.integrations.incoming_webhooks": "Входящие вебхуки",
- "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 приложения",
- "backstage_sidebar.integrations.outgoing_webhooks": "Исходящие Webhook'и",
- "calling_screen": "Вызов",
- "center_panel.recent": "Нажмите здесь, чтобы перейти к последнему сообщению. ",
- "change_url.close": "Закрыть",
- "change_url.endWithLetter": "URL должен заканчиваться буквой или цифрой.",
- "change_url.invalidUrl": "Некорректный URL",
- "change_url.longer": "Ссылка должна быть от двух символов длиной.",
- "change_url.noUnderscore": "URL не может содержать два подчеркивания подряд.",
- "change_url.startWithLetter": "URL должен начинаться с буквы или цифры",
- "change_url.urlLabel": "Адрес канала",
- "channelHeader.addToFavorites": "Добавить в избранное",
- "channelHeader.removeFromFavorites": "Удалить из избранного",
- "channel_flow.alreadyExist": "Канал с таким URL уже существует",
- "channel_flow.changeUrlDescription": "Некоторые символы не разрешены в URL-адресе и могут быть удалены.",
- "channel_flow.changeUrlTitle": "Изменить адрес канала",
- "channel_flow.create": "Создать Канал",
- "channel_flow.handleTooShort": "Ссылка на канал должна быть не короче 2-х буквенных символов",
- "channel_flow.invalidName": "Недопустимое имя канала",
- "channel_flow.set_url_title": "Установить адрес канала",
- "channel_header.addChannelHeader": "Добавить описание канала",
- "channel_header.addMembers": "Добавить участников",
- "channel_header.addToFavorites": "Добавить в избранное",
- "channel_header.channelHeader": "Изменить заголовок канала",
- "channel_header.channelMembers": "Участники",
- "channel_header.delete": "Удалить канал",
- "channel_header.flagged": "Отмеченные сообщения",
- "channel_header.leave": "Покинуть Канал",
- "channel_header.manageMembers": "Управление участниками",
- "channel_header.notificationPreferences": "Настройка уведомлений",
- "channel_header.pinnedPosts": "Прикреплённые сообщения",
- "channel_header.recentMentions": "Недавние упоминания",
- "channel_header.removeFromFavorites": "Удалить из избранного",
- "channel_header.rename": "Переименовать канал",
- "channel_header.setHeader": "Изменить заголовок канала",
- "channel_header.setPurpose": "Изменить назначение канала",
- "channel_header.viewInfo": "Информация",
- "channel_header.viewMembers": "Просмотреть список участников",
- "channel_header.webrtc.call": "Видеовызов",
- "channel_header.webrtc.offline": "Пользователь не в сети",
- "channel_header.webrtc.unavailable": "Новый вызов недоступен до завершения текущего вызова",
- "channel_info.about": "О канале",
- "channel_info.close": "Закрыть",
- "channel_info.header": "Заголовок:",
- "channel_info.id": "ID: ",
- "channel_info.name": "Имя:",
- "channel_info.notFound": "Не найдено ни одного канала",
- "channel_info.purpose": "Назначение:",
- "channel_info.url": "URL:",
- "channel_invite.add": " Добавить",
- "channel_invite.addNewMembers": "Добавить новых участников в ",
- "channel_invite.close": "Закрыть",
- "channel_loader.connection_error": "Возникла проблема с сетевым подключением.",
- "channel_loader.posted": "Опубликовано",
- "channel_loader.postedImage": " загрузил изображение",
- "channel_loader.socketError": "Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.",
- "channel_loader.someone": "Кто-то",
- "channel_loader.something": " сделал что-то новое",
- "channel_loader.unknown_error": "Мы получили неожиданный код состояния от сервера.",
- "channel_loader.uploadedFile": " загрузил файл",
- "channel_loader.uploadedImage": " загрузил изображение",
- "channel_loader.wrote": " написал: ",
- "channel_members_dropdown.channel_admin": "Администратор канала",
- "channel_members_dropdown.channel_member": "Участник канала",
- "channel_members_dropdown.make_channel_admin": "Сделать администратором канала",
- "channel_members_dropdown.make_channel_member": "Сделать участником канала",
- "channel_members_dropdown.remove_from_channel": "Удалить с канала",
- "channel_members_dropdown.remove_member": "Удалить участника",
- "channel_members_modal.addNew": " Добавить участников",
- "channel_members_modal.members": " Участники",
- "channel_modal.cancel": "Отмена",
- "channel_modal.createNew": "Создать новый канал",
- "channel_modal.descriptionHelp": "Опишите, как следует использовать этот канал.",
- "channel_modal.displayNameError": "Имя канала должно быть от двух символов",
- "channel_modal.edit": "Изменить",
- "channel_modal.header": "Заголовок",
- "channel_modal.headerEx": "Например: \"[Заголовок ссылки](http://example.com)\"",
- "channel_modal.headerHelp": "Задайте текст, который появится в заголовке канала рядом с названием. К примеру, вы можете включить часто используемые ссылки, введя [Текст ссылки](http://example.com).",
- "channel_modal.modalTitle": "Новый канал",
- "channel_modal.name": "Имя",
- "channel_modal.nameEx": "Например: \"Bugs\", \"Маркетинг\", \"客户支持\"",
- "channel_modal.optional": "(необязательно)",
- "channel_modal.privateGroup1": "Создать новый приватный канал с ограниченным доступом. ",
- "channel_modal.privateGroup2": "Создать приватный канал",
- "channel_modal.publicChannel1": "Создать публичный канал",
- "channel_modal.publicChannel2": "Создать новый публичный канал. ",
- "channel_modal.purpose": "Назначение",
- "channel_modal.purposeEx": "Например: \"Канал для ошибок и пожеланий\"",
- "channel_notifications.allActivity": "При любой активности",
- "channel_notifications.allUnread": "При любых непрочитанных сообщениях",
- "channel_notifications.globalDefault": "По умолчанию глобально ({notifyLevel})",
- "channel_notifications.markUnread": "Отмечать канал как непрочтенный",
- "channel_notifications.never": "Никогда",
- "channel_notifications.onlyMentions": "Только при упоминаниях",
- "channel_notifications.override": "При выборе настройки, отличной от \"По умолчанию\" перезапишутся общие настройки уведомлений. Уведомления на рабочий стол доступны в Firefox, Safari, и Chrome.",
- "channel_notifications.overridePush": "Selecting an option other than \"Global default\" will override the global notification settings for mobile push notifications in account settings. Push notifications must be enabled by the System Admin.",
- "channel_notifications.preferences": "Настройки уведомлений для ",
- "channel_notifications.push": "Отправить мобильное push-уведомление",
- "channel_notifications.sendDesktop": "Отправлять уведомления на рабочий стол",
- "channel_notifications.unreadInfo": "Название канала в боковом меню выделяется жирным, когда есть непрочитанные сообщения. Если выбрано \"Только при упоминаниях\" название канала будет выделяться только если Вас упомянут.",
- "channel_select.placeholder": "--- Выбрать канал ---",
- "channel_switch_modal.dm": "(Личное сообщение)",
- "channel_switch_modal.failed_to_open": "Не удалось открыть канал.",
- "channel_switch_modal.not_found": "Совпадений не найдено.",
- "channel_switch_modal.submit": "Переключить",
- "channel_switch_modal.title": "Сменить канал",
- "claim.account.noEmail": "Email не указан",
- "claim.email_to_ldap.enterLdapPwd": "Введите идентификатор и пароль от Вашего AD/LDAP аккаунта",
- "claim.email_to_ldap.enterPwd": "Введите пароль для вашего почтового аккаунта {site}",
- "claim.email_to_ldap.ldapId": "AD/LDAP ID",
- "claim.email_to_ldap.ldapIdError": "Введите свой AD/LDAP идентификатор.",
- "claim.email_to_ldap.ldapPasswordError": "Введите ваш пароль AD/LDAP.",
- "claim.email_to_ldap.ldapPwd": "Пароль AD/LDAP",
- "claim.email_to_ldap.pwd": "Пароль",
- "claim.email_to_ldap.pwdError": "Введите пароль.",
- "claim.email_to_ldap.ssoNote": "У вас уже должна быть действующая учетная запись AD/LDAP.",
- "claim.email_to_ldap.ssoType": "После утверждения вашего аккаунта, вы сможете войти в систему только с AD/LDAP",
- "claim.email_to_ldap.switchTo": "Переключить аккаунт на AD/LDAP",
- "claim.email_to_ldap.title": "Переключить Email/Password на AD/LDAP",
- "claim.email_to_oauth.enterPwd": "Введите пароль для вашей учетной записи {site}",
- "claim.email_to_oauth.pwd": "Пароль",
- "claim.email_to_oauth.pwdError": "Введите пароль.",
- "claim.email_to_oauth.ssoNote": "Вы должны уже иметь корректный {type} аккаунт",
- "claim.email_to_oauth.ssoType": "Upon claiming your account, you will only be able to login with {type} SSO",
- "claim.email_to_oauth.switchTo": "Переключить аккаунт на {uiType}",
- "claim.email_to_oauth.title": "Переключить E-Mail/Пароль аккаунт на {uiType}",
- "claim.ldap_to_email.confirm": "Подтвердить пароль",
- "claim.ldap_to_email.email": "After switching your authentication method, you will use {email} to login. Your AD/LDAP credentials will no longer allow access to Mattermost.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "New email login password:",
- "claim.ldap_to_email.ldapPasswordError": "Пожалуйста, введите свой пароль AD/LDAP.",
- "claim.ldap_to_email.ldapPwd": "Пароль AD/LDAP",
- "claim.ldap_to_email.pwd": "Пароль",
- "claim.ldap_to_email.pwdError": "Введите ваш пароль.",
- "claim.ldap_to_email.pwdNotMatch": "Пароли не совпадают.",
- "claim.ldap_to_email.switchTo": "Переключить аккаунт на email/пароль",
- "claim.ldap_to_email.title": "Переключить AD/LDAP на Email/Password",
- "claim.oauth_to_email.confirm": "Подтвердить пароль",
- "claim.oauth_to_email.description": "При смене типа аккаунта, вы сможете войти в систему только с вашим email и паролем.",
- "claim.oauth_to_email.enterNewPwd": "Введите новый пароль для вашего аккаунта email {site}",
- "claim.oauth_to_email.enterPwd": "Пожалуйста, введите пароль.",
- "claim.oauth_to_email.newPwd": "Новый пароль",
- "claim.oauth_to_email.pwdNotMatch": "Пароли не совпадают.",
- "claim.oauth_to_email.switchTo": "Перейти с {type} к использованию e-mail и пароля",
- "claim.oauth_to_email.title": "Переключить аккаунт {type} на E-Mail",
- "confirm_modal.cancel": "Отмена",
- "connecting_screen": "Подключение",
- "create_comment.addComment": "Добавить комментарий...",
- "create_comment.comment": "Добавить комментарий",
- "create_comment.commentLength": "Длина комментария должна быть меньше {max} символов.",
- "create_comment.commentTitle": "Комментарий",
- "create_comment.file": "Загрузка файла",
- "create_comment.files": "Загрузка файлов",
- "create_post.comment": "Комментарий",
- "create_post.error_message": "Ваше сообщение слишком длинное. Количество символов: {length}/{limit}",
- "create_post.post": "Сообщение",
- "create_post.shortcutsNotSupported": "Горячие клавиши не поддерживаются на вашем устройстве.",
- "create_post.tutorialTip": "
Отправка сообщений
Напишите здесь сообщение и нажмите Enter для отправки.
Нажмите кнопку Вложение для загрузки изображения или файла.
",
- "create_post.write": "Ваше сообщение...",
- "create_team.agreement": "By proceeding to create your account and use {siteName}, you agree to our Terms of Service and Privacy Policy. If you do not agree, you cannot use {siteName}.",
- "create_team.display_name.charLength": "Имя должно быть длиннее {min} и меньше {max} символов. Вы можете добавить описание команды позже.",
- "create_team.display_name.nameHelp": "Название команды на любом языке. Название команды будет показано в меню и заголовках.",
- "create_team.display_name.next": "Далее",
- "create_team.display_name.required": "Обязательное поле",
- "create_team.display_name.teamName": "Название команды",
- "create_team.team_url.back": "На предыдущий шаг",
- "create_team.team_url.charLength": "Имя должно быть больше {min} символов и не больше {max}",
- "create_team.team_url.creatingTeam": "Создание команды...",
- "create_team.team_url.finish": "Готово",
- "create_team.team_url.hint": "
Лучше использовать короткие и запоминающиеся
Используйте строчные буквы, цифры и тире
Должно начинаться с буквы и не может заканчиваться на тире
",
- "create_team.team_url.regex": "Используйте строчные буквы, цифры и тире. Должно начинаться с буквы и не может заканчиваться на тире.",
- "create_team.team_url.required": "Обязательное поле",
- "create_team.team_url.taken": "Этот URL начинается с зарезервированного слова или недоступен. Пожалуйста, попробуйте другой.",
- "create_team.team_url.teamUrl": "URL команды",
- "create_team.team_url.unavailable": "Этот URL занят или недоступен. Пожалуйста, попробуйте другой.",
- "create_team.team_url.webAddress": "Выберите адрес вашей новой команды:",
- "custom_emoji.empty": "Не найдено загруженного эмодзи",
- "custom_emoji.header": "Пользовательские смайлы",
- "custom_emoji.search": "Найти кастомные Emoji",
- "deactivate_member_modal.cancel": "Отмена",
- "deactivate_member_modal.deactivate": "Деактивировать",
- "deactivate_member_modal.desc": "This action deactivates {username}. They will be logged out and not have access to any teams or channels on this system. Are you sure you want to deactivate {username}?",
- "deactivate_member_modal.title": "Деактивировать {username}",
- "default_channel.purpose": "Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.",
- "delete_channel.cancel": "Отмена",
- "delete_channel.confirm": "Подтверждение УДАЛЕНИЯ канала",
- "delete_channel.del": "Удалить",
- "delete_channel.question": "Данное действие приведёт к удалению его из команды и сделает недоступным всё его содержимое.
Вы действительно хотите удалить канал {display_name}?",
- "delete_post.cancel": "Отмена",
- "delete_post.comment": "Комментарий",
- "delete_post.confirm": "Подтвердите удаление {term}",
- "delete_post.del": "Удалить",
- "delete_post.post": "Сообщение",
- "delete_post.question": "Действительно хотите удалить {term}?",
- "delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
- "edit_channel_header.editHeader": "Изменить заголовок канала...",
- "edit_channel_header.previewHeader": "Правка заголовка",
- "edit_channel_header_modal.cancel": "Отмена",
- "edit_channel_header_modal.description": "Измените текст, который добавится после названия канала в заголовке.",
- "edit_channel_header_modal.error": "Заоловок канала слишком длинный",
- "edit_channel_header_modal.save": "Сохранить",
- "edit_channel_header_modal.title": "Редактировать заголовок {channel}",
- "edit_channel_header_modal.title_dm": "Правка заголовка",
- "edit_channel_private_purpose_modal.body": "This text appears in the \"View Info\" modal of the private channel.",
- "edit_channel_purpose_modal.body": "Опишите, как должен использоваться этот канал. Текст будет виден после нажатия кнопки \"Еще...\" в списке каналов и поможет другим пользователям с выбором.",
- "edit_channel_purpose_modal.cancel": "Отмена",
- "edit_channel_purpose_modal.error": "Назначение канала слишком длинное",
- "edit_channel_purpose_modal.save": "Сохранить",
- "edit_channel_purpose_modal.title1": "Редактировать Назначение",
- "edit_channel_purpose_modal.title2": "Редактировать назначение для ",
- "edit_command.save": "Обновить",
- "edit_post.cancel": "Отмена",
- "edit_post.edit": "Редактировать {title}",
- "edit_post.editPost": "Редактировать сообщение...",
- "edit_post.save": "Сохранить",
- "email_signup.address": "Адрес электронной почты",
- "email_signup.createTeam": "Создать команду",
- "email_signup.emailError": "Пожалуйста, введите корректный адрес электронной почты.",
- "email_signup.find": "Найти мои команды",
- "email_verify.almost": "{siteName}: Вы почти закончили",
- "email_verify.failed": " Ошибка отправки сообщения.",
- "email_verify.notVerifiedBody": "Пожалуйста, подтвердите свой email адрес. Проверьте папку \"Входящие\".",
- "email_verify.resend": "Отправить ещё раз",
- "email_verify.sent": " Email проверки отправлен.",
- "email_verify.verified": "{siteName} Email проверен",
- "email_verify.verifiedBody": "
",
- "email_verify.verifyFailed": "Не удалось подтвердить email.",
- "emoji_list.actions": "Действия",
- "emoji_list.add": "Добавить пользовательский смайл",
- "emoji_list.creator": "Автор",
- "emoji_list.delete": "Удалить",
- "emoji_list.delete.confirm.button": "Удалить",
- "emoji_list.delete.confirm.msg": "Это навсегда удалит пользовательский эмодзи. Вы точно хотите его удалить?",
- "emoji_list.delete.confirm.title": "Удалить пользовательский эмодзи",
- "emoji_list.empty": "Не найдено загруженного эмодзи",
- "emoji_list.header": "Пользовательские эмодзи",
- "emoji_list.help": "Пользовательские смайлы доступны для всех на вашем сервере. Введите ':' в окне сообщения, чтобы открыть меню выбора смайла. Другим пользователям, возможно, потребуется обновить страницу, прежде чем появятся новые смайлы.",
- "emoji_list.help2": "Совет: Если вы добавите #, ## или ### в начале строки со смайлом, то получите смайл большего размера. Чтобы попробовать, отправьте сообщение: '# :smile:'.",
- "emoji_list.image": "Изображения",
- "emoji_list.name": "Имя",
- "emoji_list.search": "Найти кастомные Emoji",
- "emoji_list.somebody": "Кто-то в другой команде",
- "emoji_picker.activity": "Активность",
- "emoji_picker.custom": "По выбору",
- "emoji_picker.emojiPicker": "Выбор эмодзи",
- "emoji_picker.flags": "Флаги",
- "emoji_picker.foods": "Еда",
- "emoji_picker.nature": "Природа",
- "emoji_picker.objects": "Объекты",
- "emoji_picker.people": "Люди",
- "emoji_picker.places": "Places",
- "emoji_picker.recent": "Недавно использованные",
- "emoji_picker.search": "Поиск",
- "emoji_picker.symbols": "Символы",
- "error.local_storage.help1": "Включить cookies",
- "error.local_storage.help2": "Отключите режим инкогнито",
- "error.local_storage.help3": "Воспользуйтесь поддерживаемым браузером (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Mattermost не может сохранить настройки в локальном хранилище, так как браузер предотвращает использование данной возможности. Чтобы позволить Mattermost загрузиться, попробуйте следовать следующим инструкциям:",
- "error.not_found.link_message": "Назад в Mattermost",
- "error.not_found.message": "Эта страница не существует",
- "error.not_found.title": "Страница не найдена",
- "error_bar.expired": "Корпоративная лицензия истекла и некоторые возможности могут быть отключены. Продлить.",
- "error_bar.expiring": "Корпоративная лицензия истекает {date}. Продлить.",
- "error_bar.past_grace": "Корпоративная лицензия истекла и некоторые возможности могут быть отключены. Пожалуйста, обратитесь к администратору.",
- "error_bar.preview_mode": "Режим просмотра: Email уведомления не настроены",
- "error_bar.site_url": "Please configure your {docsLink} in the {link}.",
- "error_bar.site_url.docsLink": "Адрес сайта:",
- "error_bar.site_url.link": "Системная консоль",
- "error_bar.site_url_gitlab": "Please configure your {docsLink} in the System Console or in gitlab.rb if you're using GitLab Mattermost.",
- "file_attachment.download": "Скачать",
- "file_info_preview.size": "Размер ",
- "file_info_preview.type": "Тип файла ",
- "file_upload.disabled": "Прикрепление файлов отключено.",
- "file_upload.fileAbove": "Нельзя загрузить файл больше {max}МБ: {filename}",
- "file_upload.filesAbove": "Нельзя загрузить файлы больше {max}МБ: {filenames}",
- "file_upload.limited": "Загрузка ограничена максимум {count, number} файлами. Пожалуйста используйте дополнительные сообщения для отправки большего количества файлов.",
- "file_upload.pasted": "Изображение вставлено в ",
- "filtered_channels_list.search": "Поиск каналов",
- "filtered_user_list.any_team": "Все пользователи",
- "filtered_user_list.count": "{count, number} {count, plural, one {member} other {members}}",
- "filtered_user_list.countTotal": "{startCount, number} - {endCount, number} {count, plural, =0 {0 участников} one {участник} few {участника} other {участников}} из {total}",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 участников} one {участник} few {участника} other {участников}} из {total}",
- "filtered_user_list.member": "Участник",
- "filtered_user_list.next": "Далее",
- "filtered_user_list.prev": "Предыдущая",
- "filtered_user_list.search": "Поиск пользователей",
- "filtered_user_list.searchButton": "Поиск",
- "filtered_user_list.show": "Фильтр:",
- "filtered_user_list.team_only": "Участники команды",
- "find_team.email": "Электронная почта",
- "find_team.findDescription": "Сообщение отправлено на вашу электронную почту со ссылками на все команды, в которых вы участник.",
- "find_team.findTitle": "Поиск вашей команды",
- "find_team.getLinks": "Получить сообщение на электронную почту со ссылками на все команды, где вы участник.",
- "find_team.placeholder": "you@domain.com",
- "find_team.send": "Отправить",
- "find_team.submitError": "Введите корректный email",
- "flag_post.flag": "Отметить для отслеживания",
- "flag_post.unflag": "Не помечено",
- "general_tab.chooseDescription": "Пожалуйста, выберите новое описание для вашей команды",
- "general_tab.codeDesc": "Нажмите 'Редактировать' для создания нового кода приглашения.",
- "general_tab.codeLongDesc": "Код приглашения используется как часть URL в ссылке приглашения в команду, созданная в разделе {getTeamInviteLink} в главном меню. Пересоздание создаст новую ссылку для приглашения и сделает предыдущую недействительной.",
- "general_tab.codeTitle": "Код приглашения",
- "general_tab.emptyDescription": "Нажмите 'Редактировать' для добавления описания.",
- "general_tab.getTeamInviteLink": "Получить ссылку для приглашения в команду",
- "general_tab.includeDirDesc": "Including this team will display the team name from the Team Directory section of the Home Page, and provide a link to the sign-in page.",
- "general_tab.no": "Нет",
- "general_tab.openInviteDesc": "Если разрешено, ссылка на эту команду будет отображаться на странице входа, позволяя любому пользователю войти в команду.",
- "general_tab.openInviteTitle": "Разрешить вход любому пользователю с учетной записью на этом сервере",
- "general_tab.regenerate": "Создать новый",
- "general_tab.required": "Обязательное поле",
- "general_tab.teamDescription": "Описание команды",
- "general_tab.teamDescriptionInfo": "Описание команды предоставляет дополнительную информацию, помогающую пользователям выбрать нужную им команду. Максимум 50 символов.",
- "general_tab.teamName": "Название команды",
- "general_tab.teamNameInfo": "Установите название команды, отображаемое на экране входа и в левом верхнем углу боковой панели.",
- "general_tab.title": "Общие настройки",
- "general_tab.yes": "Да",
- "get_app.alreadyHaveIt": "Уже есть?",
- "get_app.androidAppName": "Mattermost для Android",
- "get_app.androidHeader": "Mattermost будет удобнее с нашим приложением для Android",
- "get_app.continue": "продолжить",
- "get_app.continueWithBrowser": "Или {link}",
- "get_app.continueWithBrowserLink": "продолжить в браузере",
- "get_app.iosHeader": "Mattermost будет удобнее с нашим приложением для iPhone",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Открыть Mattermost",
- "get_link.clipboard": " Ссылка скопирована",
- "get_link.close": "Закрыть",
- "get_link.copy": "Скопировать ссылку",
- "get_post_link_modal.help": "The link below allows authorized users to see your post.",
- "get_post_link_modal.title": "Скопировать постоянную ссылку",
- "get_public_link_modal.help": "Ссылка ниже позволяет видеть этот файл любому, не будучи зарегистрированным на этом сервере.",
- "get_public_link_modal.title": "Получить публичную ссылку",
- "get_team_invite_link_modal.help": "Отправьте товарищам эту ссылку для регистрации в команде. Ссылку можно отправить нескольким людям, так как она не изменится, пока Администратор команды не создаст новую в Настройках команды.",
- "get_team_invite_link_modal.helpDisabled": "Создание пользователей было отключено для вашей команды. Пожалуйста, обратитесь к администратору команды за подробностями.",
- "get_team_invite_link_modal.title": "Ссылка для приглашения в команду",
- "help.attaching.downloading": "#### Загрузка файлов\nДля загрузки вложенного файла щелкните иконку рядом с миниатюрой файла или в окне просмотра по надписи **Загрузить**.",
- "help.attaching.dragdrop": "#### Перетаскивание\nДля загрузки файла или нескольких файлов перетащите файлы с вашего компьютера в окно клиента. Перетаскивание прикрепляет файлы к строке ввода текста, затем вы можете добавить сообщение и нажать **ENTER** для отправки.",
- "help.attaching.icon": "#### Иконка \"Вложение\"\nАльтернативный способ загрузки - щелчок по иконки скрепки в панели ввода текста. После откроется ваш системный файловый браузер где вы можете перейти к нужным файлам и нажать **Открыть** для загрузки файлов в панель ввода сообщений. Где можно ввести сообщение и затем нажмите **ENTER** для отправки.",
- "help.attaching.limitations": "## Ограничения на размер файлов\n Mattermost поддерживает до пяти прикрепленных файлов в одном сообщении, размер каждого файла до 50 Мб.",
- "help.attaching.methods": "## Способы отправки файлов\nПрикрепить файл можно перетащив его в окно программы или воспользовавшись кнопкой вложения в окне ввода сообщений.",
- "help.attaching.notSupported": "Предпросмотр документов (Word, Excel, PPT) пока не поддерживается.",
- "help.attaching.pasting": "#### Вставка изображений\nВ браузерах Chrome и Edge, можно загружать файлы, вставляя их из буфера обмена. Пока не поддерживается в других браузерах.",
- "help.attaching.previewer": "## Просмотр файлов\nMattermost имеет встроенный просмотрщик меди файлов, загруженных файлов и общих ссылок. Щелкните миниатюру вложенного файла для открытия окна просмотра.",
- "help.attaching.publicLinks": "#### Размещение общедоступных ссылок\nОбщедоступные ссылки позволяют обмениваться вложенными файлами с людьми за пределами вашей команды Mattermost. Откройте просмотрщик файлов, нажав на иконку вложения, затем нажмите **Получить общедоступную ссылку**. Откроется диалоговое окно со ссылкой на копию файла. При открытии общедоступной ссылки другим пользователем файл будет автоматически загружен.",
- "help.attaching.publicLinks2": "Если команда **Получить общедоступную ссылку** не отображается в окне просмотра и вы хотите воспользоваться данной опцией, вы можете обратиться к вашему системному администратору для включения в Системной консоли в разделе **Безопасность** > **Общедоступные ссылки**.",
- "help.attaching.supported": "#### Поддерживаемые типы медиа-контента\nЕсли вы попытаетесь просмотреть не поддерживаемый формат медиа файлов, просмотрщик файлов покажет значок стандартного приложения. Поддерживаемые медиа форматы в значительной степени зависят от вашего браузера и операционной системы, но следующие форматы поддерживаются Mattermost в большинстве браузеров:",
- "help.attaching.supportedList": "- Изображения: BMP, GIF, JPG, JPEG, PNG\n- Видео: MP4\n- Аудио: MP3, M4A\n- Документы: PDF",
- "help.attaching.title": "# Прикрепление файлов\n_____",
- "help.commands.builtin": "## Встроенные команды\nСледующие слэш команды доступны на всех установках Mattermost:",
- "help.commands.builtin2": "Начните писать с `/` и вы увидите список команд, доступных для использования. Подсказки автодополнения помогут вам примерами (чёрный) и коротким описанием команд (серый).",
- "help.commands.custom": "## Пользовательские команды\nПользовательские команды позволяют взаимодействовать с внешними приложениями. Например, можно настроить команду для проверки внутренних медицинских записей пациента `/patient joe smith` или проверить прогноз погоды в городе `/weather toronto week`. Уточните у системного администратора или откройте список команд, введя`/`, чтобы определить, есть ли у вас настроенные команды.",
- "help.commands.custom2": "Пользовательские слэш-команды отключены по умолчанию и могут быть включены системным администратором в **Системная консоль** > **Интеграции** > **Webhook'и и команды**. Более подробную информацию о конфигурировании слэш-команд вы можете найти в [документации](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.intro": "В текстовых полях ввода Mattermost можно вводить команды управления которые выполняют действия. Введите \"/\" и далее после неё команду и аргументы, чтобы выполнить действие.\n\nВстроенные команды управления доступны во всех установках Mattermost, пользовательские команды настраиваются для взаимодействия с внешними приложениями. О настройке команд можно узнать на странице [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
- "help.commands.title": "# Выполнение команд\n___",
- "help.composing.deleting": "## Удаление сообщений\nДля удаления сообщения нажмите иконку **[...]** рядом с любым размещенным вами сообщением, затем нажмите **Удалить**. Администраторы системы и команды могут удалять любые сообщения в их системе или команде.",
- "help.composing.editing": "## Редактирование сообщения\nДля редактирования сообщения нажмите иконку **[...]** рядом с отправленным вами сообщением, затем щелкните **Редактировать**. После внесения изменений, нажмите **ENTER** для сохранения. Редактирование сообщений не вызывает триггер @mention notifications, всплывающие уведомления или звуковые уведомления.",
- "help.composing.linking": "## Ссылка на сообщение\nОпция **Постоянная ссылка** создает ссылку к любому сообщению. Её использование в канале позволяет пользователям просматривать связанное сообщение в архиве сообщений. Пользователи которые не являются членами канала с сообщением, на которое была размещена ссылка, не могут просмотреть сообщение. Для получения постоянной ссылки на сообщение щелкните иконку **[...]** рядом с сообщением > **Постоянная ссылка** > **Копировать ссылку**.",
- "help.composing.posting": "## Отправка сообщений\nНапишите сообщение введя текст в окне ввода сообщения, затем нажмите **ENTER** для отправки. Используйте **SHIFT+ENTER** для перехода на новую строку без отправки сообщения. Для отправки сообщений по **CTRL+ENTER** зайдите в **Главное меню > Учётная запись > Отправлять сообщения по CTRL+ENTER**.",
- "help.composing.posts": "#### Сообщения\nСообщения могут содержать родительские сообщения. Эти сообщения часто начинаются с цепочки ответов. Сообщения пишут в текстовом поле ввода и отправляют нажатием на кнопку в центральной панели.",
- "help.composing.replies": "#### Ответы\nЧтобы ответить на сообщение кликните на пиктограмму следующую за любым текстом сообщения. Это действие откроет правую боковую панель где вы можете увидеть ветвь сообщения, там напишите и отправьте ваш ответ. Ответы выделены отступом в центральной панели это означает, что это дочерние сообщения от родительского сообщения.\n\nКогда пишите ответ в правой панели кликните пиктограмму развернуть/свернуть (перекрестие) в верху боковой панели, это облегчит чтение.",
- "help.composing.title": "# Отправка сообщений\n_____",
- "help.composing.types": "## Типы сообщений\nОтветы на сообщения организуются в нити.",
- "help.formatting.checklist": "Составьте список задач, включив в квадратные скобки:",
- "help.formatting.checklistExample": "- [ ] Первый пункт\n- [ ] Второй пункт\n- [x] Завершённый пункт",
- "help.formatting.code": "## Блоки кода\n\nБлоки кода отбиваются 4 пробелами в начале строки или ставятся три апострофа в начале и конце блока кода.",
- "help.formatting.codeBlock": "Блок кода",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Смайлы\n\nДля открытия перечня автоподстановки смайлов введите `:`. Полный перечень смайлов - [здесь](http://www.emoji-cheat-sheet.com/). Так же возможно создание пользовательских смайлов - [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html) если желаемый смайл отсутствует.",
- "help.formatting.example": "Пример:",
- "help.formatting.githubTheme": "**Тема GitHub**",
- "help.formatting.headings": "## Заголовки\n\nЗаголовки отмечаются решёткой в начале строки и пробелом после неё, Чтобы создать заголовок поменьше, используйте больше решёток (от двух до шести).",
- "help.formatting.headings2": "Альтернативно, можно обрамлять текст символами `===` или `---` для создания заголовков.",
- "help.formatting.headings2Example": "Большие заголовки\n-------------",
- "help.formatting.headingsExample": "## Заголовок 1\n### Заголовок 2\n#### Заголовок 3",
- "help.formatting.images": "## Встроенные изображения\n\nЧтобы вставить изображение в сообщение, начните писать с `!`, далее альтернативное описание в квадратных скобках и ссылку в круглых. Напишите текст в скобках после ссылки, чтобы добавить текст поверх картинки.",
- "help.formatting.imagesExample": "\n\nи\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Inline-код\n\nДля вставки кода внутри предложений нужно заключать этот код в апострофы (на букве Ё).",
- "help.formatting.intro": "Markdown позволяет легко форматировать сообщения. Наберите своё сообщения, как вы всегда это делаете, а потом примените правила, чтобы его отформатировать.",
- "help.formatting.lines": "## Линии\n\nВы можете создать линию при помощи трёх символов `*`, `_`, или `-`.",
- "help.formatting.linkEx": "[Сходи на Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Ссылки\n\nДля создания именованных ссылок, введите отображаемый текст в квадратных скобках и связанную с ним ссылку в круглых скобках.",
- "help.formatting.listExample": "* элемент 1\n* элемент 2\n * элемент 2.1",
- "help.formatting.lists": "## Списки\n\nДля создания списка используйте `*` или `-` в качестве маркера. Добавив два пробела перед символом маркера.",
- "help.formatting.monokaiTheme": "**Тема Monokai**",
- "help.formatting.ordered": "Сделать упорядоченный список, используя номера:",
- "help.formatting.orderedExample": "1. первый пункт\n2. второй пункт",
- "help.formatting.quotes": "## Блок цитаты\n\nСоздать блок цитаты используя \">\".",
- "help.formatting.quotesExample": "`> блок цитаты` отображается:",
- "help.formatting.quotesRender": "> Цитаты",
- "help.formatting.renders": "Распознавать как:",
- "help.formatting.solirizedDarkTheme": "**Solarized Dark**",
- "help.formatting.solirizedLightTheme": "**Solarized Light**",
- "help.formatting.style": "## Стили текста\n\nВы можете поставить символы `_` или `*` вокруг слова что бы сделать его курсивом. Используйте два символа что бы сделать текст жирным.\n\n* `_курсив_` отображается как _курсив_\n* `**жирный**` отображается как **жирный**\n* `**_жирный-курсив_**` отображается как **_жирный-курсив_**\n* `~~зачёркнутый~~` отображается как ~~зачёркнутый~~",
- "help.formatting.supportedSyntax": "Поддерживаемые языки:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Подсветка синтаксиса\n\nЧтобы добавить подсветку синтаксиса, напишите язык после ``` в начале блока кода. Mattermost предлагает четыре темы оформления (GitHub, Solarized Dark, Solarized Light, Monokai), которые можно изменить в **Настройки учётной записи** > **Вид** > **Тема** > **Пользовательская тема** > **Center Channel Styles**",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Hello, 世界\")\n }",
- "help.formatting.tableExample": "| По левому краю | По центру | По правому краю |\n| :-------------- |:---------------:| ---------------:|\n| Строка 1 | этот текст | 100₽ |\n| Строка 2 | выравнен | 10₽ |\n| Строка 3 | по центру | 1₽ |",
- "help.formatting.tables": "## Таблицы\n\nСоздайте таблицу разместив пунктирную линию ниже заголовка строки и разделите столбцы знаком `|`. (Не нужно разлиновывать и так будет работать). Разделите таблицу на столбцы установив знак `:` в строке заголовка.",
- "help.formatting.title": "# Форматирование текста\n_____",
- "help.learnMore": "Узнать больше:",
- "help.link.attaching": "Прикрепление файлов",
- "help.link.commands": "Выполнение команд",
- "help.link.composing": "Написание Сообщений и Ответов",
- "help.link.formatting": "Форматирование сообщений с помощью Markdown",
- "help.link.mentioning": "Упоминание участников команды",
- "help.link.messaging": "Простая Переписка",
- "help.mentioning.channel": "#### @Channel\nВы можете уведомить весь канал, набрав `@channel`. Каждый участник канала получит уведомление, как и если бы его упомянули лично.",
- "help.mentioning.channelExample": "@channel отличная работа над собеседованиями. Я думаю мы нашли несколько потенциальных кандидатов!",
- "help.mentioning.mentions": "## @Упоминания\nИспользуйте @упоминания, чтобы привлечь внимание участника команды.",
- "help.mentioning.recent": "## Последние Упоминания\nНажмите кнопку `@` рядом с полем поиска для запроса Вашего последнего @mentions и слова, которые вызывают упоминания. Нажмите кнопку **прыжок** рядом с результатом поиска в rhs чтобы пропустить центральную область канала и местоположения сообщения с упоминанием.",
- "help.mentioning.title": "# Упоминание участников команды\n_____",
- "help.mentioning.triggers": "## Слова-триггеры уведомлений\nВ дополнение к уведомлениям по @username и @channel, Вы можете настроить слова, упоминание которых тоже будет инициировать уведомления, в **Настройки учетной записи** > **Уведомления** > **Слова-триггеры уведомлений**. По умолчанию, Вы получаете уведомления только при упоминании своего имени, но Вы можете добавить больше слов, разделённых запятыми, введя их в поле ввода. Это полезно, если Вы хотите получать уведомления относительно всех сообщений по определенным темам, например, \"Интервью\", или \"Продажи\".",
- "help.mentioning.username": "#### @Username\nВы можете упомянуть участника команды, поставив перед его именем пользователя символ `@`, и он получит уведомление что был упомянут.\n\nВведите символ `@`, чтобы получить список участников команды, которые могут быть упомянуты. Для фильтрации списка введите первые несколько букв имени пользователя, имени, фамилии или псевдонима. Используя клавиши стрелки вверх и вниз Вы можете пролистать список пользователей, а нажатием клавиши **ENTER** выбрать того пользователя, которого хотите упомянуть. После выбора имя пользователя автоматически заменится на полное имя или псевдоним.\nСледующий пример отправляет специальное уведомление об упоминании **alice**, которое оповестит её на канале о сообщении где она была упомянута. Если **alice** была вдалеке от Mattermost, но у неё включены [Уведомления по электронной почте](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications), то она получит сообщение по электронной почте о своём упоминании вместе с текстом сообщения.",
- "help.mentioning.usernameCont": "Если пользователь, которого вы упомянули, не является участником канала, будет выведено системное предупреждение. Это временное предупреждение будет видно только вам. Чтобы добавить упомянутого пользователя в канал, нажмите на кнопку выпадающего меню рядом с названием канала и выберите **Добавить участников**.",
- "help.mentioning.usernameExample": "@alice как прошло интервью в новым кандидатом?",
- "help.messaging.attach": "**Прикрепить файлы** перетащив их в окно Mattermost или щелкнув по иконке в текстовом поле.",
- "help.messaging.emoji": "**Быстрое добавление смайлов** набрав \":\", открывается перечень смайлов. Если требуемый смайл отсутствует, вы можете создать свой собственный [Пользовательские смайлы](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**Форматируйте свои сообщения** с помощью Markdown, который поддерживает стили текста, заголовки, ссылки, эмотиконы, блоки кода, цитаты, таблицы, списки и встроенные картинки.",
- "help.messaging.notify": "**Зовите участников команды** когда они нужны, набрав `@имя`.",
- "help.messaging.reply": "**Ответить на сообщение** нажав на стрелку ответа рядом с текстом сообщения.",
- "help.messaging.title": "# Основы обмена сообщениями\n_____",
- "help.messaging.write": "**Написать сообщение** используйте поле ввода текста внизу Mattermost. Нажмите **ENTER** для отправки сообщения. Используйте **Shift+ENTER** для перехода на новую строку без отправки сообщения.",
- "installed_command.header": "Слэш-команды",
- "installed_commands.add": "Добавить слэш-команду",
- "installed_commands.delete.confirm": "This action permanently deletes the slash command and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_commands.empty": "Команда не найдена",
- "installed_commands.header": "Слэш-команды",
- "installed_commands.help": "Use slash commands to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_commands.help.appDirectory": "Каталог приложений",
- "installed_commands.help.buildYourOwn": "Build your own",
- "installed_commands.search": "Поиск по слэш-командам",
- "installed_commands.unnamed_command": "Неизвестная Slash-команда",
- "installed_incoming_webhooks.add": "Добавить входящий Webhook",
- "installed_incoming_webhooks.delete.confirm": "This action permanently deletes the incoming webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_incoming_webhooks.empty": "Не обнаружено входящих webhook'ов",
- "installed_incoming_webhooks.header": "Входящие вебхуки",
- "installed_incoming_webhooks.help": "Use incoming webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_incoming_webhooks.help.appDirectory": "Каталог приложений",
- "installed_incoming_webhooks.help.buildYourOwn": "Build your own",
- "installed_incoming_webhooks.search": "Поиск Входящих Webhooks",
- "installed_incoming_webhooks.unknown_channel": "Приватный Webhook",
- "installed_integrations.callback_urls": "Адреса колбэка: {urls}",
- "installed_integrations.client_id": "ID клиента: {clientId}",
- "installed_integrations.client_secret": "Secret Клиента: {clientSecret}",
- "installed_integrations.content_type": "Content-Type: {contentType}",
- "installed_integrations.creation": "Создано {creator} в {createAt, date, full}",
- "installed_integrations.delete": "Удалить",
- "installed_integrations.edit": "Редактировать",
- "installed_integrations.hideSecret": "Скрыть Secret",
- "installed_integrations.regenSecret": "Создать новый Secret",
- "installed_integrations.regenToken": "Создать новый токен",
- "installed_integrations.showSecret": "Показать Secret",
- "installed_integrations.token": "Token: {token}",
- "installed_integrations.triggerWhen": "Триггер Когда: {triggerWhen}",
- "installed_integrations.triggerWords": "Слова-триггеры: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Безымянное OAuth 2.0 приложение",
- "installed_integrations.url": "URL: {url}",
- "installed_oauth_apps.add": "Подключить OAuth 2.0 приложение",
- "installed_oauth_apps.callbackUrls": "Callback URLs (Один на каждую строку)",
- "installed_oauth_apps.cancel": "Отмена",
- "installed_oauth_apps.delete.confirm": "This action permanently deletes the OAuth 2.0 application and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_oauth_apps.description": "Описание",
- "installed_oauth_apps.empty": "OAuth 2.0 приложения не найдены",
- "installed_oauth_apps.header": "OAuth 2.0 приложения",
- "installed_oauth_apps.help": "Create {oauthApplications} to securely integrate bots and third-party apps with Mattermost. Visit the {appDirectory} to find available self-hosted apps.",
- "installed_oauth_apps.help.appDirectory": "Каталог приложений",
- "installed_oauth_apps.help.oauthApplications": "OAuth 2.0 приложения",
- "installed_oauth_apps.homepage": "Домашняя страница",
- "installed_oauth_apps.iconUrl": "URL иконки",
- "installed_oauth_apps.is_trusted": "Доверенное: {isTrusted}",
- "installed_oauth_apps.name": "Отображаемое имя",
- "installed_oauth_apps.save": "Сохранить",
- "installed_oauth_apps.search": "Поиск OAuth 2.0 приложений",
- "installed_oauth_apps.trusted": "Доверенное",
- "installed_oauth_apps.trusted.no": "Нет",
- "installed_oauth_apps.trusted.yes": "Да",
- "installed_outgoing_webhooks.add": "Добавить исходящий Webhook",
- "installed_outgoing_webhooks.delete.confirm": "This action permanently deletes the outgoing webhook and breaks any integrations using it. Are you sure you want to delete it?",
- "installed_outgoing_webhooks.empty": "Не обнаружено исходящих вебхуков",
- "installed_outgoing_webhooks.header": "Исходящие Webhook'и",
- "installed_outgoing_webhooks.help": "Use outgoing webhooks to connect external tools to Mattermost. {buildYourOwn} or visit the {appDirectory} to find self-hosted, third-party apps and integrations.",
- "installed_outgoing_webhooks.help.appDirectory": "Каталог приложений",
- "installed_outgoing_webhooks.help.buildYourOwn": "Build your own",
- "installed_outgoing_webhooks.search": "Поиск Исходящих Webhooks",
- "installed_outgoing_webhooks.unknown_channel": "Приватный вебхук",
- "integrations.add": "Добавить",
- "integrations.command.description": "Команды вызывают отправляют события к внешним приложениям",
- "integrations.command.title": "Команда",
- "integrations.delete.confirm.button": "Удалить",
- "integrations.delete.confirm.title": "Удалить интеграцию",
- "integrations.done": "Завершено",
- "integrations.edit": "Редактировать",
- "integrations.header": "Интеграции",
- "integrations.help": "Visit the {appDirectory} to find self-hosted, third-party apps and integrations for Mattermost.",
- "integrations.help.appDirectory": "Каталог приложений",
- "integrations.incomingWebhook.description": "Входящие вебхуки позволяют внешним приложениям отправлять сообщения",
- "integrations.incomingWebhook.title": "Входящие вебхуки",
- "integrations.oauthApps.description": "OAuth 2.0 позволяет внешним приложения делать авторизованные запросы к Mattermost API.",
- "integrations.oauthApps.title": "OAuth 2.0 приложения",
- "integrations.outgoingWebhook.description": "Исходящие вебхуки позволяют получать и отвечать на сообщения",
- "integrations.outgoingWebhook.title": "Исходящий вебхук",
- "integrations.successful": "Установлено",
- "intro_messages.DM": "Начало истории личных сообщений с {teammate}. Рамещённые здесь сообщения и файлы не видны за пределами этой области.",
- "intro_messages.GM": "Начало истории групповых сообщений с {names}. Размещённые здесь сообщения и файлы не видны за пределами этой области.",
- "intro_messages.anyMember": " Любой участник может зайти и читать этот канал.",
- "intro_messages.beginning": "Начало {name}",
- "intro_messages.channel": "канал",
- "intro_messages.creator": "{name} - {type}, созданный {creator} {date}",
- "intro_messages.default": "
Начало {display_name}
Добро пожаловать в {display_name}!
Отправляйте сообщения здесь, если хотите чтобы его увидели все. Каждый автоматически становится участником этого канала при входе в команду.
",
- "intro_messages.group": "приватный канал",
- "intro_messages.group_message": "Начало истории групповых сообщений с участниками. Размещённые здесь сообщения и файлы не видны за пределами этой области.",
- "intro_messages.invite": "Пригласить других в {type}",
- "intro_messages.inviteOthers": "Пригласить других в эту команду",
- "intro_messages.noCreator": "{name} - {type}, созданный {date}",
- "intro_messages.offTopic": "
Начало {display_name}
{display_name}, канал для общения по нерабочим вопросам.
",
- "intro_messages.onlyInvited": " Только приглашенные пользователи могут видеть этот приватный канал.",
- "intro_messages.purpose": " Назначение для {type}: {purpose}.",
- "intro_messages.setHeader": "Изменить заголовок",
- "intro_messages.teammate": "Начало истории личных сообщений с участником. Личные сообщения и файлы доступны здесь и не видны за пределами этой области.",
- "invite_member.addAnother": "Добавить следующего",
- "invite_member.autoJoin": "Приглашённые пользователи автоматически присоединяются к каналу {channel}.",
- "invite_member.cancel": "Отмена",
- "invite_member.content": "Электронная почта в настоящее время отключена для вашей команды, и приглашение по электронной почте не может быть отправлено. Обратитесь к системному администратору, чтобы включить опцию приглашения по электронной почте.",
- "invite_member.disabled": "Создание пользователей было отключен для вашей команды. Пожалуйста, обратитесь к администратору команды для получения дополнительной информации.",
- "invite_member.emailError": "Пожалуйста, введите корректный email",
- "invite_member.firstname": "Имя",
- "invite_member.inviteLink": "Ссылка для приглашения в команду",
- "invite_member.lastname": "Фамилия",
- "invite_member.modalButton": "Да, Отменить",
- "invite_member.modalMessage": "Вы имеете неотправленные приглашения, вы уверены, что хотите отменить их?",
- "invite_member.modalTitle": "Отклонить приглашение?",
- "invite_member.newMember": "Отправить приглашение на электронную почту",
- "invite_member.send": "Выслать приглашение",
- "invite_member.send2": "Выслать приглашения",
- "invite_member.sending": " Отправка",
- "invite_member.teamInviteLink": "You can also invite people using the {link}.",
- "ldap_signup.find": "Найти команды",
- "ldap_signup.ldap": "Создание команды с аккаунтом AD/LDAP",
- "ldap_signup.length_error": "Имя должно быть длиннее 3 символов и короче 15.",
- "ldap_signup.teamName": "Введите название новой команды",
- "ldap_signup.team_error": "Пожалуйста, введите имя команды",
- "leave_private_channel_modal.leave": "Да, покинуть канал",
- "leave_private_channel_modal.message": "Are you sure you wish to leave the private channel {channel}? You must be re-invited in order to re-join this channel in the future.",
- "leave_private_channel_modal.title": "Покинуть приватный канал {channel}",
- "leave_team_modal.desc": "Вы будете удалены из всех публичных и приватных каналов. Если команда приватная, то вы не сможете вернуться. Вы уверены?",
- "leave_team_modal.no": "Нет",
- "leave_team_modal.title": "Покинуть команду?",
- "leave_team_modal.yes": "Да",
- "loading_screen.loading": "Загрузка",
- "login.changed": " Метод входа успешно изменён",
- "login.create": "Создать сейчас",
- "login.createTeam": "Создать команду",
- "login.createTeamAdminOnly": "Эта опция доступна только для системных администраторов и не видна другим пользователям.",
- "login.email": "Электронная почта",
- "login.find": "Искать другие команды",
- "login.forgot": "Я забыл свой пароль",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Неверный пароль.",
- "login.ldapUsername": "Имя пользователя AD/LDAP",
- "login.ldapUsernameLower": "AD/LDAP имя пользователя",
- "login.noAccount": "Отсутствует учётная запись? ",
- "login.noEmail": "Пожалуйста, введите свой email",
- "login.noEmailLdapUsername": "Пожалуйста, введите свой email или {ldapUsername}",
- "login.noEmailUsername": "Пожалуйста, введите свой email или ваше имя пользователя",
- "login.noEmailUsernameLdapUsername": "Пожалуйста, введите либо свой email, либо ваше имя пользователя, либо {ldapUsername}",
- "login.noLdapUsername": "Пожалуйста, введите ваш {ldapUsername}",
- "login.noMethods": "Не настроены методы входа. Пожалуйста, свяжитесь с администратором.",
- "login.noPassword": "Пожалуйста, введите ваш пароль",
- "login.noUsername": "Пожалуйста, введите ваше имя пользователя",
- "login.noUsernameLdapUsername": "Введите ваше имя пользователя или {ldapUsername}",
- "login.office365": "Office 365",
- "login.on": "на {siteName}",
- "login.or": "or",
- "login.password": "Пароль",
- "login.passwordChanged": " Пароль успешно обновлён",
- "login.placeholderOr": " или ",
- "login.session_expired": " Сессия истекла. Пожалуйста, войдите заново",
- "login.signIn": "Войти",
- "login.signInLoading": "Выполняется вход...",
- "login.signInWith": "Войти с помощью:",
- "login.userNotFound": "Мы не обнаружили аккаунт по вашим данным для входа.",
- "login.username": "Имя пользователя",
- "login.verified": " Email подтверждён",
- "login_mfa.enterToken": "To complete the sign in process, please enter a token from your smartphone's authenticator",
- "login_mfa.submit": "Отправить",
- "login_mfa.token": "Токен MFA",
- "login_mfa.tokenReq": "Пожалуйста, введите токен MFA",
- "member_item.makeAdmin": "Сделать администратором",
- "member_item.member": "Участник",
- "member_list.noUsersAdd": "Нет пользователей для добавления.",
- "members_popover.manageMembers": "Управление участниками",
- "members_popover.msg": "Сообщение",
- "members_popover.title": "Участники канала",
- "members_popover.viewMembers": "Просмотреть список участников",
- "mfa.confirm.complete": "Настройка завершена!",
- "mfa.confirm.okay": "Понятно",
- "mfa.confirm.secure": "Теперь ваш аккаунт защищён. В следующий раз будет запрошен ввод кода из Google Authentificator.",
- "mfa.setup.badCode": "Неверный код. Если эта проблема постоянна, свяжитесь с администратором системы.",
- "mfa.setup.code": "Код МПП",
- "mfa.setup.codeError": "Пожалуйста, введите код из Google Authenticator.",
- "mfa.setup.required": "На {siteName} требуется многофакторная проверка подлинности.",
- "mfa.setup.save": "Сохранить",
- "mfa.setup.secret": "Секретный ключ: {secret}",
- "mfa.setup.step1": "Шаг 1: Установите Google Authenticator из iTunes или Google Play",
- "mfa.setup.step2": "Шаг 2: Используйте Google Authenticator для сканирования QR кода или вручную введите секретный ключ",
- "mfa.setup.step3": "Шаг 3: Введите код, сгенерированный Google Authenticator",
- "mfa.setupTitle": "Настройка многофакторной проверки подлинности",
- "mobile.about.appVersion": "Версия приложения: {version} (Сборка {number})",
- "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. Все права защищены",
- "mobile.about.database": "Тип базы данных: {type}",
- "mobile.about.serverVersion": "Версия сервера: {version} (Сборка {number})",
- "mobile.about.serverVersionNoBuild": "Версия сервера: {version}",
- "mobile.account.notifications.email.footer": "Когда отошел более чем на пять минут",
- "mobile.account_notifications.mentions_footer": "Ваше имя (\"@{username}\") всегда вызовет оповещение.",
- "mobile.account_notifications.non-case_sensitive_words": "Другие регистронезависимые слова...",
- "mobile.account_notifications.reply.header": "Отправлять уведомления об ответе",
- "mobile.account_notifications.threads_mentions": "Упоминания в тредах",
- "mobile.account_notifications.threads_start": "Ветки начатые мной",
- "mobile.account_notifications.threads_start_participate": "Threads that I start or participate in",
- "mobile.advanced_settings.reset_button": "Reset",
- "mobile.advanced_settings.reset_message": "\nДанное действие приведёт к очистке локальных данных и перезапуску приложения.\n",
- "mobile.advanced_settings.reset_title": "Reset Cache",
- "mobile.advanced_settings.title": "Дополнительные параметры",
- "mobile.channel_drawer.search": "Перейти к беседе",
- "mobile.channel_info.alertMessageDeleteChannel": "Вы действительно хотите удалить {term} {name}?",
- "mobile.channel_info.alertMessageLeaveChannel": "Вы действительно хотите покинуть {term} {name}?",
- "mobile.channel_info.alertNo": "Нет",
- "mobile.channel_info.alertTitleDeleteChannel": "Удалить {term}",
- "mobile.channel_info.alertTitleLeaveChannel": "Покинуть {term}",
- "mobile.channel_info.alertYes": "Да",
- "mobile.channel_info.delete_failed": "We couldn't delete the channel {displayName}. Please check your connection and try again.",
- "mobile.channel_info.privateChannel": "Приватный канал",
- "mobile.channel_info.publicChannel": "Публичные каналы",
- "mobile.channel_list.alertMessageLeaveChannel": "Вы действительно хотите покинуть {term} {name}?",
- "mobile.channel_list.alertNo": "Нет",
- "mobile.channel_list.alertTitleLeaveChannel": "Покинуть {term}",
- "mobile.channel_list.alertYes": "Да",
- "mobile.channel_list.closeDM": "Close Direct Message",
- "mobile.channel_list.closeGM": "Close Group Message",
- "mobile.channel_list.dm": "Личное сообщение",
- "mobile.channel_list.gm": "Group Message",
- "mobile.channel_list.not_member": "НЕ УЧАСТНИК",
- "mobile.channel_list.open": "Открыть {term}",
- "mobile.channel_list.openDM": "Open Direct Message",
- "mobile.channel_list.openGM": "Open Group Message",
- "mobile.channel_list.privateChannel": "Приватный канал",
- "mobile.channel_list.publicChannel": "Публичный канал",
- "mobile.channel_list.unreads": "НЕПРОЧИТАННЫЕ",
- "mobile.components.channels_list_view.yourChannels": "Ваши каналы:",
- "mobile.components.error_list.dismiss_all": "Отменить все",
- "mobile.components.select_server_view.continue": "Продолжить",
- "mobile.components.select_server_view.enterServerUrl": "Введите адрес сервера",
- "mobile.components.select_server_view.proceed": "Продолжить",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
- "mobile.create_channel": "Создать",
- "mobile.create_channel.private": "Новый приватный канал",
- "mobile.create_channel.public": "Новый публичный канал",
- "mobile.custom_list.no_results": "Нет результатов",
- "mobile.drawer.teamsTitle": "Команды",
- "mobile.edit_post.title": "Редактирование сообщения",
- "mobile.emoji_picker.activity": "ACTIVITY",
- "mobile.emoji_picker.custom": "CUSTOM",
- "mobile.emoji_picker.flags": "FLAGS",
- "mobile.emoji_picker.foods": "FOODS",
- "mobile.emoji_picker.nature": "NATURE",
- "mobile.emoji_picker.objects": "OBJECTS",
- "mobile.emoji_picker.people": "PEOPLE",
- "mobile.emoji_picker.places": "PLACES",
- "mobile.emoji_picker.symbols": "SYMBOLS",
- "mobile.error_handler.button": "Перезапустить",
- "mobile.error_handler.description": "\nНажмите на кнопку Перезапустить, чтобы открыть приложение заново. После запуска, вы можете сообщить о проблеме через меню настроек.\n",
- "mobile.error_handler.title": "Произошла непредвиденная ошибка",
- "mobile.file_upload.camera": "Сделать фото или видео",
- "mobile.file_upload.library": "Библиотека изображений",
- "mobile.file_upload.more": "Еще",
- "mobile.file_upload.video": "Библиотека видео",
- "mobile.help.title": "Помощь",
- "mobile.image_preview.save": "Save Image",
- "mobile.intro_messages.DM": "Начало истории личных сообщений с {teammate}. Личные сообщения и файлы доступны здесь и не видны за пределами этой области.",
- "mobile.intro_messages.default_message": "Это первый канал, который видит новый участник группы - используйте его для отправки сообщений, которые должны увидеть все.",
- "mobile.intro_messages.default_welcome": "Добро пожаловать в {name}!",
- "mobile.join_channel.error": "We couldn't join the channel {displayName}. Please check your connection and try again.",
- "mobile.loading_channels": "Загрузка списка каналов...",
- "mobile.loading_members": "Загрузка списка участников...",
- "mobile.loading_posts": "Загрузка сообщений...",
- "mobile.login_options.choose_title": "Выберите метод входа",
- "mobile.managed.blocked_by": "Blocked by {vendor}",
- "mobile.managed.exit": "Изменить",
- "mobile.managed.jailbreak": "Jailbroken devices are not trusted by {vendor}, please exit the app.",
- "mobile.managed.secured_by": "Secured by {vendor}",
- "mobile.markdown.code.plusMoreLines": "+{count, number} more lines",
- "mobile.more_dms.start": "Start",
- "mobile.more_dms.title": "New Conversation",
- "mobile.notice_mobile_link": "mobile apps",
- "mobile.notice_platform_link": "platform",
- "mobile.notice_text": "Mattermost is made possible by the open source software used in our {platform} and {mobile}.",
- "mobile.notification.in": " в ",
- "mobile.offlineIndicator.connected": "Подключено",
- "mobile.offlineIndicator.connecting": "Подключение...",
- "mobile.offlineIndicator.offline": "Нет соединения с интернетом",
- "mobile.open_dm.error": "We couldn't open a direct message with {displayName}. Please check your connection and try again.",
- "mobile.open_gm.error": "We couldn't open a group message with those users. Please check your connection and try again.",
- "mobile.post.cancel": "Отмена",
- "mobile.post.delete_question": "Вы действительно хотите удалить запись?",
- "mobile.post.delete_title": "Удалить пост",
- "mobile.post.failed_delete": "Удалить сообщение",
- "mobile.post.failed_retry": "Попробовать ещё раз",
- "mobile.post.failed_title": "Не удалось отправить сообщение",
- "mobile.post.retry": "Обновить",
- "mobile.post_info.add_reaction": "Add Reaction",
- "mobile.request.invalid_response": "Получен неверный ответ от сервера",
- "mobile.routes.channelInfo": "Информация",
- "mobile.routes.channelInfo.createdBy": "Создан {creator} в ",
- "mobile.routes.channelInfo.delete_channel": "Удалить канал",
- "mobile.routes.channelInfo.favorite": "Избранные",
- "mobile.routes.channel_members.action": "Удалить участников",
- "mobile.routes.channel_members.action_message": "Вы должны выбрать хотя бы одного участника для удаления с канала.",
- "mobile.routes.channel_members.action_message_confirm": "Вы уверены, что хотите удалить выбранных участников с канала?",
- "mobile.routes.channels": "Каналы",
- "mobile.routes.code": "{language} Code",
- "mobile.routes.code.noLanguage": "Code",
- "mobile.routes.enterServerUrl": "Введите адрес сервера",
- "mobile.routes.login": "Вход",
- "mobile.routes.loginOptions": "Login Chooser",
- "mobile.routes.mfa": "Многофакторная аутентификация",
- "mobile.routes.postsList": "Список постов",
- "mobile.routes.saml": "Single SignOn",
- "mobile.routes.selectTeam": "Выберите команду",
- "mobile.routes.settings": "Параметры",
- "mobile.routes.sso": "Single Sign-On",
- "mobile.routes.thread": "{channelName} Ветка",
- "mobile.routes.thread_dm": "Direct Message Thread",
- "mobile.routes.user_profile": "Профиль",
- "mobile.routes.user_profile.send_message": "Отправить сообщение",
- "mobile.search.jump": "JUMP",
- "mobile.search.no_results": "Ничего не найдено",
- "mobile.select_team.choose": "Ваши команды: ",
- "mobile.select_team.join_open": "Другие команды, к которым вы можете присоединиться.",
- "mobile.select_team.no_teams": "Нет доступных команд, к которым вы можете присоединиться.",
- "mobile.server_ping_failed": "Не удалось подключиться к серверу. Проверьте адрес сервера и подключение к интернету.",
- "mobile.server_upgrade.button": "OK",
- "mobile.server_upgrade.description": "\nДля продолжения работы требуется обновление сервера Mattermost. Пожалуйста, обратитесь к администратору за подробностями.\n",
- "mobile.server_upgrade.title": "Требуется обновление сервера",
- "mobile.server_url.invalid_format": "Адрес должен начинаться с http:// или https://",
- "mobile.session_expired": "Сессия истекла: войдите, чтобы продолжить получение уведомлений.",
- "mobile.settings.clear": "Очистить локальное хранилище",
- "mobile.settings.clear_button": "Очистить",
- "mobile.settings.clear_message": "\nДанное действие приведёт к очистке локальных данных и перезапуску приложения.\n",
- "mobile.settings.team_selection": "Выбор команды",
- "mobile.suggestion.members": "Участники",
- "modal.manaul_status.ask": "Не задавать больше этот вопрос",
- "modal.manaul_status.button": "Да, установите мой статус \"В сети\"",
- "modal.manaul_status.cancel": "Нет, оставьте статус \"{status}\"",
- "modal.manaul_status.message": "Хотите ли вы изменить свой статус на \"В сети\"?",
- "modal.manaul_status.title": "Ваш статус установлен в \"{status}\"",
- "more_channels.close": "Закрыть",
- "more_channels.create": "Создать новый канал",
- "more_channels.createClick": "Нажмите 'Создать Новый Канал' для создания нового канала",
- "more_channels.join": "Присоединиться",
- "more_channels.next": "Далее",
- "more_channels.noMore": "Больше нет каналов для входа",
- "more_channels.prev": "Предыдущая",
- "more_channels.title": "Больше каналов",
- "more_direct_channels.close": "Закрыть",
- "more_direct_channels.message": "Сообщение",
- "more_direct_channels.new_convo_note": "This will start a new conversation. If you’re adding a lot of people, consider creating a private channel instead.",
- "more_direct_channels.new_convo_note.full": "You’ve reached the maximum number of people for this conversation. Consider creating a private channel instead.",
- "more_direct_channels.title": "Личные сообщения",
- "msg_typing.areTyping": "{users} и {last} печатают...",
- "msg_typing.isTyping": "{user} печатает...",
- "msg_typing.someone": "Кто-то",
- "multiselect.add": "Добавить",
- "multiselect.go": "Перейти",
- "multiselect.list.notFound": "Пользователи не найдены",
- "multiselect.numPeopleRemaining": "Use ↑↓ to browse, ↵ to select. You can add {num, number} more {num, plural, one {person} other {people}}. ",
- "multiselect.numRemaining": "Вы можете добавить ещё {num, number}",
- "multiselect.placeholder": "Найти и добавить участников",
- "navbar.addMembers": "Добавить участников",
- "navbar.click": "Щелкните здесь",
- "navbar.delete": "Удалить канал...",
- "navbar.leave": "Покинуть Канал",
- "navbar.manageMembers": "Управление участниками",
- "navbar.noHeader": "У канала нет заголовка.{newline}Нажмите {link}, чтобы добавить.",
- "navbar.preferences": "Настройки уведомлений",
- "navbar.rename": "Переименовать канал...",
- "navbar.setHeader": "Заголовок канала...",
- "navbar.setPurpose": "Установить назначение канала...",
- "navbar.toggle1": "Свернуть меню",
- "navbar.toggle2": "Развернуть меню",
- "navbar.viewInfo": "Информация",
- "navbar.viewPinnedPosts": "Просмотреть прикрепленные сообщения",
- "navbar_dropdown.about": "О Mattermost",
- "navbar_dropdown.accountSettings": "Учетная запись",
- "navbar_dropdown.addMemberToTeam": "Добавить в команду",
- "navbar_dropdown.console": "Системная консоль",
- "navbar_dropdown.create": "Создать команду",
- "navbar_dropdown.emoji": "Пользовательские смайлы",
- "navbar_dropdown.help": "Помощь",
- "navbar_dropdown.integrations": "Интеграции",
- "navbar_dropdown.inviteMember": "Отправить приглашение на электронную почту",
- "navbar_dropdown.join": "Присоединиться к другой команде",
- "navbar_dropdown.keyboardShortcuts": "Горячие клавиши",
- "navbar_dropdown.leave": "Выйти из команды",
- "navbar_dropdown.logout": "Выйти",
- "navbar_dropdown.manageMembers": "Участники",
- "navbar_dropdown.nativeApps": "Скачать приложения",
- "navbar_dropdown.report": "Сообщить о проблеме",
- "navbar_dropdown.switchTeam": "Переключиться на {team}",
- "navbar_dropdown.switchTo": "Переключится на ",
- "navbar_dropdown.teamLink": "Ссылка для приглашения",
- "navbar_dropdown.teamSettings": "Настройки команды",
- "navbar_dropdown.viewMembers": "Просмотреть список участников",
- "notification.dm": "Прямое сообщение",
- "notify_all.confirm": "Подтвердить",
- "notify_all.question": "By using @all or @channel you are about to send notifications to {totalMembers} people. Are you sure you want to do this?",
- "notify_all.title.confirm": "Подтвердите отправку уведомления всему каналу",
- "passwordRequirements": "Требования к паролю:",
- "password_form.change": "Изменить пароль",
- "password_form.click": "Щёлкните сюда для входа в систему.",
- "password_form.enter": "Введите новый пароль для аккаунта на {siteName}.",
- "password_form.error": "Пожалуйста, введите как минимум {chars} символов.",
- "password_form.pwd": "Пароль",
- "password_form.title": "Сброс пароля",
- "password_form.update": "Ваш пароль успешно изменён.",
- "password_send.checkInbox": "Проверьте свои входящие.",
- "password_send.description": "Для сброса пароля введите email адрес, использованный при регистрации",
- "password_send.email": "Электронная почта",
- "password_send.error": "Пожалуйста, введите корректный email.",
- "password_send.link": "Если аккаунт существует, вы получите письмо с инструкциями по восстановлению пароля на: {email}
",
- "password_send.reset": "Сбросить пароль",
- "password_send.title": "Сброс пароля",
- "pdf_preview.max_pages": "Скачать для просмотра дополнительных страниц",
- "pending_post_actions.cancel": "Отмена",
- "pending_post_actions.retry": "Повторить",
- "permalink.error.access": "Постоянная ссылка принадлежит к удалённому сообщению или каналу, к которому у вас нет доступа.",
- "permalink.error.title": "Сообщение не найдено",
- "post_attachment.collapse": "Скрыть...",
- "post_attachment.more": "Ещё…",
- "post_body.commentedOn": "Прокомментировал {name}{apostrophe} сообщение: ",
- "post_body.deleted": "(сообщение удалено)",
- "post_body.plusMore": " plus {count, number} other {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Комментарий не может быть добавлен",
- "post_delete.okay": "Понятно",
- "post_delete.someone": "Кто-то удалил сообщение, которое вы хотели прокомментировать.",
- "post_focus_view.beginning": "Начало архива канала",
- "post_info.del": "Удалить",
- "post_info.edit": "Редактировать",
- "post_info.message.visible": "(Only visible to you)",
- "post_info.message.visible.compact": " (Only visible to you)",
- "post_info.mobile.flag": "Отметить",
- "post_info.mobile.unflag": "Не помечено",
- "post_info.permalink": "Постоянная ссылка",
- "post_info.pin": "Прикрепить",
- "post_info.pinned": "Прикреплено",
- "post_info.reply": "Ответить",
- "post_info.system": "Система",
- "post_info.unpin": "Открепить",
- "post_message_view.edited": "(отредактировано)",
- "posts_view.loadMore": "Больше сообщений",
- "posts_view.loadingMore": "Загрузка сообщений...",
- "posts_view.newMsg": "Новые сообщения",
- "posts_view.newMsgBelow": "{count, plural, one {Новое сообщение} other {Новые сообщения}}",
- "quick_switch_modal.channels": "Каналы",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Начните печатать, а затем используйте TAB для переключения между каналами/командами, ↑↓ для навигации, ↵ для выбора или ESC для отмены.",
- "quick_switch_modal.help_mobile": "Вводите для поиска канала.",
- "quick_switch_modal.help_no_team": "Вводите для поиска канала. Используйте ↑↓ для навигации, ↵ для выбора и ESC для отмены.",
- "quick_switch_modal.teams": "Команды",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "- CTRL+ALT+K",
- "reaction.clickToAdd": "(нажмите, чтобы добавить)",
- "reaction.clickToRemove": "(нажмите, чтобы удалить)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {пользователь} few {пользователя} other {пользователей}}",
- "reaction.reacted": "{users} {reactionVerb} с {emoji}",
- "reaction.reactionVerb.user": "reacted",
- "reaction.reactionVerb.users": "reacted",
- "reaction.reactionVerb.you": "reacted",
- "reaction.reactionVerb.youAndUsers": "reacted",
- "reaction.usersAndOthersReacted": "{users} и {otherUsers, number} {otherUsers, plural, one {другой пользователь} few {других пользователя} other {других пользователей}}",
- "reaction.usersReacted": "{users} и {lastUser}",
- "reaction.you": "Вы",
- "removed_channel.channelName": "канал",
- "removed_channel.from": "Удалено из ",
- "removed_channel.okay": "Хорошо",
- "removed_channel.remover": "{remover} удалил вас из {channel}",
- "removed_channel.someone": "Кто-то",
- "rename_channel.cancel": "Отмена",
- "rename_channel.defaultError": " - Нельзя изменить для канала по умолчанию",
- "rename_channel.displayName": "Имя",
- "rename_channel.displayNameHolder": "Введите имя",
- "rename_channel.handleHolder": "буквы или цифры в нижнем регистре",
- "rename_channel.lowercase": "Должны быть буквы или цифры в нижнем регистре",
- "rename_channel.maxLength": "This field must be less than {maxLength, number} characters",
- "rename_channel.minLength": "Channel name must be {minLength, number} or more characters",
- "rename_channel.required": "Обязательное поле",
- "rename_channel.save": "Сохранить",
- "rename_channel.title": "Переименовать канал",
- "rename_channel.url": "URL",
- "rhs_comment.comment": "Комментарий",
- "rhs_comment.del": "Удалить",
- "rhs_comment.edit": "Редактировать",
- "rhs_comment.mobile.flag": "Флаг",
- "rhs_comment.mobile.unflag": "Не помечено",
- "rhs_comment.permalink": "Постоянная ссылка",
- "rhs_header.backToCallTooltip": "Обратно к вызову",
- "rhs_header.backToFlaggedTooltip": "Вернуться к отмеченным сообщениям",
- "rhs_header.backToPinnedTooltip": "Вернуться к прикреплённым сообщениям",
- "rhs_header.backToResultsTooltip": "Назад к результатам поиска",
- "rhs_header.closeSidebarTooltip": "Закрыть боковую панель",
- "rhs_header.closeTooltip": "Закрыть боковую панель",
- "rhs_header.details": "Детали сообщения",
- "rhs_header.expandSidebarTooltip": "Развернуть боковую панель",
- "rhs_header.expandTooltip": "Сжать боковую панель",
- "rhs_header.shrinkSidebarTooltip": "Сжать боковую панель",
- "rhs_root.del": "Удалить",
- "rhs_root.direct": "Прямое сообщение",
- "rhs_root.edit": "Редактировать",
- "rhs_root.mobile.flag": "Отметить",
- "rhs_root.mobile.unflag": "Не помечено",
- "rhs_root.permalink": "Постоянная ссылка",
- "rhs_root.pin": "Прикрепить",
- "rhs_root.unpin": "Открепить",
- "search_bar.search": "Поиск",
- "search_bar.usage": "
Параметры поиска
Используйте \"кавычки\" для поиска фраз
Используйте слово from: для поиска сообщений нужного пользователя и слово in: для поиска сообщений на нужном канале
",
- "search_header.results": "Результаты поиска",
- "search_header.title2": "Недавние упоминания",
- "search_header.title3": "Отмеченные сообщения",
- "search_header.title4": "Прикреплённые сообщения в {channelDisplayName}",
- "search_item.direct": "Личное сообщение ({username})",
- "search_item.jump": "Переход",
- "search_results.because": "
Если вы ищете часть фразы (например, \"rea\", как часть фразы \"reach\" или \"reaction\"), добавьте * в маску поиска.
Двухбуквенные слова и общие слова, такие как \"this\", \"a\" и \"is\" не появятся в результатах поиска для исключения лишних результатов.
Используйте from: для поиска сообщений пользователя и in: для поиска в канале
",
- "search_results.usageFlag1": "Вы не имеете отмеченных сообщений.",
- "search_results.usageFlag2": "Вы можете добавить флаг в сообщения и комментарии, нажав",
- "search_results.usageFlag3": " иконка напротив временной метки.",
- "search_results.usageFlag4": "Флаги - один из способов, пометки сообщений для последующей деятельности. Ваши флаги не могут быть просмотрены другими пользователями.",
- "search_results.usagePin1": "Пока нет ни одного прикреплённого сообщения.",
- "search_results.usagePin2": "Все участники канала могут прикреплять важные или полезные сообщения.",
- "search_results.usagePin3": "Прикреплённые сообщения видны всем участникам канала.",
- "search_results.usagePin4": "Для прикрепления сообщения: Выберите нужно сообщение и нажмите [...] > \"Прикрепить\".",
- "setting_item_max.cancel": "Отмена",
- "setting_item_max.save": "Сохранить",
- "setting_item_min.edit": "Изменить",
- "setting_picture.cancel": "Отмена",
- "setting_picture.help": "Загрузите изображение профиля в формате BMP, JPG, JPEG или PNG, разрешением не меньше {width} пикселей по ширине и {height} пикселей по высоте.",
- "setting_picture.save": "Сохранить",
- "setting_picture.select": "Выбрать",
- "setting_upload.import": "Импорт",
- "setting_upload.noFile": "Файл не выбран.",
- "setting_upload.select": "Выбрать файл",
- "shortcuts.browser.channel_next": "Forward in history:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Forward in history:\t⌘|]",
- "shortcuts.browser.channel_prev": "Back in history:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Back in history:\t⌘|[",
- "shortcuts.browser.font_decrease": "Zoom out:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Zoom out:\t⌘|-",
- "shortcuts.browser.font_increase": "Zoom in:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Zoom in:\t⌘|+",
- "shortcuts.browser.header": "Built-in Browser Commands",
- "shortcuts.browser.highlight_next": "Highlight text to the next line:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Highlight text to the previous line:\tShift|Up",
- "shortcuts.browser.input.header": "Works inside an input field",
- "shortcuts.browser.newline": "Create a new line:\tShift|Enter",
- "shortcuts.files.header": "Файлы",
- "shortcuts.files.upload": "Upload files:\tCtrl|U",
- "shortcuts.files.upload.mac": "Upload files:\t⌘|U",
- "shortcuts.header": "Горячие клавиши",
- "shortcuts.info": "Begin a message with / for a list of all the commands at your disposal.",
- "shortcuts.msgs.comp.channel": "Channel:\t~|[a-z]|Tab",
- "shortcuts.msgs.comp.emoji": "Emoji:\t:|[a-z]|Tab",
- "shortcuts.msgs.comp.header": "Автодополнение",
- "shortcuts.msgs.comp.username": "Username:\t@|[a-z]|Tab",
- "shortcuts.msgs.edit": "Edit last message in channel:\tUp",
- "shortcuts.msgs.header": "Сообщение",
- "shortcuts.msgs.input.header": "Works inside an empty input field",
- "shortcuts.msgs.mark_as_read": "Mark current channel as read:\tEsc",
- "shortcuts.msgs.reply": "Reply to last message in channel:\tShift|Up",
- "shortcuts.msgs.reprint_next": "Reprint next message:\tCtrl|Down",
- "shortcuts.msgs.reprint_next.mac": "Reprint next message:\t⌘|Down",
- "shortcuts.msgs.reprint_prev": "Reprint previous message:\tCtrl|Up",
- "shortcuts.msgs.reprint_prev.mac": "Reprint previous message:\t⌘|Up",
- "shortcuts.nav.direct_messages_menu": "Direct messages menu:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Direct messages menu:\t⌘|Shift|K",
- "shortcuts.nav.header": "Navigation",
- "shortcuts.nav.next": "Next channel:\tAlt|Down",
- "shortcuts.nav.next.mac": "Next channel:\t⌥|Down",
- "shortcuts.nav.prev": "Previous channel:\tAlt|Up",
- "shortcuts.nav.prev.mac": "Previous channel:\t⌥|Up",
- "shortcuts.nav.recent_mentions": "Recent mentions:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Recent mentions:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Account settings:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Account settings:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Quick channel switcher:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Quick channel switcher:\t⌘|K",
- "shortcuts.nav.unread_next": "Next unread channel:\tAlt|Shift|Down",
- "shortcuts.nav.unread_next.mac": "Next unread channel:\t⌥|Shift|Down",
- "shortcuts.nav.unread_prev": "Previous unread channel:\tAlt|Shift|Up",
- "shortcuts.nav.unread_prev.mac": "Previous unread channel:\t⌥|Shift|Up",
- "sidebar.channels": "ПУБЛИЧНЫЕ КАНАЛЫ",
- "sidebar.createChannel": "Создать публичный канал",
- "sidebar.createGroup": "Создать приватный канал",
- "sidebar.direct": "ЛИЧНЫЕ СООБЩЕНИЯ",
- "sidebar.favorite": "ИЗБРАННЫЕ КАНАЛЫ",
- "sidebar.leave": "Покинуть Канал",
- "sidebar.mainMenu": "Main Menu",
- "sidebar.more": "Еще",
- "sidebar.moreElips": "Еще...",
- "sidebar.otherMembers": "За пределами команды",
- "sidebar.pg": "ПРИВАТНЫЕ КАНАЛЫ",
- "sidebar.removeList": "Удалить из списка",
- "sidebar.tutorialScreen1": "
Каналы
Каналы предназначены для организации обсуждений на разные темы. Они открыты для всех в вашей команде. Чтобы отправлять приватные коммуникации, используйте личные сообщения для диалогов или приватные каналы для общения с несколькими человеками.
",
- "sidebar.tutorialScreen2": "
Каналы \"{townsquare}\" и \"{offtopic}\"
Для начала вам будут доступны два публичных канала:
{townsquare} используется для внутрикомандного общения. Каждый из вашей команды является участником этого канала.
{offtopic} предназначен для юмора и развлечений отдельно от рабочих каналов. Вы и Ваша команда может выбрать какие другие каналы вам потребуются.
",
- "sidebar.tutorialScreen3": "
Создание и присоединение к каналу
Нажмите \"Больше...\" для создания или присоединения к одному из каналов.
Вы также можете создать канал или приватную группу, нажав на \"+\" symbol, идущего после заголовка канала или приватной группы.
The Main Menu is where you can Invite New Members, access your Account Settings and set your Theme Color.
Team administrators can also access their Team Settings from this menu.
System administrators will find a System Console option to administrate the entire system.
",
- "sidebar_right_menu.accountSettings": "Учетная запись",
- "sidebar_right_menu.addMemberToTeam": "Добавить пользователей в команду",
- "sidebar_right_menu.console": "Системная консоль",
- "sidebar_right_menu.flagged": "Отмеченные сообщения",
- "sidebar_right_menu.help": "Помощь",
- "sidebar_right_menu.inviteNew": "Отправить приглашение на электронную почту",
- "sidebar_right_menu.logout": "Выйти",
- "sidebar_right_menu.manageMembers": "Участники",
- "sidebar_right_menu.nativeApps": "Скачать приложения",
- "sidebar_right_menu.recentMentions": "Недавние упоминания",
- "sidebar_right_menu.report": "Сообщить о проблеме",
- "sidebar_right_menu.teamLink": "Ссылка для приглашения",
- "sidebar_right_menu.teamSettings": "Настройки команды",
- "sidebar_right_menu.viewMembers": "Просмотреть список участников",
- "signup.email": "Email и Пароль",
- "signup.gitlab": "GitLab Single Sign-On",
- "signup.google": "Аккаунт Google",
- "signup.ldap": "Данные AD/LDAP",
- "signup.office365": "Office 365",
- "signup.title": "Создать аккаунт с помощью:",
- "signup_team.createTeam": "Или создайте команду",
- "signup_team.disabled": "Создание команд отключено. Пожалуйста, свяжитесь с администратором для получения данной возможности.",
- "signup_team.join_open": "Команды, к которым вы можете присоединиться:",
- "signup_team.noTeams": "Нет команд в списке команд и создание команд отключено.",
- "signup_team.no_open_teams": "Нет комманд доступных для входа. Пожалуйста, получите приглашение у администратора.",
- "signup_team.no_open_teams_canCreate": "Нет комманд доступных для входа. Пожалуйста, создайте новую команду или получите приглашение у администратора.",
- "signup_team.no_teams": "Не было создано ни одной команды. Свяжитесь с Вашим администратором.",
- "signup_team.no_teams_canCreate": "Нет ни одной команды. Вы можете создать её, нажав на кнопку \"Создать команду\".",
- "signup_team.none": "No team creation method has been enabled. Please contact an administrator for access.",
- "signup_team_complete.completed": "Вы уже завершили процесс регистрации или срок приглашения уже истёк.",
- "signup_team_confirm.checkEmail": "Please check your email: {email} Your email contains a link to set up your team",
- "signup_team_confirm.title": "Регистрация завершена",
- "signup_team_system_console": "Перейти в системную консоль",
- "signup_user_completed.choosePwd": "Выберите пароль",
- "signup_user_completed.chooseUser": "Выберите имя:",
- "signup_user_completed.create": "Создать аккаунт",
- "signup_user_completed.emailHelp": "Требуется реальный адрес электронной почты для регистрации аккаунта",
- "signup_user_completed.emailIs": "Ваша электронная почта {email}. Используйте ее для входа в {siteName}.",
- "signup_user_completed.expired": "Вы уже завершили процесс регистрации по этому приглашению или оно уже истекло.",
- "signup_user_completed.gitlab": "через GitLab",
- "signup_user_completed.google": "через Google",
- "signup_user_completed.haveAccount": "Уже есть учетная запись?",
- "signup_user_completed.invalid_invite": "Пригласительная ссылка была некорректной. Пожалуйста, поговорите с Администратором для получения приглашения.",
- "signup_user_completed.lets": "Давайте создадим вашу учетную запись",
- "signup_user_completed.no_open_server": "Этот сервер не разрешает открытую регистрацию. Пожалуйста, поговорите с Администратором для получения приглашения.",
- "signup_user_completed.none": "Не разрешено ни одного способа создания пользователя. Пожалуйста, свяжитесь с администратором для получения доступа.",
- "signup_user_completed.office365": "через Office 365",
- "signup_user_completed.onSite": "на {siteName}",
- "signup_user_completed.or": "или",
- "signup_user_completed.passwordLength": "Please enter between {min} and {max} characters",
- "signup_user_completed.required": "Обязательное поле",
- "signup_user_completed.reserved": "Имя зарезервировано, выберите другое.",
- "signup_user_completed.signIn": "Щёлкните здесь для входа.",
- "signup_user_completed.userHelp": "Имя пользователя должно начинаться с латинской буквы и содержать от {min} до {max} символов, включающих цифры, латинские буквы, а также символы '.', '-' и '_'.",
- "signup_user_completed.usernameLength": "Имя пользователя должно начинаться с латинской буквы и содержать от {min} до {max} символов, включающих цифры, латинские буквы, а также символы '.', '-' и '_'.",
- "signup_user_completed.validEmail": "Пожалуйста, введите корректный адрес электронной почты",
- "signup_user_completed.welcome": "Добро пожаловать:",
- "signup_user_completed.whatis": "Ваш адрес электронной почты?",
- "signup_user_completed.withLdap": "С вашими AD/LDAP учетными данными",
- "sso_signup.find": "Найти мои команды",
- "sso_signup.gitlab": "Создать команду с помощью аккаунта GitLab",
- "sso_signup.google": "Сзодать команду с помощью аккаунта Google Apps",
- "sso_signup.length_error": "Имя должно быть более 3 и менее 15 символов",
- "sso_signup.teamName": "Введите название новой команды",
- "sso_signup.team_error": "Введите имя команды",
- "status_dropdown.set_away": "Отошёл",
- "status_dropdown.set_offline": "Не в сети",
- "status_dropdown.set_online": "В сети",
- "suggestion.loading": "Загрузка...",
- "suggestion.mention.all": "ВНИМАНИЕ: это приведёт к уведомлению всех в этом канале",
- "suggestion.mention.channel": "Уведомляет всех на канале",
- "suggestion.mention.channels": "Мои каналы",
- "suggestion.mention.here": "Уведомлять всех в канале и на сайте",
- "suggestion.mention.in_channel": "Каналы",
- "suggestion.mention.members": "Участники канала",
- "suggestion.mention.morechannels": "Другие каналы",
- "suggestion.mention.nonmembers": "Не в канале",
- "suggestion.mention.not_in_channel": "Другие каналы",
- "suggestion.mention.special": "Специальные функции",
- "suggestion.search.private": "Приватные каналы",
- "suggestion.search.public": "Общедоступные каналы",
- "system_users_list.count": "{count, number} {count, plural, one {user} other {users}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 участников} one {участник} few {участника} other {участников}} из {total}",
- "system_users_list.countSearch": "{startCount, number} - {endCount, number} {count, plural, =0 {0 участников} one {участник} few {участника} other {участников}} из {total}",
- "team_export_tab.download": "cкачать",
- "team_export_tab.export": "Экспорт",
- "team_export_tab.exportTeam": "Экспортировать вашу команду",
- "team_export_tab.exporting": " Экспортирование...",
- "team_export_tab.ready": " Готово для ",
- "team_export_tab.unable": " Невозможно экспортировать: {error}",
- "team_import_tab.failure": " Ошибка импорта: ",
- "team_import_tab.import": "Импорт",
- "team_import_tab.importHelpDocsLink": "документация",
- "team_import_tab.importHelpExportInstructions": "Slack > Настройки команды > Импорт/Экспорт данных > Экспорт > Начать экспорт",
- "team_import_tab.importHelpExporterLink": "Продвинутый экспортер Slack",
- "team_import_tab.importHelpLine1": "Импорт из Slack в Mattermost поддерживает импортирование сообщений из Ваших публичных каналов команд Slack.",
- "team_import_tab.importHelpLine2": "Для импорта команды из Slack перейдите сюда: {exportInstructions}. Более подробную информацию смотрите здесь: {uploadDocsLink}",
- "team_import_tab.importHelpLine3": "Для импорта сообщений с прикреплёнными файлами смотрите {slackAdvancedExporterLink} для подробностей.",
- "team_import_tab.importSlack": "Импортировать из Slack (Beta)",
- "team_import_tab.importing": " Импортирование...",
- "team_import_tab.successful": " Импорт успешно завершён: ",
- "team_import_tab.summary": "Показать сводку",
- "team_member_modal.close": "Закрыть",
- "team_member_modal.members": "Участники {team}",
- "team_members_dropdown.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Подтвердите понижение с роли администратора системы",
- "team_members_dropdown.confirmDemotion": "Подтвердить понижение",
- "team_members_dropdown.confirmDemotionCmd": "Роли платформы system_admin {username}",
- "team_members_dropdown.inactive": "Неактивен",
- "team_members_dropdown.leave_team": "Удалить из команды",
- "team_members_dropdown.makeActive": "Активировать",
- "team_members_dropdown.makeAdmin": "Сделать администратором команды",
- "team_members_dropdown.makeInactive": "Деактивировать",
- "team_members_dropdown.makeMember": "Сделать участником",
- "team_members_dropdown.member": "Участник",
- "team_members_dropdown.systemAdmin": "Системный администратор",
- "team_members_dropdown.teamAdmin": "Администратор Команды",
- "team_settings_modal.exportTab": "Экспорт",
- "team_settings_modal.generalTab": "Общие",
- "team_settings_modal.importTab": "Импорт",
- "team_settings_modal.title": "Настройки команды",
- "team_sidebar.join": "Другие команды, к которым вы можете присоединиться.",
- "textbox.bold": "**жирный**",
- "textbox.edit": "Редактировать сообщение",
- "textbox.help": "Помощь",
- "textbox.inlinecode": "`код`",
- "textbox.italic": "_курсив_",
- "textbox.preformatted": "```преформатированный```",
- "textbox.preview": "Предпросмотр",
- "textbox.quote": ">цитата",
- "textbox.strike": "зачеркнутый",
- "tutorial_intro.allSet": "Теперь всё готово!",
- "tutorial_intro.end": "Нажмите “Далее” для входа в {channel}. Это первый канал, который пользователи команды видят после входа. Используйте его для общения всей команды.",
- "tutorial_intro.invite": "Пригласить товарищей",
- "tutorial_intro.mobileApps": "Установите приложение {link} для легкого доступа и получения уведомлений.",
- "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS и Android",
- "tutorial_intro.next": "Далее",
- "tutorial_intro.screenOne": "
Добро пожаловать в:
Mattermost
Средство общения команды, доступное всегда и везде.
Сосредоточьте вашу команду на том, что действительно важно.
",
- "tutorial_intro.screenTwo": "
Как работает Mattermost:
Общение происходит в публичных и приватных каналах и в личных сообщениях.
Всё архивируется и доступно для поиска с любого подключенного к интернету настольного компьютера, ноутбука или телефона.
",
- "tutorial_intro.skip": "Пропустить обучение",
- "tutorial_intro.support": "Если что-то нужно, просто напишите нам по ",
- "tutorial_intro.teamInvite": "Пригласить участников",
- "tutorial_intro.whenReady": " когда будете готовы.",
- "tutorial_tip.next": "Далее",
- "tutorial_tip.ok": "Хорошо",
- "tutorial_tip.out": "Скрыть советы.",
- "tutorial_tip.seen": "Уже видели? ",
- "update_command.cancel": "Отмена",
- "update_command.confirm": "Редактировать команду",
- "update_command.question": "Ваши изменения могут повредить существующую слэш-команду. Вы уверены, что хотите продолжить?",
- "update_command.update": "Обновить",
- "update_incoming_webhook.update": "Обновить",
- "update_outgoing_webhook.confirm": "Добавить исходящий вебхук",
- "update_outgoing_webhook.question": "Ваши изменения могут повредить существующий исходящий вебхук. Вы уверены, что хотите продолжить?",
- "update_outgoing_webhook.update": "Обновить",
- "upload_overlay.info": "Бросьте сюда файл, чтобы загрузить его.",
- "user.settings.advance.embed_preview": "Для первой веб-ссылки в сообщении показывать предпросмотр содержимого веб-сайта ниже сообщения, если это возможно",
- "user.settings.advance.embed_toggle": "Показывать переключатель для всех встроенных превью",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {возможность включена} few {возможности включены} other {возможностей включены}}",
- "user.settings.advance.formattingDesc": "Если включено, сообщения будут отформатированы с созданием ссылок, показом смайликов, стилями текста и переносами. По-умолчанию, эта настройка включена. Изменение этой настройки потребует обновления страницы.",
- "user.settings.advance.formattingTitle": "Разрешить форматирование сообщений",
- "user.settings.advance.joinLeaveDesc": "Если данная опция включена, будут отображаться системные сообщения о входе и выходе пользователей из канала. Если данная опция выключена, системные сообщения о входе и выходе из канала будут скрыты. Сообщения будут отображаться когда вы добавлены в канал, так что вы можете получать уведомления.",
- "user.settings.advance.joinLeaveTitle": "Включить сообщения входа/выхода",
- "user.settings.advance.markdown_preview": "Показывать опцию просмотра превью в markdown в поле ввода",
- "user.settings.advance.off": "Выкл",
- "user.settings.advance.on": "Вкл",
- "user.settings.advance.preReleaseDesc": "Check any pre-released features you'd like to preview. You may also need to refresh the page before the setting will take effect.",
- "user.settings.advance.preReleaseTitle": "Просмотр возможностей предрелиза",
- "user.settings.advance.sendDesc": "Если включено, `ENTER` вставляет новую строку, а `CTRL + ENTER` отправляет сообщение.",
- "user.settings.advance.sendTitle": "Отправлять сообщения сочетанием клавиш CTRL+ENTER",
- "user.settings.advance.slashCmd_autocmp": "Включить внешнее приложение для реализации функции автодополнения слэш-команд",
- "user.settings.advance.title": "Дополнительные параметры",
- "user.settings.advance.webrtc_preview": "Включить возможность совершать и принимать WebRTC звонки.",
- "user.settings.custom_theme.awayIndicator": "Индикатор отсутствия",
- "user.settings.custom_theme.buttonBg": "Фон кнопки",
- "user.settings.custom_theme.buttonColor": "Цвет кнопки",
- "user.settings.custom_theme.centerChannelBg": "Center Channel BG",
- "user.settings.custom_theme.centerChannelColor": "Center Channel Text",
- "user.settings.custom_theme.centerChannelTitle": "Center Channel Styles",
- "user.settings.custom_theme.codeTheme": "Цветовая схема",
- "user.settings.custom_theme.copyPaste": "Скопируйте и вставьте для того, чтобы поделиться цветовой схемой:",
- "user.settings.custom_theme.linkButtonTitle": "Стили ссылки и кнопки",
- "user.settings.custom_theme.linkColor": "Цвет ссылки",
- "user.settings.custom_theme.mentionBj": "Mention Jewel BG",
- "user.settings.custom_theme.mentionColor": "Mention Jewel Text",
- "user.settings.custom_theme.mentionHighlightBg": "Mention Highlight BG",
- "user.settings.custom_theme.mentionHighlightLink": "Mention Highlight Link",
- "user.settings.custom_theme.newMessageSeparator": "Разделитель новых сообщений",
- "user.settings.custom_theme.onlineIndicator": "Статус",
- "user.settings.custom_theme.sidebarBg": "Sidebar BG",
- "user.settings.custom_theme.sidebarHeaderBg": "Sidebar Header BG",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Sidebar Header Text",
- "user.settings.custom_theme.sidebarText": "Sidebar Text",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Sidebar Text Active Border",
- "user.settings.custom_theme.sidebarTextActiveColor": "Sidebar Text Active Color",
- "user.settings.custom_theme.sidebarTextHoverBg": "Sidebar Text Hover BG",
- "user.settings.custom_theme.sidebarTitle": "Sidebar Styles",
- "user.settings.custom_theme.sidebarUnreadText": "Sidebar Unread Text",
- "user.settings.display.channelDisplayTitle": "Режим отображения канала",
- "user.settings.display.channeldisplaymode": "Выберите ширину центрального канала.",
- "user.settings.display.clockDisplay": "Отображение времени",
- "user.settings.display.collapseDesc": "Настраивает, показываются ли предварительные просмотры ссылок на изображения свёрнутыми или развёрнутыми по умолчанию. Этой настройкой можно так же управлять слэш-командами /expand и /collapse.",
- "user.settings.display.collapseDisplay": "Внешний вид изображений ссылок предпросмотра по умолчанию",
- "user.settings.display.collapseOff": "Свёрнуто",
- "user.settings.display.collapseOn": "Раскрыто",
- "user.settings.display.fixedWidthCentered": "По центру, фиксировано по ширине",
- "user.settings.display.fullScreen": "В полную ширину",
- "user.settings.display.language": "Язык",
- "user.settings.display.messageDisplayClean": "Стандартный",
- "user.settings.display.messageDisplayCleanDes": "Легко искать и читать.",
- "user.settings.display.messageDisplayCompact": "Компактный",
- "user.settings.display.messageDisplayCompactDes": "Разместить как можно больше сообщений на экране.",
- "user.settings.display.messageDisplayDescription": "Выберите, как сообщения канала должны быть отображены.",
- "user.settings.display.messageDisplayTitle": "Вид отображения сообщений",
- "user.settings.display.militaryClock": "24-часовой формат (пример: 16:00)",
- "user.settings.display.nameOptsDesc": "Установите, как отображать Ваши имена в постах и в списке выбора личных сообщений.",
- "user.settings.display.normalClock": "12-часовой формат (пример: 4:00 PM)",
- "user.settings.display.preferTime": "Выберите предпочитаемый формат времени.",
- "user.settings.display.theme.applyToAllTeams": "Применить новую тему для всех моих команд",
- "user.settings.display.theme.customTheme": "Пользовательская Тема",
- "user.settings.display.theme.describe": "Откройте для настройки темы",
- "user.settings.display.theme.import": "Импортировать цветовую палитру темы из Slack",
- "user.settings.display.theme.otherThemes": "Посмотреть другие темы",
- "user.settings.display.theme.themeColors": "Палитра цветов",
- "user.settings.display.theme.title": "Тема",
- "user.settings.display.title": "Вид",
- "user.settings.general.checkEmail": "Для верификации адреса проверьте почтовый ящик {email}.",
- "user.settings.general.checkEmailNoAddress": "Для верификации нового адреса проверьте ваш почтовый ящик",
- "user.settings.general.close": "Закрыть",
- "user.settings.general.confirmEmail": "Подтвердите адрес электронной почты",
- "user.settings.general.currentEmail": "Текущий адрес электронной почты",
- "user.settings.general.email": "Адрес электронной почты",
- "user.settings.general.emailGitlabCantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
- "user.settings.general.emailGoogleCantUpdate": "Вход осуществлен через Google. Адрес электронной почты не может быть обновлен. Адрес электронной почты используемый для уведомлений {email}.",
- "user.settings.general.emailHelp1": "Email, использующийся для входа, уведомлений и сброса пароля. После изменения Email требуется его верификация.",
- "user.settings.general.emailHelp2": "Email отключен системным администратором. Уведомления на email не будут высылаться пока не будет включено.",
- "user.settings.general.emailHelp3": "Адрес электронной почты используется для входа, уведомлений и сброса пароля.",
- "user.settings.general.emailHelp4": "Письмо для верификации отправлено на {email}.",
- "user.settings.general.emailLdapCantUpdate": "Вход осуществлен через AD/LDAP. Email не может быть обновлен. Используемый для оповещений Email: {email}.",
- "user.settings.general.emailMatch": "Введенные пароли не совпадают.",
- "user.settings.general.emailOffice365CantUpdate": "При входе через Office 365 адрес электронной почты не может быть обновлен. Адрес, используемый для уведомлений: {email}.",
- "user.settings.general.emailSamlCantUpdate": "Вход осуществлен через SAML. Email не может быть обновлен. Используемый для оповещений Email: {email}.",
- "user.settings.general.emailUnchanged": "Новый адрес email не отличается от предыдущего.",
- "user.settings.general.emptyName": "Нажмите 'Изменить' для добавления вашего полного имени",
- "user.settings.general.emptyNickname": "Нажмите 'Изменить' для добавления псевдонима",
- "user.settings.general.emptyPosition": "Нажмите 'Изменить', чтобы указать свою должность.",
- "user.settings.general.field_handled_externally": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
- "user.settings.general.firstName": "Имя",
- "user.settings.general.fullName": "Полное имя",
- "user.settings.general.imageTooLarge": "Невозможно загрузить изображение. Файл слишком большой.",
- "user.settings.general.imageUpdated": "Последнее обновление {date}",
- "user.settings.general.lastName": "Фамилия",
- "user.settings.general.loginGitlab": "Успешный вход через GitLab ({email})",
- "user.settings.general.loginGoogle": "Вход выполнен через GitLab ({email})",
- "user.settings.general.loginLdap": "Вход завершен через AD/LDAP ({email})",
- "user.settings.general.loginOffice365": "Вход через Office 365 ({email})",
- "user.settings.general.loginSaml": "Вход выполнен через SAML ({email})",
- "user.settings.general.mobile.emptyName": "Нажмите для добавления Вашего полного имени",
- "user.settings.general.mobile.emptyNickname": "Нажмите для добавления псевдонима",
- "user.settings.general.mobile.emptyPosition": "Нажмите, чтобы указать свою должность.",
- "user.settings.general.mobile.uploadImage": "Нажмите для загрузки изображения.",
- "user.settings.general.newAddress": "Новый адрес: {email} Проверьте ваш E-Mail для подтверждения адреса выше.",
- "user.settings.general.newEmail": "Новый адрес электронной почты",
- "user.settings.general.nickname": "Псеводним",
- "user.settings.general.nicknameExtra": "Используйте псевдоним в качестве имени, если вас можно называть отлично от имени или имени пользователя. Псевдоним полезно использовать, когда два или более человека имеют созвучные имена или имена пользователей.",
- "user.settings.general.notificationsExtra": "По умолчанию вы будете получать уведомления, когда кто-либо напишет ваше имя. Для изменения поведения перейдите в настройки {notify}.",
- "user.settings.general.notificationsLink": "Уведомления",
- "user.settings.general.position": "Должность",
- "user.settings.general.positionExtra": "Укажите вашу должность. Эта информация будет отображена в вашем профиле.",
- "user.settings.general.profilePicture": "Изображение профиля",
- "user.settings.general.title": "Общие настройки",
- "user.settings.general.uploadImage": "Нажмите 'Изменить' для загрузки изображения.",
- "user.settings.general.username": "Имя пользователя",
- "user.settings.general.usernameInfo": "Выберите какое-нибудь простое для того, чтобы пользователи могли вас узнать.",
- "user.settings.general.usernameReserved": "Это имя зарезервировано, выберите новое, пожалуйста.",
- "user.settings.general.usernameRestrictions": "Имя пользователя должно начинаться с буквы и содержать от {min} до {max} символов в нижнем регистре, среди которых могут быть буквы, цифры и символы '.', '-', и '_'.",
- "user.settings.general.validEmail": "Пожалуйста, введите корректный email",
- "user.settings.general.validImage": "Только JPG или PNG изображения могут быть использованы как изображения профиля",
- "user.settings.import_theme.cancel": "Отмена",
- "user.settings.import_theme.importBody": "Для импорта темы, зайдите в команду Slack и зайдите в меню “Preferences -> Sidebar Theme”. Откройте настройки пользовательской темы, скопируйте значения цветов и вставьте их сюда:",
- "user.settings.import_theme.importHeader": "Импортировать темы Slack",
- "user.settings.import_theme.submit": "Подтвердить",
- "user.settings.import_theme.submitError": "Неверный формат, пожалуйста, попробуйте снова скопировать и вставить.",
- "user.settings.languages.change": "Сменить язык интерфейса",
- "user.settings.languages.promote": "Выберите язык отображения пользовательского интерфейса Mattermost.
Хотите помочь с переводами? Присоединяйтесь к Mattermost Translation Server и внесите свой вклад.",
- "user.settings.mfa.add": "Добавить MFA в ваш аккаунт",
- "user.settings.mfa.addHelp": "Добавление многофакторной аутентификации позволит сделать Ваш аккаунт ещё более безопасным, требуя ввода кода, присланного на мобильный телефон, при каждом входе.",
- "user.settings.mfa.addHelpQr": "Please scan the QR code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app. If you are unable to scan the code, you can manually enter the secret provided.",
- "user.settings.mfa.enterToken": "Token (numbers only)",
- "user.settings.mfa.qrCode": "Штрихкод",
- "user.settings.mfa.remove": "Удалить MFA из вашего аккаунта",
- "user.settings.mfa.removeHelp": "Отключение многофакторной аутентификации означает, что Вам больше не будет требоваться пароль, высылаемый на телефон, при каждом входе в аккаунт.",
- "user.settings.mfa.requiredHelp": "Multi-factor authentication is required on this server. Resetting is only recommended when you need to switch code generation to a new mobile device. You will be required to set it up again immediately.",
- "user.settings.mfa.reset": "Отключить многофакторную проверку подлинности",
- "user.settings.mfa.secret": "Секрет",
- "user.settings.mfa.title": "Включить многофакторную аутентификацию",
- "user.settings.modal.advanced": "Дополнительно",
- "user.settings.modal.confirmBtns": "Да, отменить",
- "user.settings.modal.confirmMsg": "Вы уверены, что хотите отменить несохраненные изменения?",
- "user.settings.modal.confirmTitle": "Отменить изменения?",
- "user.settings.modal.display": "Вид",
- "user.settings.modal.general": "Общие",
- "user.settings.modal.notifications": "Уведомления",
- "user.settings.modal.security": "Безопасность",
- "user.settings.modal.title": "Настройки учетной записи",
- "user.settings.notifications.allActivity": "При любой активности",
- "user.settings.notifications.channelWide": "Упоминание участников канала \"@channel\", \"@all\", \"@here\" ",
- "user.settings.notifications.close": "Закрыть",
- "user.settings.notifications.comments": "Уведомление об ответе",
- "user.settings.notifications.commentsAny": "Trigger notifications on messages in reply threads that I start or participate in",
- "user.settings.notifications.commentsInfo": "В дополнение к уведомлениям когда вас упомянули, вы можете получать сообщения об ответах в нити.",
- "user.settings.notifications.commentsNever": "Не показывать уведомления о сообщениях в нити, пока я не буду упомянут",
- "user.settings.notifications.commentsRoot": "Срабатывают уведомления о сообщениях в темах, которые я начинаю",
- "user.settings.notifications.desktop": "Отправлять уведомления на рабочий стол",
- "user.settings.notifications.desktop.allNoSoundForever": "Для всей активности без звука, показывать бесконечно",
- "user.settings.notifications.desktop.allNoSoundTimed": "Для всей активности без звука, показывать {seconds} секунд",
- "user.settings.notifications.desktop.allSoundForever": "Для всей активности со звуком, показывать бесконечно",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Для всей активности, показывать бесконечно",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Для всей активности, показывать на {seconds} секунд",
- "user.settings.notifications.desktop.allSoundTimed": "Для всей активности со звуком, показывать на {seconds} секунд",
- "user.settings.notifications.desktop.duration": "Длительность уведомления",
- "user.settings.notifications.desktop.durationInfo": "Определяет, сколько времени уведомления рабочего стола будут оставаться на экране при использовании Firefox или Chrome. При использовании Edge и Safari уведомления могут оставаться на экране максимум 5 секунд.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "При упоминаниях и личных сообщениях, без звука, не скрывать автоматически",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "При упоминаниях и личных сообщениях, без звука, скрыть через {seconds} секунд",
- "user.settings.notifications.desktop.mentionsSoundForever": "При упоминаниях и личных сообщениях, со звуком, не скрывать автоматически",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "При упоминаниях и личных сообщениях, не скрывать автоматически",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "При упоминаниях и личных сообщениях, скрыть через {seconds} секунд",
- "user.settings.notifications.desktop.mentionsSoundTimed": "При упоминаниях и личных сообщениях, со звуком, скрыть через {seconds} секунд",
- "user.settings.notifications.desktop.seconds": "{seconds} секунд",
- "user.settings.notifications.desktop.sound": "Звук уведомления",
- "user.settings.notifications.desktop.title": "Оповещения на рабочий стол",
- "user.settings.notifications.desktop.unlimited": "Неограниченно",
- "user.settings.notifications.desktopSounds": "Звуковые оповещения на рабочий стол",
- "user.settings.notifications.email.disabled": "Отключено администратором",
- "user.settings.notifications.email.disabled_long": "Email notifications have been disabled by your System Administrator.",
- "user.settings.notifications.email.everyHour": "Каждый час",
- "user.settings.notifications.email.everyXMinutes": "Каждые {count, plural, one {minute} other {{count, number} minutes}}",
- "user.settings.notifications.email.immediately": "Немедленно",
- "user.settings.notifications.email.never": "Никогда",
- "user.settings.notifications.email.send": "Отправлять уведомления по электронной почте",
- "user.settings.notifications.emailBatchingInfo": "Уведомления, полученные за выбранный временной промежуток, объединяются и отправляются единым письмом.",
- "user.settings.notifications.emailInfo": "Почтовые уведомления при упоминаниях и личных сообщениях начинают отправляться если вы не в сети или отошли с {siteName} больше чем на 5 минут.",
- "user.settings.notifications.emailNotifications": "Email уведомления",
- "user.settings.notifications.header": "Уведомления",
- "user.settings.notifications.info": "Уведомления на рабочем столе доступны для приложений Edge, Firefox, Safari, Chrome и Mattermost Desktop.",
- "user.settings.notifications.mentionsInfo": "Mentions trigger when someone sends a message that includes your username (\"@{username}\") or any of the options selected above.",
- "user.settings.notifications.never": "Никогда",
- "user.settings.notifications.noWords": "No words configured",
- "user.settings.notifications.off": "Выкл",
- "user.settings.notifications.on": "Вкл",
- "user.settings.notifications.onlyMentions": "Только при упоминаниях и личных сообщениях",
- "user.settings.notifications.push": "Мобильные push-уведомленя",
- "user.settings.notifications.push_notification.status": "Отправить push-уведомление когда",
- "user.settings.notifications.sensitiveName": "Ваше имя с учётом регистра \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Ваше независимое от регистра имя пользователя \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Другие независящие от регистра слова, разделенные запятыми:",
- "user.settings.notifications.soundConfig": "Пожалуйста, настройте звуковые уведомления в настройках браузера",
- "user.settings.notifications.sounds_info": "Звуки уведомлений доступны для приложений IE11, Edge, Safari, Chrome и Mattermost Desktop.",
- "user.settings.notifications.teamWide": "Упоминания команды \"@all\"",
- "user.settings.notifications.title": "Настройки уведомлений",
- "user.settings.notifications.wordsTrigger": "Ключевые слова для упоминаний",
- "user.settings.push_notification.allActivity": "При любой активности",
- "user.settings.push_notification.allActivityAway": "Для всей активности когда отошел или оффлайн",
- "user.settings.push_notification.allActivityOffline": "Для всей активности когда оффлайн",
- "user.settings.push_notification.allActivityOnline": "Для всей активности когда онлайн, отошел или оффлайн",
- "user.settings.push_notification.away": "Отсутствует или не в сети",
- "user.settings.push_notification.disabled": "Отключено системным администратором",
- "user.settings.push_notification.disabled_long": "Push-уведомления для мобильных устройств запрещены Системным Администратором.",
- "user.settings.push_notification.info": "Notification alerts are pushed to your mobile device when there is activity in Mattermost.",
- "user.settings.push_notification.off": "Выкл",
- "user.settings.push_notification.offline": "Не в сети",
- "user.settings.push_notification.online": "В сети, нет на месте или не в сети",
- "user.settings.push_notification.onlyMentions": "For mentions and direct messages",
- "user.settings.push_notification.onlyMentionsAway": "При упоминаниях и личных сообщениях, когда отошел или не в сети",
- "user.settings.push_notification.onlyMentionsOffline": "При упоминаниях и личных сообщениях, когда не в сети",
- "user.settings.push_notification.onlyMentionsOnline": "При упоминаниях и личных сообщениях, когда в сети, отошел или не в сети",
- "user.settings.push_notification.send": "Отправить мобильное push-уведомление",
- "user.settings.push_notification.status": "Отправить push-уведомление когда",
- "user.settings.push_notification.status_info": "Уведомления на телефон будут присылаться только если ваш статус будет совпадать с выбранным выше.",
- "user.settings.security.active": "Активен",
- "user.settings.security.close": "Закрыть",
- "user.settings.security.currentPassword": "Текущий пароль",
- "user.settings.security.currentPasswordError": "Введите текущий пароль",
- "user.settings.security.deauthorize": "Деавторизация",
- "user.settings.security.emailPwd": "Email и Пароль",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Неактивен",
- "user.settings.security.lastUpdated": "Последнее изменение {date} at {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Вход выполнен с помощью GitLab",
- "user.settings.security.loginGoogle": "Выполнен вход через Google Apps",
- "user.settings.security.loginLdap": "Вход выполнен через AD/LDAP",
- "user.settings.security.loginOffice365": "Выполнен вход через Office 365",
- "user.settings.security.loginSaml": "Вход выполнен с помощью SAML",
- "user.settings.security.logoutActiveSessions": "Просмотр и завершение активных сессий",
- "user.settings.security.method": "Методы входа",
- "user.settings.security.newPassword": "Новый пароль",
- "user.settings.security.noApps": "Нет авторизованных OAuth 2.0 приложений.",
- "user.settings.security.oauthApps": "OAuth 2.0 приложения",
- "user.settings.security.oauthAppsDescription": "Нажмите 'Изменить' для управления вашими OAuth 2.0 приложениями",
- "user.settings.security.oauthAppsHelp": "Приложения действуют от Вашего имени, чтобы получить доступ к Вашим данным на основе разрешений, которые Вы даете им.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "You may only have one sign-in method at a time. Switching sign-in method will send an email notifying you if the change was successful.",
- "user.settings.security.password": "Пароль",
- "user.settings.security.passwordError": "Пароль должен содержать от {min} до {max} символов.",
- "user.settings.security.passwordErrorLowercase": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную букву.",
- "user.settings.security.passwordErrorLowercaseNumber": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную букву и цифру.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную букву, цифру и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную букву и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercase": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную и прописную буквы.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную и прописную буквы и цифру.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную и прописную буквы, цифру и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну строчную и прописную буквы и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorNumber": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну цифру.",
- "user.settings.security.passwordErrorNumberSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну цифру и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercase": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну прописную букву.",
- "user.settings.security.passwordErrorUppercaseNumber": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну прописную букву и цифру.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну прописную букву, цифру и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordErrorUppercaseSymbol": "Пароль должен быть длиной от {min} до {max} символов и содержать хотя бы одну прописную букву и один символ (например: \"~!@#$%^&*()\").",
- "user.settings.security.passwordGitlabCantUpdate": "Вход произошел через GitLab. Пароль не может быть изменен.",
- "user.settings.security.passwordGoogleCantUpdate": "Вход совершен через Google Apps. Пароль не может быть изменен.",
- "user.settings.security.passwordLdapCantUpdate": "Вход произведен через AD/LDAP. Пароль не может быть обновлен.",
- "user.settings.security.passwordMatchError": "Введенные пароли не совпадают.",
- "user.settings.security.passwordMinLength": "Длина пароля меньше минимальной, предпросмотр невозможен.",
- "user.settings.security.passwordOffice365CantUpdate": "Вход произошел через Office 365. Пароль не может быть изменен.",
- "user.settings.security.passwordSamlCantUpdate": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
- "user.settings.security.retypePassword": "Подтвердите новый пароль",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "Перейти к использованию e-mail и пароль",
- "user.settings.security.switchGitlab": "Перейки к использованию GitLab SSO",
- "user.settings.security.switchGoogle": "Перейти к использованию Google SSO",
- "user.settings.security.switchLdap": "Перейти к использованию AD/LDAP",
- "user.settings.security.switchOffice365": "Перейти к использованию Office 365 SSO",
- "user.settings.security.switchSaml": "Перейти к использованию SAML SSO",
- "user.settings.security.title": "Настройки безопасности",
- "user.settings.security.viewHistory": "Просмотр истории активности",
- "user.settings.tokens.cancel": "Отмена",
- "user.settings.tokens.clickToEdit": "Click 'Edit' to manage your personal access tokens",
- "user.settings.tokens.confirmCreateButton": "Yes, Create",
- "user.settings.tokens.confirmCreateMessage": "You are generating a personal access token with System Admin permissions. Are you sure want to create this token?",
- "user.settings.tokens.confirmCreateTitle": "Create System Admin Personal Access Token",
- "user.settings.tokens.confirmDeleteButton": "Yes, Delete",
- "user.settings.tokens.confirmDeleteMessage": "Any integrations using this token will no longer be able to access the Mattermost API. You cannot undo this action.
Are you sure want to delete the {description} token?",
- "user.settings.tokens.confirmDeleteTitle": "Delete Token?",
- "user.settings.tokens.copy": "Please copy the access token below. You won't be able to see it again!",
- "user.settings.tokens.create": "Create New Token",
- "user.settings.tokens.delete": "Удалить",
- "user.settings.tokens.description": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API.",
- "user.settings.tokens.description_mobile": "Personal access tokens function similar to session tokens and can be used by integrations to authenticate against the REST API. Create new tokens on your desktop.",
- "user.settings.tokens.id": "Token ID: ",
- "user.settings.tokens.name": "Описание сайта: ",
- "user.settings.tokens.nameHelp": "Enter a description for your token to remember what it does.",
- "user.settings.tokens.nameRequired": "Please enter a description.",
- "user.settings.tokens.save": "Сохранить",
- "user.settings.tokens.title": "Personal Access Tokens",
- "user.settings.tokens.token": "Access Token: ",
- "user.settings.tokens.tokenId": "Token ID: ",
- "user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
- "user_list.notFound": "Пользователи не найдены",
- "user_profile.send.dm": "Отправить сообщение",
- "user_profile.webrtc.call": "Видеовызов",
- "user_profile.webrtc.offline": "Пользователь не в сети",
- "user_profile.webrtc.unavailable": "Новый вызов недоступен до завершения текущего",
- "view_image.loading": "Загрузка ",
- "view_image_popover.download": "Скачать",
- "view_image_popover.file": "File {count, number} of {total, number}",
- "view_image_popover.publicLink": "Получить общедоступную ссылку",
- "web.footer.about": "О нас",
- "web.footer.help": "Помощь",
- "web.footer.privacy": "Конфиденциальность",
- "web.footer.terms": "Условия",
- "web.header.back": "Назад",
- "web.header.logout": "Выйти",
- "web.root.signup_info": "Все способы общения команды собраны в одном месте, с возможностью мгновенного поиска и доступом отовсюду",
- "webrtc.busy": "{username} занят.",
- "webrtc.call": "Вызов",
- "webrtc.callEnded": "Разговор с {username} закончен.",
- "webrtc.cancel": "Завершить вызов",
- "webrtc.cancelled": "{username} завершил вызов.",
- "webrtc.declined": "Ваш звонок был отклонён {username}.",
- "webrtc.disabled": "{username} отключил WebRTC и не может принимать звонки. Чтобы использовать эту возможность, он должен проследовать в **Настройки учётной записи** > **Дополнительно** > **Просмотр возможностей предрелиза** и включить WebRTC.",
- "webrtc.failed": "Проблема с подключением к видео-звонку.",
- "webrtc.hangup": "Завершить разговор",
- "webrtc.header": "Разговор с {username}",
- "webrtc.inProgress": "У вас есть текущий вызов. Пожалуйста, сначала завершите разговор.",
- "webrtc.mediaError": "Не удается получить доступ к камере или микрофону.",
- "webrtc.mute_audio": "Выключить микрофон",
- "webrtc.noAnswer": "{username} не отвечает на вызов.",
- "webrtc.notification.answer": "Ответ",
- "webrtc.notification.decline": "Отклонить",
- "webrtc.notification.incoming_call": "{username} звонит вам.",
- "webrtc.notification.returnToCall": "Возврат к текущему вызову с {username}",
- "webrtc.offline": "{username} оффлайн.",
- "webrtc.pause_video": "Выключить камеру",
- "webrtc.unmute_audio": "Включить микрофон",
- "webrtc.unpause_video": "Включить камеру",
- "webrtc.unsupported": "{username} не поддерживает видео вызовы на стороне клиента.",
- "youtube_video.notFound": "Видео не найдено"
-}
diff --git a/webapp/i18n/tr.json b/webapp/i18n/tr.json
deleted file mode 100644
index a8cdbddb903..00000000000
--- a/webapp/i18n/tr.json
+++ /dev/null
@@ -1,2708 +0,0 @@
-{
- "about.close": "Kapat",
- "about.copyright": "Telif Hakkı 2015 - {currentYear} Mattermost, Inc. Tüm hakları saklıdır",
- "about.database": "Veritabanı:",
- "about.date": "Yapım Tarihi:",
- "about.enterpriseEditionLearn": "Enterprise Sürüm hakkında ayrıntılı bilgi alın ",
- "about.enterpriseEditionSt": "Güvenlik duvarının arkasından modern iletişim.",
- "about.enterpriseEditione1": "Kurumsal Sürüm",
- "about.hash": "Yapım Karması:",
- "about.hashee": "Kurumsal Yapım Karması:",
- "about.licensed": "Lisans sahibi:",
- "about.notice": "Mattermost is made possible by the open source software used in our platform, desktop and mobile apps.",
- "about.number": "Yapım Numarası:",
- "about.teamEditionLearn": "Mattermost topluluğuna katılın: ",
- "about.teamEditionSt": "Tüm takım iletişimi tek bir yerde, anında aranabilir ve her yerden erişilebilir.",
- "about.teamEditiont0": "Team Sürümü",
- "about.teamEditiont1": "Enterprise Sürüm",
- "about.title": "Mattermost Hakkında",
- "about.version": "Sürüm:",
- "access_history.title": "Erişim Geçmişi",
- "activity_log.activeSessions": "Etkin Oturumlar",
- "activity_log.browser": "Tarayıcı: {browser}",
- "activity_log.firstTime": "İlk etkinlik: {date}, {time}",
- "activity_log.lastActivity": "Son etkinlik: {date}, {time}",
- "activity_log.logout": "Oturumu Kapat",
- "activity_log.moreInfo": "Daha fazla bilgi",
- "activity_log.os": "OS: {os}",
- "activity_log.sessionId": "Oturum Kodu: {id}",
- "activity_log.sessionsDescription": "Oturumlar, bir aygıttan yeni bir tarayıcıda oturum açtığınızda oluşturulur. Oturum, Sistem Yöneticisi tarafından belirtilen süre boyunca yeniden oturum açmanız gerekmeden Mattermost kullanmanızı sağlar. Süre dolmadan önce oturumunuzu kapatmak isterseniz, aşağıdaki 'Oturum Kapatma' düğmesini kullanın.",
- "activity_log_modal.android": "Android",
- "activity_log_modal.androidNativeApp": "Doğal Android Uygulaması",
- "activity_log_modal.androidNativeClassicApp": "Android Doğal Klasik Uygulama",
- "activity_log_modal.desktop": "Doğal Masaüstü Uygulaması",
- "activity_log_modal.iphoneNativeApp": "Doğal iPhone Uygulaması",
- "activity_log_modal.iphoneNativeClassicApp": "iPhone Doğal Klasik Uygulama",
- "add_command.autocomplete": "Otomatik doldur",
- "add_command.autocomplete.help": "(İsteğe bağlı) Bölü komutu otomatik tamamlama listesinde görüntülensin.",
- "add_command.autocompleteDescription": "Otomatik Tamamlama Açıklaması",
- "add_command.autocompleteDescription.help": "(İsteğe bağlı) Otomatik tamamlama listesi için bölü komutunun kısa açıklaması.",
- "add_command.autocompleteDescription.placeholder": "Örnek: \"Hasta kayıtları için arama sonuçlarını verir\"",
- "add_command.autocompleteHint": "Otomatik Tamamlama İpucu",
- "add_command.autocompleteHint.help": "(İsteğe bağlı) bölü komutuyla ilişkili bağımsız değişkenler, otomatik tamamlama listesinde yardım olarak görüntülenir.",
- "add_command.autocompleteHint.placeholder": "Örnek: [Hasta Adı]",
- "add_command.cancel": "İptal",
- "add_command.description": "Açıklama",
- "add_command.description.help": "Gelen web bağlantısı açıklaması.",
- "add_command.displayName": "Görüntülenecek Ad",
- "add_command.displayName.help": "Bölü komutunun en fazla 64 karakterden oluşan görüntülenecek adı.",
- "add_command.doneHelp": "Bölü komutu ayarlandı. Aşağıdaki kod, giden pakette gönderilecek. Lütfen bu kodu, isteğin Mattermost ekibinizden geldiğini doğrulamak için kullanın (ayrıntılı bilgi almak için belgelere bakın).",
- "add_command.iconUrl": "Yanıt Simgesi",
- "add_command.iconUrl.help": "(İsteğe bağlı) Bölü komutuna verilecek yanıtlar için değiştirilecek profil görselini seçin. En az 128 x 128 piksel boyutunda bir .png ya da .jpg dosyasının adresini yazın.",
- "add_command.iconUrl.placeholder": "https://www.ornek.com/simge.png",
- "add_command.method": "İstek Yöntemi",
- "add_command.method.get": "GET",
- "add_command.method.help": "İstek adresinde yayınlanan komut isteği türü.",
- "add_command.method.post": "POST",
- "add_command.save": "Kaydet",
- "add_command.token": "Kod: {token}",
- "add_command.trigger": "Komut Tetikleyici Sözcük",
- "add_command.trigger.help": "Tetikleyici sözcük eşsiz olmalıdır. Bölü ile başlamamalı ve boşluk içermemelidir.",
- "add_command.trigger.helpExamples": "Örnekler: müşteri, çalışan, hasta, hava durumu",
- "add_command.trigger.helpReserved": "Ayrılmış: {link}",
- "add_command.trigger.helpReservedLinkText": "iç bölü komutlarının listesine bakın",
- "add_command.trigger.placeholder": "Komut tetikleyici. Örnek: \"Merhaba\"",
- "add_command.triggerInvalidLength": "Bir tetikleyici sözcük en az {min} en çok {max} karakter uzunluğunda olabilir",
- "add_command.triggerInvalidSlash": "Tetikleyici sözcük / ile başlayamaz",
- "add_command.triggerInvalidSpace": "Tetikleyici sözcükte boşluk olmamalıdır",
- "add_command.triggerRequired": "Tetikleyici bir sözcük zorunludur",
- "add_command.url": "İstek Adresi",
- "add_command.url.help": "Bölü komutu çalıştırıldığında HTTP POST ya da GET isteğinin alınacağı geri çağırma adresi.",
- "add_command.url.placeholder": "http:// ya da https:// ile başlamalıdır",
- "add_command.urlRequired": "Bir istek adresi zorunludur",
- "add_command.username": "Yanıt Kullanıcı Adı",
- "add_command.username.help": "(İsteğe Bağlı) Bu bölü komutunun yanıtları için kullanılacak kullanıcı adını seçin. Kullanıcı adları en çok 22 karakter uzunluğunda olabilir ve küçük harfler, rakamlar ve \"-\", \"_\", \".\" simgelerinden oluşabilir.",
- "add_command.username.placeholder": "Kullanıcı Adı",
- "add_emoji.cancel": "İptal",
- "add_emoji.header": "Ekle",
- "add_emoji.image": "Görsel",
- "add_emoji.image.button": "Seç",
- "add_emoji.image.help": "Emoji görselinizi seçin. Görsel en fazla 1 MB büyüklüğünde bir gif, png ya da jpeg dosyası olabilir. Boyutlar en boy oranı korunarak 128 x 128 piksel olacak şekilde otomatik olarak değiştirilir.",
- "add_emoji.imageRequired": "Emoji için bir görsel gereklidir",
- "add_emoji.name": "Ad",
- "add_emoji.name.help": "Emoji adı en fazla 64 karakter uzunluğunda olmalı ve küçük harfler, rakamlar ve '-' ile '_' simgelerini içermelidir.",
- "add_emoji.nameInvalid": "Emoji adında yalnız harfler, rakamlar ve '-' ile '_' simgeleri bulunmalıdır.",
- "add_emoji.nameRequired": "Emoji için bir ad gereklidir",
- "add_emoji.nameTaken": "Bu adı kullanan bir sistem emojisi var. Lütfen başka bir ad kullanın.",
- "add_emoji.preview": "Önizleme",
- "add_emoji.preview.sentence": "Bu içinde bir {image} olan bir cümledir.",
- "add_emoji.save": "Kaydet",
- "add_incoming_webhook.cancel": "İptal",
- "add_incoming_webhook.channel": "Kanal",
- "add_incoming_webhook.channel.help": "Web bağlantısı paketlerini alacak herkese açık ya da özel kanal. Web bağlantısını ayarlarken özel kanalın üyesi olmalısınız.",
- "add_incoming_webhook.channelRequired": "Geçerli bir kanal zorunludur",
- "add_incoming_webhook.description": "Açıklama",
- "add_incoming_webhook.description.help": "Gelen web bağlantısı açıklaması.",
- "add_incoming_webhook.displayName": "Görüntülenecek Ad",
- "add_incoming_webhook.displayName.help": "Bölü komutunun en fazla 64 karakterden oluşan görüntülenecek adı.",
- "add_incoming_webhook.doneHelp": "Gelen web bağlantınız ayarlandı. Lütfen verileri şu adrese gönderin (ayrıntılı bilgi almak için belgelere bakın).",
- "add_incoming_webhook.name": "Ad",
- "add_incoming_webhook.save": "Kaydet",
- "add_incoming_webhook.url": "Adres: {url}",
- "add_oauth_app.callbackUrls.help": "Uygulamanız için kimlik doğrulamasının onaylanması ya da reddedilmesinden sonra hizmetin yönlendireceği ve kimlik doğrulama ve erişim kodlarını işleyecek adres. http:// ya da https:// ile başlayan geçerli bir adres olmalıdır.",
- "add_oauth_app.callbackUrlsRequired": "Bir ya da bir kaç çağırma adresi gereklidir",
- "add_oauth_app.clientId": "İstemci Kodu: {id}",
- "add_oauth_app.clientSecret": "İstemci Parolası: {secret}",
- "add_oauth_app.description.help": "OAuth 2.0 uygulamasının açıklaması.",
- "add_oauth_app.descriptionRequired": "OAuth 2.0 uygulamasının açıklaması gereklidir.",
- "add_oauth_app.doneHelp": "Oauth 2.0 uygulamanız ayarlandı. Lütfen uygulamanızın kimlik doğrulaması için gerektiğinde İstemci Kodu ve İstemci parolasını kullanın (ayrıntılı bilgi almak için belgelere bakın).",
- "add_oauth_app.doneUrlHelp": "İzin verilmiş yönlendirme adresleriniz şunlardır.",
- "add_oauth_app.header": "Ekle",
- "add_oauth_app.homepage.help": "OAuth 2.0 uygulamasının ana sayfa adresi. Sunucu yapılandırmanıza göre adreste http ya da https kullandığınızdan emin olun.",
- "add_oauth_app.homepageRequired": "OAuth 2.0 uygulamasının ana sayfası gereklidir.",
- "add_oauth_app.icon.help": "(İsteğe bağlı) OAuth 2.0 uygulamanız için kullanılacak görselin adresi. Adreste http ya da https kullandığınızdan emin olun.",
- "add_oauth_app.name.help": "OAuth 2.0 uygulamanızın en çok 64 karakterden oluşan görüntülenecek adı.",
- "add_oauth_app.nameRequired": "OAuth 2.0 uygulamasının adı gereklidir.",
- "add_oauth_app.trusted.help": "Bu seçenek etkinleştirildiğinde, OAuth 2.0 uygulaması Mattermost sunucusu tarafından güvenilir olarak kabul edilir ve kullanıcının yetkisinin onaylanması gerekmez. Devre dışı bırakıldığında, ek bir pencere açılarak kullanıcıdan onaylaması ya da reddetmesi istenir.",
- "add_oauth_app.url": "Adresler: {url}",
- "add_outgoing_webhook.callbackUrls": "Çağırma Adresleri (Her Satıra Bir Tane)",
- "add_outgoing_webhook.callbackUrls.help": "İletilerin gönderileceği adres.",
- "add_outgoing_webhook.callbackUrlsRequired": "Bir ya da bir kaç çağırma adresi gereklidir",
- "add_outgoing_webhook.cancel": "İptal",
- "add_outgoing_webhook.channel": "Kanal",
- "add_outgoing_webhook.channel.help": "Web bağlantısı paketlerinin alınacağı herkese açık kanal. En az bir Tetikleyici Sözcük belirtilmiş ise isteğe bağlıdır.",
- "add_outgoing_webhook.contentType.help1": "Gönderilecek yanıtın içerik türünü seçin.",
- "add_outgoing_webhook.contentType.help2": "application/x-www-form-urlencoded seçilmişse, sunucu parametrelerin adres biçimi içinde kodlanmış olduğunu varsayar.",
- "add_outgoing_webhook.contentType.help3": "application/json seçilmişse, sunucu JSON verileri gönderileceğini varsayar.",
- "add_outgoing_webhook.content_Type": "İçerik Türü",
- "add_outgoing_webhook.description": "Açıklama",
- "add_outgoing_webhook.description.help": "Giden web bağlantısı açıklaması.",
- "add_outgoing_webhook.displayName": "Görüntülenecek Ad",
- "add_outgoing_webhook.displayName.help": "Giden web bağlantısının en fazla 64 karakterden oluşan görüntülenecek adı.",
- "add_outgoing_webhook.doneHelp": "Giden web bağlantısı ayarlandı. Aşağıdaki kod, giden pakette gönderilecek. Lütfen bu kodu, isteğin Mattermost ekibinizden geldiğini doğrulamak için kullanın (ayrıntılı bilgi almak için belgelere bakın).",
- "add_outgoing_webhook.name": "Ad",
- "add_outgoing_webhook.save": "Kaydet",
- "add_outgoing_webhook.token": "Kod: {token}",
- "add_outgoing_webhook.triggerWords": "Tetikleyici Sözcükler (Her Satıra Bir Tane)",
- "add_outgoing_webhook.triggerWords.help": "Belirtilen sözcüklerden biri ile başlayan iletiler giden web bağlantısını tetikler. Kanal seçilmiş ise isteğe bağlıdır.",
- "add_outgoing_webhook.triggerWordsOrChannelRequired": "Geçerli bir kanal ya da tetikleyici sözcükler listesi gereklidir",
- "add_outgoing_webhook.triggerWordsTriggerWhen": "Tetiklenme Durumu",
- "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Giden web bağlantısının tetiklenme durumu. Bir iletinin ilk sözcüğü bir Tetikleyici Sözcük ile bire bir eşleşirse ya da bir Tetikleyici Sözcük ile başlarsa.",
- "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "İlk sözcük bir tetikleyici sözcük ile birebir eşleştiğinde",
- "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "İlk sözcük bir tetikleyici sözcük ile başladığında",
- "add_users_to_team.title": "{teamName} Takımına Yeni Üyeler Ekle",
- "admin.advance.cluster": "Yüksek Erişilebilirlik",
- "admin.advance.metrics": "Başarım İzlemesi",
- "admin.audits.reload": "Kullanıcı İşlem Günlüğünü Yeniden Yükle",
- "admin.audits.title": "Kullanıcı İşlem Günlüğü",
- "admin.authentication.email": "E-posta Kimlik Doğrulaması",
- "admin.authentication.gitlab": "GitLab",
- "admin.authentication.ldap": "AD/LDAP",
- "admin.authentication.oauth": "OAuth 2.0",
- "admin.authentication.saml": "SAML 2.0",
- "admin.banner.heading": "Not:",
- "admin.client_versions.androidLatestVersion": "Son Android Sürümü",
- "admin.client_versions.androidLatestVersionHelp": "Son yayınlanan Android sürümü",
- "admin.client_versions.androidMinVersion": "En Düşük Android Sürümü",
- "admin.client_versions.androidMinVersionHelp": "Uyumlu en düşük Android sürümü",
- "admin.client_versions.desktopLatestVersion": "Son Masaüstü Sürümü",
- "admin.client_versions.desktopLatestVersionHelp": "Son yayınlanan Masaüstü sürümü",
- "admin.client_versions.desktopMinVersion": "En Düşük Masaüstü Sürümü",
- "admin.client_versions.desktopMinVersionHelp": "Uyumlu en düşük Masaüstü sürümü",
- "admin.client_versions.iosLatestVersion": "Son iOS sürümü",
- "admin.client_versions.iosLatestVersionHelp": "Son yayınlanan iOS sürümü",
- "admin.client_versions.iosMinVersion": "En düşük iOS sürümü",
- "admin.client_versions.iosMinVersionHelp": "Uyumlu en düşük iOS sürümü",
- "admin.cluster.enableDescription": "Bu seçenek etkinleştirildiğinde, Mattermost Yüksek Erişilebilirlik kipinde çalışır. Mattermost Yüksek Erişilebilirlik ayarları hakkında ayrıntılı bilgi almak için belgelere bakın.",
- "admin.cluster.enableTitle": "Yüksek Erişilebilirlik Kipi Kullanılsın:",
- "admin.cluster.interNodeListenAddressDesc": "Sunucunun diğer sunucular ile iletişim kurmak için dinleyeceği adres.",
- "admin.cluster.interNodeListenAddressEx": "Örnek: \":8075\"",
- "admin.cluster.interNodeListenAddressTitle": "Düğümler Arası Dinleme Adresi:",
- "admin.cluster.interNodeUrlsDesc": "Tüm Mattermost sunucularının virgül ile ayrılmış iç/özel adresleri.",
- "admin.cluster.interNodeUrlsEx": "Örnek: \"http://10.10.10.30, http://10.10.10.31\"",
- "admin.cluster.interNodeUrlsTitle": "Düğümler Arası Adresler:",
- "admin.cluster.loadedFrom": "Bu yapılandırma dosyası {clusterId} kodlu düğümden yüklendi. Lütfen Sistem Panosuna bir yük dengeleyici üzerinden bağlanıyor ve sorun yaşıyorsanız sorunu çözmek için belgelere bakın.",
- "admin.cluster.noteDescription": "Bu bölümde yapılacak değişikliklerin etkin olması için sunucu yeniden başlatılmalıdır. Yüksek Erişilebilirlik kipi etkinleştirildiğinde, Yapılandırma dosyasındaki ReadOnlyConfig seçeneği devre dışı bırakılmadıkça Sistem Panosu salt okunur olarak ayarlanır.",
- "admin.cluster.should_not_change": "UYARI: Bu ayarları kümedeki diğer sunucular ile eşitlenmeyebilir. Tüm sunucular üzerindeki config.json dosyalarını aynı yapıp Mattermost uygulamasını yeniden başlatana kadar Yüksek Erişilebilirlik düğümler arası iletişimi başlatılamayacak. Kümeye sunucu ekleme ve çıkarma işlemleri hakkında ayrıntılı bilgi almak için belgelere bakın. Lütfen Sistem Panosuna bir yük dengeleyici üzerinden bağlanıyor ve sorun yaşıyorsanız sorunu çözmek için belgelere bakın.",
- "admin.cluster.status_table.config_hash": "Yapılandırma Dosyası MD5",
- "admin.cluster.status_table.hostname": "Sunucu Adı",
- "admin.cluster.status_table.id": "Düğüm Kodu",
- "admin.cluster.status_table.reload": " Küme Durumunu Yeniden Yükle",
- "admin.cluster.status_table.status": "Durum",
- "admin.cluster.status_table.url": "Dedikodu Adresi",
- "admin.cluster.status_table.version": "Sürüm",
- "admin.cluster.unknown": "bilinmiyor",
- "admin.compliance.directoryDescription": "Uygunluk raporlarının yazılacağı klasör. Boş bırakılırsa ./data/ olarak ayarlanır.",
- "admin.compliance.directoryExample": "Örnek: \"./data/\"",
- "admin.compliance.directoryTitle": "Uygunluk Raporu Klasörü:",
- "admin.compliance.enableDailyDesc": "Bu seçenek etkinleştirildiğinde, Mattermost günlük uygunluk raporu oluşturur.",
- "admin.compliance.enableDailyTitle": "Günlük Rapor Oluşturulsun:",
- "admin.compliance.enableDesc": "Bu seçenek etkinleştirildiğinde, Mattermost Uygunluk ve Denetim sekmesinden uygunluk raporlarının oluşturulmasını sağlar. Ayrıntılı bilgi almak için belgelere bakın.",
- "admin.compliance.enableTitle": "Uygunluk Raporu Oluşturulsun:",
- "admin.compliance.false": "yanlış",
- "admin.compliance.noLicense": "
Note:
Uygunluk özelliği Enterprise sürümde bulunur. Geçerli lisansınız Uygunluk özelliği desteklemiyor. Enterprise lisans bilgileri ve ücretleri hakkında bilgi almak için buraya tıklayın.
\"Genel açıklama yalnız gönderen adıyla gönderilsin\" seçeneği kullanıldığında, iletiyi gönderen kişinin adı ve gönderilen kanal adı görüntülenir, ileti metni görüntülenmez.
\"İleti bölümünün tümü gönderilsin\" seçeneği kullanıldığında, gizli bilgilerin de bulunabileceği anında bildirim metni görüntülenir. AnındaBildirim Hizmetniiz bir güvenlik duvarının dışındaysa bu seçeneği şifrelenmiş iletişim sağlayan \"https\" iletişim kuralıyla birlikte kullanmanız *önemle önerilir*.",
- "admin.email.pushContentTitle": "Anında Bildirim İçerikleri:",
- "admin.email.pushDesc": "Bu seçenek genel olarak üretim ortamında etkinleştirilir. Etkinleştirildiğinde, Mattermost bildirim sunucu üzerinden iOS ve Android uygulamasına anında bildirim göndermeyi dener.",
- "admin.email.pushOff": "Anında bildirimler gönderilmesin",
- "admin.email.pushOffHelp": "Kurulum seçenekleri hakkında ayrıntılı bilgi almak için anında bildirim belgelerine bakın.",
- "admin.email.pushServerDesc": "Mattermost anında bildirim hizmetinin konumu. Güvenlik duvarı arkasında iseniz https://github.com/mattermost/push-proxy adresini kullanın. Denemek için Apple Uygulama Mağazasındaki örnek Mattermost iOS uygulamasına bağlanan http://push-test.mattermost.com adresini kullanabilirsiniz. Lütfen üretim ortamları için deneme hizmetini kullanmayın.",
- "admin.email.pushServerEx": "Örnek: \"http://push-test.mattermost.com\"",
- "admin.email.pushServerTitle": "Anında Bildirim Sunucusu:",
- "admin.email.pushTitle": "Anında Bildirimler Kullanılsın: ",
- "admin.email.requireVerificationDescription": "Bu seçenek genel olarak üretim ortamında etkinleştirilir. Etkinleştirildiğinde, Mattermost hesap açılmasından sonra oturum açılması için e-posta adresinin doğrulanmasını ister. Geliştiriciler daha hızlı geliştirme yapabilmek için e-posta doğrulamasını devre dışı bırakabilir.",
- "admin.email.requireVerificationTitle": "E-posta Doğrulaması İstensin: ",
- "admin.email.selfPush": "Anında Bildirim Hizmeti konumunu el ile yazın",
- "admin.email.skipServerCertificateVerification.description": "Bu seçenek etkinleştirildiğinde, Mattermost e-posta sunucusu sertifikasını doğrulamaz.",
- "admin.email.skipServerCertificateVerification.title": "Sunucu Sertifika Doğrulaması Atlansın: ",
- "admin.email.smtpPasswordDescription": "SMTP hesabının parolası.",
- "admin.email.smtpPasswordExample": "Örnek: \"parolanız\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.email.smtpPasswordTitle": "SMTP Sunucu Parolası:",
- "admin.email.smtpPortDescription": "SMTP e-posta sunucu kapı numarası.",
- "admin.email.smtpPortExample": "Örnek: \"25\", \"465\", \"587\"",
- "admin.email.smtpPortTitle": "SMTP Sunucu Kapı Numarası:",
- "admin.email.smtpServerDescription": "SMTP e-posta sunucusunun konumu.",
- "admin.email.smtpServerExample": "Örnek: \"smtp.kurulusunuz.com\", \"email-smtp.us-east-1.amazonaws.com\"",
- "admin.email.smtpServerTitle": "SMTP Sunucusu:",
- "admin.email.smtpUsernameDescription": "SMTP hesabının kullanıcı adı.",
- "admin.email.smtpUsernameExample": "Örnek: \"admin@kurulusunuz.com\", \"AKIADTOVBGERKLCBV\"",
- "admin.email.smtpUsernameTitle": "SMTP Sunucu Kullanıcı Adı:",
- "admin.email.testing": "Sınanıyor...",
- "admin.false": "yanlış",
- "admin.file.enableFileAttachments": "Dosya Paylaşılabilsin:",
- "admin.file.enableFileAttachmentsDesc": "Bu seçenek devre dışı bırakıldığında, sunucu üzerinde dosya paylaşımı yapılamaz. İletilere yüklenmiş dosya ve görsellere mobil aygıtlar dahil olmak üzere hiç bir istemci ve aygıt tarafından erişilemez.",
- "admin.file.enableMobileDownloadDesc": "Bu seçenek devre dışı bırakıldığında, dosyalar mobil uygulamalardan indirilemez. Ancak kullanıcılar dosyaları mobil web tarayıcılar üzerinden indirebilir.",
- "admin.file.enableMobileDownloadTitle": "Dosyalar Mobil Uygulamalardan İndirilebilsin:",
- "admin.file.enableMobileUploadDesc": "Bu seçenek devre dışı bırakıldığında, dosyalar mobil uygulamalardan yüklenemez. Ancak Dosya Paylaşılabilsin seçeneği etkinleştirilmiş ise, kullanıcılar dosyaları mobil web tarayıcılar üzerinden yükleyebilir.",
- "admin.file.enableMobileUploadTitle": "Dosyalar Mobil Uygulamalardan Yüklenebilsin:",
- "admin.file_upload.chooseFile": "Dosyayı Seçin",
- "admin.file_upload.noFile": "Herhangi bir dosya yüklenmemiş",
- "admin.file_upload.uploadFile": "Yükle",
- "admin.files.images": "Görseller",
- "admin.files.storage": "Depolama",
- "admin.general.configuration": "Ayarlar",
- "admin.general.localization": "Yerelleştirme",
- "admin.general.localization.availableLocalesDescription": "Kullanıcı Ayarları bölümünde kullanılabilecek dilleri seçin (desteklenen tüm dillerin kullanılabilmesi için boş bırakın). El ile yeni diller ekliyorsanız, bu ayar kaydedilmeden önce Varsayılan İstemci Dili eklenmelidir.
Çevirilere yardımcı olmak isterseniz katkıda bulunmak için Mattermost Çeviri Sunucusu üzerinde bir hesap açın.",
- "admin.general.localization.availableLocalesNoResults": "Herhangi bir sonuç bulunamadı",
- "admin.general.localization.availableLocalesNotPresent": "Varsayılan istemci dili kullanılabilecek diller listesinde bulunmalıdır",
- "admin.general.localization.availableLocalesTitle": "Kullanılabilecek Diller:",
- "admin.general.localization.clientLocaleDescription": "Kullanıcılar oturum açmamışken yeni eklenmiş kullanıcı ve sayfalar için kullanılacak varsayılan dil.",
- "admin.general.localization.clientLocaleTitle": "Varsayılan İstemci Dili:",
- "admin.general.localization.serverLocaleDescription": "Sistem ileti ve günlükleri için kullanılacak varsayılan dil. Yapılacak değişikliğin etkili olması için sunucu yeniden başlatılmalıdır.",
- "admin.general.localization.serverLocaleTitle": "Varsayılan Sunucu Dili:",
- "admin.general.log": "Günlük",
- "admin.general.policy": "İlke",
- "admin.general.policy.allowBannerDismissalDesc": "Bu seçenek etkinleştirildiğinde, kullanıcılar bir sonraki güncellemeye kadar bu bildirimi yoksayabilir. Devre dışı bırakıldığında bildirim Sistem Yöneticisi tarafından kapatılana kadar sürekli görüntülenir.",
- "admin.general.policy.allowBannerDismissalTitle": "Bildirim Yoksayılabilsin",
- "admin.general.policy.allowEditPostAlways": "Herhangi bir zaman",
- "admin.general.policy.allowEditPostDescription": "Yazarların gönderdikten sonra iletilerini düzenleyebileceği zaman ilkesini ayarlayın.",
- "admin.general.policy.allowEditPostNever": "Asla",
- "admin.general.policy.allowEditPostTimeLimit": "gönderikten bu kadar saniye sonra",
- "admin.general.policy.allowEditPostTitle": "Kullanıcılar kendi iletilerini düzenleyebilsin:",
- "admin.general.policy.bannerColorTitle": "Bildirim Rengi:",
- "admin.general.policy.bannerTextColorTitle": "Bildirim Metin Rengi:",
- "admin.general.policy.bannerTextDesc": "Bildirimde görüntülenecek metin.",
- "admin.general.policy.bannerTextTitle": "Bildirim Metni:",
- "admin.general.policy.enableBannerDesc": "Tüm takımlar için bildirim kullanılsın.",
- "admin.general.policy.enableBannerTitle": "Bildirim Kullanılsın:",
- "admin.general.policy.permissionsAdmin": "Takım ve Sistem Yöneticileri",
- "admin.general.policy.permissionsAll": "Tüm takım üyeleri",
- "admin.general.policy.permissionsAllChannel": "Tüm kanal üyeleri",
- "admin.general.policy.permissionsChannelAdmin": "Kanal, Takım ve Sistem Yöneticileri",
- "admin.general.policy.permissionsDeletePostAdmin": "Takım ve Sistem Yöneticileri",
- "admin.general.policy.permissionsDeletePostAll": "İleti yazarları kendi iletilerini silebilir ve Yöneticiler her iletiyi silebilir",
- "admin.general.policy.permissionsDeletePostSystemAdmin": "Sistem Yöneticileri",
- "admin.general.policy.permissionsSystemAdmin": "Sistem Yöneticileri",
- "admin.general.policy.restrictPostDeleteDescription": "İletileri silebilecek kullanıcıların ilkesini ayarlayın.",
- "admin.general.policy.restrictPostDeleteTitle": "İletilerini silebilecek kullanıcılar:",
- "admin.general.policy.restrictPrivateChannelCreationDescription": "Özel kanal ekleyebilecek kullanıcıların ilkesini ayarlayın.",
- "admin.general.policy.restrictPrivateChannelCreationTitle": "Özel kanal ekleyebilecek kullanıcılar:",
- "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "komut satırı aracı",
- "admin.general.policy.restrictPrivateChannelDeletionDescription": "Özel kanal silebilecek kullanıcıların ilkesini ayarlayın. Silinen kanallar {commandLineToolLink} komutu ile veritabanından geri yüklenebilir.",
- "admin.general.policy.restrictPrivateChannelDeletionTitle": "Özel kanal silebilecek kullanıcılar:",
- "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Özel kanallara kullanıcı ekleyip silebilecek kullanıcıların ilkesini ayarlayın.",
- "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Özel kanal üyelerini yönetebilecek kullanıcılar:",
- "admin.general.policy.restrictPrivateChannelManagementDescription": "Özel kanalların başlığını ve amacını ayarlayıp değiştirebilecek kullanıcıların ilkesini ayarlayın.",
- "admin.general.policy.restrictPrivateChannelManagementTitle": "Özel kanalları yeniden adlandırabilecek kullanıcılar:",
- "admin.general.policy.restrictPublicChannelCreationDescription": "Herkese açık kanal ekleyebilecek kullanıcıların ilkesini ayarlayın.",
- "admin.general.policy.restrictPublicChannelCreationTitle": "Herkese açık kanal ekleyebilecek kullanıcılar:",
- "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "komut satırı aracı",
- "admin.general.policy.restrictPublicChannelDeletionDescription": "Herkese açık kanal silebilecek kullanıcıların ilkesini ayarlayın. Silinen kanallar {commandLineToolLink} komutu ile veritabanından geri yüklenebilir.",
- "admin.general.policy.restrictPublicChannelDeletionTitle": "Herkese açık kanal silebilecek kullanıcılar:",
- "admin.general.policy.restrictPublicChannelManagementDescription": "Herkese açık kanalların başlığını ve amacını ayarlayıp değiştirebilecek kullanıcıların ilkesini ayarlayın.",
- "admin.general.policy.restrictPublicChannelManagementTitle": "Herkese açık kanalları yeniden adlandırabilecek kullanıcılar:",
- "admin.general.policy.teamInviteDescription": "Çağrı E-postası Göndererek bir takıma kişileri çağırabilecek ya da ana menüde Takım Çağrı Bağlantısını Al ve Takıma Üye Ekle seçeneklerini görebilecek kullanıcıları ayarlayın. Bir bağlantıyı paylaşmak için Takım Çağrı Bağlantısını Al seçeneği kullanılırsa, Takım Ayarları > Çağrı Kodu bölümünden istediğiniz sayıda kullanıcı takıma katıldıktan sonra çağrı kodunun geçersiz olmasını sağlayabilirsiniz.",
- "admin.general.policy.teamInviteTitle": "Şuradan takım çağrıları gönderilebilsin:",
- "admin.general.privacy": "Gizlilik",
- "admin.general.usersAndTeams": "Kullanıcılar ve Takımlar",
- "admin.gitab.clientSecretDescription": "GitLab üzerinde oturum açmak için yukarıdaki bilgilerle birlikte bu değeri kullanın.",
- "admin.gitlab.EnableHtmlDesc": "
Sol yandaki menüden https://console.developers.google.com, click Kimlik Bilgileri bölümüne gidin ve Proje adı olarak \"Mattermost - kuruluşunuzun-adı\" yazıp Oluştur üzerine tıklayın.
OAuth consent screen başlığı üzerine tıklayın ve Kullanıcılara görüntülenecek ürün adı olarak \"Mattermost\" yazıp Kaydet üzerine tıklayın.
Credentials başlığı altındanCreate credentials üzerine tıklayın ve OAuth client ID üzerine tıklayın Web Application seçin.
Restrictions ve Authorized redirect URIs altında mattermost-adresiniz/signup/google/complete yazın (Örnek: http://localhost:8065/signup/google/complete). Create üzerine tıklayın.
Client ID ve Client Secret bilgilerini aşağıdaki alanlara yazınve Kaydet üzerine tıklayın.
Son olarak Google+ API bölümüne giderek Etkinleştir üzerine tıklayın. Uygulamanın Google sistemleri üzerinde etkin olması bir kaç dakika sürebilir.
",
- "admin.google.authTitle": "Kimlik Doğrulama Noktası:",
- "admin.google.clientIdDescription": "Uygulamanızı Google üzerine kaydederken aldığınız İstemci Kodu.",
- "admin.google.clientIdExample": "Örnek: \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
- "admin.google.clientIdTitle": "İstemci Kodu:",
- "admin.google.clientSecretDescription": "Uygulamanızı Google üzerine kaydederken aldığınız İstemci Parolası.",
- "admin.google.clientSecretExample": "Örnek: \"H8sz0Az-dDs2p15-7QzD231\"",
- "admin.google.clientSecretTitle": "İstemci Parolası:",
- "admin.google.tokenTitle": "Kod Noktası:",
- "admin.google.userTitle": "Kullanıcı API Noktası:",
- "admin.image.amazonS3BucketDescription": "AWS üzerindeki S3 buketinin adını seçin.",
- "admin.image.amazonS3BucketExample": "Örnek: \"mattermost-media\"",
- "admin.image.amazonS3BucketTitle": "Amazon S3 Buketi:",
- "admin.image.amazonS3EndpointDescription": "S3 uyumlu depolama hizmeti sağlayıcı sunucusunun adı. Varsayılan değer: `s3.amazonaws.com`.",
- "admin.image.amazonS3EndpointExample": "Örnek: \"s3.amazonaws.com\"",
- "admin.image.amazonS3EndpointTitle": "Amazon S3 Noktası:",
- "admin.image.amazonS3IdDescription": "Amazon EC2 yöneticinizden alacağınız kimlik doğrulama bilgilerini yazın.",
- "admin.image.amazonS3IdExample": "Örnek: \"AKIADTOVBGERKLCBV\"",
- "admin.image.amazonS3IdTitle": "Amazon S3 Erişimi Anahtar Kodu:",
- "admin.image.amazonS3RegionDescription": "S3 buketinin oluşturulması için seçtiğiniz AWS bölgesi.",
- "admin.image.amazonS3RegionExample": "Örnek: \"us-east-1\"",
- "admin.image.amazonS3RegionTitle": "Amazon S3 Bölgesi:",
- "admin.image.amazonS3SSEDescription": "Bu seçenek etkinleştirildiğinde, Amazon S3 üzerindeki dosyalar Amazon S3 tarafından yönetilen anahtarlar ile sunucu tarafında şifrelenir. Ayrıntılı bilgi almak için belgelere bakın.",
- "admin.image.amazonS3SSEExample": "Örnek: \"yanlış\"",
- "admin.image.amazonS3SSETitle": "Amazon S3 için sunucu tarafında şifreleme kullanılsın:",
- "admin.image.amazonS3SSLDescription": "Bu seçenek devre dışı bırakıldığında, Amazon S3 üzerine güvenli olmayan bağlantılar yapılabilir. Varsayılan olarak yalnız güvenli bağlantılar kullanılır.",
- "admin.image.amazonS3SSLExample": "Örnek: \"doğru\"",
- "admin.image.amazonS3SSLTitle": "Güvenli Amazon S3 Bağlantıları Kullanılsın:",
- "admin.image.amazonS3SecretDescription": "Amazon EC2 yöneticinizden alacağınız kimlik doğrulama bilgilerini yazın.",
- "admin.image.amazonS3SecretExample": "Örnek: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
- "admin.image.amazonS3SecretTitle": "Amazon S3 Gizli Erişim Anahtarı:",
- "admin.image.localDescription": "Dosya ve görsellerin yazılacağı klasörü seçin. Boş bırakılırsa varsayılan değer ./data/ kullanılır.",
- "admin.image.localExample": "Örnek: \"./data/\"",
- "admin.image.localTitle": "Yerel Depolama Klasörü:",
- "admin.image.maxFileSizeDescription": "Megabayt cinsinden en büyük ileti ek dosyası boyutu. Dikkat: Sunucu belleğinin yaptığınız seçimi desteklediğinden emin olun. Büyük dosya boyutları sunucunun çökmesine ve ağ kesintileri nedeniyle yüklemelerin yapılamamasına neden olabilir.",
- "admin.image.maxFileSizeExample": "50",
- "admin.image.maxFileSizeTitle": "En Büyük Dosya Boyutu:",
- "admin.image.publicLinkDescription": "Herkese açık görsel bağlantılarını imzalamak için eklenecek 32 karakter uzunluğundaki çeşni. Kurulum sırasında rastgele olarak üretilir. Yeni bir çeşni oluşturmak için \"Yeniden Oluştur\" üzerine tıklayın.",
- "admin.image.publicLinkExample": "Örnek: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.image.publicLinkTitle": "Herkese Açık Bağlantı Çeşnisi:",
- "admin.image.shareDescription": "Kullanıcıların herkese açık dosya ve görsel bağlantıları paylaşmasını sağlar.",
- "admin.image.shareTitle": "Herkese Açık Dosya Bağlantıları Kullanılsın: ",
- "admin.image.storeAmazonS3": "Amazon S3",
- "admin.image.storeDescription": "Eklenecek dosya ve görsellerin kaydedileceği depolama sistemi.
\"Amazon S3\" olarak seçildiğinde, Amazon kimlik doğrulama bilgileri ile buket ayrıntılarının yazılabileceği alanlar etkinleştirilir.
\"Yerel Dosya Sistemi\" olarak seçildiğinde yerel dosya klasörünün yazılabileceği alan etkinleştirilir.",
- "admin.image.storeLocal": "Yerel Dosya Sistemi",
- "admin.image.storeTitle": "Dosya Depolama Sistemi:",
- "admin.integrations.custom": "Özel Bütünleştirmeler",
- "admin.integrations.external": "Dış Hizmetler",
- "admin.integrations.webrtc": "Mattermost WebRTC",
- "admin.ldap.baseDesc": "Base DN, Mattermost tarafından kullanıcıların AD/LDAP ağacında aranmaya başlanacağı konumun ayırt edici adıdır.",
- "admin.ldap.baseEx": "Örnek: \"ou=Birim Adı,dc=kurulus,dc=ornek,dc=com\"",
- "admin.ldap.baseTitle": "BaseDN:",
- "admin.ldap.bindPwdDesc": "\"Bağlantı Kullanıcı Adı\" alanında belirrilen kullanıcının parolası.",
- "admin.ldap.bindPwdTitle": "Bağlantı Parolası:",
- "admin.ldap.bindUserDesc": "AD/LDAP aramasının yapılacağı kullanıcı adı. Genellikle Mattermost kullanımı için oluşturulmuş özel bir hesaptır ve yetkileri Base DN alanında belirtilmiş AD/LDAP ağacını okuma izni ile sınırlı olmalıdır.",
- "admin.ldap.bindUserTitle": "Bağlantı Kullanıcı Adı:",
- "admin.ldap.emailAttrDesc": "Mattermost kullanıcılarının e-posta adreslerinin alınacağı AD/LDAP sunucu özniteliği.",
- "admin.ldap.emailAttrEx": "Örnek: \"mail\" ya da \"userPrincipalName\"",
- "admin.ldap.emailAttrTitle": "E-posta Özniteliği:",
- "admin.ldap.enableDesc": "Bu seçenek etkinleştirildiğinde, Mattermost AD/LDAP kullanılarak oturum açılmasını sağlar",
- "admin.ldap.enableTitle": "AD/LDAP ile oturum açılabilsin:",
- "admin.ldap.firstnameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının adlarının alınacağı AD/LDAP sunucu özniteliği. Ayarlandığında, LDAP sunucusu ile eşitlendiğinden kullanıcılar adlarını değiştiremez. Boş bırakıldığında, kullanıcılar Hesap Ayarları bölümünden adlarını değiştirebilir.",
- "admin.ldap.firstnameAttrEx": "Örnek: \"belirtilenAd\"",
- "admin.ldap.firstnameAttrTitle": "Ad Özniteliği",
- "admin.ldap.idAttrDesc": "Mattermost kullanıcılarının tekil kimlik kodlarının alınacağı AD/LDAP sunucu özniteliği. Kullanıcı adı ya da UID gibi değişmeyecek bir AD/LDAP özniteliği olmalıdır. Bir kullanıcının kodu değişirse, önceki ile farklı bir yeni Mattermost hesabı oluşturulur. Bu değer Mattermost oturum açma sayfasında \"AD/LDAP Kullanıcı Adı\" alanında kullanılır. Normal olarak bu öznitelik \" yukarıdaki \"Kullanıcı Adı Özniteliği\" ile aynıdır. Takımınız AD/LDAP üzerindeki diğer hizmetlere erişmek için etkialani\\\\kullaniciadi şeklinde oturum açıyorsa, siteler arasında tutarlılık sağlamak için bu alana da etkialani\\\\kullaniciadi şeklinde yazılmasını sağlayabilirsiniz.",
- "admin.ldap.idAttrEx": "Örnek:\"sAMHesapAdi\"",
- "admin.ldap.idAttrTitle": "Kod Özniteliği: ",
- "admin.ldap.lastnameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının soyadlarının alınacağı AD/LDAP sunucu özniteliği. Ayarlandığında, LDAP sunucusu ile eşitlendiğinden kullanıcılar soyadlarını değiştiremez. Boş bırakıldığında, kullanıcılar Hesap Ayarları bölümünden soyadlarını değiştirebilir.",
- "admin.ldap.lastnameAttrEx": "Örnek: \"sn\"",
- "admin.ldap.lastnameAttrTitle": "Soyad Özniteliği:",
- "admin.ldap.ldap_test_button": "AD/LDAP Sınaması",
- "admin.ldap.loginNameDesc": "Oturum açma sayfasındaki oturum açma alanında görüntülenecek etiket. Varsayılan: \"AD/LDAP Kullanıcı Adı\".",
- "admin.ldap.loginNameEx": "Örnek: \"AD/LDAP Kullanıcı Adı\"",
- "admin.ldap.loginNameTitle": "Oturum Açma Alanı Adı:",
- "admin.ldap.maxPageSizeEx": "Örnek: \"2000\"",
- "admin.ldap.maxPageSizeHelpText": "Mattermost sunucusunun bir kerede AD/LDAP sunucusundan isteyeceği en fazla kullanıcı sayısı. 0 sınırsız anlamına gelir.",
- "admin.ldap.maxPageSizeTitle": "En Fazla Sayfa Boyutu:",
- "admin.ldap.nicknameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının takma adlarının alınacağı AD/LDAP sunucu özniteliği. Ayarlandığında, LDAP sunucusu ile eşitlendiğinden kullanıcılar takma adlarını değiştiremez. Boş bırakıldığında, kullanıcılar Hesap Ayarları bölümünden takma adlarını değiştirebilir.",
- "admin.ldap.nicknameAttrEx": "Örnek: \"Takma Ad\"",
- "admin.ldap.nicknameAttrTitle": "Takma Ad Özniteliği:",
- "admin.ldap.noLicense": "
Not:
AD/LDAP özelliği Enterprise sürümünde bulunur. Geçerli lisansınız AD/LDAP özelliğini desteklemiyor. Enterprise lisans hakkında bilgi almak ve fiyatları öğrenmek için buraya tıklayın.
",
- "admin.ldap.portDesc": "AD/LDAP sunucusuna bağlanmak için kullanılacak Mattermost kapı numarası. Varsayılan değer: 389.",
- "admin.ldap.portEx": "Örnek: \"389\"",
- "admin.ldap.portTitle": "AD/LDAP Kapı Numarası:",
- "admin.ldap.positionAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının unvanlarının alınacağı AD/LDAP sunucu özniteliği.",
- "admin.ldap.positionAttrEx": "Örnek: \"Unvan\"",
- "admin.ldap.positionAttrTitle": "Unvan Özniteliği:",
- "admin.ldap.queryDesc": "AD/LDAP sunucusuna gönderilen sorgular için zaman aşımı değeri. Yavaş bir AD/LDAP sunucusu nedeniyle zaman aşımı hatası iletileri alıyorsanız bu değeri arttırın.",
- "admin.ldap.queryEx": "Örnek: \"60\"",
- "admin.ldap.queryTitle": "Sorgu Zaman Aşımı (saniye):",
- "admin.ldap.serverDesc": "AD/LDAP sunucusunun etki alanı ya da IP adresi.",
- "admin.ldap.serverEx": "Örnek: \"10.0.0.23\"",
- "admin.ldap.serverTitle": "AD/LDAP Sunucusu:",
- "admin.ldap.skipCertificateVerification": "Sertifika Doğrulaması Atlansın:",
- "admin.ldap.skipCertificateVerificationDesc": "TLS ve STARTTLS bağlantıları için sertifika doğrulama adımını atlar. TLS kullanılması zorunlu olan üretim ortamları için önerilmez. Yalnız denemeler için kullanın.",
- "admin.ldap.syncFailure": "Eşitlenemedi: {error}",
- "admin.ldap.syncIntervalHelpText": "AD/LDAP Eşitleme güncellemeleri, AD/LDAP sunucusunda yapılan değişikliklerin Mattermost kullanıcılarına aktarılmasını sağlar. Örneğin AD/LDAP sunucusu üzerinde bir kullanıcının adı değiştirildiğinde eşitleme sonrasında kullanıcının Mattermost üzerindeki adı da güncellenir. AD/LDAP sunucusu üzerinden silinen ya da devre dışı bırakılıan kullanıcı hesapları Mattermost üzerinde \"Devre dışı\" olarak ayarlanır ve oturumları kapatılır. Mattermost buraya yazıan aralıklarla eşitleme yapar. 60 yazıldığında 60 dakikada bir eşitleme yapılacağı anlamına gelir.",
- "admin.ldap.syncIntervalTitle": "Eşitleme Aralığı (dakika):",
- "admin.ldap.syncNowHelpText": "AD/LDAP eşitlemesini hemen başlatır.",
- "admin.ldap.sync_button": "Şimdi AD/LDAP Eşitle",
- "admin.ldap.testFailure": "AD/LDAP Sınaması Başarısız: {error}",
- "admin.ldap.testHelpText": "Mattermost sunucusunun belirtilen AD/LDAP sunucusu ile bağlantısını sınar. Ayrıntılı hata iletileri için günlük dosyasına bakın.",
- "admin.ldap.testSuccess": "AD/LDAP Sınaması Başarılı",
- "admin.ldap.uernameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcı adlarının alınacağı AD/LDAP sunucu özniteliği. Kod özniteliği ile aynı olabilir.",
- "admin.ldap.userFilterDisc": "(İsteğe bağlı) Kullanıcı nesneleri aranırken kullanılacak AD/LDAP süzgecini yazın. Yalnız bu sorgu sonucunda seçilen kullanıcılar Mattermost oturumu açabilir. Aktif Dizin için devre dışı bırakılmış kullanıcıları süzen sorgu şu şekildedir (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
- "admin.ldap.userFilterEx": "Örnek: \"(objectClass=user)\"",
- "admin.ldap.userFilterTitle": "Kullanıcı Süzgeci:",
- "admin.ldap.usernameAttrEx": "Örnek:\"sAMHesapAdi\"",
- "admin.ldap.usernameAttrTitle": "Kullanıcı Adı Özniteliği:",
- "admin.license.choose": "Dosyayı Seçin",
- "admin.license.chooseFile": "Dosyayı Seçin",
- "admin.license.edition": "Sürüm: ",
- "admin.license.key": "Lisans Anahtarı: ",
- "admin.license.keyRemove": "Enterprise Lisansı Kaldır ve Sunucuyu Düşür",
- "admin.license.noFile": "Herhangi bir dosya yüklenmemiş",
- "admin.license.removing": "Lisans Kaldırılıyor...",
- "admin.license.title": "Sürüm ve Lisans",
- "admin.license.type": "Lisans: ",
- "admin.license.upload": "Yükle",
- "admin.license.uploadDesc": "Bu sunucuyu yükseltmek için bir Mattermost Enterprise Sürümü lisans anahtarı yükleyin. Enterprise sürümün katacaklarını öğrenmek ve bir anahtar satın almak için sitemize bakın.",
- "admin.license.uploading": "Lisans Yükleniyor...",
- "admin.log.consoleDescription": "Bu seçenek genel olarak üretim ortamında devre dışı bırakılır. Geliştiriciler günlük iletilerini konsola göndermek için bu seçeneği etkinleştirebilir. Bu seçenek etkinleştirildiğinde iletiler standart çıktı akışına (stdout) yazılır.",
- "admin.log.consoleTitle": "Günlükler konsola gönderilsin: ",
- "admin.log.enableDiagnostics": "Tanılama ve Hata Bildirme Kulanılsın:",
- "admin.log.enableDiagnosticsDescription": "Bu seçenek etkinleştirildiğinde, Mattermost kalitesini ve başarımını arttırmaya yardımcı olacak hata bildirimleri ve tanılama bilgileri gönderilir. Ayrıntılı bilgi almak için gizlilik ilkemize bakın.",
- "admin.log.enableWebhookDebugging": "Web Bağlantıı Hata Ayıklaması Kullanılsın:",
- "admin.log.enableWebhookDebuggingDescription": "Bu seçenek devre dışı bırakıldığında, gelen web bağlantısı isteği gövdeleri için hata ayıklama günlüklemesi yapılmaz.",
- "admin.log.fileDescription": "Bu seçenek genel olarak üretim ortamında etkinleştirilir. Etkinleştirildiğinde, günlüğe yazılan işlemler Dosya Günlüğü Klasörü alanında belirtilen klasördeki mattermost.log dosyasına yazılır. Günlükler 10,000 satıra ulaştığında aynı klasörde tarih damgası ve seri numarası ile adlandırılarak arşivlenir. Örnek: mattermost.201703-31.001.",
- "admin.log.fileLevelDescription": "Bu seçenek dosya günlüklemesinin hangi düzeyde yapılacağını belirtir. ERROR: Yalnız hata iletileri kaydedilir. INFO: Hata ile başlatma ve hazırlık iletileri kaydedilir. DEBUG: Geliştiricilerin sorunlar üzerinde çalışmasına yardımcı olan ayrıntılı bilgiler kaydedilir.",
- "admin.log.fileLevelTitle": "Dosya Günlüğü Düzeyi:",
- "admin.log.fileTitle": "Günlükler dosyaya yazılsın: ",
- "admin.log.formatDateLong": "Tarih (2006/01/02)",
- "admin.log.formatDateShort": "Tarih (01/02/06)",
- "admin.log.formatDescription": "Günlük iletisinin çıktısı. Boş ise \"[%D %T] [%L] %M\" kullanılır:",
- "admin.log.formatLevel": "Düzey (DEBG, INFO, EROR)",
- "admin.log.formatMessage": "İleti",
- "admin.log.formatPlaceholder": "Dosya biçiminizi yazın",
- "admin.log.formatSource": "Kaynak",
- "admin.log.formatTime": "Saat (15:04:05 MST)",
- "admin.log.formatTitle": "Dosya Günlük Biçimi:",
- "admin.log.levelDescription": "Bu seçenek konsol günlüklemesinin hangi düzeyde yapılacağını belirtir. ERROR: Yalnız hata iletileri kaydedilir. INFO: Hata ile başlatma ve hazırlık iletileri kaydedilir. DEBUG: Geliştiricilerin sorunlar üzerinde çalışmasına yardımcı olan ayrıntılı bilgiler kaydedilir.",
- "admin.log.levelTitle": "Konsol Günlüğü Düzeyi:",
- "admin.log.locationDescription": "Günlük dosyalarının konumu. Boş bırakılırsa ./logs klasörüne kaydedilir. Belirtilen yolun var ve Mattermost tarafından yazılabilir olması gerekir.",
- "admin.log.locationPlaceholder": "Dosyanızın konumunu yazın",
- "admin.log.locationTitle": "Dosya Günlüğü Klasörü:",
- "admin.log.logSettings": "Günlük Ayarları",
- "admin.logs.bannerDesc": "Kullanıcıları Kullanıcı Kodu ya da Erişim Koduna göre aramak için Raporlar > Kullanıcılar bölümüne giderek arama süzgecine kodu yapıştırın.",
- "admin.logs.reload": "Yeniden Yükle",
- "admin.logs.title": "Sunucu Günlükleri",
- "admin.manage_roles.additionalRoles": "Hesaba verilecek ek izinleri seçin.Rol ve izinler hakkında ayrıntılı bilgi alın.",
- "admin.manage_roles.allowUserAccessTokens": "Bu hesabın kişisel erişim kodları oluşturmasına izin verin.",
- "admin.manage_roles.cancel": "İptal",
- "admin.manage_roles.manageRolesTitle": "Rol Yönetimi",
- "admin.manage_roles.postAllPublicRole": "Herkese açık tüm Mattermost kanallarındaki iletilere erişim.",
- "admin.manage_roles.postAllPublicRoleTitle": "ileti:kanallar",
- "admin.manage_roles.postAllRole": "Doğrudan iletiler dahil tüm Mattermost kanallarına erişim.",
- "admin.manage_roles.postAllRoleTitle": "ileti:tümü",
- "admin.manage_roles.save": "Kaydet",
- "admin.manage_roles.saveError": "Roller kaydedilemedi.",
- "admin.manage_roles.systemAdmin": "Sistem Yöneticisi",
- "admin.manage_roles.systemMember": "Üye",
- "admin.manage_tokens.manageTokensTitle": "Kişisel Erişim Kodları Yönetimi",
- "admin.manage_tokens.userAccessTokensDescription": "Kişisel erişim kodları, oturum kodlarına benzer ve bütünleştirmelerin REST API üzerinden kimlik doğrulamasını sağlar. Kişisel erişim kodları hakkında ayrıntılı bilgi almak için buraya tıklayın.",
- "admin.manage_tokens.userAccessTokensNone": "Herhangi bir kişisel erişim kodu yok.",
- "admin.metrics.enableDescription": "Bu seçenek etkinleştirildiğinde, Mattermost başarım izleme derleme ve profillemesi kullanılır. Lütfen Mattermost başarım izlemesi ayarları hakkında ayrıntılı bilgi almak için belgelere bakın.",
- "admin.metrics.enableTitle": "Başarım İzlemesi Kullanılsın:",
- "admin.metrics.listenAddressDesc": "Başarım ölçütlerinin dinleneceği sunucu adresi.",
- "admin.metrics.listenAddressEx": "Örnek: \":8067\"",
- "admin.metrics.listenAddressTitle": "Dinleme Adresi:",
- "admin.mfa.bannerDesc": "Çok aşamalı kimlik doğrulaması AD/LDAP ya da e-posta ile oturum açılan hesaplar ile kullanılabilir. Başka bir oturum açma yöntemi kullanılıyorsa kimlik hizmeti sağlayıcısı ile ÇAKD ayarlanmalıdır.",
- "admin.mfa.cluster": "Yüksek",
- "admin.mfa.title": "Çok Aşamalı Kimlik Doğrulama",
- "admin.nav.administratorsGuide": "Administrator's Guide",
- "admin.nav.commercialSupport": "Commercial Support",
- "admin.nav.help": "Yardım",
- "admin.nav.logout": "Oturumu Kapat",
- "admin.nav.report": "Sorun Bildirin",
- "admin.nav.switch": "Takım Seçimi",
- "admin.nav.troubleshootingForum": "Troubleshooting Forum",
- "admin.notifications.email": "E-posta",
- "admin.notifications.push": "Mobil Bildirim",
- "admin.notifications.title": "Bildirim Ayarları",
- "admin.oauth.gitlab": "GitLab",
- "admin.oauth.google": "Google Apps",
- "admin.oauth.off": "OAuth 2.0 hizmet sağlayıcısı ile oturum açılamasın",
- "admin.oauth.office365": "Office 365 (Beta)",
- "admin.oauth.providerDescription": "Bu seçenek etkinleştirildiğinde, Mattermost bir OAuth 2.0 hizmet sağlayıcısı olarak çalışarak dış uygulamalardan gelen API isteklerini değerlendirir. Ayrıntılı bilgi almak için belgelere bakın.",
- "admin.oauth.providerTitle": "OAuth 2.0 Hizmet Sağlayıcı Kullanılsın: ",
- "admin.oauth.select": "OAuth 2.0 hizmet sağlayıcısını seçin:",
- "admin.office365.EnableHtmlDesc": "
Microsoft ya da Office 365 hesabınıza Oturum Açın. Bu hesabın oturum açmasını istediğiniz kullanıcılar ile aynı kuruluşta (tenant) bulunduğundan emin olun.
https://apps.dev.microsoft.com adresini açın, Uygulama listesi > Uygulama ekle bölümüne gidin ve Uygulama Adı olarak \"Mattermost - kurulus-adiniz\" yazın.
Uygulama Parolaları bölümünde, Yeni Parola Oluştur üzerine tıklayın ve oluşturulan parolayı kopyalayıp aşağıdaki Gizli Uygulama Parolası alanına yapıştırın.
Platformlar bölümünde, Platform Ekle üzerinde tıklayıp Web seçin ve Yönlendirme Adresleri alanına mattermost-adresiniz/signup/office365/complete yazın (Örnek: http://localhost:8065/signup/office365/complete). Ayrıca Gizli Akışa İzin Ver (Allow Implicit Flow) seçeneğinin işaretini kaldırın.
Son olarak Kaydet üzerinde tıklayın ve kopyalayıp aşağıdaki Uygulama Kodu alanına yapıştırın.
",
- "admin.office365.authTitle": "Kimlik Doğrulama Noktası:",
- "admin.office365.clientIdDescription": "Uygulamanızı Microsoft üzerine kaydederken aldığınız Uygulama/İstemci Kodu.",
- "admin.office365.clientIdExample": "Örnek: \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
- "admin.office365.clientIdTitle": "Uygulama Kodu:",
- "admin.office365.clientSecretDescription": "Uygulamanızı Microsoft üzerine kaydederken aldığınız Uygulama Gizli Parolası.",
- "admin.office365.clientSecretExample": "Örnek: \"shAieM47sNBfgl20f8ci294\"",
- "admin.office365.clientSecretTitle": "Uygulama Gizli Parolası:",
- "admin.office365.tokenTitle": "Kod Noktası:",
- "admin.office365.userTitle": "Kullanıcı API Noktası:",
- "admin.password.lowercase": "En az bir küçük harf",
- "admin.password.minimumLength": "En Az Parola Uzunluğu:",
- "admin.password.minimumLengthDescription": "Parolanın geçerli sayılması için bulunması gereken en az karakter sayısı. {min} ile {max} arasında bir tamsayı olmalıdır.",
- "admin.password.minimumLengthExample": "Örnek: \"5\"",
- "admin.password.number": "En az bir rakam",
- "admin.password.preview": "Hata iletisi önizleme",
- "admin.password.requirements": "Parola Gereklilikleri:",
- "admin.password.requirementsDescription": "Karakter türleri için geçerli bir parola olmalıdır.",
- "admin.password.symbol": "En az bir simge (Örnek: \"~!@#$%^&*()\")",
- "admin.password.uppercase": "En az bir büyük harf",
- "admin.plugins.jira": "JIRA (Beta)",
- "admin.plugins.jira.channelParamNamePlaceholder": "kanaladresi",
- "admin.plugins.jira.enabledDescription": "Bu seçenek etkinleştirildiğinde, Mattermost iletileri gönderirken JIRA web bağlantıları belirtebilirsiniz. Sahtecilik girişimlerini engellemeye yardımcı olmak için tüm iletiler BOT kod imi ile etiketlenir.",
- "admin.plugins.jira.enabledLabel": "JIRA kullanılsın:",
- "admin.plugins.jira.secretDescription": "Mattermost kimlik doğrulaması için kullanılacak parola.",
- "admin.plugins.jira.secretLabel": "Parola:",
- "admin.plugins.jira.secretParamPlaceholder": "parola",
- "admin.plugins.jira.secretRegenerateDescription": "Web bağlantısı uç noktasının parolasını yeniden üretir. Parolanın yeniden üretilmesi varolan JIRA bütünleştirmelerinizi geçersiz kılar.",
- "admin.plugins.jira.setupDescription": "JIRA bütünleştirmesini kurmak için bu bağlantı adresini kullanın. Ayrıntılı bilgi almak için {webhookDocsLink} bölümüne bakın.",
- "admin.plugins.jira.teamParamPlaceholder": "takimadresi",
- "admin.plugins.jira.userDescription": "Bu bütünleştirmenin ekleneceği kullanıcı adını seçin.",
- "admin.plugins.jira.userLabel": "Kullanıcı:",
- "admin.plugins.jira.webhookDocsLink": "belgeler",
- "admin.privacy.showEmailDescription": "Bu seçenek devre dışı bırakıldığında, e-posta adresi Sistem Yöneticileri dışındaki kullanıcılara görüntülenmez.",
- "admin.privacy.showEmailTitle": "E-posta Adresi Görüntülensin: ",
- "admin.privacy.showFullNameDescription": "Bu seçenek devre dışı bırakıldığında, tam ad Sistem Yöneticileri dışındaki kullanıcılara görüntülenmez. Tam ad yerine kullanıcı adı görüntülenir.",
- "admin.privacy.showFullNameTitle": "Tam Ad Görüntülensin: ",
- "admin.purge.button": "Tüm Ön Bellekleri Temizle",
- "admin.purge.loading": " Yükleniyor...",
- "admin.purge.purgeDescription": "Bu işlem oturum, hesap, kanal gibi tüm ön bellekleri temizler. Yüksek Erişilebilirlik kullanan sistemlerde kümedeki tüm sunucular temizlenmeye çalışılır. Ön belleklerin temizlenmesi başarımı olumsuz etkileyebilir.",
- "admin.purge.purgeFail": "Ön bellekler temizlenemedi: {error}",
- "admin.rate.enableLimiterDescription": "Bu seçenek etkinleştirildiğinde, API hızları aşağıdaki değere göre ayarlanır.",
- "admin.rate.enableLimiterTitle": "Hız Sınırlaması Kullanılsın: ",
- "admin.rate.httpHeaderDescription": "Doldurulduğunda, belirtilen HTTP üst bilgi alanına göre hız sınırlaması uygulanır (Örnek: NGINX ayarlanırken \"X-Real-IP\", AmazonELB için \"X-Forwarder-For\" olarak ayarlanmalıdır).",
- "admin.rate.httpHeaderExample": "Örnek: \"X-Real-IP\", \"X-Forwarded-For\"",
- "admin.rate.httpHeaderTitle": "HTTP üst bilgisine göre hız sınırlaması:",
- "admin.rate.maxBurst": "En Büyük Paket Boyutu:",
- "admin.rate.maxBurstDescription": "Sorguda bir saniyede yapılabilecek en fazla istek sayısı.",
- "admin.rate.maxBurstExample": "Örnek: \"100\"",
- "admin.rate.memoryDescription": "Aşağıdaki \"Hız sınırı uzak adrese göre belirlensin\" ve \"Hız sınırı HTTP üst bilgisine göre belirlensin\" seçeneklerinde belirtilen, sisteme bağlanabilecek en fazla kullanıcı oturumu sayısı.",
- "admin.rate.memoryExample": "Örnek: \"10000\"",
- "admin.rate.memoryTitle": "Bellek Depolama Boyutu:",
- "admin.rate.noteDescription": "Bu bölümde site adresi dışında yapılan değişikliklerin etkili olması için sunucu yeniden başlatılmalıdır.",
- "admin.rate.noteTitle": "Not:",
- "admin.rate.queriesDescription": "API için uygulanacak saniyedeki istek sayısı.",
- "admin.rate.queriesExample": "Örnek: \"10\"",
- "admin.rate.queriesTitle": "Bir Saniyedeki En Fazla Sorgu Sayısı:",
- "admin.rate.remoteDescription": "Bu seçenek etkinleştirildiğinde IP adresine göre API erişimi hız sınırı uygulanır.",
- "admin.rate.remoteTitle": "Hız sınırı uzak adrese göre değiştirilsin: ",
- "admin.rate.title": "Hız Sınırı Ayarları",
- "admin.recycle.button": "Veritabanı Bağlantılarını Yenile",
- "admin.recycle.loading": " Yenileniyor...",
- "admin.recycle.recycleDescription": "Birden çok veritabanı kullanan kurulumlarda, Mattermost sunucusu yeniden başlatılmadan \"config.json\" dosyasında istenilen değişiklik yapılarak ve {reloadConfiguration} seçeneği kullanılarak sunucu çalışırken bir ana veritabanından diğerine geçiş yapılabilir. Veritabanı bağlantılarının yeni ayarlara göre yeniden kurulması için yönetici tarafından {featureName} seçeneği kullanılmalıdır.",
- "admin.recycle.recycleDescription.featureName": "Veritabanı Bağlantılarını Yenile",
- "admin.recycle.recycleDescription.reloadConfiguration": "Yapılandırma > Yapılandırmayı Diskten Yeniden Yükle",
- "admin.recycle.reloadFail": "Yenilenemedi: {error}",
- "admin.regenerate": "Yeniden Oluştur",
- "admin.reload.button": "Ayarları Diskten Yeniden Yükle",
- "admin.reload.loading": " Yükleniyor...",
- "admin.reload.reloadDescription": "Birden çok veritabanı kullanan kurulumlarda Mattermost sunucusu yeniden başlatılmadan \"config.json\" dosyasında istenilen değişiklik yapılarak ve {featureName} seçeneği kullanılarak sunucu çalışırken bir ana veritabanından diğerine geçiş yapılabilir. Veritabanı bağlantılarının yeni ayarlara göre yeniden kurulması için yönetici tarafından {recycleDatabaseConnections} seçeneği kullanılmalıdır.",
- "admin.reload.reloadDescription.featureName": "Yapılandırmayı Diskten Yeniden Yükle",
- "admin.reload.reloadDescription.recycleDatabaseConnections": "Veritabanı > Veritabanı Bağlantılarını Yenile",
- "admin.reload.reloadFail": "Yeniden yüklenemedi: {error}",
- "admin.requestButton.loading": " Yükleniyor...",
- "admin.requestButton.requestFailure": "Sınama Başarısız: {error}",
- "admin.requestButton.requestSuccess": "Sınama Başarılı",
- "admin.reset_password.close": "Kapat",
- "admin.reset_password.newPassword": "Yeni Parola",
- "admin.reset_password.select": "Seçin",
- "admin.reset_password.submit": "Lütfen en az {chars} karakter yazın.",
- "admin.reset_password.titleReset": "Parolayı Sıfırla",
- "admin.reset_password.titleSwitch": "Hesabı E-posta/Parolaya Geçir",
- "admin.saml.assertionConsumerServiceURLDesc": "https:///login/sso/saml olarak yazın. Sunucu yapılandırmanıza uygun olarak HTTP ya da HTTPS kullandığınızdan emin olun. Bu alan ayrıca Müşteri Onaylama Hizmeti Adresi olarak da bilinir.",
- "admin.saml.assertionConsumerServiceURLEx": "Örnek: \"https:///login/sso/saml\"",
- "admin.saml.assertionConsumerServiceURLTitle": "Hizmet Sağlayıcı Oturum Açma Adresi:",
- "admin.saml.bannerDesc": "Kullanıcı oturum açarken Mattermost üzerindeki bilgiler SAML sunucusunda bulunan kullanıcı özniteliklerine göre güncellenir. Bu bilgilere kullanıcı devre dışı bırakma ya da silme işlemleri de dahildir. Ayrıntılı bilgi almak için https://docs.mattermost.com/deployment/sso-saml.html adresine bakın",
- "admin.saml.emailAttrDesc": "Mattermost kullanıcılarının e-posta adreslerinin alınacağı SAML onayı özniteliği.",
- "admin.saml.emailAttrEx": "Örnek: \"Email\" ya da \"PrimaryEmail\"",
- "admin.saml.emailAttrTitle": "E-posta Özniteliği:",
- "admin.saml.enableDescription": "Bu seçenek etkinleştirildiğinde, Mattermost üzerinde her zaman SAML 2.0 kullanılarak oturum açılabilir. Mattermost üzerinde SAML yapılandırması ile ilgili ayrıntılı bilgi almak için belgelere bakın.",
- "admin.saml.enableTitle": "SAML 2.0 ile oturum açılabilsin:",
- "admin.saml.encryptDescription": "Bu seçenek devre dışı bırakıldığında, Mattermost, Hizmet Sağlayıcınızın Herkese Açık sertifikası ile şifrelenmiş SAML onaylarının şifresini çözmez. Yalnız deneme ortamı için önerilir, üretim ortamlarında kullanılması önerilmez.",
- "admin.saml.encryptTitle": "Şifreme Kullanılsın:",
- "admin.saml.firstnameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının adlarının alınacağı SAML özniteliği.",
- "admin.saml.firstnameAttrEx": "Örnek: \"Ad\"",
- "admin.saml.firstnameAttrTitle": "Ad Özniteliği:",
- "admin.saml.idpCertificateFileDesc": "Kimlik hizmeti sağlayıcınız tarafından yayınlanmış herkese açık kimlik doğrulama sertifikası.",
- "admin.saml.idpCertificateFileRemoveDesc": "Kimlik hizmeti sağlayıcınız tarafından yayınlanmış herkese açık kimlik doğrulama sertifikasını siler.",
- "admin.saml.idpCertificateFileTitle": "Herkese Açık Kimlik Hizmeti Sağlayıcı Sertifikası:",
- "admin.saml.idpDescriptorUrlDesc": "SAML istekleri için kullandığınız kimlik doğrulama hizmeti sağlayıcısının yayıncı adresi.",
- "admin.saml.idpDescriptorUrlEx": "Örnek: \"https://idp.example.org/SAML2/issuer\"",
- "admin.saml.idpDescriptorUrlTitle": "Kimlik Doğrulama Hizmeti Sağlayıcı Yayıncı Adresi:",
- "admin.saml.idpUrlDesc": "Mattermost tarafından oturum açma işlemlerini başlatacak SAML isteğinin gönderileceği adres.",
- "admin.saml.idpUrlEx": "Örnek: \"https://idp.example.org/SAML2/SSO/Login\"",
- "admin.saml.idpUrlTitle": "SAML SSO Adresi:",
- "admin.saml.lastnameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının sıyadlarının alınacağı SAML özniteliği.",
- "admin.saml.lastnameAttrEx": "Örnek: \"Soyad\"",
- "admin.saml.lastnameAttrTitle": "Soyad Özniteliği:",
- "admin.saml.localeAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının dillerinin alınacağı SAML özniteliği.",
- "admin.saml.localeAttrEx": "Örnek: \"Locale\" ya da \"PrimaryLanguage\"",
- "admin.saml.localeAttrTitle": "Yeğlenen Dil Özniteliği:",
- "admin.saml.loginButtonTextDesc": "(İsteğe bağlı) Oturum açma sayfasındaki oturum açma düğmesinin üzerinde görüntülenecek metin. Varsayılan \"SAML ile\".",
- "admin.saml.loginButtonTextEx": "Örnek: \"With OKTA\"",
- "admin.saml.loginButtonTextTitle": "Oturum Açma Düğmesi Metni:",
- "admin.saml.nicknameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının takma adlarının alınacağı SAML özniteliği.",
- "admin.saml.nicknameAttrEx": "Örnek: \"TakmaAd\"",
- "admin.saml.nicknameAttrTitle": "Takma Ad Özniteliği:",
- "admin.saml.positionAttrDesc": "(İsteğe bağlı) Mattermost kullanıcılarının unvanlarının alınacağı SAML özniteliği.",
- "admin.saml.positionAttrEx": "Örnek: \"Rol\"",
- "admin.saml.positionAttrTitle": "Unvan Özniteliği:",
- "admin.saml.privateKeyFileFileDesc": "Kimlik hizmeti sağlayıcısının SAML onay şifrelerini çözmek için kullanılacak özel anahtarı.",
- "admin.saml.privateKeyFileFileRemoveDesc": "Kimlik hizmeti sağlayıcısının SAML onay şifrelerini çözmek için kullanılacak özel anahtarını sil.",
- "admin.saml.privateKeyFileTitle": "Hizmet Sağlayıcı Özel Anahtarı:",
- "admin.saml.publicCertificateFileDesc": "Mattermost hizmet sağlayıcısı olduğunda, bir hizmet sağlayıcı tarafından başlatılan SAML oturum açma işlemi için kimlik hizmeti sağlayıcıya iletilecek SAML isteğinin imzasını üretmekte kullanılacak sertifika.",
- "admin.saml.publicCertificateFileRemoveDesc": "Mattermost hizmet sağlayıcısı olduğunda, bir hizmet sağlayıcı tarafından başlatılan SAML oturum açma işlemi için kimlik hizmeti sağlayıcıya iletilecek SAML isteğinin imzasını üretmekte kullanılacak sertifikayı sil.",
- "admin.saml.publicCertificateFileTitle": "Hizmet Sağlayıcı Genel Anahtarı:",
- "admin.saml.remove.idp_certificate": "Kimlik Hizmeti Sağlayıcı Sertifikasını Sil",
- "admin.saml.remove.privKey": "Kimlik Hizmeti Sağlayıcı Özel Sertifikasını Sil",
- "admin.saml.remove.sp_certificate": "Kimlik Hizmeti Sağlayıcı Sertifikasını Sil",
- "admin.saml.removing.certificate": "Sertifika Siliniyor...",
- "admin.saml.removing.privKey": "Özel Anahtar Siliniyor...",
- "admin.saml.uploading.certificate": "Sertifika Güncelleniyor...",
- "admin.saml.uploading.privateKey": "Özel Anahtar Yükleniyor...",
- "admin.saml.usernameAttrDesc": "(İsteğe bağlı) Mattermost kullanıcı adlarının alınacağı SAML özniteliği.",
- "admin.saml.usernameAttrEx": "Örnek: \"KullanıcıAdı\"",
- "admin.saml.usernameAttrTitle": "Kullanıcı Adı Özniteliği:",
- "admin.saml.verifyDescription": "Bu seçenek devre dışı bırakıldığında, Mattermost, Hizmet Sağlayıcı Oturum Açma adresinden gelen SAML yanıtlarının imzalarını denetlemez. Yalnız deneme ortamı için önerilir, üretim ortamlarında kullanılması önerilmez.",
- "admin.saml.verifyTitle": "İmza Doğrulansın:",
- "admin.save": "Kaydet",
- "admin.saving": "Ayarlar Kaydediliyor...",
- "admin.security.connection": "Bağlantılar",
- "admin.security.inviteSalt.disabled": "E-posta gönderimi devre dışı iken çağrı çeşnisi değiştirilemez.",
- "admin.security.login": "Oturum Aç",
- "admin.security.password": "Parola",
- "admin.security.passwordResetSalt.disabled": "E-posta gönderimi devre dışı iken parola sıfırlama çeşnisi değiştirilemez.",
- "admin.security.public_links": "Herkese Açık Bağlantılar",
- "admin.security.requireEmailVerification.disabled": "E-posta gönderimi devre dışı iken e-posta doğrulaması değiştirilemez.",
- "admin.security.session": "Oturumlar",
- "admin.security.signup": "Hesap Açın",
- "admin.select_team.close": "Kapat",
- "admin.select_team.select": "Seçin",
- "admin.select_team.selectTeam": "Takım Seçin",
- "admin.service.attemptDescription": "Bir kullanıcının kilitlenmeden ve e-posta ile parolasını sıfırlaması istenilmeden önce deneyebileceği oturum açma girişimi sayısı.",
- "admin.service.attemptExample": "Örnek: \"10\"",
- "admin.service.attemptTitle": "En Fazla Oturum Açma Girişimi:",
- "admin.service.cmdsDesc": "Bu seçenek etkinleştirildiğinde, özel Bölü Komutları kullanılabilir. Ayrıntılı bilgi almak için belgelere bakın.",
- "admin.service.cmdsTitle": "Özel Bölü Komutları Kullanılsın: ",
- "admin.service.corsDescription": "Belirli bir etki alanından gelen HTTP kaynaklar arası istekleri almak için etkinleştirin. Tüm etki alanlarından gelen kaynaklar arası isteklere izin vermek için \"*\" yazın. Devre dışı bırakmak için boş bırakın.",
- "admin.service.corsEx": "http://kurulus.com",
- "admin.service.corsTitle": "Şuradan gelen kaynaklar arası istekler alınsın:",
- "admin.service.developerDesc": "Bu seçenek etkinleştirildiğinde, JavaScript hataları kullanıcı arayüzünün üst bölümünde mor bir çubuk içinde görüntülenir. Üretim ortamında kullanılması önerilmez. ",
- "admin.service.developerTitle": "Geliştirici Kipi Kullanılsın: ",
- "admin.service.enableAPIv3": "API v3 uç noktaları kullanılabilsin:",
- "admin.service.enableAPIv3Description": "Tüm REST API v3 uç noktalarını devre dışı bırakmak için bu seçeneği devre dışı bırakın. Bu durumda API v3 kullanan bütünleştirmeler çalışmaz ve API v4 aktarımı için işaretlenebilir. API v3 kullanımdan kaldırıldığından yakın gelecekte tamamen kaldırılacak. Ayrıntılı bilgi almak için https://api.mattermost.com adresine bakın.",
- "admin.service.enforceMfaDesc": "Bu seçenek etkinleştirildiğinde oturum açmak için Çok Aşamalı Kimlik Doğrulaması kullanılır. Yani kullanıcılardan kayıt olurken ÇOKD ayarlarını yapmaları istenir. ÇOKD ayarlarını yapmadan oturum açmış kullanıcılar bu ayarları yapanada kadar ÇOKD ayarları sayfasına yönlendirilir.
Sisteminizde AD/LDAP ve e-posta dışında oturum açma yöntemleri kullanan kullanıcılar varsa, Mattermost dışındaki kimlik doğrlama hizmeti sağlayıcıları için ÇOKD kullanımı dayatılmalıdır.",
- "admin.service.enforceMfaTitle": "Çok Aşamalı Kimlik Doğrulama Dayatılsın:",
- "admin.service.forward80To443": "80 kapısı 443 numaraya yönlendirilsin:",
- "admin.service.forward80To443Description": "Bu seçenek etkinleştirildiğinde, 80 numaralı kapıdaki güvenli olmayan tüm trafik güvenli 443 kapısına yönlendirilir",
- "admin.service.googleDescription": "Gömülmüş YouTube görüntü önizlemelerinin başlıklarının görüntülenmesi için bu anahtarı ayarlayın. Anahtar olmadan da YouTube önizlemeleri ileti ya da yorumlardaki bağlantılara göre oluşturulabilir ancak görüntü başlığında görüntülenmez. Anahtarı almakla ilgili bilgiler için Google Developers Tutorial sayfasına bakın.",
- "admin.service.googleExample": "Örnek: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
- "admin.service.googleTitle": "Google API Anahtarı:",
- "admin.service.iconDescription": "Bu seçenek etkinleştirildiğinde, web bağlantıları, bölü komutları ve Zapier gibi diğer profil görselini değiştiren bütünleştirmelere izin verilir. Not: kullanıcı adını değiştiren bütünleştirmelerle birlikte kullanıldığında, kullanıcılar diğer kullanıcıları taklit ederek kimlik avı saldırıları yapabilir.",
- "admin.service.iconTitle": "Profil görseli simgelerini değiştirmek için bütünleştirmeleri etkinleştirin:",
- "admin.service.insecureTlsDesc": "Bu seçenek etkinleştirildiğinde, giden tüm HTTPS istekleri, doğrulanmamış, kendinden imzalı sertifikaları kabul eder. Örnek: kendinden imzalı bir TLS sertifikası kullanan bir sunucuya giden bağlantılardaki tüm etki alanlarına izin verilir. Bu durumun bu bağlantıları ortadaki adam saldırılarına açık kılacağını unutmayın.",
- "admin.service.insecureTlsTitle": "Güvenli Olmayan Dışa Giden Bağlantılar Kullanılsın: ",
- "admin.service.integrationAdmin": "Etkileşim yönetimi yöneticiler ile sınırlansın:",
- "admin.service.integrationAdminDesc": "Bu seçenek etkinleştirildiğinde, web bağlantıları ve bölü komutları yalnız Takım ve Sistem Yöneticileri ile Sistem Yöneticileri tarafından izin verilen OAuth 2.0 uygulamaları tarafından eklenip düzenlenebilir. Yönetici tarafından eklenen bütünleştirmeler tüm kullanıcılar için geçerlidir.",
- "admin.service.internalConnectionsDesc": "Deneme ortamlarında, örneğin bir geliştirme makinasında bütünleştirme yazılımı geliştirirken, iç bağlantılara izin vermek için etki alanlarını, IP adreslerini ya da CIDR gösterimlerini belirtmek için bu seçeneği kullanın. Bir kullanıcının sunucu ya da iç ağdan gizli bilgileri alabilmesine olanak sağladığı için bu özelliğin üretim ortamlarında kullanılması önerilmez.
Varsayılan olarak, Open Graph üst verisi, web bağlantıları ya da bölü komutları gibi kullanıcı tarafından belirtilen adreslerden, iç ağlar için kullanılan çevrim ya da yerel bağlantı adresleri gibi ayrılmış IP adreslerine bağlantı kurulmasına izin verilmez. Anında bildirim, OAuth 2.0 ve WebRTC sunucu adreslerine güvenilmiştir ve bu ayardan etkilenmezler.",
- "admin.service.internalConnectionsEx": "webbaglantilari.ic.ornek.com 127.0.0.1 10.0.16.0/28",
- "admin.service.internalConnectionsTitle": "Şuraya yapılan güvenilmemiş iç bağlantılara izin verilsin: ",
- "admin.service.letsEncryptCertificateCacheFile": "Let's Encrypt Sertifika Ön Bellek Dosyası:",
- "admin.service.letsEncryptCertificateCacheFileDescription": "Let's Encrypt hizmeti ile ilgili alınan sertifikalar ve diğer bilgiler bu dosyada saklanır.",
- "admin.service.listenAddress": "Dinleme Adresi:",
- "admin.service.listenDescription": "Bağlanılacak ve dinlenecek adres ve kapı numarası. \":8065\" yazıldığında tüm ağ adreslerine bağlanılır. \"127.0.0.1:8065\" yazıldığında yalnız belirtilen IP adresine bağlanılır. Düşük düzeyli kapı numarası seçerseniz (0-1023 aralığındaki \"sistem kapıları\" ya da \"bilinen kapılar\"), bu kapı numarasına bağlanma izinleriniz olmalıdır. Linux üzerinde bilinen kapı numaralarına Mattermost tarafından bağlanma izni vermek için şunu yazın: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\".",
- "admin.service.listenExample": "Örnek: \":8065\"",
- "admin.service.mfaDesc": "Bu seçenek etkinleştirildiğinde, AD/LDAP ya da e-posta ile oturum açan kullanıcılar, hesaplarına Google Authenticator çok aşamalı kimlik doğrulaması ekleyebilir.",
- "admin.service.mfaTitle": "Çok Aşamalı Kimlik Doğrulaması Kullanılsın:",
- "admin.service.mobileSessionDays": "Mobil için oturum süresi (gün):",
- "admin.service.mobileSessionDaysDesc": "Oturumunun sonlandırılması için bir kullanıcının kimlik bilgilerini son kez yazmasından sonra geçmesi gereken gün sayısı. Bu değer değiştirildikten sonra yeni oturum süresi, kullanıcı kimlik bilgileri yeniden yazdıktan sonra geçerli olur.",
- "admin.service.outWebhooksDesc": "Bu seçenek etkinleştirildiğinde giden web bağlantıları kullanılır. Ayrıntılı bilgi almak için belgelere bakın.",
- "admin.service.outWebhooksTitle": "Giden Web Bağlantıları Kullanılsın: ",
- "admin.service.overrideDescription": "Bu seçenek etkinleştirildiğinde, web bağlantıları, bölü komutları ve Zapier gibi kullanıcı adını değiştiren bütünleştirmelere izin verilir. Not: kullanıcı görselini değiştiren bütünleştirmelerle birlikte kullanıldığında, kullanıcılar diğer kullanıcıları taklit ederek kimlik avı saldırıları yapabilir.",
- "admin.service.overrideTitle": "Kullanıcı adlarını değiştirmek için bütünleştirmeleri etkinleştirin:",
- "admin.service.readTimeout": "Okuma Zaman Aşımı:",
- "admin.service.readTimeoutDescription": "Bağlantının onaylanmasından istek metninin tam olarak okunmasına kadar geçmesine izin verilecek en fazla süre.",
- "admin.service.securityDesc": "Bu seçenek etkinleştirildiğinde, son 12 saat içinde yapılmış güvenlik yaması duruyuları Sistem Yöneticilerine e-posta ile bildirilir. E-posta özelliğinin etkinleştirilmiş olması gerekir.",
- "admin.service.securityTitle": "Güvenlik Uyarıları Kullanılsın: ",
- "admin.service.sessionCache": "Oturum Ön Belleği (dakika):",
- "admin.service.sessionCacheDesc": "Bellekteki bir oturumun ön bellekte tutulacağı dakika.",
- "admin.service.sessionDaysEx": "Örnek: \"30\"",
- "admin.service.siteURL": "Site Adresi:",
- "admin.service.siteURLDescription": "Kullanıcıların Mattermost üzerine erişebilmesi için kullanacağı adres. 80 ve 443 gibi standart kapı numaraları belirtilmeyebilir ancak http://mattermost.example.com:8065 gibi standart olmayan kapı numaralarının belirtilmesi gerekir. Bu ayarın yapılması zorunludur.",
- "admin.service.siteURLExample": "Örnek: \"https://mattermost.kurulus.com:1234\"",
- "admin.service.ssoSessionDays": "SSO oturum süresi (gün):",
- "admin.service.ssoSessionDaysDesc": "Oturumunun sonlandırılması için bir kullanıcının kimlik bilgilerini son kez yazmasından sonra geçmesi gereken gün sayısı. Kimlik doğrulama yöntemi SAML ya da GitLab ise ve kullanıcı SAML ya da GitLab üzerinde oturum açmış ise Mattermost üzerine geri döndüğünde otomatik olarak kullanıcı oturumu açılabilir. Bu değer değiştirildikten sonra yeni oturum süresi, kullanıcı kimlik bilgileri yeniden yazdıktan sonra geçerli olur.",
- "admin.service.testingDescription": "Bu seçenek etkinleştirildiğinde, deneme hesaplarını yüklemek için /test bölü komutu etkinleştirilir. Yapılan değişikliğin etkili olması için sunucunun yeniden başlatılması gerekir.",
- "admin.service.testingTitle": "Sınama Komutları Kullanılsın: ",
- "admin.service.tlsCertFile": "TLS Sertifika Dosyası:",
- "admin.service.tlsCertFileDescription": "Kullanılacak sertifika dosyası.",
- "admin.service.tlsKeyFile": "TLS Anahtar Dosyası:",
- "admin.service.tlsKeyFileDescription": "Kullanılacak özel anahtar.",
- "admin.service.useLetsEncrypt": "Let's Encrypt Kullanılsın:",
- "admin.service.useLetsEncryptDescription": "Bu seçenek etkinleştirildiğinde, Let's Encrypt sertifikaları otomatik olarak alınır. Bir istemci yeni bir etki alanına bağlanmak istediğinde sertifika alınır. Bu özellik birden çok etki alanı ile çalışır.",
- "admin.service.userAccessTokensDescLabel": "Ad: ",
- "admin.service.userAccessTokensDescription": "Bu seçenek etkinleştirildiğinde, kullanıcılar kişisel erişim kodları oluşturarak Hesap Ayarları > Güvenlik bölümündeki bütünleştirmeler için kullanabilir. Bu kodlar API üzerinden kimlik doğrulaması için kullanılabilir ve hesaba tam erişim izni verir.
Kişisel erişim kodlarını oluşturabilecek kullanıcıları belirlemek ya da kullanıcılara erişim koduna göre aramak için Sistem Konsolu > Kullanıcılar bölümüne gidin.",
- "admin.service.userAccessTokensIdLabel": "Erişim Kodu: ",
- "admin.service.userAccessTokensTitle": "Kişisel Erişim Kodları Kullanılsın: ",
- "admin.service.webSessionDays": "AD/LDAP ve e-posta oturum süresi (gün):",
- "admin.service.webSessionDaysDesc": "Oturumunun sonlandırılması için bir kullanıcının kimlik bilgilerini son kez yazmasından sonra geçmesi gereken gün sayısı. Bu değer değiştirildikten sonra yeni oturum süresi, kullanıcı kimlik bilgileri yeniden yazdıktan sonra geçerli olur.",
- "admin.service.webhooksDescription": "Bu seçenek etkinleştirildiğinde gelen web bağlantıları kullanılır. Saldırıları engellemek için tüm web bağlantılarındaki tüm iletilere bir BOT etiketi eklenir. Ayrıntılı bilgi almak için belgelere bakın.",
- "admin.service.webhooksTitle": "Gelen Web Bağlantıları Kullanılsın: ",
- "admin.service.writeTimeout": "Yazma Zaman Aşımı:",
- "admin.service.writeTimeoutDescription": "HTTP (güvenliksiz) kullanılıyorsa, istek üst bilgilerinin okunmasından yanıt yazılana kadar en fazla bu kadar süre geçmesine izin verilir. HTTPS kullanılıyorsa bağlantının onaylanmasından yanıt yazılana kadar geçecek toplam süredir.",
- "admin.sidebar.advanced": "Gelişmiş",
- "admin.sidebar.audits": "Uygunluk ve Denetim",
- "admin.sidebar.authentication": "Kimlik Doğrulama",
- "admin.sidebar.client_versions": "İstemci Sürümleri",
- "admin.sidebar.cluster": "Yüksek Erişilebilirlik",
- "admin.sidebar.compliance": "Uygunluk",
- "admin.sidebar.configuration": "Ayarlar",
- "admin.sidebar.connections": "Bağlantılar",
- "admin.sidebar.customBrand": "Özel Marka",
- "admin.sidebar.customIntegrations": "Özel Bütünleştirmeler",
- "admin.sidebar.customization": "Özelleştirme",
- "admin.sidebar.database": "Veritabanı",
- "admin.sidebar.developer": "Geliştirici",
- "admin.sidebar.elasticsearch": "Elasticsearch (Beta)",
- "admin.sidebar.email": "E-posta",
- "admin.sidebar.emoji": "Emoji",
- "admin.sidebar.external": "Dış Hizmetler",
- "admin.sidebar.files": "Dosyalar",
- "admin.sidebar.general": "Genel",
- "admin.sidebar.gitlab": "GitLab",
- "admin.sidebar.integrations": "Bütünleştirmeler",
- "admin.sidebar.jira": "JIRA (Beta)",
- "admin.sidebar.ldap": "AD/LDAP",
- "admin.sidebar.legalAndSupport": "Hükümler ve Destek",
- "admin.sidebar.license": "Sürüm ve Lisans",
- "admin.sidebar.linkPreviews": "Bağlantı Önizlemeleri",
- "admin.sidebar.localization": "Yerelleştirme",
- "admin.sidebar.logging": "Günlük",
- "admin.sidebar.login": "Oturum Aç",
- "admin.sidebar.logs": "Günlükler",
- "admin.sidebar.metrics": "Başarım İzleme",
- "admin.sidebar.mfa": "ÇAKD",
- "admin.sidebar.nativeAppLinks": "Mattermost Uygulama Bağlantıları",
- "admin.sidebar.notifications": "Bildirimler",
- "admin.sidebar.oauth": "OAuth 2.0",
- "admin.sidebar.other": "DİĞER",
- "admin.sidebar.password": "Parola",
- "admin.sidebar.policy": "İlke",
- "admin.sidebar.privacy": "Gizlilik",
- "admin.sidebar.publicLinks": "Herkese Açık Bağlantılar",
- "admin.sidebar.push": "Mobil Bildirim",
- "admin.sidebar.rateLimiting": "Hız Sınırlama",
- "admin.sidebar.reports": "RAPORLAMA",
- "admin.sidebar.saml": "SAML 2.0",
- "admin.sidebar.security": "Güvenlik",
- "admin.sidebar.sessions": "Oturumlar",
- "admin.sidebar.settings": "AYARLAR",
- "admin.sidebar.signUp": "Hesap Açın",
- "admin.sidebar.sign_up": "Hesap Açın",
- "admin.sidebar.statistics": "Takım İstatistikleri",
- "admin.sidebar.storage": "Depolama",
- "admin.sidebar.support": "Hükümler ve Destek",
- "admin.sidebar.users": "Kullanıcılar",
- "admin.sidebar.usersAndTeams": "Kullanıcılar ve Takımlar",
- "admin.sidebar.view_statistics": "Site İstatistikleri",
- "admin.sidebar.webrtc": "WebRTC (Beta)",
- "admin.sidebarHeader.systemConsole": "Sistem Konsolu",
- "admin.sql.dataSource": "Veri Kaynağı:",
- "admin.sql.driverName": "Sürücü Adı:",
- "admin.sql.keyDescription": "Veritabanındaki önemli alanları şifrelemek ve şifresini çözmek için kullanılacak 32 karakter uzunluğundaki çeşni.",
- "admin.sql.keyExample": "Örnek: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
- "admin.sql.keyTitle": "At Rest Şifreleme Anahtarı:",
- "admin.sql.maxConnectionsDescription": "Veritabanında en falza boşta bekleyen açık bağlantı sayısı.",
- "admin.sql.maxConnectionsExample": "Örnek: \"10\"",
- "admin.sql.maxConnectionsTitle": "En Fazla Boşta Bağlantı Sayısı:",
- "admin.sql.maxOpenDescription": "Veritabanında açık tutulacak en fazla açık bağlantı sayısı.",
- "admin.sql.maxOpenExample": "Örnek: \"10\"",
- "admin.sql.maxOpenTitle": "En Fazla Açık Bağlantı Sayısı:",
- "admin.sql.noteDescription": "Bu bölümde yapılan değişikliklerin etkin olması için sunucu yeniden başlatılmalıdır.",
- "admin.sql.noteTitle": "Not:",
- "admin.sql.queryTimeoutDescription": "Bir bağlantı açılıp sorgu gönderilmeden önce veritabanından yanıt almak için beklenecek saniye. Sorgunun türüne bağlı olarak oluşacak zaman aşımları nedeniyle kullanıcı arayüzünde ya da günlük kayıtlarında hatalar görebilirsiniz.",
- "admin.sql.queryTimeoutExample": "Örnek: \"30\"",
- "admin.sql.queryTimeoutTitle": "Sorgu Zaman Aşımı:",
- "admin.sql.replicas": "Veri Kaynağı Kopyaları:",
- "admin.sql.traceDescription": "(Geliştirme Kipi) Bu seçenek etkinleştirildiğinde, yürütülen SQL komutları günlüğe yazılır.",
- "admin.sql.traceTitle": "İzle: ",
- "admin.sql.warning": "Uyarı: Bu çeşni yeniden oluşturulursa veritabanındaki bazı sütunlardan boş değerler döner.",
- "admin.support.aboutDesc": "Mattermost kopyanız hakkında kuruluşunuzun amacı ve kitlesi hakkında ayrıntılı bilgi veren Hakkında sayfasının bağlantısı. Varsayılan olarak Mattermost bilgi sayfası görüntülenir.",
- "admin.support.aboutTitle": "Hakkında bağlantısı:",
- "admin.support.emailHelp": "E-posta bildirimlerinde ve eğitimler sırasında kullanıcılara soru sormaları için görüntülenecek e-posta adresi.",
- "admin.support.emailTitle": "Destek e-posta adresi:",
- "admin.support.helpDesc": "Takım sitesi ana menüsündeki yardım belgeleri bağlantısı. Kuruluşunuz kendi belgelerini yayınlamayı düşünmüyorsa genellikle değiştirilmez.",
- "admin.support.helpTitle": "Yardım bağlantısı:",
- "admin.support.noteDescription": "Dış bir siteye bağlantı veriliyorsa adresler http:// ya da https:// ile başlamalıdır.",
- "admin.support.noteTitle": "Not:",
- "admin.support.privacyDesc": "Masaüstü ve mobil kullanıcılar için Gizlilik İlkesi bağlantısı. Boş bırakılırsa bildirimi görüntüleme seçeneği gizlenir.",
- "admin.support.privacyTitle": "Gizlilik ilkesi bağlantısı:",
- "admin.support.problemDesc": "Takım sitesi ana menüsündeki belgeler bağlantısı. Varsayılan olarak kullanıcıların teknik sorunlar hakkında yardım almak için başvurduğu sorun çözme forumuna yönlenir.",
- "admin.support.problemTitle": "Sorun bildirme bağlantısı:",
- "admin.support.termsDesc": "Kullanıcıların çevrimiçi hizmeti kullanmaları için kabul etmeleri gereken hüküm ve koşullar bağlantısı. Varsayılan olarak Mattermost tarafından son kullanıcılara sunulan yazılım hükümlerini açıklayan \"Mattermost Kullanım Koşulları (Son Kullanıcılar İçin)\" kullanılır.Kendi hüküm ve koşullarınızı eklemek için varsayılan bağlantıyı değiştirirseniz, son kullanıcıların Mattermost Kullanım Koşullarını öğrenebilmesi için yeni hüküm ve koşullar metni içine varsayılan kullanım koşulları bağlantısını eklemelisiniz.",
- "admin.support.termsTitle": "Kullanım koşulları bağlantısı:",
- "admin.system_analytics.activeUsers": "İletisi Olan Etkin Kullanıcılar",
- "admin.system_analytics.title": "Sistem",
- "admin.system_analytics.totalPosts": "Toplam İleti",
- "admin.system_users.allUsers": "Tüm Kullanıcılar",
- "admin.system_users.noTeams": "Herhangi Bir Takım Yok",
- "admin.system_users.title": "{siteName} Kullanıcı",
- "admin.team.brandDesc": "Bu seçenek etkinleştirildiğinde, aşağıdan yüklenen kuruluş görselinin, yanında bir yardım metni ile oturum açma sayfasında görüntülenmesi sağlanır.",
- "admin.team.brandDescriptionExample": "Tüm takım iletişimi tek bir yerde, aranabilir ve her yerden erişilebilir",
- "admin.team.brandDescriptionHelp": "Oturum açma sayfası ve kullanıcı arayüzünde görüntülenecek hizmet açıklaması. Belirtilmediğinde \"Tüm takım iletişimi tek bir yerde, aranabilir ve her yerden erişilebilir\" görüntülenir.",
- "admin.team.brandDescriptionTitle": "Site Açıklaması: ",
- "admin.team.brandImageTitle": "Özel Marka Görseli:",
- "admin.team.brandTextDescription": "Oturum açma sayfanızda özel marka görselinizin altında görüntülenecek metin. Kod imleri ile biçimlendirilmiş metin desteklenir. En fazla 500 karakter uzunluğunda olabilir.",
- "admin.team.brandTextTitle": "Özel Marka Metni:",
- "admin.team.brandTitle": "Özel Marka Kullanılsın: ",
- "admin.team.chooseImage": "Yeni Bir Görsel Seçin",
- "admin.team.dirDesc": "Bu seçenek etkinleştirildiğinde, takımlar ana sayfadaki yeni takım ekleme konumunda takım dizini içinde görüntülenir.",
- "admin.team.dirTitle": "Takım Dizini Kullanılsın: ",
- "admin.team.maxChannelsDescription": "Etkin ve siliniş kanallar dahil, bir takımdaki en fazla kanal sayısı.",
- "admin.team.maxChannelsExample": "Örnek: \"100\"",
- "admin.team.maxChannelsTitle": "Bir Takımdaki En Fazla Kanal Sayısı:",
- "admin.team.maxNotificationsPerChannelDescription": "Kullanıcılar ileti yazmadan önce bir kanaldaki en fazla kullanıcı sayısı. Başarımı düşürdüğü için @all, @here ve @channel artık bildirim göndermiyor.",
- "admin.team.maxNotificationsPerChannelExample": "Örnek: \"1000\"",
- "admin.team.maxNotificationsPerChannelTitle": "Bir Kanaldaki En Fazla Bildirim Sayısı:",
- "admin.team.maxUsersDescription": "Etkin ve siliniş kullanıcılar dahil, bir takımdaki en fazla kullanıcı sayısı.",
- "admin.team.maxUsersExample": "Örnek: \"25\"",
- "admin.team.maxUsersTitle": "Bir Takımdaki En Fazla Kullanıcı Sayısı:",
- "admin.team.noBrandImage": "Herhangi bir marka görseli yüklenmemiş",
- "admin.team.openServerDescription": "Bu seçenek etkinleştirildiğinde, çağrılması gerekmeden, isteyen herkes bu sunucu üzerinde hesap açabilir.",
- "admin.team.openServerTitle": "Açık Sunucu Kullanılsın: ",
- "admin.team.restrictDescription": "Takım ve kullanıcıların eklenebileceği etki alanı (\"mattermost.org\" gibi) ya da virgül ile ayrılmış etki alanları listesi (\"bolum.mattermost.com, mattermost.org\" gibi).",
- "admin.team.restrictDirectMessage": "Kullanıcılar şununla Doğrudan İleti kanalı açabilsin:",
- "admin.team.restrictDirectMessageDesc": "'Mattermost sunucusundaki tüm kullanıcılar' olarak seçildiğinde, kullanıcılar aynı takımda olmasalar bile sunucu üzerindeki diğer kullanıcılara Doğrudan İleti kanalı açabilir. 'Takımdaki tüm kullanıcılar' olarak seçildiğinde, kullanıcılar yalnız aynı takımdaki kullanıcılara Doğrudan İleti kanalı açabilir.",
- "admin.team.restrictExample": "Örnek: \"kurulus.mattermost.com, mattermost.org\"",
- "admin.team.restrictNameDesc": "Bu seçenek etkinleştirildiğinde, takım adında www, admin, support, test, channel gibi sistem tarafından ayrılmış sözcükler kullanılamaz",
- "admin.team.restrictNameTitle": "Takım Adları Kısıtlansın: ",
- "admin.team.restrictTitle": "Hesap ekleme belirtilen etki alanları ile kısıtlansın:",
- "admin.team.restrict_direct_message_any": "Mattermost sunucusundaki herhangi bir kullanıcı",
- "admin.team.restrict_direct_message_team": "Takımdaki herhangi bir kullanıcı",
- "admin.team.showFullname": "Ad ve soyad görüntülensin",
- "admin.team.showNickname": "Varsa takma ad görüntülensin, yoksa ad ve soyad görüntülensin",
- "admin.team.showUsername": "Kullanıcı adı görüntülensin (varsayılan)",
- "admin.team.siteNameDescription": "Oturum açma sayfaları ve kullanıcı arayüzünde görüntülenecek hizmet adı.",
- "admin.team.siteNameExample": "Örnek: \"Mattermost\"",
- "admin.team.siteNameTitle": "Site Adı:",
- "admin.team.teamCreationDescription": "Bu seçenek devre dışı bırakıldığında, yalnız Sistem Yöneticileri takım ekleyebilir.",
- "admin.team.teamCreationTitle": "Takım Eklenebilsin: ",
- "admin.team.teammateNameDisplay": "Takım Arkadaşı Adı Görünümü:",
- "admin.team.teammateNameDisplayDesc": "İleti ve Doğrudan İleti listelerinde kullanıcı adlarının nasıl görüntüleneceğini ayarlayın.",
- "admin.team.upload": "Yükle",
- "admin.team.uploadDesc": "Oturum açma sayfasına özel bir görsel yükleyebilirsiniz. Görselin 2 MB boyutundan büyük olmaması önerilir.",
- "admin.team.uploaded": "Yüklendi!",
- "admin.team.uploading": "Yükleniyor...",
- "admin.team.userCreationDescription": "Bu seçenek devre dışı bırakıldığında, yeni hesap açılamaz ve hesap aç düğmesine basıldığında bir hata iletisi görüntülenir.",
- "admin.team.userCreationTitle": "Yeni Hesap Açılabilsin: ",
- "admin.team_analytics.activeUsers": "İleti Yazmış Etkin Kullanıcılar",
- "admin.team_analytics.totalPosts": "Toplam İleti",
- "admin.true": "doğru",
- "admin.user_item.authServiceEmail": "Oturum Açma Yöntemi: E-posta",
- "admin.user_item.authServiceNotEmail": "Oturum Açma Yöntemi: {service}",
- "admin.user_item.confirmDemoteDescription": "Kendi Sistem Yöneticisi yetkinizi kaldırırsanız ve Sistem Yöneticisi yetkilerine sahip başka bir kullanıcı yoksa, yeni bir Sistem Yöneticisi atamak için Mattermost sunucusuna bir terminal üzerinden başlanıp şu komutu yürütmeniz gerekir.",
- "admin.user_item.confirmDemoteRoleTitle": "Sistem Yöneticisi yetkisini kaldırmayı onaylayın",
- "admin.user_item.confirmDemotion": "Yetki Kaldırmayı Onayla",
- "admin.user_item.confirmDemotionCmd": "system_admin {username} platform rolleri",
- "admin.user_item.emailTitle": "E-posta: {email}",
- "admin.user_item.inactive": "Devre Dışı",
- "admin.user_item.makeActive": "Etkinleştir",
- "admin.user_item.makeInactive": "Devre Dışı Bırak",
- "admin.user_item.makeMember": "Üye Yap",
- "admin.user_item.makeSysAdmin": "Sistem Yöneticisi Yap",
- "admin.user_item.makeTeamAdmin": "Takım Yönetici Yap",
- "admin.user_item.manageRoles": "Rol Yönetimi",
- "admin.user_item.manageTeams": "Takım Yönetimi",
- "admin.user_item.manageTokens": "Kod Yönetimi",
- "admin.user_item.member": "Üye",
- "admin.user_item.mfaNo": "ÇAKD: Hayır",
- "admin.user_item.mfaYes": "ÇAKD: Evet",
- "admin.user_item.resetMfa": "ÇAKD Kaldırılsın",
- "admin.user_item.resetPwd": "Parolayı Sıfırla",
- "admin.user_item.switchToEmail": "E-posta/Parola Kipine Geç",
- "admin.user_item.sysAdmin": "Sistem Yöneticisi",
- "admin.user_item.teamAdmin": "Takım Yöneticisi",
- "admin.user_item.userAccessTokenPostAll": "(ileti: tüm kişisel erişim kodları ile)",
- "admin.user_item.userAccessTokenPostAllPublic": "(ileti: kanalların kişisel erişim kodları ile)",
- "admin.user_item.userAccessTokenYes": "(kişisel erişim kodları ile)",
- "admin.webrtc.enableDescription": "Bu seçenek etkinleştirildiğinde, Mattermost bire-bir görüntülü görüşme yapabilir. WebRTC görüşmeleri Chrome, Firefox ve Mattermost Masaüstü uygulaması üzerinden yapılabilir.",
- "admin.webrtc.enableTitle": "Mattermost WebRTC Kullanılsın: ",
- "admin.webrtc.gatewayAdminSecretDescription": "Ağ Geçidi Yönetici Adresine erişmek için gizli yönetici parolanızı yazın.",
- "admin.webrtc.gatewayAdminSecretExample": "Örnek: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
- "admin.webrtc.gatewayAdminSecretTitle": "Ağ Geçidi Gizli Parolası:",
- "admin.webrtc.gatewayAdminUrlDescription": "https://:/admin olarak yazın. Sunucu yapılandırmanıza uygun olarak HTTP ya da HTTPS kullandığınızdan emin olun. Mattermost WebRTC bu adresi istemcilerin bağlantı kurabilmesi için gereken kodları almak için kullanır.",
- "admin.webrtc.gatewayAdminUrlExample": "Örnek: \"https://webrtc.mattermost.com:7089/admin\"",
- "admin.webrtc.gatewayAdminUrlTitle": "Ağ Geçidi Yönetici Adresi:",
- "admin.webrtc.gatewayWebsocketUrlDescription": "wss://: olarak yazın. Sunucu yapılandırmanıza uygun olarak WS ya da WSS kullandığınızdan emin olun. İstemciler arasında işaretleşme ve bağlantı kurma işlemleri için kullanılır.",
- "admin.webrtc.gatewayWebsocketUrlExample": "Örnek: \"wss://webrtc.mattermost.com:8189\"",
- "admin.webrtc.gatewayWebsocketUrlTitle": "Ağ Geçidi WebScoket Adresi:",
- "admin.webrtc.stunUriDescription": "stun:: olarak yazın. STUN, bir NAT arkasında bulunan bir sunucunun herkese açık IP adresine aygıtların erişmesini sağlayan standart bir ağ iletişim kuralıdır.",
- "admin.webrtc.stunUriExample": "Örnek: \"stun:webrtc.mattermost.com:5349\"",
- "admin.webrtc.stunUriTitle": "STUN Adresi:",
- "admin.webrtc.turnSharedKeyDescription": "Paylaşılmış TURN Sunucu Anahtarını yazın. Bu anahtar bağlantının kurulması için devingen parolalar oluşturulmasında kullanılır. Üretilen parolalar kısa bir süre için geçerlidir.",
- "admin.webrtc.turnSharedKeyExample": "Örnek: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
- "admin.webrtc.turnSharedKeyTitle": "Paylaşılmış TURN Anahtarı:",
- "admin.webrtc.turnUriDescription": "turn:: olarak yazın. TURN, bir simetrik NAT arkasında bulunan bir sunucunun aktarım IP adresine aygıtların bağlanmasını sağlayan standart bir ağ iletişim kuralıdır.",
- "admin.webrtc.turnUriExample": "Örnek: \"turn:webrtc.mattermost.com:5349\"",
- "admin.webrtc.turnUriTitle": "TURN Adresi:",
- "admin.webrtc.turnUsernameDescription": "TURN sunucusundaki kullanıcı adınızı yazın.",
- "admin.webrtc.turnUsernameExample": "E.g.: \"kullaniciadim\"",
- "admin.webrtc.turnUsernameTitle": "TURN Kullanıcı Adı:",
- "admin.webserverModeDisabled": "Devre Dışı",
- "admin.webserverModeDisabledDescription": "Mattermost sunucusu durağan dosyalar sunmaz.",
- "admin.webserverModeGzip": "gzip",
- "admin.webserverModeGzipDescription": "Mattermost sunucusu gzip ile sıkıştırılmış durağan dosyalar sunar.",
- "admin.webserverModeHelpText": "Statik içerik dosyaları için gzip sıkıştırması kullanılır. Ortamınızın gzip dosyalarını kötü dağıtan web vekil sunucusu gibi özel kısıtlamaları yoksa başarımı arttırmak için gzip özelliğinin etkinleştirilmesi önerilir.",
- "admin.webserverModeTitle": "Web Sunucusu Kipi:",
- "admin.webserverModeUncompressed": "Sıkıştırılmamış",
- "admin.webserverModeUncompressedDescription": "Mattermost sunucusu durağan dosyaları sıkıştırılmamış olarak sunar.",
- "analytics.chart.loading": "Yükleniyor...",
- "analytics.chart.meaningful": "Anlamlı bir gösterim için veriler yeterli değil.",
- "analytics.system.activeUsers": "İleti Yazmış Etkin Kullanıcılar",
- "analytics.system.channelTypes": "Kanal Türleri",
- "analytics.system.dailyActiveUsers": "Günlük Etkin Kullanıcılar",
- "analytics.system.monthlyActiveUsers": "Aylık Etkin Kullanıcılar",
- "analytics.system.postTypes": "İletiler, Dosyalar ve Hashtaglar",
- "analytics.system.privateGroups": "Özel Kanallar",
- "analytics.system.publicChannels": "Herkese Açık Kanallar",
- "analytics.system.skippedIntensiveQueries": "Başarımı arttırmak için bazı istatistikler devre dışı bırakılmıştır. Bu istatistikler config.json dosyasından etkinleştirilebilir. Ayrıntılı bilgi almak için https://docs.mattermost.com/administration/statistics.html adresine bakın",
- "analytics.system.textPosts": "Yalnız Metin İçeren İletiler",
- "analytics.system.title": "Sistem İstatistikleri",
- "analytics.system.totalChannels": "Toplam Kanal",
- "analytics.system.totalCommands": "Toplam Komut",
- "analytics.system.totalFilePosts": "Dosya İçeren İletiler",
- "analytics.system.totalHashtagPosts": "Hashtaglar İçeren İletiler",
- "analytics.system.totalIncomingWebhooks": "Gelen Web Bağlantıları",
- "analytics.system.totalMasterDbConnections": "Ana Veritabanı Bağlantıları",
- "analytics.system.totalOutgoingWebhooks": "Giden Web Bağlantıları",
- "analytics.system.totalPosts": "Toplam İleti",
- "analytics.system.totalReadDbConnections": "Kopya Veritabanı Bağlantıları",
- "analytics.system.totalSessions": "Toplam Oturum",
- "analytics.system.totalTeams": "Toplam Takım",
- "analytics.system.totalUsers": "Toplam Kullanıcı",
- "analytics.system.totalWebsockets": "WebSocket Bağlantıları",
- "analytics.team.activeUsers": "İleti Yazmış Etkin Kullanıcılar",
- "analytics.team.newlyCreated": "Yeni Eklenen Kullanıcılar",
- "analytics.team.noTeams": "Bu sunucu üzerinde istatistikleri görüntülenebilecek bir takım yok.",
- "analytics.team.privateGroups": "Özel Kanallar",
- "analytics.team.publicChannels": "Herkese Açık Kanallar",
- "analytics.team.recentActive": "Son Etkin Kullanıcılar",
- "analytics.team.recentUsers": "Son Etkin Kullanıcılar",
- "analytics.team.title": "{team} Takımının İstatistikleri",
- "analytics.team.totalPosts": "Toplam İleti",
- "analytics.team.totalUsers": "Toplam Kullanıcı",
- "api.channel.add_member.added": "{addedUsername} kullanıcısı {username} tarafından kanala eklendi",
- "api.channel.delete_channel.archived": "{username} kanalı arşivledi.",
- "api.channel.join_channel.post_and_forget": "{username} kanala katıldı.",
- "api.channel.leave.left": "{username} kanaldan ayrıldı.",
- "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username}, {old} eski kanal adını {new} olarak değiştirdi",
- "api.channel.post_update_channel_header_message_and_forget.removed": "{username} kanal başlığını kaldırdı (önceki: {old})",
- "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username}, {old} eski kanal başlığını {new} olarak değiştirdi",
- "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} kanal başlığını {new} olarak güncelledi",
- "api.channel.remove_member.removed": "{removedUsername} kanaldan çıkarıldı.",
- "app.channel.post_update_channel_purpose_message.removed": "{username} kanal amacını kaldırdı (önceki: {old})",
- "app.channel.post_update_channel_purpose_message.updated_from": "{username}, {old} eski kanal amacını {new} olarak değiştirdi",
- "app.channel.post_update_channel_purpose_message.updated_to": "{username} kanal amacını {new} olarak güncelledi",
- "audit_table.accountActive": "Hesap etkinleştirildi",
- "audit_table.accountInactive": "Hesap devre dışı bırakıldı",
- "audit_table.action": "İşlem",
- "audit_table.attemptedAllowOAuthAccess": "Yeni OAuth hizmeti erişimine izin verme girişimi",
- "audit_table.attemptedLicenseAdd": "Yeni lisans yükleme girişimi",
- "audit_table.attemptedLogin": "Oturum açma girişimi",
- "audit_table.attemptedOAuthToken": "OAuth erişim kodu alma girişimi",
- "audit_table.attemptedPassword": "Parola değiştirme girişimi",
- "audit_table.attemptedRegisterApp": "{id} koduyla yeni OAuth uygulaması kaydetme girişimi",
- "audit_table.attemptedReset": "Parola sıfırlama girişimi",
- "audit_table.attemptedWebhookCreate": "Web bağlantısı ekleme girişimi",
- "audit_table.attemptedWebhookDelete": "Web bağlantısı silme girişimi",
- "audit_table.by": "{username} tarafından",
- "audit_table.byAdmin": " bir yönetici tarafından",
- "audit_table.channelCreated": "{channelName} kanalını ekledi",
- "audit_table.channelDeleted": "{url} adresindeki kanalı sildi",
- "audit_table.establishedDM": "{username} ile doğrudan ileti kanalı ekledi",
- "audit_table.failedExpiredLicenseAdd": "Süresi geçmiş ya da başlamamış olduğundan lisans eklenemedi",
- "audit_table.failedInvalidLicenseAdd": "Lisans geçersiz olduğundan eklenemedi",
- "audit_table.failedLogin": "Başarısız oturum açma girişimi",
- "audit_table.failedOAuthAccess": "Yeni bir OAuth hizmeti erişimine izin verilemedi. Yönlendirme adresi önceden kaydedilmiş geri çağırma adresi ile aynı değil",
- "audit_table.failedPassword": "Parola değiştirilemedi. OAuth üzerinden oturum açmış bir kullanıcı parolasını değiştirmeye çalıştı",
- "audit_table.failedWebhookCreate": "Web bağlantısı eklenemedi. Kanal izinleri hatalı",
- "audit_table.failedWebhookDelete": "Web bağlantısı eklenemedi. Koşullar uygun değil",
- "audit_table.headerUpdated": "{channelName} kanal başlığı güncellendi",
- "audit_table.ip": "IP Adresi",
- "audit_table.licenseRemoved": "Bir lisans kaldırıldı",
- "audit_table.loginAttempt": " (Oturum açma girişimi)",
- "audit_table.loginFailure": " (Oturum açılamadı)",
- "audit_table.logout": "Hesabınızın oturumu kapatıldı",
- "audit_table.member": "üye",
- "audit_table.nameUpdated": "{channelName} kanal adı güncellendi",
- "audit_table.oauthTokenFailed": "OAuth erişim kodu alınamadı - {token}",
- "audit_table.revokedAll": "Takımın tüm geçerli oturumları geçersiz kılındı",
- "audit_table.sentEmail": "Parolanızı sıfırlamanız için {email} adresine bir posta gönderildi",
- "audit_table.session": "Oturum Kodu",
- "audit_table.sessionRevoked": "{sessionId} kodlu oturum geçersiz kılındı",
- "audit_table.successfullLicenseAdd": "Yeni lisans eklendi",
- "audit_table.successfullLogin": "Oturum açıldı",
- "audit_table.successfullOAuthAccess": "Yeni OAuth hizmeti erişimi verildi",
- "audit_table.successfullOAuthToken": "Yeni OAuth hizmeti eklendi",
- "audit_table.successfullPassword": "Parola değiştirildi",
- "audit_table.successfullReset": "Parola sıfırlandı",
- "audit_table.successfullWebhookCreate": "Web bağlantısı eklendi",
- "audit_table.successfullWebhookDelete": "Web bağlantısı silindi",
- "audit_table.timestamp": "Zaman Damgası",
- "audit_table.updateGeneral": "Genel hesap ayarlarınız güncellendi",
- "audit_table.updateGlobalNotifications": "Genel bildirim ayarlarınız güncellendi",
- "audit_table.updatePicture": "Profil görseliniz güncellendi",
- "audit_table.updatedRol": "Kullanıcı rolleri şu şekilde güncellendi ",
- "audit_table.userAdded": "{username} kullanıcısı {channelName} kanalına eklendi",
- "audit_table.userId": "Kullanıcı Kodu",
- "audit_table.userRemoved": "{username} kullanıcısı {channelName} kanalından çıkarıldı",
- "audit_table.verified": "E-posta adresiniz doğrulandı",
- "authorize.access": "{appName} uygulamasına izin verilsin mi?",
- "authorize.allow": "İzin Ver",
- "authorize.app": "{appName} uygulaması temel bilgilerinize erişip değiştirebilecek.",
- "authorize.deny": "Reddet",
- "authorize.title": "{appName} uygulaması Mattermost kullanıcı hesabınıza bağlanmak istiyor",
- "backstage_list.search": "Arama",
- "backstage_navbar.backToMattermost": "{siteName} Sitesine Geri Dön",
- "backstage_sidebar.emoji": "Özel Emoji",
- "backstage_sidebar.integrations": "Bütünleştirmeler",
- "backstage_sidebar.integrations.commands": "Bölü Komutları",
- "backstage_sidebar.integrations.incoming_webhooks": "Gelen Web Bağlantıları",
- "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 Uygulamaları",
- "backstage_sidebar.integrations.outgoing_webhooks": "Giden Web Bağlantıları",
- "calling_screen": "Aranıyor",
- "center_panel.recent": "Geçmiş iletileri görüntülemek için buraya tıklayın. ",
- "change_url.close": "Kapat",
- "change_url.endWithLetter": "Adresin sonunda bir harf ya da rakam olmalı.",
- "change_url.invalidUrl": "Adres geçersiz",
- "change_url.longer": "Adres en az iki karakter uzunluğunda olmalıdır.",
- "change_url.noUnderscore": "Adreste arka arkaya iki alt çizgi bulunamaz.",
- "change_url.startWithLetter": "Adresin başında bir harf ya da rakam olmalı.",
- "change_url.urlLabel": "Kanal Adresi",
- "channelHeader.addToFavorites": "Beğendiklerime Ekle",
- "channelHeader.removeFromFavorites": "Beğendiklerimden Kaldır",
- "channel_flow.alreadyExist": "Bu adresi kullanan bir kanal zaten var",
- "channel_flow.changeUrlDescription": "Adreslerde kullanılamayan bazı karakterler silinebilir.",
- "channel_flow.changeUrlTitle": "Kanal Adresini Değiştir",
- "channel_flow.create": "Kanal Ekle",
- "channel_flow.handleTooShort": "Kanal adresi içinde 2 ya da daha fazla küçük alfasayısal karakter bulunmalıdır",
- "channel_flow.invalidName": "Kanal Adresi Geçersiz",
- "channel_flow.set_url_title": "Kanal Adresini Ayarla",
- "channel_header.addChannelHeader": "Bir kanal açıklaması yazın",
- "channel_header.addMembers": "Üye Ekle",
- "channel_header.addToFavorites": "Beğendiklerime Ekle",
- "channel_header.channelHeader": "Kanal Başlığını Düzenle",
- "channel_header.channelMembers": "Üyeler",
- "channel_header.delete": "Kanalı Sil",
- "channel_header.flagged": "İşaretlenmiş İletiler",
- "channel_header.leave": "Kanaldan Ayrıl",
- "channel_header.manageMembers": "Üye Yönetimi",
- "channel_header.notificationPreferences": "Bildirim Ayarları",
- "channel_header.pinnedPosts": "Sabitlenmiş İletiler",
- "channel_header.recentMentions": "Son Anmalar",
- "channel_header.removeFromFavorites": "Beğendiklerimden Kaldır",
- "channel_header.rename": "Kanalı Yeniden Adlandır",
- "channel_header.setHeader": "Kanal Başlığını Düzenle",
- "channel_header.setPurpose": "Kanal Amacını Düzenle",
- "channel_header.viewInfo": "Bilgileri Görüntüle",
- "channel_header.viewMembers": "Üyeleri Görüntüle",
- "channel_header.webrtc.call": "Görüntülü Görüşme Başlat",
- "channel_header.webrtc.offline": "Kullanıcı çevrimdışı",
- "channel_header.webrtc.unavailable": "Geçerli görüşmeniz sona erene kadar yeni arama yapılamaz",
- "channel_info.about": "Hakkında",
- "channel_info.close": "Kapat",
- "channel_info.header": "Başlık:",
- "channel_info.id": "Kod: ",
- "channel_info.name": "Ad:",
- "channel_info.notFound": "Herhangi bir kanal bulunamadı",
- "channel_info.purpose": "Amaç:",
- "channel_info.url": "Adres:",
- "channel_invite.add": " Ekle",
- "channel_invite.addNewMembers": "Şu kanala yeni üye ekle: ",
- "channel_invite.close": "Kapat",
- "channel_loader.connection_error": "İnternet bağlantınızda bir sorun var gibi görünüyor.",
- "channel_loader.posted": "Gönderildi",
- "channel_loader.postedImage": " bir görsel yükledi",
- "channel_loader.socketError": "Lütfen bağlantıyı denetleyin, Mattermost ulaşılabilir değil. Sorun sürerse, yöneticiden WebSocket kapısını denetlemesini isteyin.",
- "channel_loader.someone": "Biri",
- "channel_loader.something": " yeni bir şey yaptı",
- "channel_loader.unknown_error": "Sunucudan beklenmedik bir durum kodu alındı.",
- "channel_loader.uploadedFile": " bir dosya yükledi",
- "channel_loader.uploadedImage": " bir görsel yükledi",
- "channel_loader.wrote": " şunu yazdı: ",
- "channel_members_dropdown.channel_admin": "Kanal Yöneticisi",
- "channel_members_dropdown.channel_member": "Kanal Üyesi",
- "channel_members_dropdown.make_channel_admin": "Kanal Yöneticisi Yap",
- "channel_members_dropdown.make_channel_member": "Kanal Üyesi Yap",
- "channel_members_dropdown.remove_from_channel": "Kanaldan Çıkar",
- "channel_members_dropdown.remove_member": "Üyelikten Çıkar",
- "channel_members_modal.addNew": " Yeni Üye Ekle",
- "channel_members_modal.members": " Üyeler",
- "channel_modal.cancel": "İptal",
- "channel_modal.createNew": "Yeni Kanal Ekle",
- "channel_modal.descriptionHelp": "Bu kanalın ne amaçla kullanılacağını açıklayın.",
- "channel_modal.displayNameError": "Kanal adı 2 ya da daha fazla karakter içermelidir",
- "channel_modal.edit": "Düzenle",
- "channel_modal.header": "Başlık",
- "channel_modal.headerEx": "Örnek: \"[Bağlantı Başlığı](http://kurulus.com)\"",
- "channel_modal.headerHelp": "Kanal adının yanında kanal başlığında görüntülenecek metni yazın. Örnek: [Bağlantı Başlığı](http://kurulus.com) gibi sık kullanılan bağlantıları yazabilirsiniz.",
- "channel_modal.modalTitle": "Yeni Kanal",
- "channel_modal.name": "Ad",
- "channel_modal.nameEx": "Örnek: \"Hatalar\", \"Pazarlama\", \"客户支持\"",
- "channel_modal.optional": "(isteğe bağlı)",
- "channel_modal.privateGroup1": "Her isteyenin katılamayacağı özel bir kanal ekler. ",
- "channel_modal.privateGroup2": "Özel bir kanal ekle",
- "channel_modal.publicChannel1": "Herkese açık bir kanal ekle",
- "channel_modal.publicChannel2": "Her isteyenin katılabileceği bir kanal ekler. ",
- "channel_modal.purpose": "Amaç",
- "channel_modal.purposeEx": "Örnek: \"Hatalar ve geliştirmeler kanalı\"",
- "channel_notifications.allActivity": "Tüm işlemler için",
- "channel_notifications.allUnread": "Tüm okunmamış iletiler için",
- "channel_notifications.globalDefault": "Genel varsayılan ({notifyLevel})",
- "channel_notifications.markUnread": "Kanal okunmamış olarak işaretlensin",
- "channel_notifications.never": "Asla",
- "channel_notifications.onlyMentions": "Yalnız anma olduğunda",
- "channel_notifications.override": "\"Varsayılan\" dışında bir seçenek seçildiğinde genel bildirim ayarları değiştirilir. Masüstü bildirimleri Firefox, Safari ve Chrome ile kullanılabilir.",
- "channel_notifications.overridePush": "\"Genel varsayılan\" dışında bir seçenek seçildiğinde hesap ayarlarındaki anında mobil bildirim ayarları değiştirilir. Anında bildirimler Sistem Yöneticisi tarafından etkinleştirilmiş olmalıdır.",
- "channel_notifications.preferences": "Şu kanalın bildirim ayarları: ",
- "channel_notifications.push": "Anında mobil bildirimler gönderilsin",
- "channel_notifications.sendDesktop": "Masaüstü bildirimleri gönderilsin",
- "channel_notifications.unreadInfo": "Okunmamış iletiler olduğunda yan çubukta kanal adı koyu olarak görüntülenir. \"Yalnız anma olduğunda\" seçeneği etkinleştirildiğinde kanal adı yalnız anma olduğunda koyu görüntülenir.",
- "channel_select.placeholder": "--- Bir Kanal Seçin ---",
- "channel_switch_modal.dm": "(Doğrudan İleti)",
- "channel_switch_modal.failed_to_open": "Kanal açılamadı.",
- "channel_switch_modal.not_found": "Herhangi bir sonuç bulunamadı.",
- "channel_switch_modal.submit": "Değiştir",
- "channel_switch_modal.title": "Kanala Geç",
- "claim.account.noEmail": "Herhangi bir e-posta adresi belirtilmemiş",
- "claim.email_to_ldap.enterLdapPwd": "AD/LDAP hesabınızın kod ve parolasını yazın",
- "claim.email_to_ldap.enterPwd": "{site} e-posta hesabınızın parolasını yazın",
- "claim.email_to_ldap.ldapId": "AD/LDAP Kodu",
- "claim.email_to_ldap.ldapIdError": "AD/LDAP kodunuzu yazın.",
- "claim.email_to_ldap.ldapPasswordError": "AD/LDAP parolanızı yazın.",
- "claim.email_to_ldap.ldapPwd": "AD/LDAP Parolası",
- "claim.email_to_ldap.pwd": "Parola",
- "claim.email_to_ldap.pwdError": "Lütfen parolanızı yazın.",
- "claim.email_to_ldap.ssoNote": "Geçerli bir AD/LDAP hesabınız olmalıdır",
- "claim.email_to_ldap.ssoType": "Hesabınıza göre yalnız AD/LDAP ile oturum açabilirsiniz",
- "claim.email_to_ldap.switchTo": "Hesabı AD/LDAP olarak değiştir",
- "claim.email_to_ldap.title": "E-posta/Parola hesabını AD/LDAP olarak değiştir",
- "claim.email_to_oauth.enterPwd": "{site} hesabınızın parolasını yazın",
- "claim.email_to_oauth.pwd": "Parola",
- "claim.email_to_oauth.pwdError": "Lütfen parolanızı yazın.",
- "claim.email_to_oauth.ssoNote": "Zaten geçerli bir {type} hesabınız olmalı",
- "claim.email_to_oauth.ssoType": "Hesap ayarlarınıza göre yalnız {type} SSO ile oturum açabilirsiniz",
- "claim.email_to_oauth.switchTo": "Hesabı {uiType} olarak değiştir",
- "claim.email_to_oauth.title": "E-posta/Parola Hesabını {uiType} olarak değiştir",
- "claim.ldap_to_email.confirm": "Parola Onayı",
- "claim.ldap_to_email.email": "Kimlik doğrulama yöntemini değiştirdiğinizde oturum açmak için {email} kullanacaksınız. AD/LDAP kimlik doğrulama bilgilerinizi kullanarak Mattermost oturumu açamayacaksınız.",
- "claim.ldap_to_email.enterLdapPwd": "{ldapPassword}:",
- "claim.ldap_to_email.enterPwd": "Yeni e-posta ile oturum açma parolası:",
- "claim.ldap_to_email.ldapPasswordError": "Lütfen AD/LDAP parolanızı yazın.",
- "claim.ldap_to_email.ldapPwd": "AD/LDAP Parolası",
- "claim.ldap_to_email.pwd": "Parola",
- "claim.ldap_to_email.pwdError": "Lütfen parolanızı yazın.",
- "claim.ldap_to_email.pwdNotMatch": "Parola ve onayı aynı değil.",
- "claim.ldap_to_email.switchTo": "Hesabı E-posta/Parola olarak değiştir",
- "claim.ldap_to_email.title": "AD/LDAP hesabını E-posta/Parola olarak değiştir",
- "claim.oauth_to_email.confirm": "Parola Onayı",
- "claim.oauth_to_email.description": "Hesap türünüzü değiştirdiğinizde yalnız e-posta ve parola ile oturum açabileceksiniz.",
- "claim.oauth_to_email.enterNewPwd": "{site} e-posta hesabınız için yeni bir parola yazın",
- "claim.oauth_to_email.enterPwd": "Lütfen bir parola yazın.",
- "claim.oauth_to_email.newPwd": "Yeni Parola",
- "claim.oauth_to_email.pwdNotMatch": "Parola ile onayı aynı değil.",
- "claim.oauth_to_email.switchTo": "{type} hesabını e-posta ve parola olarak değiştir",
- "claim.oauth_to_email.title": "{type} hesabını e-posta olarak değiştir",
- "confirm_modal.cancel": "İptal",
- "connecting_screen": "Bağlanıyor",
- "create_comment.addComment": "Yorum yazın...",
- "create_comment.comment": "Yorum Yazın",
- "create_comment.commentLength": "Yorum {max} karakterden kısa olamaz.",
- "create_comment.commentTitle": "Yorum",
- "create_comment.file": "Dosya yükleniyor",
- "create_comment.files": "Dosya yükleniyor",
- "create_post.comment": "Yorum",
- "create_post.error_message": "İletiniz çok uzun. Karakter sayısı: {length}/{limit}",
- "create_post.post": "Gönder",
- "create_post.shortcutsNotSupported": "Kullandığınız aygıt kısayol tuşlarını desteklemiyor.",
- "create_post.tutorialTip": "
İleti Göndermek
İletinizi buraya yazın ve göndermek için ENTER tuşuna basın.
Bir görsel ya da dosya yüklemek için Dosya Ekle düğmesine tıklayın.
",
- "create_post.write": "Bir ileti yazın...",
- "create_team.agreement": "Hesap açarak ve {siteName} kullanarak Hüküm ve Koşullarile Gizlilik İlkesinikabul etmiş olursunuz. Kabul etmiyorsanız {siteName} kullanamazsınız.",
- "create_team.display_name.charLength": "Ad {min} ile {max} karakter arasında olmalıdır. Daha sonra daha uzun bir takım açıklaması ekleyebilirsiniz.",
- "create_team.display_name.nameHelp": "Her dilde görüntülenecek takım adını yazın. Takım adınız menü ve başlıklarda görüntülenir.",
- "create_team.display_name.next": "Sonraki",
- "create_team.display_name.required": "Bu alan zorunludur",
- "create_team.display_name.teamName": "Takım Adı",
- "create_team.team_url.back": "Önceki adıma geri dön",
- "create_team.team_url.charLength": "Ad {min} ile {max} karakterden oluşabilir",
- "create_team.team_url.creatingTeam": "Takım ekleniyor...",
- "create_team.team_url.finish": "Bitti",
- "create_team.team_url.hint": "
Kısa ve kolay hatırlanması en iyisidir
Küçük harfler, rakamlar ve tire kullanın
Bir harf ile başlamalı ve tire ile bitmemelidir
",
- "create_team.team_url.regex": "Yalnız küçük harf, rakam ve tire kullanın. Bir harf ile başlamalı ve tire ile bitmemelidir.",
- "create_team.team_url.required": "Bu alan zorunludur",
- "create_team.team_url.taken": " adresi sistem tarafından ayrılmış bir sözcükle başlıyor ya da kullanılamıyor. Lütfen başka bir ad deneyin.",
- "create_team.team_url.teamUrl": "Takım Adresi",
- "create_team.team_url.unavailable": "Adres alınmış ya da kullanılamıyor. Lütfen başka bir adres deneyin.",
- "create_team.team_url.webAddress": "Yeni takımınızın web adresini seçin:",
- "custom_emoji.empty": "Herhangi bir özel emoji bulunamadı",
- "custom_emoji.header": "Özel Emoji",
- "custom_emoji.search": "Özel Emoji Arama",
- "deactivate_member_modal.cancel": "İptal",
- "deactivate_member_modal.deactivate": "Devre Dışı Bırak",
- "deactivate_member_modal.desc": "Bu işlem {username} kullanıcısını devre dışı bırakır. Kullanıcının oturumu kapatılır ve sistemdeki tüm takım ve kanal erişimleri kaldırılır. {username} kullanıcısını devre dışı bırakmak istediğinize emin misiniz?",
- "deactivate_member_modal.title": "{username} Kullanıcısını Devre Dışı Bırak",
- "default_channel.purpose": "Buraya herkesin görmesini istediğiniz iletileri gönderin. Takıma katılan herkes otomatik olarak bu kanalın kalıcı üyesi olur.",
- "delete_channel.cancel": "İptal",
- "delete_channel.confirm": "Kanalı SİLMEYİ Onaylayın",
- "delete_channel.del": "Sil",
- "delete_channel.question": "Bu işlem kanalı takımdan siler ve içeriğine hiç bir kullanıcı erişemez.
{display_name} kanalını silmek istediğinize emin misiniz?",
- "delete_post.cancel": "İptal",
- "delete_post.comment": "Yorum",
- "delete_post.confirm": "{term} Silmeyi Onaylayın",
- "delete_post.del": "Sil",
- "delete_post.post": "İleti",
- "delete_post.question": "Bu {term} ögesini silmek istediğinize emin misiniz?",
- "delete_post.warning": "Bu iletiye {count, number} {count, plural, one {comment} other {comments}} yapılmış.",
- "edit_channel_header.editHeader": "Edit the Channel Header...",
- "edit_channel_header.previewHeader": "Edit header",
- "edit_channel_header_modal.cancel": "İptal",
- "edit_channel_header_modal.description": "Kanal başlığında kanal adının yanında görüntülenecek metni düzenleyin.",
- "edit_channel_header_modal.error": "Bu kanal başlığı çok uzun lütfen daha kısa bir başlık yazın",
- "edit_channel_header_modal.save": "Kaydet",
- "edit_channel_header_modal.title": "{channel} kanalının başlığını düzenle",
- "edit_channel_header_modal.title_dm": "Başlığı Düzenle",
- "edit_channel_private_purpose_modal.body": "Özel kanalın \"Bilgileri Görüntüle\" üste açılan penceresinde görüntülenecek metin.",
- "edit_channel_purpose_modal.body": "Bu kanalın nasıl kullanılacağını açıklayın. Bu metin, \"Diğer ...\" menüsündeki kanal listesinde görünür ve başkalarının katılmaya karar vermesine yardımcı olur.",
- "edit_channel_purpose_modal.cancel": "İptal",
- "edit_channel_purpose_modal.error": "Bu kanal amacı çok uzun lütfen daha kısa bir amaç yazın",
- "edit_channel_purpose_modal.save": "Kaydet",
- "edit_channel_purpose_modal.title1": "Amacı Düzenle",
- "edit_channel_purpose_modal.title2": "Şunun amacını düzenle ",
- "edit_command.save": "Güncelle",
- "edit_post.cancel": "İptal",
- "edit_post.edit": "{title} düzenle",
- "edit_post.editPost": "İletiyi düzenle...",
- "edit_post.save": "Kaydet",
- "email_signup.address": "E-posta Adresi",
- "email_signup.createTeam": "Takım Ekle",
- "email_signup.emailError": "Lütfen geçerli bir e-posta adresi yazın.",
- "email_signup.find": "Takımlarımı bul",
- "email_verify.almost": "{siteName}: Neredeyse tamam",
- "email_verify.failed": " Doğrulama e-postası gönderilemedi.",
- "email_verify.notVerifiedBody": "Lütfen e-posta adresinizi doğrulayın. E-posta gelen kutunuza bakın.",
- "email_verify.resend": "E-postayı Yeniden Gönder",
- "email_verify.sent": " Doğrulama e-postası gönderildi.",
- "email_verify.verified": "{siteName} E-posta Doğrulandı",
- "email_verify.verifiedBody": "
E-posta adresiniz doğrulandı! Oturum açmak için buraya tıklayın.
",
- "email_verify.verifyFailed": "E-posta doğrulanamadı.",
- "emoji_list.actions": "İşlemler",
- "emoji_list.add": "Özel Emoji Ekle",
- "emoji_list.creator": "Oluşturan",
- "emoji_list.delete": "Sil",
- "emoji_list.delete.confirm.button": "Sil",
- "emoji_list.delete.confirm.msg": "Bu işlem özel emojiyi geri alınamayacak şekilde siler. Silmek istediğinize emin misiniz?",
- "emoji_list.delete.confirm.title": "Özel Emojiyi Sil",
- "emoji_list.empty": "Herhangi bir özel emoji bulunamadı",
- "emoji_list.header": "Özel Emoji",
- "emoji_list.help": "Sunucunuzdaki herkes özel emojileri kullanabilir. Emoji seçim menüsünü açmak için ileti alanında ':' yazın. Diğer kullanıcıların yeni emojileri görebilmeleri için sayfayı yeniden yüklemesi gerekebilir.",
- "emoji_list.help2": "İpucu: Emoji bulunan yeni bir satırın ilk karakteri olarak #, ## ya da ### kullanırsanız emoji boyutunu büyütebilirsiniz. Denemek için '# :smile' gibi bir ileti gönderin.",
- "emoji_list.image": "Görsel",
- "emoji_list.name": "Ad",
- "emoji_list.search": "Özel Emoji Arama",
- "emoji_list.somebody": "Başka bir takımdaki biri",
- "emoji_picker.activity": "İşlem",
- "emoji_picker.custom": "Özel",
- "emoji_picker.emojiPicker": "Emoji Seçici",
- "emoji_picker.flags": "İşaretler",
- "emoji_picker.foods": "Yiyecek",
- "emoji_picker.nature": "Doğa",
- "emoji_picker.objects": "Nesneler",
- "emoji_picker.people": "Kişiler",
- "emoji_picker.places": "Yerler",
- "emoji_picker.recent": "Son Kullanılanlar",
- "emoji_picker.search": "Arama",
- "emoji_picker.symbols": "Simgeler",
- "error.local_storage.help1": "Çerezler kullanılsın",
- "error.local_storage.help2": "Gizli taramayı kapat",
- "error.local_storage.help3": "Desteklenen bir tarayıcı kullanın (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
- "error.local_storage.message": "Web tarayıcınızdaki bir ayarın yerel depolama özelliklerini engellemesi nedeniyle Mattermost yüklenemedi. Mattermost uygulamasının yüklenebilmesi için şu işlemleri yapmayı deneyin:",
- "error.not_found.link_message": "Mattermost'a Geri Dön",
- "error.not_found.message": "Ulaşmaya çalıştığınız sayfa bulunamadı",
- "error.not_found.title": "Sayfa bulunamadı",
- "error_bar.expired": "Enterprise lisansın süresi geçtiğinden bazı özellikler devre dışı kalabilir. Lütfen lisansınızı yenileyin.",
- "error_bar.expiring": "Enterprise lisansın süresi {date} tarihinde bitecek. Lütfen lisansınızı yenileyin.",
- "error_bar.past_grace": "Enterprise lisansın süresi geçtiğinden bazı özellikler devre dışı kalabilir. Lütfen ayrıntılar için Sistem Yöneticisi ile görüşün.",
- "error_bar.preview_mode": "Önizleme Kipi: E-posta bildirimleri ayarlanmamış",
- "error_bar.site_url": "Lütfen {link} içindeki {docsLink} ayarlarınızı yapın.",
- "error_bar.site_url.docsLink": "Site Adresi",
- "error_bar.site_url.link": "Sistem Konsolu",
- "error_bar.site_url_gitlab": "Lütfen Sistem Konsolu ya da GitLab Mattermost kullanıyorsanız gitlab.rb içindeki {docsLink} ayarlarınızı yapın.",
- "file_attachment.download": "İndir",
- "file_info_preview.size": "Boyut ",
- "file_info_preview.type": "Dosya Türü ",
- "file_upload.disabled": "Dosya ekleme devre dışı bırakılmış.",
- "file_upload.fileAbove": "{max} MB boyutundan büyük dosyalar yüklenemez: {filename}",
- "file_upload.filesAbove": "{max} MB boyutundan büyük dosyalar yüklenemez: {filenames}",
- "file_upload.limited": "En çok {count, number} dosya yüklenebilir. Daha fazla dosya eklemek için ek iletiler kullanın.",
- "file_upload.pasted": "Görselin yapıştırılması ",
- "filtered_channels_list.search": "Kanal arama",
- "filtered_user_list.any_team": "Tüm Kullanıcılar",
- "filtered_user_list.count": "{count, number} {count, plural, one {member} other {members}}",
- "filtered_user_list.countTotal": "{count, number} {count, plural, one {member} other {members}} / {total, number}",
- "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, one {member} other {members}} / {total, number}",
- "filtered_user_list.member": "Üye",
- "filtered_user_list.next": "Sonraki",
- "filtered_user_list.prev": "Önceki",
- "filtered_user_list.search": "Kullanıcı arama",
- "filtered_user_list.searchButton": "Arama",
- "filtered_user_list.show": "Süzgeç:",
- "filtered_user_list.team_only": "Bu Takımın Üyesi",
- "find_team.email": "E-posta",
- "find_team.findDescription": "Üyesi olduğunuz tüm takımlara bağlantıları içeren bir e-posta gönderildi.",
- "find_team.findTitle": "Takımınızı Bulun",
- "find_team.getLinks": "Üyesi olduğunuz tüm takımlara bağlantıları içeren bir e-posta alın.",
- "find_team.placeholder": "adiniz@kurulus.com",
- "find_team.send": "Gönder",
- "find_team.submitError": "Lütfen geçerli bir e-posta adresi yazın",
- "flag_post.flag": "İzlenecek olarak işaretle",
- "flag_post.unflag": "İşareti kaldır",
- "general_tab.chooseDescription": "Lütfen takımınız için yeni bir açıklama yazın",
- "general_tab.codeDesc": "Çağrı kodunu yeniden üretmek için 'Düzenle' üzerine tıklayın.",
- "general_tab.codeLongDesc": "Ana menüdeki {getTeamInviteLink} üzerinden oluşturulan takım çağrı bağlantısı adresinin bir bölümü olarak kullanılan Çağrı Kodu. Yeniden üretilirse yeni bir takım çağrı bağlantısı oluşturulur ve önceki bağlantı geçersiz kılınır.",
- "general_tab.codeTitle": "Çağrı Kodu",
- "general_tab.emptyDescription": "Takım adını eklemek için 'Düzenle' üzerine tıklayın.",
- "general_tab.getTeamInviteLink": "Takım Çağrı Bağlantısını Al",
- "general_tab.includeDirDesc": "Bu takımın eklenmesi, takım adının ana sayfadaki Takım Dizini bölümünde görüntülenmesini ve oturum açma sayfasına bir bağlantı verilmesini sağlar.",
- "general_tab.no": "Hayır",
- "general_tab.openInviteDesc": "İzin verildiğinde bu takımın bağlantısı giriş sayfasına eklenir. Böylece hesabı olan herkes bu takıma katılabilir.",
- "general_tab.openInviteTitle": "Bu sunucu üzerinde hesabı olan tüm kullanıcılar bu takıma katılabilir",
- "general_tab.regenerate": "Yeniden Oluştur",
- "general_tab.required": "Bu alan zorunludur",
- "general_tab.teamDescription": "Takım Açıklaması",
- "general_tab.teamDescriptionInfo": "Takım açıklaması kullanıcıların doğru takımı seçmesine yardımcı olur. En fazla 50 karakter uzunluğunda olabilir.",
- "general_tab.teamName": "Takım Adı",
- "general_tab.teamNameInfo": "Oturum açma sayfasında ve sol yan çubuğun üzerinde görüntülenecek takım adını ayarlayın.",
- "general_tab.title": "Genel Ayarlar",
- "general_tab.yes": "Evet",
- "get_app.alreadyHaveIt": "Zaten var mı?",
- "get_app.androidAppName": "Android için Mattermost",
- "get_app.androidHeader": "Android uygulamamıza geçerseniz Mattermost ile daha iyi çalışabilirsiniz",
- "get_app.continue": "devam",
- "get_app.continueWithBrowser": "Ya da {link}",
- "get_app.continueWithBrowserLink": "tarayıcı ile devam et",
- "get_app.iosHeader": "iPhone uygulamamıza geçerseniz Mattermost ile daha iyi çalışabilirsiniz",
- "get_app.mattermostInc": "Mattermost, Inc",
- "get_app.openMattermost": "Mattermost Üzerinde Aç",
- "get_link.clipboard": " Bağlantı kopyalandı",
- "get_link.close": "Kapat",
- "get_link.copy": "Bağlantıyı Kopyala",
- "get_post_link_modal.help": "Aşağıdaki bağlantı izin verilmiş kullanıcıların iletinizi görüntülemesini sağlar.",
- "get_post_link_modal.title": "Kalıcı Bağlantıyı Kopyala",
- "get_public_link_modal.help": "Aşağıdaki bağlantı tüm kullanıcıların sunucu üzerine kayıt olmadan bu dosyayı görüntülemesini sağlar.",
- "get_public_link_modal.title": "Herkese Açık Bağlantıyı Kopyala",
- "get_team_invite_link_modal.help": "Takım arkadaşlarınıza aşağıdaki bağlantıyı göndererek bu takım sitesine kayıt olmalarını sağlayabilirsiniz. Takım Çağırma Bağlantısı, bir Takım Yöneticisi tarafından Takım Ayarları bölümünden yeniden üretilerek değiştirilmedikçe birden çok takım arkadaşı ile paylaşılabilir.",
- "get_team_invite_link_modal.helpDisabled": "Takımınıza kullanıcı ekleme özelliği devre dışı bırakılmış. Bilgi almak için takım yöneticinizle görüşün.",
- "get_team_invite_link_modal.title": "Takım Çağrı Bağlantısı",
- "help.attaching.downloading": "#### Dosyaları İndirmek\nEklenmiş bir dosyayı indirmek için dosya küçük görselinin yanındaki indirme simgesine tıklayabilir ya da dosya önizleyici açtıkdan sonra **İndir** üzerine tıklayabilirsiniz.",
- "help.attaching.dragdrop": "#### Sürükleyip Bırakma\nBilgisayarınızdan bir ya da bir kaç dosyayı sürükleyip sağ yan çubuğu ya da orta pano üzerine bırakarak yükleyebilirsiniz. Sürüklenip bırakılan dosyalar ileti alanına eklenir. Ardından isteğinize bağlı olarak bir ileti yazabilir ve göndermek için **ENTER** tuşuna basabilirsiniz.",
- "help.attaching.icon": "#### Ek Dosya Simgesi\nAlternatif olarak ileti alanının yanındaki gri ataş simgesine tıklayarak da dosyaları yükleyebilirsiniz. Tıkladığınızda sistem dosya görüntüleyici açılarak istediğiniz dosyaları bulmanızı sağlar. Dosyaları yüklemek için **Aç** üzerine tıklayın. Ardından isteğinize bağlı olarak bir ileti yazabilir ve göndermek için **ENTER** tuşuna basabilirsiniz.",
- "help.attaching.limitations": "## Dosya Boyutu Sınırlamaları\nMattermost üzerinde her ileti için en fazla 5 dosya eklenebilir. Her dosyanın boyutu en fazla 50 Mb olabilir.",
- "help.attaching.methods": "## Dosya Ekleme Yöntemleri\nSürükleyip bırakarak ya da ileti alanındaki dosya ekle simgesine tıklayarak bir dosya ekleyebilirsiniz.",
- "help.attaching.notSupported": "Belge önizleme (Word, Excel, PPT) özelliği henüz yok.",
- "help.attaching.pasting": "#### Görselleri Yapıştırmak\nChrome ve Edge web tarayıcılarında, dosyalar panodan yapıştırılarak da yüklenebilir. Bu özellik henüz diğer web tarayıcıları tarafından desteklenmiyor.",
- "help.attaching.previewer": "## Dosya Önizleme\nMattermost üzerinde ortamlar, indirme dosyaları ve herkese açık paylaşılmış bağlantıları önizleme özelliği bulunur. Dosya önizleyiciyi açmak için eklenmiş dosyanın küçük görseli üzerine tıklayın.",
- "help.attaching.publicLinks": "#### Herkese Açık Bağlantıları Paylaşmak\nHerkese açık bağlantılar Mattermost takımınız dışındaki kişiler ile dosya paylaşmanızı sağlar. Eklenmiş bir dosyanın küçük görseline tıklayarak dosya önizleyiciyi açın. Ardından **Herkese Açık Bağlantıyı Al** üzerine tıklayın. Böylece bağlantıyı kopyalayabileceğiniz bir pencere açılır. Bu bağlantı başka bir kullanıcı ile paylaşılıp açıldığında dosya otomatik olarak indirilir.",
- "help.attaching.publicLinks2": "Dosya önizleyicide **Herkese Açık Bağlantıyı Al** seçeneği görüntülenmiyorsa ve bu seçeneği kullanmak istiyorsanız, Sistem Yöneticiniz ile görüşerek Sistem Konsolunda **Güvenlik** > **Herkese Açık Bağlantılar** seçeneğini etkinleştirmesini isteyin.",
- "help.attaching.supported": "#### Desteklenen Ortam Türleri\nDesteklenmeyen bir ortam türünü önizlemeye çalışırsanız, dosya önizleyicide standart bir ortam eki simgesi görüntülenir. Desteklenen ortam biçimleri ağırlıkla web tarayıcı ve işletim sisteminize bağlıdır. Ancak şu dosya türleri Mattermost tarafından çoğu web tarayıcı üzerinde desteklenir:",
- "help.attaching.supportedList": "- Görseller: BMP, GIF, JPG, JPEG, PNG\n- Görüntü: MP4\n- Ses: MP3, M4A\n- Belgeler: PDF",
- "help.attaching.title": "# Dosya Eklemek\n_____",
- "help.commands.builtin": "## İç Komutlar\nTüm Mattermost kurulumlarında şu bölü komutları kullanılabilir:",
- "help.commands.builtin2": "Yazmaya '/' ile başlarsanız ileti alanın üzerinde bölü komutlarının listesi görüntülenir. Otomatik tamamlama önerileri ve biçim örnekleri siyah metinle, bölü komutunun kısa açıklaması gri metinle görüntülenir",
- "help.commands.custom": "## Özel Komutlar\nÖzel bölü komutları dış uygulamalar ile bütünleşir. Örneğin bir takım iç sağlık kayıtlarını denetleyen bir `/hasta ali kaya` komutu ya da bir şehir için haftalık hava durumu için `/hava ankara hafta`komutu ayarlayabilir. Sistem Yöneticinize sorarak ya da `/` yazıp otomatik tamamlama listesini açarak takımınız için özel bölü komutlarının ayarlanıp ayarlanmadığını anlayabilirsiniz.",
- "help.commands.custom2": "Özel bölü komutları varsayılan olarak devre dışıdır ve Sistem Yöneticisi tarafından **Sistem Konsolu** > **Bütünleştirmeler** > **Web Bağlantıları ve Komutlar** bölümünden etkinleştirilebilir. Özel bölü komutlarını ayarlamak hakkında ayrıntılı bilgi almak için [geliştirici bölü komutları belgeleri sayfasına](http://docs.mattermost.com/developer/slash-commands.html) bakın.",
- "help.commands.intro": "İleti alanına bölü komutlarını yazarak Mattermost işlemleri yapılabilir. İşlemleri yapmak için `/` karakterinden sonra bir komut ve ilgili parametreleri yazın.\n\nİç bölü komutları tüm Mattermost kurulumlarında bulunur. Ayrıca dış uygulamalar üzerinden işlem yapabilecek özel bölü komutları tanımlanabilir. Özel bölü komutlarını ayarlamak hakkında ayrıntılı bilgi almak için [geliştirici bölü komutları belgeleri sayfasına](http://docs.mattermost.com/developer/slash-commands.html) bakın.",
- "help.commands.title": "# Komutların Yürütülmesi\n___",
- "help.composing.deleting": "## Bir İletiyi Silmek\nYazdığınız herhangi bir ileti metninin yanındaki **[...]** simgesine tıklayıp **Sil** üzerine tıklayarak bir iletiyi silebilirsiniz. Sistem ve Takım Yöneticileri kendi sistem ve takımlarında tüm iletileri silebilir.",
- "help.composing.editing": "## Bir İletiyi Düzenlemek\nYazdığınız herhangi bir ileti metninin yanındaki **[...]** simgesine tıklayıp **Düzenle** üzerine tıklayarak bir iletiyi düzenleyebilirsiniz. Sistem ve Takım Yöneticileri kendi sistem ve takımlarında tüm iletileri silebilir. İleti metninde değişiklik yaptıktan sonra değişiklikleri kaydetmek için **ENTER** tuşuna basın. İletileri düzenlemek yeni @mention ya da masaüstü bildirimleri ile bildirim seslerini tetiklemez.",
- "help.composing.linking": "## Bir İletiye Bağlantı Vermek\n**Kalıcı Bağlantı** özelliği bir ileti için bir bağlantı oluşturur. Bu bağlantı kanaldaki diğer kullanıcılar ile paylaşılarak Arşivdeki iletileri görmeleri sağlanabilir. İletinin gönderildiği kanalın üyesi olmayan kullanıcılar kalıcı bağlantıyı göremez. Herhangi bir ileti metninin yanındaki **[...]** simgesine tıklayıp **Kalıcı Bağlantı** üzerine tıkladıktan sonra **Bağlantıyı Kopyala** ile kalıcı bağlantıyı alabilirsiniz.",
- "help.composing.posting": "## Bİr İleti Göndermek\nMetni ileti alanına yazdıktan sonra ENTER tuşuna basarak gönderebilirsiniz. İletiyi göndermeden yeni bir satır eklemek için SHIFT+ENTER tuşlarına basın. İLetileri CTRL+ENTER tuşlarına basarak göndermek için **Ana Menü > Hesap Ayarları > İletiler CTRL+ENTER ile gönderilsin** seçeneğine tıklayın.",
- "help.composing.posts": "#### İletiler\nİlk iletiler üst iletiler olarak değerlendirilir ve genellikle yanıtların yazılacağı bir konu başlatmak için kullanılır. İletiler orta bölümün altındaki ileti alanından yazılır ve gönderilir.",
- "help.composing.replies": "#### Yanıtlar\nBir ileti metninin yanındaki yanıt simgesine tıklanarak yanıtlanabilir. Böylece konudaki iletilerin görülebileceği ve yanıtlanabileceği sağ yan çubuk açılır. Yanıtlar orta bölümde üst iletinin alt iletileri olarak içerlek şekilde görüntülenir.\n\nSAğ yan çubuktan bir iletiye yanıt yazılırken, okunmayı kolaylaştırmak için yan çubuğun üst bölümündeki iki oktan oluşan genişlet/daralt simgesine tıklayın.",
- "help.composing.title": "# İleti Göndermek\n_____",
- "help.composing.types": "## İleti Türleri\nKonuşmaları konularına göre gruplamak için iletileri yanıtlayın.",
- "help.formatting.checklist": "Köşeli parantezleri kullanarak bir görev listesi oluşturabilirsiniz:",
- "help.formatting.checklistExample": "- [ ] Birinci öge\n- [ ] İkinci göge\n- [x] Tamamlanmış öge",
- "help.formatting.code": "## Kod Bloğu\n\nHer satırın başıda dört boşluk bırakarak ya da önceki ve sonraki satıra ``` yazarak bir kod boğu oluşturabilirsiniz.",
- "help.formatting.codeBlock": "Kod bloğu",
- "help.formatting.emojiExample": ":smile: :+1: :sheep:",
- "help.formatting.emojis": "## Emojiler\n\n`:` yazarak otomatik emoji tamamlayıcı açılabilir. Emojilerin tam listesi [burada bulunabilir](http://www.emoji-cheat-sheet.com/). Ayrıca kullanmak istediğiniz emojiler yoksa kendi [Özel Emoji ayarlarınızı yapabilirsiniz](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.formatting.example": "Örnek:",
- "help.formatting.githubTheme": "**GitHub Teması**",
- "help.formatting.headings": "## Başlıklar\n\nBir # ve boşluk yazarak bir başlık oluşturabilirsiniz. Daha küçük başlıklar için daha çok # yazın.",
- "help.formatting.headings2": "Alternatif olarak metnin altını çizmek için `===`, başlık oluşturmak için `---`kullanabilirsiniz.",
- "help.formatting.headings2Example": "Büyük Başlık\n-------------",
- "help.formatting.headingsExample": "## Büyük Başlık\n### Daha Küçük Başlık\n#### Daha da Küçük Başlık",
- "help.formatting.images": "## Satır Arası Görseller\n\nKöşeli parantez içindeki alt metinden sonra `!` yazarak satır arası görseller oluşturabilirsiniz. Bağlantıdan sonra tırnak içinde bağlantı üzerine gelinince görüntülenecek metni yazın.",
- "help.formatting.imagesExample": "\n\nve\n\n[](https://travis-ci.org/mattermost/platform) [](https://github.com/mattermost/platform)",
- "help.formatting.inline": "## Satır Arası Kodu\n\nSola yatık tırnak arasına alarak eş aralıklı yazı türü oluşturabilirsiniz.",
- "help.formatting.intro": "Kod imlerini kullanmak iletileri kolayca biçimlendirmenizi sağlar. İletiyi normal şekilde yazın ve özel olarak biçimlendirmek için bu kuralları kullanın.",
- "help.formatting.lines": "## Satırlar\n\n`*`, `_` ya da `-` kullanarak bir satır oluşturun.",
- "help.formatting.linkEx": "[Check out Mattermost!](https://about.mattermost.com/)",
- "help.formatting.links": "## Bağlantılar\n\nİstediğiniz metni köşeli parantez ve ilgili bağlantıyı normal parantez içine alarak etiketlenmiş bağlantılar oluşturabilirsiniz.",
- "help.formatting.listExample": "* birinci liste ögesi\n* ikinci liste ögesi\n * ikinci öge alt ögesi",
- "help.formatting.lists": "## Listeler\n\nMadde imi olarak `*` ya da `-` kullanarak listeler oluşturabilirsiniz. Bir alt öge oluşturmak için madde iminin önüne iki boşluk ekleyin.",
- "help.formatting.monokaiTheme": "**Monokai Teması**",
- "help.formatting.ordered": "Numaralar kullanarak sıralı bir listeye dönüştürün:",
- "help.formatting.orderedExample": "1. Birinci öge\n2. İkinci öge",
- "help.formatting.quotes": "## Alıntı bloğu\n\n`>` kullanarak alıntı bloğu oluşturun.",
- "help.formatting.quotesExample": "`> alıntı bloğu` şöyle görüntülenecek:",
- "help.formatting.quotesRender": "> alıntı bloğu",
- "help.formatting.renders": "Şöyle görüntüle:",
- "help.formatting.solirizedDarkTheme": "**Güneşli Koyu Tema**",
- "help.formatting.solirizedLightTheme": "**Güneşli Açık Tema**",
- "help.formatting.style": "## Metin Biçimi\n\nBir sözcüğü yatık yapmak için `_` ya da `*` kullanabilirsiniz. Koyu yapmak için iki tane yazın.\n\n* `_yatık_` metni _yatık_ olarak görüntüler\n* `**koyu**` metni **koyu** olarak görüntüler\n* `**_koyu-yatık_**` metni **_koyu-yatık_** olarak görüntüler\n* `~~üzeri-çizili~~` metni ~~üzeri-çizili~~ olarak görüntüler",
- "help.formatting.supportedSyntax": "Desteklenen diller:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
- "help.formatting.syntax": "### Söz Dizimi Vurgulama\n\nSöz dizimi vurgulaması eklemek için kod bloğunun başına ```simgesinden sonra vurgulanacak dili yazın. Mattermost dört farklı kod teması sunar (GitHub, Güneşli Koyu, Güneşli Açık, Monokai). Bu temalar **Hesap Ayarları** > **Görünüm** > **Tema** > **Özel Tema** > **Orta Kanal Biçemleri** bölümünden ayarlanabilir.",
- "help.formatting.syntaxEx": " package main\n import \"fmt\"\n func main() {\n fmt.Println(\"Merhaba, 世界\")\n }",
- "help.formatting.tableExample": "| Sola Hizalanmış | Ortalanmış | Sağa Hizalanmış |\n| :------------ |:---------------:| -----:|\n| 1. Sol sütun | bu metin | 100 TL |\n| 2. Sol sütun | ortaya | 10 TL |\n| 3. Sol sütun | hizalanmış | 1 TL |",
- "help.formatting.tables": "## Tablolar\n\nBaşlık satırının altına tireler yazarak ve sütunları `|` dikey çizgi karakteriyle ayırarak bir tablo oluşturabilirsiniz (tablo görünümü için sütunların tam olarak hizalanması gerekmez). Tablo sütunlarının hizalamasını başlık satırında `:` iki nokta üste üste karakterleri ile ayarlayabilirsiniz.",
- "help.formatting.title": "# Metni Biçimlendirmek\n_____",
- "help.learnMore": "Ayrıntılı bilgi alın:",
- "help.link.attaching": "Dosya Ekleme",
- "help.link.commands": "Komut Yürütme",
- "help.link.composing": "İleti ve Yanıt Yazma",
- "help.link.formatting": "İletileri Kod İmleri ile Biçimlendirme",
- "help.link.mentioning": "Takım Arkadaşlarını Anma",
- "help.link.messaging": "Temel İletişim",
- "help.mentioning.channel": "#### @Kanal\n`@channel` yazarak tüm kanalı anabilirsiniz. Tüm kanal üyelerine kişisel olarak anılmışlar gibi anılma bildirimi gönderilir.",
- "help.mentioning.channelExample": "@channel bu hafta çok iyi görüşmeler yaptık. Harika üye adaylarımız olduğunu düşünüyorum!",
- "help.mentioning.mentions": "## @Anmalar\nBelirli takım üyelerinin dikkatini çekmek için @mentions kullanabilirsiniz.",
- "help.mentioning.recent": "## Son Anmalar\nArama kutusunun yanındaki `@` simgesine tıklayarak son @mentions anmalarını ve anmaları tetikleyen sözcükleri görebilirsiniz. Sağ yan çubuktaki bir arama sonucunun yanındaki **Atla** üzerine tıklayarak orta bölümde kanala ve anma iletisine atlanır.",
- "help.mentioning.title": "# Takım Arkadaşlarını Anmak\n_____",
- "help.mentioning.triggers": "## Anmaları Tetikleyecek Sözcükler\n@username ve @channel bildirimlerine ek olarak, anma bildirimlerini tetikleyecek sözcükleri **Hesap Ayarları** > **Bildirimler** > **Anmaları tetikleyen sözcükler** bölümünden ayarlayabilirsiniz. Varsayılan olarak anma bildirimleri adınıza göre gönderilir. Metin alanına virgül ile ayırarak başka sözcükler de ekleyebilirsiniz. Bu özellik “görüşme” ya da “pazarlama” gibi belirli konulardaki tüm iletiler hakkında bilgilendirilmek istiyorsanız kullanışlıdır.",
- "help.mentioning.username": "#### @Username\n`@` simgesine kullanıcı adını ekleyerek takım arkadaşlarını anabilir ve anma bildirimi gönderilmesini sağlayabilirsiniz.\n\nAnılacak takım üyelerinin listesini görüntülemek için `@` yazın. Listeyi süzmek için, herhangi bir kullanıcı adı, ad, soyad ya da takma adın ilk birkaç harfini yazın. **Yukarı** ve **Aşağı** ok tuşları ile liste ögeleri arasında gezinebilir, **ENTER** tuşuna basarak anmak istediğiniz kullanıcıyı seçebilirsiniz. Seçildikten sonra, kullanıcı adı otomatik olarak tam ad ya da takma ad ile değiştirilir.\nAşağıdaki örnek **elvan** kullanıcısına anıldığı kanalda ve iletide kendisini uyaran özel bir anma bildirimi gönderir. **elvan** için Mattermost çevrimiçi durumu uzakta ve [e-posta bildirimleri](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) etkinleştirilmiş ise, ileti metnini içeren bir e-posta bildirimi gönderilir.",
- "help.mentioning.usernameCont": "Andığınız kullanıcı kanala üye değil ise, size bu durumu bildiren bir Sistem İletisi gönderilir. Bu ileti yalnız bildirimi tetikleyen kullanıcı tarafından görülebilen geçici bir iletidir. Anılan kullanıcıyı kanala eklemek için, kanal adının yanındaki açılan menüden **Üye Ekle** seçeneğine tıklayın.",
- "help.mentioning.usernameExample": "@elvan yeni adayımızla görüşmen nasıl gitti?",
- "help.messaging.attach": "Sürükleyip Mattermost üzerine bırakarak ya da metin alanının yanındaki dosya ekleme simgesine tıklayarak **Dosya Ekleyebilirsiniz**.",
- "help.messaging.emoji": "\":\" yazarak emoji otomatik tamamlama penceresini açabilir ve **Hızlı Emoji Ekleyebilirsiniz**. Kullanmak istediğiniz emoji listede bulunmuyorsa, Kendi [özel emojinizi oluşturabilirsiniz](http://docs.mattermost.com/help/settings/custom-emoji.html).",
- "help.messaging.format": "**İletileri Biçimlendirmek** için kod imlerini kullanarak metin biçemleri, başlıklar, bağlantılar, emotikonlar, kod blokları, alıntı blokları, tablolar, liste ve satır arası görseller kullanabilirsiniz.",
- "help.messaging.notify": "**Takım Üyelerine Bildirim** göndermek gerektiğinde `@kullaniciadi` yazabilirsiniz",
- "help.messaging.reply": "**İletileri Yanıtlamak** için ileti metninin yanındaki yanıt oku üzerine tıklayın.",
- "help.messaging.title": "# Temel İleti Özellikleri\n_____",
- "help.messaging.write": "Mattermost sayfasının alt bölümündeki metin alanını kullanarak **iletiler yazın**. Bir iletiyi göndermek için ENTER tuşuna basın. İletiyi göndermeden yeni bir satıra başlamak için SHIFT+ENTER tuşlarına basın.",
- "installed_command.header": "Bölü Komutları",
- "installed_commands.add": "Bölü Komutu Ekle",
- "installed_commands.delete.confirm": "Bu işlem bölü komutunu kalıcı olarak siler ve kullanıldığı tüm bütünleştirmeleri bozar. Silmek istediğinize emin misiniz?",
- "installed_commands.empty": "Herhangi bir komut bulunamadı",
- "installed_commands.header": "Bölü Komutları",
- "installed_commands.help": "Mattermost ile dış araçları bağlamak için bölü komutlarını kullanın. {buildYourOwn} ya da kendiliğinden sunulan üçüncü taraf uygulama ve bütünleştirmeleri bulmak için {appDirectory} bölümüne bakın.",
- "installed_commands.help.appDirectory": "Uygulama Dizini",
- "installed_commands.help.buildYourOwn": "Kendiniz oluşturun",
- "installed_commands.search": "Bölü Komutu Arama",
- "installed_commands.unnamed_command": "Adsız Bölü Komutu",
- "installed_incoming_webhooks.add": "Gelen Web Bağlantısı Ekle",
- "installed_incoming_webhooks.delete.confirm": "Bu işlem gelen web bağlantısını kalıcı olarak siler ve kullanıldığı tüm bütünleştirmeleri bozar. Silmek istediğinize emin misiniz?",
- "installed_incoming_webhooks.empty": "Herhangi bir gelen web bağlantısı bulunamadı",
- "installed_incoming_webhooks.header": "Gelen Web Bağlantıları",
- "installed_incoming_webhooks.help": "Mattermost ile dış araçları bağlamak için gelen web bağlantılarını kullanın. {buildYourOwn} ya da kendiliğinden sunulan üçüncü taraf uygulama ve bütünleştirmeleri bulmak için {appDirectory} bölümüne bakın.",
- "installed_incoming_webhooks.help.appDirectory": "Uygulama Dizini",
- "installed_incoming_webhooks.help.buildYourOwn": "Kendiniz oluşturun",
- "installed_incoming_webhooks.search": "Gelen Web Bağlantısı Arama",
- "installed_incoming_webhooks.unknown_channel": "Özel Bir Web Bağlantısı",
- "installed_integrations.callback_urls": "Geri Çağırma Adresleri: {urls}",
- "installed_integrations.client_id": "İstemci Kodu: {clientId}",
- "installed_integrations.client_secret": "İstemci Parolası: {clientSecret}",
- "installed_integrations.content_type": "İçerik Türü: {contentType}",
- "installed_integrations.creation": "{creator} tarafından {createAt, date, full} zamanında oluşturuldu",
- "installed_integrations.delete": "Sil",
- "installed_integrations.edit": "Düzenle",
- "installed_integrations.hideSecret": "Parolayı Gizle",
- "installed_integrations.regenSecret": "Parolayı Yeniden Oluştur",
- "installed_integrations.regenToken": "Kodu Yeniden Oluştur",
- "installed_integrations.showSecret": "Parolayı Gizle",
- "installed_integrations.token": "Kod: {token}",
- "installed_integrations.triggerWhen": "Tetiklenme Zamanı: {triggerWhen}",
- "installed_integrations.triggerWords": "Tetikleyici Sözcükler: {triggerWords}",
- "installed_integrations.unnamed_oauth_app": "Adlandırılmamış OAuth 2.0 Uygulaması",
- "installed_integrations.url": "Adres: {url}",
- "installed_oauth_apps.add": "OAuth 2.0 Uygulaması Ekle",
- "installed_oauth_apps.callbackUrls": "Geri Çağırma Adresleri (Her Satıra Bir Tane)",
- "installed_oauth_apps.cancel": "İptal",
- "installed_oauth_apps.delete.confirm": "Bu işlem, OAuth 2.0 uygulamasını kalıcı olarak siler ve kullanıldığı tüm bütünleştirmeleri bozar. Silmek istediğinize emin misiniz?",
- "installed_oauth_apps.description": "Açıklama",
- "installed_oauth_apps.empty": "Herhangi bir OAuth 2.0 uygulaması bulunamadı",
- "installed_oauth_apps.header": "OAuth 2.0 Uygulamaları",
- "installed_oauth_apps.help": "Mattermost ile bot ve üçüncü taraf uygulamaları güvenli olarak bütünleştirmek için {oauthApplications} kullanın. Kullanılabilecek kendiliğinden sunulan uygulamaları bulmak için {appDirectory} bölümüne bakın.",
- "installed_oauth_apps.help.appDirectory": "Uygulama Dizini",
- "installed_oauth_apps.help.oauthApplications": "OAuth 2.0 Uygulamaları",
- "installed_oauth_apps.homepage": "Ana Sayfa",
- "installed_oauth_apps.iconUrl": "Simge Adresi",
- "installed_oauth_apps.is_trusted": "Güvenilirlik {isTrusted}",
- "installed_oauth_apps.name": "Görüntülenecek Ad",
- "installed_oauth_apps.save": "Kaydet",
- "installed_oauth_apps.search": "OAuth 2.0 Uygulamalarını Arama",
- "installed_oauth_apps.trusted": "Güvenilir",
- "installed_oauth_apps.trusted.no": "Hayır",
- "installed_oauth_apps.trusted.yes": "Evet",
- "installed_outgoing_webhooks.add": "Giden Web Bağlantısı Ekle",
- "installed_outgoing_webhooks.delete.confirm": "Bu işlem giden web bağlantısını kalıcı olarak siler ve kullanıldığı tüm bütünleştirmeleri bozar. Silmek istediğinize emin misiniz?",
- "installed_outgoing_webhooks.empty": "Herhangi bir giden web bağlantısı bulunamadı",
- "installed_outgoing_webhooks.header": "Giden Web Bağlantıları",
- "installed_outgoing_webhooks.help": "Mattermost ile dış araçları bağlamak için giden web bağlantılarını kullanın. {buildYourOwn} ya da kendiliğinden sunulan üçüncü taraf uygulama ve bütünleştirmeleri bulmak için {appDirectory} bölümüne bakın.",
- "installed_outgoing_webhooks.help.appDirectory": "Uygulama Dizini",
- "installed_outgoing_webhooks.help.buildYourOwn": "Kendiniz oluşturun",
- "installed_outgoing_webhooks.search": "Giden Web Bağlantılarını Arama",
- "installed_outgoing_webhooks.unknown_channel": "Özel Bir Web Bağlantısı",
- "integrations.add": "Ekle",
- "integrations.command.description": "Bölü komutları işlemleri dış bütünleştirmelere gönderir",
- "integrations.command.title": "Bölü Komutu",
- "integrations.delete.confirm.button": "Sil",
- "integrations.delete.confirm.title": "Bütünleştirmeyi Sil",
- "integrations.done": "Bitti",
- "integrations.edit": "Düzenle",
- "integrations.header": "Bütünleştirmeler",
- "integrations.help": "Kendiliğinden sunulan üçüncü taraf uygulama ve bütünleştirmeleri bulmak için {appDirectory} bölümüne bakın.",
- "integrations.help.appDirectory": "Uygulama Dizini",
- "integrations.incomingWebhook.description": "Gelen web bağlantıları ileti göndermek için dış bütünleştirmelerin kullanılmasını sağlar",
- "integrations.incomingWebhook.title": "Gelen Web Bağlantısı",
- "integrations.oauthApps.description": "OAuth 2.0, dış uygulamaların Mattermost API uygulaması üzerinden kimliği doğrulanmış istekler göndermesini sağlar.",
- "integrations.oauthApps.title": "OAuth 2.0 Uygulamaları",
- "integrations.outgoingWebhook.description": "Giden web bağlantıları ileti almak ve yanıtlamak için dış bütünleştirmelerin kullanılmasını sağlar",
- "integrations.outgoingWebhook.title": "Giden Web Bağlantısı",
- "integrations.successful": "Kurulum Tamamlandı",
- "intro_messages.DM": "{teammate} takım arkadaşınız ile doğrudan ileti geçmişinizin başlangıcı. Bu bölüm dışındaki kişiler burada paylaşılan doğrudan ileti ve dosyaları göremez.",
- "intro_messages.GM": "{names} ile grup ileti geçmişinizin başlangıcı. Bu bölüm dışındaki kişiler burada paylaşılan ileti ve dosyaları göremez.",
- "intro_messages.anyMember": " Tüm üyeler bu kanala üye olup iletileri okuyabilir.",
- "intro_messages.beginning": "{name} başlangıcı",
- "intro_messages.channel": "kanal",
- "intro_messages.creator": "{name} {type} başlangıcı, oluşturan: {creator} tarih: {date}.",
- "intro_messages.default": "
{display_name} başlangıcı
Hoş geldiniz: {display_name}!
Buraya herkesin görmesini istediğiniz iletileri yazabilirsiniz. Takıma katılan herkes otomatik olarak bu kanalın kalıcı üyesi olur.
",
- "intro_messages.group": "özel kanal",
- "intro_messages.group_message": "Bu takım arkadaşlarınız ile doğrudan ileti geçmişinizin başlangıcı. Bu bölüm dışındaki kişiler burada paylaşılan doğrudan ileti ve dosyaları göremez.",
- "intro_messages.invite": "Bu {type} için başka kullanıcılar çağırın",
- "intro_messages.inviteOthers": "Bu takıma başka kullanıcılar çağırın",
- "intro_messages.noCreator": "{name} {type} başlangıcı, oluşturulma tarihi: {date}.",
- "intro_messages.offTopic": "
{display_name} başlangıcı
{display_name} başlangıcı, iş dışı konuşmalar için.
",
- "intro_messages.onlyInvited": "Bu özel kanalı yalnız çağrılmış üyeler görüntüleyebilir.",
- "intro_messages.purpose": " Bu {type} için amaç: {purpose}.",
- "intro_messages.setHeader": "Bir Başlık Yazın",
- "intro_messages.teammate": "Takım arkadaşınız ile doğrudan ileti geçmişinizin başlangıcı. Bu bölüm dışındaki kişiler burada paylaşılan doğrudan ileti ve dosyaları göremez.",
- "invite_member.addAnother": "Başka bir tane ekleyin",
- "invite_member.autoJoin": "{channel} kanalına çağrılan kişiler kanala otomatik olarak katılacak.",
- "invite_member.cancel": "İptal",
- "invite_member.content": "Takımınız için şu anda e-posta devre dışı bırakılmış olduğundan e-posta çağrıları gönderilemez. E-posta ve e-posta çağrılarını etkinleştirmesi için sistem yöneticiniz ile görüşün.",
- "invite_member.disabled": "Takımınıza kullanıcı ekleme özelliği devre dışı bırakılmış. Bilgi almak için takım yöneticinizle görüşün.",
- "invite_member.emailError": "Lütfen geçerli bir e-posta adresi yazın",
- "invite_member.firstname": "Ad",
- "invite_member.inviteLink": "Takım Çağrı Bağlantısı",
- "invite_member.lastname": "Soyad",
- "invite_member.modalButton": "Evet, İptal Et",
- "invite_member.modalMessage": "Gönderilmemiş çağrılarınız var. Bunları iptal etmek istediğinize emin misiniz?",
- "invite_member.modalTitle": "Çağrılar iptal edilsin mi?",
- "invite_member.newMember": "E-posta Çağrısı Gönder",
- "invite_member.send": "Çağrı Gönder",
- "invite_member.send2": "Çağrıları Gönder",
- "invite_member.sending": " Gönderiliyor",
- "invite_member.teamInviteLink": "Ayrıca {link} bağlantısını kullanarak kişileri çağırabilirsiniz.",
- "ldap_signup.find": "Takımlarımı bul",
- "ldap_signup.ldap": "AD/LDAP hesabıyla takım ekle",
- "ldap_signup.length_error": "Ad en az 3 en fazla 15 karakterden oluşabilir",
- "ldap_signup.teamName": "Yeni takımın adını yazın",
- "ldap_signup.team_error": "Lütfen bir takım adı yazın",
- "leave_private_channel_modal.leave": "Evet, kanaldan ayrıl",
- "leave_private_channel_modal.message": "{channel} özel kanalından ayrılmak istediğinize emin misiniz? Bu kanala yeniden katılmanız için çağrılmanız gerekecek.",
- "leave_private_channel_modal.title": "{channel} Özel Kanalından Ayrıl",
- "leave_team_modal.desc": "Herkese açık ve özel tüm kanallardan çıkacaksınız. Takım özel ise yeniden katılamazsınız. Emin misiniz?",
- "leave_team_modal.no": "Hayır",
- "leave_team_modal.title": "Takımdan ayrılmak istiyor musunuz?",
- "leave_team_modal.yes": "Evet",
- "loading_screen.loading": "Yükleniyor",
- "login.changed": " Oturum açma yöntemi değiştirildi",
- "login.create": "Şimdi ekle",
- "login.createTeam": "Yeni takım ekle",
- "login.createTeamAdminOnly": "Bu seçeneği yalnız sistem yöneticileri görebilir, diğer kullanıcılar göremez.",
- "login.email": "E-posta",
- "login.find": "Diğer takımlarınızı bulun",
- "login.forgot": "Parolamı unuttum",
- "login.gitlab": "GitLab",
- "login.google": "Google Apps",
- "login.invalidPassword": "Parolanız yanlış.",
- "login.ldapUsername": "AD/LDAP Kullanıcı Adı",
- "login.ldapUsernameLower": "AD/LDAP kullanıcı adı",
- "login.noAccount": "Hesabınız yok mu? ",
- "login.noEmail": "E-posta adresinizi yazın",
- "login.noEmailLdapUsername": "Lütfen e-posta adresinizi ya da {ldapUsername} yazın",
- "login.noEmailUsername": "Lütfen e-posta adresinizi ya da kullanıcı adınızı yazın",
- "login.noEmailUsernameLdapUsername": "Lütfen e-posta adresinizi, kullanıcı adınızı ya da {ldapUsername} yazın",
- "login.noLdapUsername": "Lütfen {ldapUsername} yazın",
- "login.noMethods": "Herhangi bir oturum açma yöntemi etkinleştirilmemiş. Lütfen sistem yöneticiniz ile görüşün.",
- "login.noPassword": "Lütfen parolanızı yazın",
- "login.noUsername": "Lütfen kullanıcı adınızı yazın",
- "login.noUsernameLdapUsername": "Lütfen kullanıcı adınızı ya da {ldapUsername} yazın",
- "login.office365": "Office 365",
- "login.on": "{siteName} üzerindeki",
- "login.or": "ya da",
- "login.password": "Parola",
- "login.passwordChanged": " Parola güncellendi",
- "login.placeholderOr": " ya da ",
- "login.session_expired": " Oturumunuzun süresi dolmuş. Lütfen yeniden oturum açın.",
- "login.signIn": "Oturum Açın",
- "login.signInLoading": "Oturum açılıyor...",
- "login.signInWith": "Şununla oturum aç:",
- "login.userNotFound": "Oturum açma bilgilerinizle eşleşen bir hesap bulunamadı.",
- "login.username": "Kullanıcı Adı",
- "login.verified": " E-posta Doğrulandı",
- "login_mfa.enterToken": "Oturum açma işlemini tamamlamak için, akıllı telefonunuzdaki doğrulama uygulamasındaki kodu yazın",
- "login_mfa.submit": "Gönder",
- "login_mfa.token": "ÇAKD Kodu",
- "login_mfa.tokenReq": "Lütfen bir ÇAKD kodu yazın",
- "member_item.makeAdmin": "Yönetici Yap",
- "member_item.member": "Üye",
- "member_list.noUsersAdd": "Eklenecek bir kullanıcı yok.",
- "members_popover.manageMembers": "Üye Yönetimi",
- "members_popover.msg": "İleti",
- "members_popover.title": "Kanal Üyeleri",
- "members_popover.viewMembers": "Üyeleri Görüntüle",
- "mfa.confirm.complete": "Kurulum tamamlandı!",
- "mfa.confirm.okay": "Tamam",
- "mfa.confirm.secure": "Hesabınız güvenceye alındı. Bir sonraki oturum açılınızda, vep telefonunuzdaki Google Authenticator uygulamasından üreteceğiniz kodu yazmanız istenecek.",
- "mfa.setup.badCode": "Kod geçersiz. Bu sorun sürerse Sistem Yöneticinizle görüşün.",
- "mfa.setup.code": "ÇAKD Kodu",
- "mfa.setup.codeError": "Google Authenticator ile ürettiğiniz kodu yazın.",
- "mfa.setup.required": "{siteName} için çok aşamalı kimlik doğrulaması gerekiyor.",
- "mfa.setup.save": "Kaydet",
- "mfa.setup.secret": "Parola: {secret}",
- "mfa.setup.step1": "1. Adım: Google Authenticator uygulamasını telefonunuzdan iTunes ya da Google Play üzerinden indirin",
- "mfa.setup.step2": "2. Adım: Google Authenticator ile bu QR kodunu okutun ya da el ile parolayı yazın",
- "mfa.setup.step3": "3. Adım: Google Authenticator tarafından üretilen kodu yazın",
- "mfa.setupTitle": "Çok Aşamalı Kimlik Doğrulaması Kurulumu",
- "mobile.about.appVersion": "Uygulama Sürümü: {version} (Build {number})",
- "mobile.about.copyright": "Telif Hakkı 2015-{currentYear} Mattermost, Inc. Tüm hakları saklıdır",
- "mobile.about.database": "Veritabanı: {type}",
- "mobile.about.serverVersion": "Sunucu Sürümü: {version} (Build {number})",
- "mobile.about.serverVersionNoBuild": "Sunucu Sürümü: {version}",
- "mobile.account.notifications.email.footer": "5 dakikadan uzun süre çevrimdışı ya da uzak olunduğunda",
- "mobile.account_notifications.mentions_footer": "Kullanıcı adınız (\"@{username}\") her zaman anmaları tetikler.",
- "mobile.account_notifications.non-case_sensitive_words": "Diğer büyük küçük harfe duyarsız sözcükler...",
- "mobile.account_notifications.reply.header": "Şunun için yanıt bildirimleri gönderilsin",
- "mobile.account_notifications.threads_mentions": "Konulardaki anmalar",
- "mobile.account_notifications.threads_start": "Başlattığım konular",
- "mobile.account_notifications.threads_start_participate": "Başlattığım ya da katıldığım konular",
- "mobile.advanced_settings.reset_button": "Sıfırla",
- "mobile.advanced_settings.reset_message": "\nBu işlem çevrimdışı verileri temizleyerek uygulamayı yeniden başlatır. Uygulama yeniden başlatıldığında oturumunuz otomatik olarak yeniden açılacak.\n",
- "mobile.advanced_settings.reset_title": "Ön Belleği Sıfırla",
- "mobile.advanced_settings.title": "Gelişmiş Ayarlar",
- "mobile.channel_drawer.search": "Bir sohbete geç",
- "mobile.channel_info.alertMessageDeleteChannel": "{term} {name} kanalını silmek istediğinize emin misiniz?",
- "mobile.channel_info.alertMessageLeaveChannel": "{term} {name} kanalından ayrılmak istediğinize emin misiniz?",
- "mobile.channel_info.alertNo": "Hayır",
- "mobile.channel_info.alertTitleDeleteChannel": "{term} Kanalını Sil",
- "mobile.channel_info.alertTitleLeaveChannel": "{term} Kanalından Ayrıl",
- "mobile.channel_info.alertYes": "Evet",
- "mobile.channel_info.delete_failed": "{displayName} kanalı silinemedi. Lütfen bağlantınızı denetleyip yeniden deneyin.",
- "mobile.channel_info.privateChannel": "Özel Kanal",
- "mobile.channel_info.publicChannel": "Herkese Açık Kanal",
- "mobile.channel_list.alertMessageLeaveChannel": "{term} {name} kanalından ayrılmak istediğinize emin misiniz?",
- "mobile.channel_list.alertNo": "Hayır",
- "mobile.channel_list.alertTitleLeaveChannel": "{term} Kanalından Ayrıl",
- "mobile.channel_list.alertYes": "Evet",
- "mobile.channel_list.closeDM": "Doğrudan İletiyi Kapat",
- "mobile.channel_list.closeGM": "Grup İletisini Kapat",
- "mobile.channel_list.dm": "Doğrudan İleti",
- "mobile.channel_list.gm": "Grup İletisi",
- "mobile.channel_list.not_member": "ÜYE DEĞİL",
- "mobile.channel_list.open": "{term} Kanalını Aç",
- "mobile.channel_list.openDM": "Doğrudan İleti Aç",
- "mobile.channel_list.openGM": "Grup İletisi Aç",
- "mobile.channel_list.privateChannel": "Özel Kanal",
- "mobile.channel_list.publicChannel": "Herkese Açık Kanal",
- "mobile.channel_list.unreads": "OKUNMAMIŞLAR",
- "mobile.components.channels_list_view.yourChannels": "Kanallarınız:",
- "mobile.components.error_list.dismiss_all": "Tümünü Yoksay",
- "mobile.components.select_server_view.continue": "Devam",
- "mobile.components.select_server_view.enterServerUrl": "Sunucu Adresini Yazın",
- "mobile.components.select_server_view.proceed": "İlerle",
- "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.kurulus.com",
- "mobile.create_channel": "Ekle",
- "mobile.create_channel.private": "Yeni Özel Kanal",
- "mobile.create_channel.public": "Yeni Herkese Açık Kanal",
- "mobile.custom_list.no_results": "Herhangi bir sonuç bulunamadı",
- "mobile.drawer.teamsTitle": "Takımlar",
- "mobile.edit_post.title": "İleti Düzenleniyor",
- "mobile.emoji_picker.activity": "ETKİNLİK",
- "mobile.emoji_picker.custom": "ÖZEL",
- "mobile.emoji_picker.flags": "İŞARETLER",
- "mobile.emoji_picker.foods": "YİYECEKLER",
- "mobile.emoji_picker.nature": "DOĞA",
- "mobile.emoji_picker.objects": "NESNELER",
- "mobile.emoji_picker.people": "KİŞİLER",
- "mobile.emoji_picker.places": "YERLER",
- "mobile.emoji_picker.symbols": "SİMGELER",
- "mobile.error_handler.button": "Yeniden başlat",
- "mobile.error_handler.description": "\nUygulamayı açmak için yeniden başlat üzerine tıklayın. Yeniden başlatıldıktan sonra ayarlar menüsünden sorunu bildirebilirsiniz.\n",
- "mobile.error_handler.title": "Beklenmeyen bir sorun çıktı",
- "mobile.file_upload.camera": "Fotoğraf ya da Görüntü Çek",
- "mobile.file_upload.library": "Fotoğraf Kitaplığı",
- "mobile.file_upload.more": "Diğer",
- "mobile.file_upload.video": "Görüntü Kitaplığı",
- "mobile.help.title": "Yardım",
- "mobile.image_preview.save": "Görseli Kaydet",
- "mobile.intro_messages.DM": "{teammate} takım arkadaşınız ile doğrudan ileti geçmişinizin başlangıcı. Bu bölüm dışındaki kişiler burada paylaşılan doğrudan ileti ve dosyaları göremez.",
- "mobile.intro_messages.default_message": "Takım arkadaşlarınız kayıt olduğunda görecekleri ilk kanal budur. Bu kanalı herkesin bilmesi gereken iletiler için kullanın.",
- "mobile.intro_messages.default_welcome": "{name} üzerine hoş geldiniz!",
- "mobile.join_channel.error": "{displayName} kanalına katınılamadı. Lütfen bağlantınızı denetleyip yeniden deneyin.",
- "mobile.loading_channels": "Kanallar Yükleniyor...",
- "mobile.loading_members": "Üyeler Yükleniyor...",
- "mobile.loading_posts": "İletiler Yükleniyor...",
- "mobile.login_options.choose_title": "Oturum açma yönteminizi seçin",
- "mobile.managed.blocked_by": "{vendor} tarafından engellenmiş",
- "mobile.managed.exit": "Çık",
- "mobile.managed.jailbreak": "Jailbreak uygulanmış aygıtlara {vendor} tarafından güvenilmiyor, lütfen uygulamadan çıkın.",
- "mobile.managed.secured_by": "{vendor} tarafından korunuyor",
- "mobile.markdown.code.plusMoreLines": "+{count, number} satır daha",
- "mobile.more_dms.start": "Başlat",
- "mobile.more_dms.title": "Yeni Konuşma",
- "mobile.notice_mobile_link": "mobil uygulamalar",
- "mobile.notice_platform_link": "mimari",
- "mobile.notice_text": "Mattermost kullandığımız {platform} ve {mobile} üzerinde açık kaynaklı yazılım sayesinde var.",
- "mobile.notification.in": " içinde ",
- "mobile.offlineIndicator.connected": "Bağlandı",
- "mobile.offlineIndicator.connecting": "Bağlanıyor...",
- "mobile.offlineIndicator.offline": "İnternet bağlantısı yok",
- "mobile.open_dm.error": "{displayName} kanalına doğrudan ileti açılamadı. Lütfen bağlantınızı denetleyip yeniden deneyin.",
- "mobile.open_gm.error": "Bu kullanıcılar ile bir grup iletisi açılamadı. Lütfen bağlantınızı denetleyip yeniden deneyin.",
- "mobile.post.cancel": "İptal",
- "mobile.post.delete_question": "Bu iletiyi silmek istediğinize emin misiniz?",
- "mobile.post.delete_title": "İletisi Sil",
- "mobile.post.failed_delete": "İletiyi Sil",
- "mobile.post.failed_retry": "Yeniden Dene",
- "mobile.post.failed_title": "İletinizi gönderilemedi",
- "mobile.post.retry": "Yenile",
- "mobile.post_info.add_reaction": "Tepki Ekle",
- "mobile.request.invalid_response": "Sunucudan geçersiz bir yanıt alındı.",
- "mobile.routes.channelInfo": "Bilgiler",
- "mobile.routes.channelInfo.createdBy": "{creator} tarafından şu zamanda oluşturuldu ",
- "mobile.routes.channelInfo.delete_channel": "Kanalı Sil",
- "mobile.routes.channelInfo.favorite": "Beğendiklerime Ekle",
- "mobile.routes.channel_members.action": "Üyeleri Çıkar",
- "mobile.routes.channel_members.action_message": "Kanaldan çıkarılacak en az bir üye seçmelisiniz.",
- "mobile.routes.channel_members.action_message_confirm": "Seçilmiş üyeleri kanaldan çıkarmak istediğinize emin misiniz?",
- "mobile.routes.channels": "Kanallar",
- "mobile.routes.code": "{language} Kodu",
- "mobile.routes.code.noLanguage": "Kod",
- "mobile.routes.enterServerUrl": "Sunucu Adresini Yazın",
- "mobile.routes.login": "Oturum Aç",
- "mobile.routes.loginOptions": "Oturum Açma Seçici",
- "mobile.routes.mfa": "Çok Aşamalı Kimlik Doğrulama",
- "mobile.routes.postsList": "İleti Listesi",
- "mobile.routes.saml": "Tek Oturum Açma",
- "mobile.routes.selectTeam": "Takım Seçin",
- "mobile.routes.settings": "Ayarlar",
- "mobile.routes.sso": "Tek Oturum Açma",
- "mobile.routes.thread": "{channelName} Konusu",
- "mobile.routes.thread_dm": "Doğrudan İleti Konusu",
- "mobile.routes.user_profile": "Profil",
- "mobile.routes.user_profile.send_message": "İleti Gönder",
- "mobile.search.jump": "ATLA",
- "mobile.search.no_results": "Herhangi bir sonuç bulunamadı",
- "mobile.select_team.choose": "Takımlarınız:",
- "mobile.select_team.join_open": "Katılabileceğiniz diğer açık takımlar",
- "mobile.select_team.no_teams": "Katılabileceğiniz herhangi bir takım yok.",
- "mobile.server_ping_failed": "Sunucuya bağlanılamadı. Lütfen sunucu adresini ve İnternet bağlantınızı denetleyin.",
- "mobile.server_upgrade.button": "Tamam",
- "mobile.server_upgrade.description": "\nMattermost uygulamasını kullanmak için sunucunun güncellenmesi gerekiyor. Lütfen ayrıntılı bilgi almak için sistem yöneticisi ile görüşün.\n",
- "mobile.server_upgrade.title": "Sunucunun güncellenmesi gerekli",
- "mobile.server_url.invalid_format": "Adres http:// yada https:// ile başlamalıdır",
- "mobile.session_expired": "Oturumun Süresi Dolmuş: Lütfen bildirimleri almaya devam etmek için oturum açın.",
- "mobile.settings.clear": "Çevrimdışı Depoyu Temizle",
- "mobile.settings.clear_button": "Temizle",
- "mobile.settings.clear_message": "\nBu işlem çevrimdışı verileri temizleyerek uygulamayı yeniden başlatır. Uygulama yeniden başlatıldığında oturumunuz otomatik olarak açılacak.\n",
- "mobile.settings.team_selection": "Takım Seçimi",
- "mobile.suggestion.members": "Üyeler",
- "modal.manaul_status.ask": "Bir daha sorma",
- "modal.manaul_status.button": "Evet, durumumu \"Çevrimiçi\" yap",
- "modal.manaul_status.cancel": "Hayır, durumum \"{status}\" olarak kalsın",
- "modal.manaul_status.message": "Durumunuzu \"Çevrimiçi\" olarak değiştirmek ister misiniz?",
- "modal.manaul_status.title": "Durumunuz \"{status}\" olarak değiştirildi",
- "more_channels.close": "Kapat",
- "more_channels.create": "Yeni Kanal Ekle",
- "more_channels.createClick": "Yeni bir kanal eklemek için 'Yeni Kanal Ekle' üzerine tıklayın",
- "more_channels.join": "Katıl",
- "more_channels.next": "Sonraki",
- "more_channels.noMore": "Katılabileceğiniz başka bir kanal yok",
- "more_channels.prev": "Önceki",
- "more_channels.title": "Diğer Kanallar",
- "more_direct_channels.close": "Kapat",
- "more_direct_channels.message": "İleti",
- "more_direct_channels.new_convo_note": "Bu işlem yeni bir sohbet başlatacak. Çok fazla sayıda kişi eklemeniz gerekiyorsa, bir özel kanal eklemeyi düşünün.",
- "more_direct_channels.new_convo_note.full": "Bu konuşmaya katılabilecek en fazla kişi sayısına ulaştınız. Bir özel kanal eklemeyi düşünün.",
- "more_direct_channels.title": "Doğrudan İletiler",
- "msg_typing.areTyping": "{users} ve {last} yazıyor...",
- "msg_typing.isTyping": "{user} yazıyor...",
- "msg_typing.someone": "Biri",
- "multiselect.add": "Ekle",
- "multiselect.go": "Git",
- "multiselect.list.notFound": "Herhangi bir öge bulunamadı",
- "multiselect.numPeopleRemaining": "Gezinmek için ↑↓, seçmek için ↵ tuşlarını kullanın. {num, number} more {num, plural, one {person} other {people}} daha ekleyebilirsiniz. ",
- "multiselect.numRemaining": "{num, number} kişi daha ekleyebilirsiniz",
- "multiselect.placeholder": "Üye arama ve ekleme",
- "navbar.addMembers": "Üye Ekle",
- "navbar.click": "Buraya tıklayın",
- "navbar.delete": "Kanalı Sil...",
- "navbar.leave": "Kanaldan Ayrıl",
- "navbar.manageMembers": "Üye Yönetimi",
- "navbar.noHeader": "Henüz bir kanal başlığı ayarlanmamış. Eklemek için {newline}{link}.",
- "navbar.preferences": "Bildirim Ayarları",
- "navbar.rename": "Kanalı Yeniden Adlandır...",
- "navbar.setHeader": "Kanal Başlığını Ayarla...",
- "navbar.setPurpose": "Kanal Amacını Ayarla...",
- "navbar.toggle1": "Yan çubuğu aç/kapat",
- "navbar.toggle2": "Yan çubuğu aç/kapat",
- "navbar.viewInfo": "Bilgileri Görüntüle",
- "navbar.viewPinnedPosts": "Sabitlenmiş İletileri Görüntüle",
- "navbar_dropdown.about": "Mattermost Hakkında",
- "navbar_dropdown.accountSettings": "Hesap Ayarları",
- "navbar_dropdown.addMemberToTeam": "Takıma Üye Ekle",
- "navbar_dropdown.console": "Sistem Konsolu",
- "navbar_dropdown.create": "Yeni Takım Ekle",
- "navbar_dropdown.emoji": "Özel Emoji",
- "navbar_dropdown.help": "Yardım",
- "navbar_dropdown.integrations": "Bütünleştirmeler",
- "navbar_dropdown.inviteMember": "E-posta Çağrısı Gönder",
- "navbar_dropdown.join": "Başka Bir Takıma Katıl",
- "navbar_dropdown.keyboardShortcuts": "Tuştakımı Kısayolları",
- "navbar_dropdown.leave": "Takımdan Ayrıl",
- "navbar_dropdown.logout": "Oturumu Kapat",
- "navbar_dropdown.manageMembers": "Üye Yönetimi",
- "navbar_dropdown.nativeApps": "Uygulamaları İndir",
- "navbar_dropdown.report": "Sorun Bildir",
- "navbar_dropdown.switchTeam": "{team} Takımına Geç",
- "navbar_dropdown.switchTo": "Şuraya Geç ",
- "navbar_dropdown.teamLink": "Takım Çağrı Bağlantısını Al",
- "navbar_dropdown.teamSettings": "Takım Ayarları",
- "navbar_dropdown.viewMembers": "Üyeleri Görüntüle",
- "notification.dm": "Doğrudan İleti",
- "notify_all.confirm": "Onayla",
- "notify_all.question": "@all ya da @channel kullandığınızda bildirimler {totalMembers} kişiye gönderilir. Bunu yapmak istediğinize emin misiniz?",
- "notify_all.title.confirm": "Bildirimlerin tüm kanala gönderilmesini onayla",
- "passwordRequirements": "Parola Gereklilikleri:",
- "password_form.change": "Parolamı değiştir",
- "password_form.click": "Oturum açmak için buraya tıklayın.",
- "password_form.enter": "{siteName} hesabınız için yeni bir parola yazın.",
- "password_form.error": "Lütfen en az {chars} karakter yazın.",
- "password_form.pwd": "Parola",
- "password_form.title": "Parolayı Sıfırla",
- "password_form.update": "Parolanız güncellendi.",
- "password_send.checkInbox": "Lütfen gelen kutunuza bakın.",
- "password_send.description": "Parolanızı sıfırlamak için hesabınızı açarken kullandığınız e-posta adresini yazın",
- "password_send.email": "E-posta",
- "password_send.error": "Lütfen geçerli bir e-posta adresi yazın.",
- "password_send.link": "Böyle bir hesap varsa, şu adrese bir parola sıfırlama iletisi gönderilecek: {email}
",
- "password_send.reset": "Parolamı sıfırla",
- "password_send.title": "Parolayı Sıfırla",
- "pdf_preview.max_pages": "Diğer sayfaları okumak için indirin",
- "pending_post_actions.cancel": "İptal",
- "pending_post_actions.retry": "Yeniden Dene",
- "permalink.error.access": "Kalıcı bağlantı silinmiş ya da erişiminiz olmayan bir kanaldaki bir iletiye ait.",
- "permalink.error.title": "İleti Bulunamadı",
- "post_attachment.collapse": "Daha az...",
- "post_attachment.more": "Daha çok...",
- "post_body.commentedOn": "{name}{apostrophe} iletisine yorum yapıldı: ",
- "post_body.deleted": "(ileti silindi)",
- "post_body.plusMore": " ek {count, number} diğer {count, plural, one {file} other {files}}",
- "post_delete.notPosted": "Yorum gönderilemedi",
- "post_delete.okay": "Tamam",
- "post_delete.someone": "Yorum yapmak istediğiniz ileti başla biri tarafından silinmiş.",
- "post_focus_view.beginning": "Kanal Arşivlerinin Başlangıcı",
- "post_info.del": "Sil",
- "post_info.edit": "Düzenle",
- "post_info.message.visible": "(Yalnız siz görebilirsiniz)",
- "post_info.message.visible.compact": " (Yalnız siz görebilirsiniz)",
- "post_info.mobile.flag": "İşaretle",
- "post_info.mobile.unflag": "İşareti Kaldır",
- "post_info.permalink": "Kalıcı Bağlantı",
- "post_info.pin": "Kanala sabitle",
- "post_info.pinned": "Sabitlenmiş",
- "post_info.reply": "Yanıtla",
- "post_info.system": "Sistem",
- "post_info.unpin": "Kanaldaki sabitlemesini kaldır",
- "post_message_view.edited": "(düzenlendi)",
- "posts_view.loadMore": "Daha fazla ileti yükle",
- "posts_view.loadingMore": "Diğer iletiler yükleniyor...",
- "posts_view.newMsg": "Yeni İletiler",
- "posts_view.newMsgBelow": "Yeni {count, plural, one {message} other {messages}} var",
- "quick_switch_modal.channels": "Kanallar",
- "quick_switch_modal.channelsShortcut.mac": "- ⌘K",
- "quick_switch_modal.channelsShortcut.windows": "- CTRL+K",
- "quick_switch_modal.help": "Yazmaya başlayın ve kanal/takım değiştirmek için TAB, gezinmek için ↑↓, seçmek için ↵, iptal etmek için ESC tuşlarını kullanın.",
- "quick_switch_modal.help_mobile": "Kanalı bulmak için adını yazmaya başlayın.",
- "quick_switch_modal.help_no_team": "Bir kanal bulmayı deneyin Gezinmek için ↑↓, seçmek için ↵, iptal etmek için ESC tuşlarını kullanın.",
- "quick_switch_modal.teams": "Takımlar",
- "quick_switch_modal.teamsShortcut.mac": "- ⌘⌥K",
- "quick_switch_modal.teamsShortcut.windows": "(CTRL+ALT+K)",
- "reaction.clickToAdd": "(eklemek için tıklayın)",
- "reaction.clickToRemove": "(silmek için tıklayın)",
- "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, bir {user} diğer {users}}",
- "reaction.reacted": "{users} {emoji} ile {reactionVerb}",
- "reaction.reactionVerb.user": "yanıtladı",
- "reaction.reactionVerb.users": "yanıtladı",
- "reaction.reactionVerb.you": "yanıtladı",
- "reaction.reactionVerb.youAndUsers": "yanıtladı",
- "reaction.usersAndOthersReacted": "{users} ve {otherUsers, number} other {otherUsers, plural, bir {user} diğer {users}}",
- "reaction.usersReacted": "{users} ve {lastUser}",
- "reaction.you": "Siz",
- "removed_channel.channelName": "kanal",
- "removed_channel.from": "Şuradan silindi",
- "removed_channel.okay": "Tamam",
- "removed_channel.remover": "{remover} sizi {channel} kanalından çıkardı",
- "removed_channel.someone": "Biri",
- "rename_channel.cancel": "İptal",
- "rename_channel.defaultError": " - Varsayılan kanal için değiştirilemez",
- "rename_channel.displayName": "Görüntülenecek Ad",
- "rename_channel.displayNameHolder": "Görüntülenecek adı yazın",
- "rename_channel.handleHolder": "küçük alfasayısal karakterler",
- "rename_channel.lowercase": "Küçük alfasayısal karakterler olmalı",
- "rename_channel.maxLength": "Bu alana en fazla {maxLength, number} karakter yazılabilir",
- "rename_channel.minLength": "Kanal adında en az {minLength, number} karakter bulunmalıdır",
- "rename_channel.required": "Bu alan zorunludur",
- "rename_channel.save": "Kaydet",
- "rename_channel.title": "Kanalı Yeniden Adlandır",
- "rename_channel.url": "Adres",
- "rhs_comment.comment": "Yorum",
- "rhs_comment.del": "Sil",
- "rhs_comment.edit": "Düzenle",
- "rhs_comment.mobile.flag": "İşaretle",
- "rhs_comment.mobile.unflag": "İşareti Kaldır",
- "rhs_comment.permalink": "Kalıcı Bağlantı",
- "rhs_header.backToCallTooltip": "Görüşmeye Dön",
- "rhs_header.backToFlaggedTooltip": "İşaretlenmiş İletilere Dön",
- "rhs_header.backToPinnedTooltip": "Sabitlenmiş İletilere Dön",
- "rhs_header.backToResultsTooltip": "Arama Sonuçlarına Dön",
- "rhs_header.closeSidebarTooltip": "Yan Çubuğu Kapat",
- "rhs_header.closeTooltip": "Yan Çubuğu Kapat",
- "rhs_header.details": "İleti Ayrıntıları",
- "rhs_header.expandSidebarTooltip": "Yan Çubuğu Genişlet",
- "rhs_header.expandTooltip": "Yan Çubuğu Daralt",
- "rhs_header.shrinkSidebarTooltip": "Yan Çubuğu Daralt",
- "rhs_root.del": "Sil",
- "rhs_root.direct": "Doğrudan İleti",
- "rhs_root.edit": "Düzenle",
- "rhs_root.mobile.flag": "İşaretle",
- "rhs_root.mobile.unflag": "İşareti Kaldır",
- "rhs_root.permalink": "Kalıcı Bağlantı",
- "rhs_root.pin": "Kanala sabitle",
- "rhs_root.unpin": "Kanaldaki sabitlemesini kaldır",
- "search_bar.search": "Arama",
- "search_bar.usage": "
Belirli bir ifade parçasını arıyorsanız (\"tepki\" ya da \"tepe\" için \"tep\" ifadesi gibi), arama ifadenize * ekleyin.
Çok kullanılan sözcükler ve iki harfli aramalar çok fazla sayıda sonuç döndüreceği için görüntülenmez.
",
- "search_results.noResults": "Herhangi bir sonuç bulunamadı. Yeniden denemek ister misiniz?",
- "search_results.searching": "Aranıyor...",
- "search_results.usage": "
İfadeleri aramak için \"tırnak işaretlerini\" kullanın
Belirli bir kullanıcının iletilerini bulmak için from: belirli bir kanaldaki iletileri bulmak için in: kullanın
",
- "search_results.usageFlag1": "Henüz işaretlediğiniz bir ileti yok.",
- "search_results.usageFlag2": "İleti ve yorumları işaretlemek için ",
- "search_results.usageFlag3": " zaman damgasının yanındaki simgeye tıklayın.",
- "search_results.usageFlag4": "İşaretler iletileri izlemek için kullanılır. İşaretleriniz kişiseldir ve başka kullanıcılar tarafından görülemez.",
- "search_results.usagePin1": "Henüz sabitlenmiş bir ileti yok.",
- "search_results.usagePin2": "Bu kanalın tüm üyeleri önemli ve kullanışlı iletileri sabitleyebilir.",
- "search_results.usagePin3": "Sabitlenmiş iletileri tüm kanal üyeleri görebilir.",
- "search_results.usagePin4": "Bir iletiyi sabitlemek için: Sabitlemek istediğiniz iletiye giderek [...] ve \"Kanala sabitle\" üzerine tıklayın.",
- "setting_item_max.cancel": "İptal",
- "setting_item_max.save": "Kaydet",
- "setting_item_min.edit": "Düzenle",
- "setting_picture.cancel": "İptal",
- "setting_picture.help": "BMP, JPG, JPEG ya da PNG biçiminde ve en az {width} genişliğinde ve {height} yüksekliğinde bir profil görseli yükleyin.",
- "setting_picture.save": "Kaydet",
- "setting_picture.select": "Seçin",
- "setting_upload.import": "İçe Aktar",
- "setting_upload.noFile": "Herhangi bir dosya seçilmemiş.",
- "setting_upload.select": "Dosya seçin",
- "shortcuts.browser.channel_next": "Geçmişte ileri git:\tAlt|Right",
- "shortcuts.browser.channel_next.mac": "Geçmişte ileri git:\t⌘|]",
- "shortcuts.browser.channel_prev": "Geçmişte geri git:\tAlt|Left",
- "shortcuts.browser.channel_prev.mac": "Geçmişte geri git:\t⌘|[",
- "shortcuts.browser.font_decrease": "Uzaklaştır:\tCtrl|-",
- "shortcuts.browser.font_decrease.mac": "Uzaklaştır:\t⌘|-",
- "shortcuts.browser.font_increase": "Yakınlaştır:\tCtrl|+",
- "shortcuts.browser.font_increase.mac": "Yakınlaştır:\t⌘|+",
- "shortcuts.browser.header": "İç Tarayıcı Komutları",
- "shortcuts.browser.highlight_next": "Sonraki satırdaki metini vurgula:\tShift|Down",
- "shortcuts.browser.highlight_prev": "Önceki satırdaki metni vurgula:\tShift|Up",
- "shortcuts.browser.input.header": "Bir giriş alanının içinde kullanılır",
- "shortcuts.browser.newline": "Yeni satır ekle:\tShift|Enter",
- "shortcuts.files.header": "Dosyalar",
- "shortcuts.files.upload": "Dosya yükle:\tCtrl|U",
- "shortcuts.files.upload.mac": "Dosya yükle:\t⌘|U",
- "shortcuts.header": "Tuştakımı Kısayolları",
- "shortcuts.info": "Kullanabileceğiniz komutların listesini görmek için iletiye / yazarak başlayın.",
- "shortcuts.msgs.comp.channel": "Kanal:\t~|[a-z]|Sekme",
- "shortcuts.msgs.comp.emoji": "İfade:\t:|[a-z]|Sekme",
- "shortcuts.msgs.comp.header": "Otomatik tamamla",
- "shortcuts.msgs.comp.username": "Kullanıcı adı:\t@|[a-z]|Sekme",
- "shortcuts.msgs.edit": "Kanaldaki son iletiyi düzenle:\tYukarı",
- "shortcuts.msgs.header": "İletiler",
- "shortcuts.msgs.input.header": "Boş bir giriş alanı içinde kullanılır",
- "shortcuts.msgs.mark_as_read": "Geçerli kanalı okunmuş olarak işaretle:\tEsc",
- "shortcuts.msgs.reply": "Kanaldaki son iletiyi yanıtla:\tShift|Yukarı",
- "shortcuts.msgs.reprint_next": "Sonraki iletiyi yeniden yaz:\tCtrl|Aşağı",
- "shortcuts.msgs.reprint_next.mac": "Sonraki iletiyi yeniden yaz:\t⌘|Aşağı",
- "shortcuts.msgs.reprint_prev": "Önceki iletiyi yeniden yaz:\tCtrl|Yukarı",
- "shortcuts.msgs.reprint_prev.mac": "Önceki iletiyi yeniden yaz:\t⌘|Yukarı",
- "shortcuts.nav.direct_messages_menu": "Doğrudan iletiler menüsü:\tCtrl|Shift|K",
- "shortcuts.nav.direct_messages_menu.mac": "Doğrudan iletiler menüsü:\t⌘|Shift|K",
- "shortcuts.nav.header": "Gezinme",
- "shortcuts.nav.next": "Sonraki kanal:\tAlt|Aşağı",
- "shortcuts.nav.next.mac": "Sonraki kanal:\t⌥|Aşağı",
- "shortcuts.nav.prev": "Önceki kanal:\tAlt|Yukarı",
- "shortcuts.nav.prev.mac": "Önceki kanal:\t⌥|Yukarı",
- "shortcuts.nav.recent_mentions": "Son anmalar:\tCtrl|Shift|M",
- "shortcuts.nav.recent_mentions.mac": "Son anmalar:\t⌘|Shift|M",
- "shortcuts.nav.settings": "Hesap ayarları:\tCtrl|Shift|A",
- "shortcuts.nav.settings.mac": "Hesap ayarları:\t⌘|Shift|A",
- "shortcuts.nav.switcher": "Hızlı kanal değiştirme:\tCtrl|K",
- "shortcuts.nav.switcher.mac": "Hızlı kanal değiştirme:\t⌘|K",
- "shortcuts.nav.unread_next": "Sonraki okunmamış kanal:\tAlt|Shift|Aşağı",
- "shortcuts.nav.unread_next.mac": "Sonraki okunmamış kanal:\t⌥|Shift|Aşağı",
- "shortcuts.nav.unread_prev": "Önceki okunmamış kanal:\tAlt|Shift|Yukarı",
- "shortcuts.nav.unread_prev.mac": "Önceki okunmamış kanal:\t⌥|Shift|Yukarı",
- "sidebar.channels": "HERKESE AÇIK KANALLAR",
- "sidebar.createChannel": "Yeni herkese açık kanal ekle",
- "sidebar.createGroup": "Yeni özel kanal ekle",
- "sidebar.direct": "DOĞRUDAN İLETİLER",
- "sidebar.favorite": "BEĞENDİĞİM KANALLAR",
- "sidebar.leave": "Kanaldan Ayrıl",
- "sidebar.mainMenu": "Ana Menü",
- "sidebar.more": "Diğer",
- "sidebar.moreElips": "Diğer...",
- "sidebar.otherMembers": "Bu takımın dışında",
- "sidebar.pg": "ÖZEL KANALLAR",
- "sidebar.removeList": "Listeden çıkar",
- "sidebar.tutorialScreen1": "
Kanallar
Kanallar farklı konulardaki konuşmaları düzenlemek için kullanılır. Kanallar takımınızdaki herkese açıktır. Özel iletişim kurmak gerektiğinde bir kişi için Doğrudan İletileri, bir kaç kişi için Özel Kanalları kullanabilirsiniz.
",
- "sidebar.tutorialScreen2": "
\"{townsquare}\" ve \"{offtopic}\" kanalları
Başlangıçta herkese açık iki kanal bulunur:
{townsquare} tüm takımla iletişim kurmak için kullanılır. Takımınızdaki herkes bu kanalın bir üyesidir.
{offtopic} iş dışı kanallar dışında eğlence için kullanılır. Siz ve takımınız başka kanallar eklemeye karar verebilirsiniz.
",
- "sidebar.tutorialScreen3": "
Kanal Eklemek ve Katılmak
Yeni bir kanal eklemek ve varolan bir kanala katılmak için \"Diğer...\" üzerine tıklayın.
Ayrıca herkese açık ya da özel bir kanal başlığının yanındaki \"+\" simgesine tıklayarak da yeni bir kanal ekleyebilirsiniz.
Ana Menüde, Yeni Üyeleri Çağırmak, Hesap Ayarlarına erişmek ve Tema Renklerini ayarlamak gibi işlemler yapabilirsiniz.
Takım yöneticileri ayrıca bu menüden kendi Takım Ayarlarını yapabilirler.
Sistem Yöneticileri için de tüm sistemin yönetilebileceği Sistem Konsolu seçeneği bulunur.
",
- "sidebar_right_menu.accountSettings": "Hesap Ayarları",
- "sidebar_right_menu.addMemberToTeam": "Takıma Üye Ekle",
- "sidebar_right_menu.console": "Sistem Konsolu",
- "sidebar_right_menu.flagged": "İşaretlenmiş İletiler",
- "sidebar_right_menu.help": "Yardım",
- "sidebar_right_menu.inviteNew": "E-posta Çağrısı Gönder",
- "sidebar_right_menu.logout": "Oturumu Kapat",
- "sidebar_right_menu.manageMembers": "Üye Yönetimi",
- "sidebar_right_menu.nativeApps": "Uygulamaları İndir",
- "sidebar_right_menu.recentMentions": "Son Anmalar",
- "sidebar_right_menu.report": "Sorun Bildir",
- "sidebar_right_menu.teamLink": "Takım Çağrı Bağlantısını Al",
- "sidebar_right_menu.teamSettings": "Takım Ayarları",
- "sidebar_right_menu.viewMembers": "Üyeleri Görüntüle",
- "signup.email": "E-posta ve Parola",
- "signup.gitlab": "GitLab Tek Oturum Açma",
- "signup.google": "Google Hesabı",
- "signup.ldap": "AD/LDAP Kimlik Bilgileri",
- "signup.office365": "Office 365",
- "signup.title": "Şununla bir hesap ekle:",
- "signup_team.createTeam": "Ya da bir Takım Ekle",
- "signup_team.disabled": "Takım ekleme özelliği devre dışı bırakılmış. Lütfen erişim için bir yönetici ile görüşün.",
- "signup_team.join_open": "Katılabileceğiniz takımlar: ",
- "signup_team.noTeams": "Takım Dizininde herhangi bir takım yok ve takım ekleme özelliği devre dışı bırakılmış.",
- "signup_team.no_open_teams": "Katılınabilecek bir takım yok. Lütfen çağrı göndermesi için bir yönetici ile görüşün.",
- "signup_team.no_open_teams_canCreate": "Katılınabilecek bir takım yok. Lütfen yeni bir takım ekleyin ya da çağrı göndermesi için bir yönetici ile görüşün.",
- "signup_team.no_teams": "Henüz bir takım eklenmemiş. Lütfen yöneticiniz ile görüşün.",
- "signup_team.no_teams_canCreate": "Henüz bir takım eklenmemiş. \"Yeni takım ekle\" üzerine tıklayarak bir takım ekleyebilirsiniz.",
- "signup_team.none": "Herhangi bir takım ekleme yöntemi etkinleştirilmemiş. Lütfen erişim için bir yönetici ile görüşün.",
- "signup_team_complete.completed": "Bu çağrıyla ilgili hesap açma işlemini zaten tamamlamışsınız ya da çağrının süresi geçmiş.",
- "signup_team_confirm.checkEmail": "Lütfen {email}adresinize bakın Takımınızı eklemeniz için bir bağlantı e-postası gönderildi",
- "signup_team_confirm.title": "Hesap Açma Tamamlandı",
- "signup_team_system_console": "Sistem Konsoluna Git",
- "signup_user_completed.choosePwd": "Parolanızı yazın",
- "signup_user_completed.chooseUser": "Kullanıcı adınızı yazın",
- "signup_user_completed.create": "Hesap Aç",
- "signup_user_completed.emailHelp": "Hesap açabilmek için bir e-posta adresi gereklidir",
- "signup_user_completed.emailIs": "E-posta adresiniz: {email}. {siteName} oturumu açmak için bu adresi kullanacaksınız.",
- "signup_user_completed.expired": "Bu çağrıyla ilgili hesap açma işlemini zaten tamamlamışsınız ya da çağrının süresi geçmiş.",
- "signup_user_completed.gitlab": "GitLab ile",
- "signup_user_completed.google": "Google ile",
- "signup_user_completed.haveAccount": "Zaten hesabınız var mı?",
- "signup_user_completed.invalid_invite": "Çağrı bağlantısı geçersiz. Lütfen bir çağrı almak için yönetici ile görüşün.",
- "signup_user_completed.lets": "Şimdi hesabınızı açalım",
- "signup_user_completed.no_open_server": "Sunucu hesap açılmasına izin vermiyor. Lütfen bir çağrı almak için yönetici ile görüşün.",
- "signup_user_completed.none": "Herhangi bir kullanıcı ekleme yöntemi etkinleştirilmemiş. Lütfen erişim için bir yönetici ile görüşün.",
- "signup_user_completed.office365": "Office 365 ile",
- "signup_user_completed.onSite": "{siteName} üzerindeki",
- "signup_user_completed.or": "ya da",
- "signup_user_completed.passwordLength": "Lütfen {min} ile {max} arasında karakter yazın",
- "signup_user_completed.required": "Bu alan zorunludur",
- "signup_user_completed.reserved": "Bu kullanıcı adı ayrılmış, lütfen başka bir ad seçin.",
- "signup_user_completed.signIn": "Oturum açmak için buraya tıklayın.",
- "signup_user_completed.userHelp": "Kullanıcı adı bir harf ile başlamalı ve {min} ile {max} arasında küçük harf, rakam ve '.', '-', '_' simgelerini içermelidir.",
- "signup_user_completed.usernameLength": "Kullanıcı adı bir harf ile başlamalı ve {min} ile {max} arasında küçük harf, rakam ve '.', '-', '_' simgelerini içermelidir.",
- "signup_user_completed.validEmail": "Lütfen geçerli bir e-posta adresi yazın",
- "signup_user_completed.welcome": "Hoş geldiniz:",
- "signup_user_completed.whatis": "E-posta adresiniz nedir?",
- "signup_user_completed.withLdap": "AD/LDAP kimlik bilgilerinizle",
- "sso_signup.find": "Takımlarımı bul",
- "sso_signup.gitlab": "GitLab hesabıyla takım ekle",
- "sso_signup.google": "Google Apps hesabıyla takım ekle",
- "sso_signup.length_error": "Ad en az 3 en fazla 15 karakterden oluşabilir",
- "sso_signup.teamName": "Yeni takımın adını yazın",
- "sso_signup.team_error": "Lütfen bir takım adı yazın",
- "status_dropdown.set_away": "Uzakta",
- "status_dropdown.set_offline": "Çevrimdışı",
- "status_dropdown.set_online": "Çevrimiçi",
- "suggestion.loading": "Yükleniyor...",
- "suggestion.mention.all": "DİKKAT: Bu işlem kanaldaki herkesi anacak",
- "suggestion.mention.channel": "Kanaldaki herkese bildirilir",
- "suggestion.mention.channels": "Kanallarım",
- "suggestion.mention.here": "Kanalda ve çevrimiçi olan herkese bildirilir",
- "suggestion.mention.in_channel": "Kanallar",
- "suggestion.mention.members": "Kanal Üyeleri",
- "suggestion.mention.morechannels": "Diğer Kanallar",
- "suggestion.mention.nonmembers": "Kanalda Değil",
- "suggestion.mention.not_in_channel": "Diğer Kanallar",
- "suggestion.mention.special": "Özel Anmalar",
- "suggestion.search.private": "Özel Kanallar",
- "suggestion.search.public": "Herkese Açık Kanallar",
- "system_users_list.count": "{count, number} {count, plural, bir {user} diğer {users}}",
- "system_users_list.countPage": "{startCount, number} - {endCount, number} {count, plural, one {user} other {users}} / {total, number}",
- "system_users_list.countSearch": "{count, number} {count, plural, one {user} other {users}} / {total, number}",
- "team_export_tab.download": "indir",
- "team_export_tab.export": "Dışa Aktar",
- "team_export_tab.exportTeam": "Takımınızı dışa aktarın",
- "team_export_tab.exporting": " Dışa aktarılıyor...",
- "team_export_tab.ready": " Şunun için hazır ",
- "team_export_tab.unable": " Dışa aktarılamadı: {error}",
- "team_import_tab.failure": " Alınamadı: ",
- "team_import_tab.import": "İçe Aktar",
- "team_import_tab.importHelpDocsLink": "belgeler",
- "team_import_tab.importHelpExportInstructions": "Slack > Takım Ayarları > İçe/Dışa Veri Aktarma > Dışa Aktar > Dışa Aktarmayı Başlat",
- "team_import_tab.importHelpExporterLink": "Slack Gelişmiş Dışa Aktarma",
- "team_import_tab.importHelpLine1": "Slack içe aktarma özelliği ile Slack takımının herkese açık kanalları Mattermost içine aktarılabilir.",
- "team_import_tab.importHelpLine2": "Slack üzerindeki bir takımı içe aktarmak için {exportInstructions} bölümüne bakın. Ayrıntılı bilgi almak için {uploadDocsLink} bölümüne bakın.",
- "team_import_tab.importHelpLine3": "Dosya eki olan iletileri içe aktarma ayrıntıları için {slackAdvancedExporterLink} bölümüne bakın.",
- "team_import_tab.importSlack": "Slack üzerinden içe aktar (Beta)",
- "team_import_tab.importing": " İçe aktarılıyor...",
- "team_import_tab.successful": " İçe aktarma tamamlandı: ",
- "team_import_tab.summary": "Özeti Görüntüle",
- "team_member_modal.close": "Kapat",
- "team_member_modal.members": "{team} Üyeleri",
- "team_members_dropdown.confirmDemoteDescription": "Kendi Sistem Yöneticisi yetkinizi kaldırırsanız ve Sistem Yöneticisi yetkilerine sahip başka bir kullanıcı yoksa, yeni bir Sistem Yöneticisi atamak için Mattermost sunucusuna bir terminal üzerinden başlanıp şu komutu yürütmeniz gerekir.",
- "team_members_dropdown.confirmDemoteRoleTitle": "Sistem Yöneticisi yetkisini kaldırmayı onaylayın",
- "team_members_dropdown.confirmDemotion": "Yetki Kaldırmayı Onayla",
- "team_members_dropdown.confirmDemotionCmd": "system_admin {username} platform rolleri",
- "team_members_dropdown.inactive": "Devre dışı",
- "team_members_dropdown.leave_team": "Takımdan Çıkar",
- "team_members_dropdown.makeActive": "Etkinleştir",
- "team_members_dropdown.makeAdmin": "Takım Yöneticisi Yap",
- "team_members_dropdown.makeInactive": "Devre Dışı Bırak",
- "team_members_dropdown.makeMember": "Üye Yap",
- "team_members_dropdown.member": "Üye",
- "team_members_dropdown.systemAdmin": "Sistem Yöneticisi",
- "team_members_dropdown.teamAdmin": "Takım Yöneticisi",
- "team_settings_modal.exportTab": "Dışa Aktar",
- "team_settings_modal.generalTab": "Genel",
- "team_settings_modal.importTab": "İçe Aktar",
- "team_settings_modal.title": "Takım Ayarları",
- "team_sidebar.join": "Katılabileceğiniz diğer takımlar.",
- "textbox.bold": "**koyu**",
- "textbox.edit": "İletiyi düzenle",
- "textbox.help": "Yardım",
- "textbox.inlinecode": "`satır arası kodu`",
- "textbox.italic": "_yatık_",
- "textbox.preformatted": "```hazır biçimlendirilmiş```",
- "textbox.preview": "Önizleme",
- "textbox.quote": ">Alıntı",
- "textbox.strike": "üzerini çiz",
- "tutorial_intro.allSet": "Tüm ayarları yaptınız",
- "tutorial_intro.end": "{channel} kanalına girmek için \"Sonraki\" üzerine tıklayın. Takım arkadaşlarınız kayıt olduğunda görecekleri ilk kanal budur. Bu kanalı herkesin bilmesi gereken güncellemeler için kullanın.",
- "tutorial_intro.invite": "Takım arkadaşları çağır",
- "tutorial_intro.mobileApps": "Hareket halindeyken kolay erişmek ve bildirim almak için {link} uygulamasını yükleyin.",
- "tutorial_intro.mobileAppsLinkText": "Windows, Mac, iOS ve Android",
- "tutorial_intro.next": "Sonraki",
- "tutorial_intro.screenOne": "
Hoş geldiniz:
Mattermost
Anında arama ve heryerden erişebilme özellikleri ile takım iletişiminizi tek noktadan sağlayın.
Takımınızın iletişimini sağlayarak önemli işler başarmalarını sağlayın.
",
- "tutorial_intro.screenTwo": "
Mattermost şöyle çalışır:
İletişim, herkese açık kanallar, özel kanallar ya da doğrudan iletiler üzerinden sağlanır..
Herşey arşivlenir ve web üzerinden erişilebilen bir bilgisayar ya da cep telefonu ile aranabilir.
",
- "tutorial_intro.skip": "Eğitimi atla",
- "tutorial_intro.support": "Sorularınız için bize e-posta gönderin ",
- "tutorial_intro.teamInvite": "Takım arkadaşları çağır",
- "tutorial_intro.whenReady": " hazır olduğunuzda.",
- "tutorial_tip.next": "Sonraki",
- "tutorial_tip.ok": "Tamam",
- "tutorial_tip.out": "Bu ipuçları görüntülenmesin.",
- "tutorial_tip.seen": "Bunu daha önce gördünüz mü? ",
- "update_command.cancel": "İptal",
- "update_command.confirm": "Bölü Komutunu Düzenle",
- "update_command.question": "Yaptığınız değişiklikler varolan bölü komutunu bozabilir. Komutu güncellemek istediğinize emin misiniz?",
- "update_command.update": "Güncelle",
- "update_incoming_webhook.update": "Güncelle",
- "update_outgoing_webhook.confirm": "Giden Web Bağlantısını Düzenle",
- "update_outgoing_webhook.question": "Yaptığınız değişiklikler varolan giden web bağlantısını bozabilir. Web bağlantısını güncellemek istediğinize emin misiniz?",
- "update_outgoing_webhook.update": "Güncelle",
- "upload_overlay.info": "Yüklemek istediğiniz dosyayı sürükleyip buraya bırakın.",
- "user.settings.advance.embed_preview": "Bir iletideki ilk web bağlantısı için, olabiliyorsa bir web sitesi içeriğinin önizlemesini iletinin altında görüntülensin",
- "user.settings.advance.embed_toggle": "Tüm gömülü önizleme görüntülemeyi değiştir",
- "user.settings.advance.enabledFeatures": "{count, number} {count, plural, bir {Feature} diğer {Features}} etkinleştirildi",
- "user.settings.advance.formattingDesc": "Bu seçenek etkinleştirildiğinde, iletiler bağlantılar eklemek, emoji görüntülemek, metni biçimlendirmek ve satır sonları eklemek için biçimlendirilir. Varsayılan olarak bu seçenek etkinleştirilmiştir. Bu değer değiştirildikten sonra bu sayfanın yenilenmesi gerekir.",
- "user.settings.advance.formattingTitle": "İletiler Biçimlendirilebilsin",
- "user.settings.advance.joinLeaveDesc": "Bu seçenek etkinleştirildiğinde, bir kullanıcının bir kanala katıldığı ya da ayrıldığını bildiren sistem iletileri görüntülenir. Devre dışı bırakıldığında bu iletiler görüntülenmez. Bununla birlikte bir kanala eklendiğinizde bir ileti görüntülenir ve bir bildirim alabilirsiniz.",
- "user.settings.advance.joinLeaveTitle": "Katılma/Ayrılma İletileri Kullanılsın",
- "user.settings.advance.markdown_preview": "İleti yazma kutusunda kod imi önizlemesi seçeneği görüntülensin",
- "user.settings.advance.off": "Kapalı",
- "user.settings.advance.on": "Açık",
- "user.settings.advance.preReleaseDesc": "Önizlemek istediğiniz özellikleri işaretleyin. Ayarların etkili olması için sayfayı yeniden yüklemelisiniz.",
- "user.settings.advance.preReleaseTitle": "Yeni Uygulama Önizlemesi",
- "user.settings.advance.sendDesc": "Bu seçenek etkinleştirildiğinde ENTER tuşu yeni bir satıra geçer, ileti CTRL+ENTER tuşları ile gönderilir.",
- "user.settings.advance.sendTitle": "İletiler Ctrl-ENTER ile gönderilsin",
- "user.settings.advance.slashCmd_autocmp": "Dış uygulama bölü komutları için otomatik tamamlama önerilerinde bulunsun",
- "user.settings.advance.title": "Gelişmiş Ayarlar",
- "user.settings.advance.webrtc_preview": "Bire bir WebRTC görüşmeleri için arama ve yanıtlama özelliği kullanılsın",
- "user.settings.custom_theme.awayIndicator": "Uzakta Göstergesi",
- "user.settings.custom_theme.buttonBg": "Düğme Art Alanı",
- "user.settings.custom_theme.buttonColor": "Düğme Metni",
- "user.settings.custom_theme.centerChannelBg": "Orta Kanal Art Alanı",
- "user.settings.custom_theme.centerChannelColor": "Orta Kanal Metni",
- "user.settings.custom_theme.centerChannelTitle": "Orta Kanal Biçemleri",
- "user.settings.custom_theme.codeTheme": "Kod Teması",
- "user.settings.custom_theme.copyPaste": "Tema renklerini paylaşmak için kopyalayıp yapıştırın:",
- "user.settings.custom_theme.linkButtonTitle": "Düğme ve Bağlantı Biçemleri",
- "user.settings.custom_theme.linkColor": "Bağlantı Rengi",
- "user.settings.custom_theme.mentionBj": "Anma Vurgusu Art Alanı",
- "user.settings.custom_theme.mentionColor": "Anma Vurgusu Metni",
- "user.settings.custom_theme.mentionHighlightBg": "Anma Vurgu Art Alanı",
- "user.settings.custom_theme.mentionHighlightLink": "Anma Vurgu Bağlantısı",
- "user.settings.custom_theme.newMessageSeparator": "Yeni İleti Ayıracı",
- "user.settings.custom_theme.onlineIndicator": "Çevrimiçi Göstergesi",
- "user.settings.custom_theme.sidebarBg": "Yan Çubuk Art Alanı",
- "user.settings.custom_theme.sidebarHeaderBg": "Yan Çubuk Başlığı Art Alanı",
- "user.settings.custom_theme.sidebarHeaderTextColor": "Yan Çubuk Başlığı Metni",
- "user.settings.custom_theme.sidebarText": "Yan Çubuk Metni",
- "user.settings.custom_theme.sidebarTextActiveBorder": "Yan Çubuk Etkin Kenarlık",
- "user.settings.custom_theme.sidebarTextActiveColor": "Yan Çubuk Metni Etkin Rengi",
- "user.settings.custom_theme.sidebarTextHoverBg": "Yan Çubuk Üzerinde Art Alanı",
- "user.settings.custom_theme.sidebarTitle": "Yan Çubuk Biçemleri",
- "user.settings.custom_theme.sidebarUnreadText": "Yan Çubuk Okunmadı Metni",
- "user.settings.display.channelDisplayTitle": "Kanal Görünüm Kipi",
- "user.settings.display.channeldisplaymode": "Orta kanalın genişliğini seçin.",
- "user.settings.display.clockDisplay": "Saat Görünümü",
- "user.settings.display.collapseDesc": "Varsayılan görsel bağlantısı önizlemesini genişletilmiş ya da daraltılmış olarak seçin. Bu ayarlar /expand ve /collapse bölü komutları kullanılarak yapılabilir.",
- "user.settings.display.collapseDisplay": "Varsayılan Görsel Bağlantısı Önizleme Görünümü",
- "user.settings.display.collapseOff": "Daraltılmış",
- "user.settings.display.collapseOn": "Genişletilmiş",
- "user.settings.display.fixedWidthCentered": "Sabit genişlikli, ortalanmış",
- "user.settings.display.fullScreen": "Tam genişlil",
- "user.settings.display.language": "Dil",
- "user.settings.display.messageDisplayClean": "Standart",
- "user.settings.display.messageDisplayCleanDes": "Taramak ve okumak kolay.",
- "user.settings.display.messageDisplayCompact": "Sıkışık",
- "user.settings.display.messageDisplayCompactDes": "Ekrana sığabildiği kadar ileti görüntülenir.",
- "user.settings.display.messageDisplayDescription": "Kanaldaki iletilerin nasıl görüntüleneceğini seçin.",
- "user.settings.display.messageDisplayTitle": "İleti Görünümü",
- "user.settings.display.militaryClock": "24 saat (16:00 gibi)",
- "user.settings.display.nameOptsDesc": "İleti ve Doğrudan İleti listelerinde kullanıcı adının nasıl görüntüleneceğini ayarlayın.",
- "user.settings.display.normalClock": "12 saat (4:00 PM gibi)",
- "user.settings.display.preferTime": "Saatin nasıl görüntüleneceğini ayarlayın.",
- "user.settings.display.theme.applyToAllTeams": "Yeni tema tüm takımlarıma uygulansın",
- "user.settings.display.theme.customTheme": "Özel Tema",
- "user.settings.display.theme.describe": "Temanızı düzenlemek için açın",
- "user.settings.display.theme.import": "Tema renklerini Slack üzerinden içe aktarma",
- "user.settings.display.theme.otherThemes": "Diğer temaları görüntüle",
- "user.settings.display.theme.themeColors": "Tema Renkleri",
- "user.settings.display.theme.title": "Tema",
- "user.settings.display.title": "Görünüm Ayarları",
- "user.settings.general.checkEmail": "Adresinizi doğrulamak için {email} adresinize bakın.",
- "user.settings.general.checkEmailNoAddress": "Yeni adresinizi doğrulamak için e-postanıza bakın",
- "user.settings.general.close": "Kapat",
- "user.settings.general.confirmEmail": "E-postayı Doğrula",
- "user.settings.general.currentEmail": "Geçerli E-posta",
- "user.settings.general.email": "E-posta",
- "user.settings.general.emailGitlabCantUpdate": "Oturum GitLab kullanılarak açıldığından e-posta güncellenemez. Bildirimler için {email} e-posta adresi kullanılacak.",
- "user.settings.general.emailGoogleCantUpdate": "Oturum Google kullanılarak açıldığından e-posta güncellenemez. Bildirimler için {email} e-posta adresi kullanılacak.",
- "user.settings.general.emailHelp1": "E-posta oturum açmak, bildirimler ve parola sıfırlama için kullanılıyor. E-posta adresi değiştirilirse doğrulanması gerekir.",
- "user.settings.general.emailHelp2": "E-posta Sistem Yöneticisi tarafından devre dışı bırakılmış. Etkinleştirilene kadar herhangi bir bildirim e-postası gönderilmeyecek.",
- "user.settings.general.emailHelp3": "E-posta, oturum açmak, bildirimler ve parola sıfırlama için kullanılıyor.",
- "user.settings.general.emailHelp4": "{email} adresine bir doğrulama postası gönderildi.",
- "user.settings.general.emailLdapCantUpdate": "Oturum AD/LDAP kullanılarak açıldığından e-posta güncellenemez. Bildirimler için {email} e-posta adresi kullanılacak.",
- "user.settings.general.emailMatch": "Yazdığınız yeni e-posta ve onayı aynı değil.",
- "user.settings.general.emailOffice365CantUpdate": "Oturum Office 365 kullanılarak açıldığından e-posta güncellenemez. Bildirimler için {email} e-posta adresi kullanılacak.",
- "user.settings.general.emailSamlCantUpdate": "Oturum SAML kullanılarak açıldığından e-posta güncellenemez. Bildirimler için {email} e-posta adresi kullanılacak.",
- "user.settings.general.emailUnchanged": "Yeni e-posta adresiniz eski adresiniz ile aynı.",
- "user.settings.general.emptyName": "Tam adınızı eklemek için 'Düzenle' üzerine tıklayın",
- "user.settings.general.emptyNickname": "Takma adınızı eklemek için 'Düzenle' üzerine tıklayın",
- "user.settings.general.emptyPosition": "İş unvanı ya da konumunuzu eklemek için 'Düzenle' üzerine tıklayın",
- "user.settings.general.field_handled_externally": "Bu alan oturum açma hizmeti sağlayıcınız tarafından doldurulur. Değiştirmek isterseniz oturum açma hizmeti sağlayıcısı üzerinden yapmalısınız.",
- "user.settings.general.firstName": "Ad",
- "user.settings.general.fullName": "Tam Ad",
- "user.settings.general.imageTooLarge": "Profil görseli yüklenemedi. Dosya çok büyük.",
- "user.settings.general.imageUpdated": "Son görsel güncelleme: {date}",
- "user.settings.general.lastName": "Soyad",
- "user.settings.general.loginGitlab": "Oturum GitLab ile açıldı ({email})",
- "user.settings.general.loginGoogle": "Oturum Google ile açıldı ({email})",
- "user.settings.general.loginLdap": "Oturum AD/LDAP ile açıldı ({email})",
- "user.settings.general.loginOffice365": "Oturum Office 365 ile açıldı ({email})",
- "user.settings.general.loginSaml": "Oturum SAML ile açıldı ({email})",
- "user.settings.general.mobile.emptyName": "Tam adınızı eklemek için tıklayın",
- "user.settings.general.mobile.emptyNickname": "Takma adınızı eklemek için tıklayın",
- "user.settings.general.mobile.emptyPosition": "İş unvanı ya da konumunuzu eklemek için tıklayın",
- "user.settings.general.mobile.uploadImage": "Bir görsel yüklemek için tıklayın.",
- "user.settings.general.newAddress": "Yeni Adres: {email} Yukarıdaki adresi doğrulamak için e-postanıza bakın.",
- "user.settings.general.newEmail": "Yeni E-posta",
- "user.settings.general.nickname": "Takma Ad",
- "user.settings.general.nicknameExtra": "Ad ve kullanıcı adınızdan başka bir ad ile çağrılabilmek için bir takma ad kullanabilirsiniz. Genellikle adları ve kullanıcı adları birbirine benzeyen birden fazla kullanıcı varsa kullanılır.",
- "user.settings.general.notificationsExtra": "Varsayılan olarak birisi adınızı yazdığında bir anma bildirimi alırsınız. Bu varsayılan ayarı değiştirmek için {notify} ayarlarına gidin.",
- "user.settings.general.notificationsLink": "Bildirimler",
- "user.settings.general.position": "Unvan",
- "user.settings.general.positionExtra": "İş unvanınızı ya da konumunuzu yazın. Açılan profil penceresinde görüntülenir.",
- "user.settings.general.profilePicture": "Profil Görseli",
- "user.settings.general.title": "Genel Ayarlar",
- "user.settings.general.uploadImage": "Bir görsel yüklemek için 'Düzenle' üzerine tıklayın.",
- "user.settings.general.username": "Kullanıcı Adı",
- "user.settings.general.usernameInfo": "Takım arkadaşlarınız tarafından kolay anlaşılıp hatırlanabilecek bir şey seçin.",
- "user.settings.general.usernameReserved": "Bu kullanıcı adı sistem tarafından ayrılmış, lütfen başka bir ad seçin.",
- "user.settings.general.usernameRestrictions": "Kullanıcı adı bir harf ile başlamalı ve {min} ile {max} arasında küçük harf, rakam ve '.', '-', '_' simgelerini içermelidir.",
- "user.settings.general.validEmail": "Lütfen geçerli bir e-posta adresi yazın",
- "user.settings.general.validImage": "Profil görseli olarak yalnız JPG ya da PNG görselleri kullanılabilir",
- "user.settings.import_theme.cancel": "İptal",
- "user.settings.import_theme.importBody": "Bir temayı içe aktarmak için Slack takımına gidin ve 'Ayarlar -> Yan Çubuk Teması' bölümüne bakın. Özel tema seçeneğini açın ve tema renk değerlerini kopyalayıp buraya yapıştırın:",
- "user.settings.import_theme.importHeader": "Slack Temasını İçe Aktar",
- "user.settings.import_theme.submit": "Gönder",
- "user.settings.import_theme.submitError": "Biçim geçersiz, lütfen yeniden kopyalayıp yapıştırmayı deneyin.",
- "user.settings.languages.change": "Arayüz dilini değiştir",
- "user.settings.languages.promote": "Kullanıcı arayüzünde kullanılacak dili seçin.
Çevirilere yardımcı olmak ister misiniz? Katkıda bulunmak için Mattermost Çeviri Sunucusuna katılın.",
- "user.settings.mfa.add": "Hesabınıza ÇAKD ekleyin",
- "user.settings.mfa.addHelp": "Hesabınıza çok aşamalı kimlik doğrulamasını eklediğinizde, her oturum açışınızda cep telefonunuzdaki uygulamadan oluşturacağınız kodu yazmanız istenerek güvenlik arttırılır.",
- "user.settings.mfa.addHelpQr": "Lütfen QR kodu cep telefonunuzdaki Google Authenticator uygulamasına okutun ve üretilen kodu yazın. Kodu okutamıyorsanız belirtilen parolayı el ile yazabilirsiniz.",
- "user.settings.mfa.enterToken": "Kod (yalnız rakamlar)",
- "user.settings.mfa.qrCode": "Barkod",
- "user.settings.mfa.remove": "Hesabınızdan ÇAKD özelliğini kaldırın",
- "user.settings.mfa.removeHelp": "Çok aşamalı kimlik doğrulamasını kaldırdığınızda oturum açmak için cep telefonunuzdaki uygulamadan üreteceğiniz kodu yazmanıza gerek kalmaz.",
- "user.settings.mfa.requiredHelp": "Bu sunucuda çok aşamalı kimlik doğrulaması kullanılması zorunlu. Sıfırlama işlemini, yalnız kod üretme uygulamasını yeni bir cep telefonuna taşıyorsanız yapmanız önerilir. Sıfırlama sonrasında kurulumu yeniden yapmanız istenir.",
- "user.settings.mfa.reset": "Hesabınızdaki ÇAKD özelliğini sıfırlayın",
- "user.settings.mfa.secret": "Parola",
- "user.settings.mfa.title": "Çok Aşamalı Kimlik Doğrulama",
- "user.settings.modal.advanced": "Gelişmiş",
- "user.settings.modal.confirmBtns": "Evet, İptal Et",
- "user.settings.modal.confirmMsg": "Kaydedilmemiş değişiklikleriniz var. Bunları iptal etmek istediğinize emin misiniz?",
- "user.settings.modal.confirmTitle": "Değişiklikler iptal edilsin mi?",
- "user.settings.modal.display": "Görünüm",
- "user.settings.modal.general": "Genel",
- "user.settings.modal.notifications": "Bildirimler",
- "user.settings.modal.security": "Güvenlik",
- "user.settings.modal.title": "Hesap Ayarları",
- "user.settings.notifications.allActivity": "Tüm işlemler için",
- "user.settings.notifications.channelWide": "Kanal genelindeki anmalar \"@channel\", \"@all\", \"@here\"",
- "user.settings.notifications.close": "Kapat",
- "user.settings.notifications.comments": "Yanıt Bildirimleri",
- "user.settings.notifications.commentsAny": "Benim başlattığım ya da katıldığım konu yanıtlarındaki iletiler için bildirim gönderilsin",
- "user.settings.notifications.commentsInfo": "Anıldığınız zamanki bildirimlere ek olarak, konu yanıtlarındaki ileti bildirimlerini almak isteyip istemediğinizi seçin.",
- "user.settings.notifications.commentsNever": "Benim anılmadığım konu yanıtlarındaki iletiler için bildirim gönderilmesin",
- "user.settings.notifications.commentsRoot": "Benim başlattığım konulardaki iletiler için bildirim gönderilsin",
- "user.settings.notifications.desktop": "Masaüstü bildirimleri gönderilsin",
- "user.settings.notifications.desktop.allNoSoundForever": "Tüm işlemler için, ses çalınmadan süresiz görüntülensin",
- "user.settings.notifications.desktop.allNoSoundTimed": "Tüm işlemler için, ses çalınmadan {seconds} saniye görüntülensin",
- "user.settings.notifications.desktop.allSoundForever": "Tüm işlemler için, ses çalınarak süresiz görüntülensin",
- "user.settings.notifications.desktop.allSoundHiddenForever": "Tüm işlemler için süresiz olarak görüntülensin",
- "user.settings.notifications.desktop.allSoundHiddenTimed": "Tüm işlemler için {seconds} saniye görüntülensin",
- "user.settings.notifications.desktop.allSoundTimed": "Tüm işlemler için, ses çalınarak {seconds} saniye görüntülensin",
- "user.settings.notifications.desktop.duration": "Bildirim süresi",
- "user.settings.notifications.desktop.durationInfo": "Firefox ya da Chrome kullanırken masaüstü bildirimlerinin ekranda görüntülenme süresi. Edge ve Safari kullanırken masaüstü bildirimleri en fazla 5 saniye görüntülenir.",
- "user.settings.notifications.desktop.mentionsNoSoundForever": "Anma ve doğrudan iletiler için, ses çalınmadan süresiz görüntülensin",
- "user.settings.notifications.desktop.mentionsNoSoundTimed": "Anma ve doğrudan iletiler için, ses çalınarak {seconds} saniye görüntülensin",
- "user.settings.notifications.desktop.mentionsSoundForever": "Anma ve doğrudan iletiler için, ses çalınarak süresiz görüntülensin",
- "user.settings.notifications.desktop.mentionsSoundHiddenForever": "Anma ve doğrudan iletiler için süresiz olarak görüntülensin",
- "user.settings.notifications.desktop.mentionsSoundHiddenTimed": "Anma ve doğrudan iletiler için {seconds} saniye görüntülensin",
- "user.settings.notifications.desktop.mentionsSoundTimed": "Anma ve doğrudan iletiler için, ses çalınarak {seconds} saniye görüntülensin",
- "user.settings.notifications.desktop.seconds": "{seconds} saniye",
- "user.settings.notifications.desktop.sound": "Bildirim sesi",
- "user.settings.notifications.desktop.title": "Masaüstü Bildirimleri",
- "user.settings.notifications.desktop.unlimited": "Sınırsız",
- "user.settings.notifications.desktopSounds": "Masaüstü bildirimi sesi",
- "user.settings.notifications.email.disabled": "Sistem yöneticisi tarafından devre dışı bırakılmış",
- "user.settings.notifications.email.disabled_long": "E-posta bildirimleri sistem yöneticiniz tarafından devre dışı bırakılmış.",
- "user.settings.notifications.email.everyHour": "Saat başı",
- "user.settings.notifications.email.everyXMinutes": "Her {count, plural, bir {minute} diğer {{count, number} minutes}}",
- "user.settings.notifications.email.immediately": "Hemen",
- "user.settings.notifications.email.never": "Asla",
- "user.settings.notifications.email.send": "E-posta bildirimleri gönderilsin",
- "user.settings.notifications.emailBatchingInfo": "Seçilmiş zaman aralığı içindeki bildirilmler derlenerek tek bir e-posta ile gönderilir.",
- "user.settings.notifications.emailInfo": "{siteName} sitesinde 5 dakikadan uzun süre uzak ya da çevrimdışı olduğunuzda anma ve doğrudan iletiler için e-posta bildirimi gönderilir.",
- "user.settings.notifications.emailNotifications": "E-posta Bildirimleri",
- "user.settings.notifications.header": "Bildirimler",
- "user.settings.notifications.info": "Masaüstü bildirimleri Edge, Firefox, Safari, Chrome ve Mattermost Masaüstü Uygulaması ile kullanılabilir.",
- "user.settings.notifications.mentionsInfo": "Biri sizin kullanıcı adınızı (\"@{username}\") andığında ya da yukarıdaki seçeneklerden biri işaretlendiğinde anmalar gönderilir.",
- "user.settings.notifications.never": "Asla",
- "user.settings.notifications.noWords": "Herhangi bir sözcük ayarlanmamış",
- "user.settings.notifications.off": "Kapalı",
- "user.settings.notifications.on": "Açık",
- "user.settings.notifications.onlyMentions": "Yalnız anma ve doğrudan iletiler",
- "user.settings.notifications.push": "Anında Mobil Bildirimler",
- "user.settings.notifications.push_notification.status": "Anında bildirimlerin tetikleneceği zaman",
- "user.settings.notifications.sensitiveName": "Büyük küçük harfe duyarlı adınız \"{first_name}\"",
- "user.settings.notifications.sensitiveUsername": "Büyük küçük harfe duyarsız adınız \"{username}\"",
- "user.settings.notifications.sensitiveWords": "Diğer büyük küçük harfe duyarsız sözcükler, virgül ile ayırarak yazın:",
- "user.settings.notifications.soundConfig": "Web tarayıcısı ayarlarınızdan bildirim seslerini ayarlayın",
- "user.settings.notifications.sounds_info": "Bildirim sesleri IE11, Safari, Chrome ve Mattermost Masaüstü Uygulaması ile kullanılabilir.",
- "user.settings.notifications.teamWide": "Takım geneli anmalar \"@all\"",
- "user.settings.notifications.title": "Bildirim Ayarları",
- "user.settings.notifications.wordsTrigger": "Anmaları Tetikleyecek Sözcükler",
- "user.settings.push_notification.allActivity": "Tüm işlemler için",
- "user.settings.push_notification.allActivityAway": "Uzakta ya da çevrimdışı iken tüm işlemler için",
- "user.settings.push_notification.allActivityOffline": "Çevrimdışı iken tüm işlemler için",
- "user.settings.push_notification.allActivityOnline": "Çevrimiçi, uzakta ya da çevrimdışı iken tüm işlemler için",
- "user.settings.push_notification.away": "Uzakta ya da çevrimdışı",
- "user.settings.push_notification.disabled": "Sistem yöneticisi tarafından devre dışı bırakılmış",
- "user.settings.push_notification.disabled_long": "Anında mobil aygıt bildirimleri sistem yöneticiniz tarafından devre dışı bırakılmış.",
- "user.settings.push_notification.info": "Bildirim uyarıları Mattermost işlemleri yapıldığında mobil aygıtınıza iletilir.",
- "user.settings.push_notification.off": "Kapalı",
- "user.settings.push_notification.offline": "Çevrimdışı",
- "user.settings.push_notification.online": "Çevrimiçi, uzakta ya da çevrimdışı",
- "user.settings.push_notification.onlyMentions": "Anma ve doğrudan iletiler için",
- "user.settings.push_notification.onlyMentionsAway": "Uzakta ya da çevrimdışı iken anma ve doğrudan iletiler için",
- "user.settings.push_notification.onlyMentionsOffline": "Uzakta ya da çevrimdışı iken anma ve doğrudan iletiler için",
- "user.settings.push_notification.onlyMentionsOnline": "Çevrimiçi, uzakta ya da çevrimdışı iken anma ve doğrudan iletiler için",
- "user.settings.push_notification.send": "Anında mobil bildirimler gönderilsin",
- "user.settings.push_notification.status": "Anında bildirimlerin tetikleneceği zaman",
- "user.settings.push_notification.status_info": "Bildirim uyarıları yalnız çevrimiçi durumunuz yukarıda yaptığınız seçimler ile eşleştiğinde mobil aygıtınıza iletilir.",
- "user.settings.security.active": "Etkin",
- "user.settings.security.close": "Kapat",
- "user.settings.security.currentPassword": "Geçerli Parola",
- "user.settings.security.currentPasswordError": "Lütfen geçerli parolanızı yazın.",
- "user.settings.security.deauthorize": "Yetkisini kaldır",
- "user.settings.security.emailPwd": "E-posta ve Parola",
- "user.settings.security.gitlab": "GitLab",
- "user.settings.security.google": "Google",
- "user.settings.security.inactive": "Devre dışı",
- "user.settings.security.lastUpdated": "Son güncelleme: {date}, {time}",
- "user.settings.security.ldap": "AD/LDAP",
- "user.settings.security.loginGitlab": "Oturum GitLab ile açıldı",
- "user.settings.security.loginGoogle": "Oturum Google Apps ile açıldı",
- "user.settings.security.loginLdap": "Oturum AD/LDAP ile açıldı",
- "user.settings.security.loginOffice365": "Oturum Office 365 ile açıldı",
- "user.settings.security.loginSaml": "Oturum SAML ile açıldı",
- "user.settings.security.logoutActiveSessions": "Etkin Oturumları Görüntüle ve Oturumu Kapat",
- "user.settings.security.method": "Oturum Açma Yöntemi",
- "user.settings.security.newPassword": "Yeni Parola",
- "user.settings.security.noApps": "Herhangi bir OAuth 2.0 uygulamasına izin verilmemiş.",
- "user.settings.security.oauthApps": "OAuth 2.0 Uygulamaları",
- "user.settings.security.oauthAppsDescription": "OAuth 2.0 Uygulamalarını yönetmek için 'Düzenle' üzerine tıklayın",
- "user.settings.security.oauthAppsHelp": "Uygulamalar, verdiğiniz izinlere göre verilerinize sizin adınıza erişebilir.",
- "user.settings.security.office365": "Office 365",
- "user.settings.security.oneSignin": "Aynı anda tek bir oturum açma yöntemi kullanılabilir. Oturum açma yöntemi değiştirildiğinde size değişikliğin yapılıp yapılamadığını bildiren bir e-posta gönderilir.",
- "user.settings.security.password": "Parola",
- "user.settings.security.passwordError": "Parolanız en az {min} en çok {max} uzunluğunda olabilir.",
- "user.settings.security.passwordErrorLowercase": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük harf içermelidir.",
- "user.settings.security.passwordErrorLowercaseNumber": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük harf ile bir rakam içermelidir.",
- "user.settings.security.passwordErrorLowercaseNumberSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük harf, bir rakam ve bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorLowercaseSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük harf ve bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorLowercaseUppercase": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük ile bir büyük harf içermelidir.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük, bir büyük harf ve bir rakam içermelidir.",
- "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük harf, bir büyük harf, bir rakam ve bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir küçük harf, bir büyük harf ve bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorNumber": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir rakam içermelidir.",
- "user.settings.security.passwordErrorNumberSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir rakam ile bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorUppercase": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir büyük harf içermelidir.",
- "user.settings.security.passwordErrorUppercaseNumber": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir büyük harf ile bir rakam içermelidir.",
- "user.settings.security.passwordErrorUppercaseNumberSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir büyük harf, bir rakam ve bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordErrorUppercaseSymbol": "Parolanız {min} ile {max} karakter uzunluğunda olmalı ve en az bir büyük harf ile bir simge (\"~!@#$%^&*()\" gibi) içermelidir.",
- "user.settings.security.passwordGitlabCantUpdate": "Oturum GitLab kullanılarak açıldığından parola güncellenemez.",
- "user.settings.security.passwordGoogleCantUpdate": "Oturum Google Apps kullanılarak açıldığından parola güncellenemez.",
- "user.settings.security.passwordLdapCantUpdate": "Oturum AD/LDAP kullanılarak açıldığından parola güncellenemez.",
- "user.settings.security.passwordMatchError": "Parola ve onayı aynı değil.",
- "user.settings.security.passwordMinLength": "En az uzunluk geçersiz olduğundan önizleme görüntülenemiyor.",
- "user.settings.security.passwordOffice365CantUpdate": "Oturum Office 365 kullanılarak açıldığından parola güncellenemez.",
- "user.settings.security.passwordSamlCantUpdate": "Bu alan oturum açma hizmeti sağlayıcınız tarafından doldurulur. Değiştirmek isterseniz oturum açma hizmeti sağlayıcısı üzerinden yapmalısınız.",
- "user.settings.security.retypePassword": "Yeni Parolayı Yeniden Yazın",
- "user.settings.security.saml": "SAML",
- "user.settings.security.switchEmail": "E-posta ve parola kullanımına geç",
- "user.settings.security.switchGitlab": "GitLab SSO kullanımına geç",
- "user.settings.security.switchGoogle": "Google SSO kullanımına geç",
- "user.settings.security.switchLdap": "AD/LDAP kullanımına geç",
- "user.settings.security.switchOffice365": "Office 365 SSO kullanımına geç",
- "user.settings.security.switchSaml": "SAML SSO kullanımına geç",
- "user.settings.security.title": "Güvenlik Ayarları",
- "user.settings.security.viewHistory": "Erişim Geçmişini Görüntüle",
- "user.settings.tokens.cancel": "İptal",
- "user.settings.tokens.clickToEdit": "Kişisel erişim kodlarınızı yönetmek için 'Düzenle' üzerine tıklayın",
- "user.settings.tokens.confirmCreateButton": "Evet, Oluştur",
- "user.settings.tokens.confirmCreateMessage": "Sistem Yöneticisi yetkileri ile bir kişisel erişim kodu üretiyorsunuz. Bu kodu oluşturmak istediğinize emin misiniz?",
- "user.settings.tokens.confirmCreateTitle": "Sistem Yöneticisi Kişisel Erişim Kodu Oluştur",
- "user.settings.tokens.confirmDeleteButton": "Evet, Sil",
- "user.settings.tokens.confirmDeleteMessage": "Bu kodu kullanan tüm bütünleştirmeler artık Mattermost API üzerine erişemeyecek. Bu işlem geri alınamaz.