forked from Ivasoft/mattermost-mobile
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
93265b3de0 | ||
|
|
0d70372a3c | ||
|
|
72087391dc | ||
|
|
9c89fe2907 | ||
|
|
9684328123 | ||
|
|
c3ef5e6f38 | ||
|
|
e36f63c84d | ||
|
|
ce05b9c98b | ||
|
|
388294a124 | ||
|
|
1a12abfe50 | ||
|
|
0210d6e1eb | ||
|
|
49bcf185e6 | ||
|
|
61ecf7d159 | ||
|
|
ead5f2860f | ||
|
|
09ac903630 | ||
|
|
a471379cb2 | ||
|
|
eaf128b2a0 | ||
|
|
96f5cd2c11 | ||
|
|
6b23c230ed | ||
|
|
63a3e4eb89 |
3
Makefile
3
Makefile
@@ -86,7 +86,7 @@ run-android: | check-device-android start prepare-android-build
|
||||
@echo Running Android app in development
|
||||
@react-native run-android --no-packager
|
||||
|
||||
test: pre-run
|
||||
test: | pre-run check-style
|
||||
@yarn test
|
||||
|
||||
check-style: .yarninstall
|
||||
@@ -122,6 +122,7 @@ post-install:
|
||||
@sed -i'' -e 's|"./locale-data/complete.js": false|"./locale-data/complete.js": "./locale-data/complete.js"|g' node_modules/intl/package.json
|
||||
@sed -i'' -e 's|auto("auto", Configuration.ORIENTATION_UNDEFINED, ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);|auto("auto", Configuration.ORIENTATION_UNDEFINED, ActivityInfo.SCREEN_ORIENTATION_FULL_USER);|g' node_modules/react-native-navigation/android/app/src/main/java/com/reactnativenavigation/params/Orientation.java
|
||||
@cd ./node_modules/react-native-svg/ios && rm -rf PerformanceBezier && git clone https://github.com/adamwulf/PerformanceBezier.git
|
||||
@cd ./node_modules/mattermost-redux && yarn run build
|
||||
|
||||
start-packager:
|
||||
@if [ $(shell ps -e | grep -i "cli.js start" | grep -civ grep) -eq 0 ]; then \
|
||||
|
||||
@@ -95,7 +95,7 @@ android {
|
||||
applicationId "com.mattermost.rnbeta"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 23
|
||||
versionCode 59
|
||||
versionCode 63
|
||||
versionName "1.4.0"
|
||||
multiDexEnabled true
|
||||
ndk {
|
||||
|
||||
@@ -23,14 +23,14 @@ import {
|
||||
getChannelByName,
|
||||
getDirectChannelName,
|
||||
getUserIdFromChannelName,
|
||||
isDirectChannelVisible,
|
||||
isGroupChannelVisible,
|
||||
isDirectChannel,
|
||||
isGroupChannel
|
||||
} from 'mattermost-redux/utils/channel_utils';
|
||||
import {getLastCreateAt} from 'mattermost-redux/utils/post_utils';
|
||||
import {getPreferencesByCategory} from 'mattermost-redux/utils/preference_utils';
|
||||
|
||||
import {isDirectChannelVisible, isGroupChannelVisible} from 'app/utils/channels';
|
||||
|
||||
const MAX_POST_TRIES = 3;
|
||||
|
||||
export function loadChannelsIfNecessary(teamId) {
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
import React, {PureComponent} from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import {
|
||||
InteractionManager,
|
||||
SectionList,
|
||||
Text,
|
||||
TouchableHighlight,
|
||||
@@ -298,18 +299,17 @@ class List extends PureComponent {
|
||||
}, 100);
|
||||
|
||||
updateUnreadIndicators = ({viewableItems}) => {
|
||||
const {unreadChannelIds} = this.props;
|
||||
const firstUnread = unreadChannelIds[0];
|
||||
if (firstUnread) {
|
||||
const isVisible = viewableItems.find((v) => v.item === firstUnread);
|
||||
InteractionManager.runAfterInteractions(() => {
|
||||
const {unreadChannelIds} = this.props;
|
||||
const firstUnread = unreadChannelIds.length && unreadChannelIds[0];
|
||||
if (firstUnread && viewableItems.length) {
|
||||
const isVisible = viewableItems.find((v) => v.item === firstUnread);
|
||||
|
||||
if (isVisible) {
|
||||
return this.emitUnreadIndicatorChange(false);
|
||||
return this.emitUnreadIndicatorChange(!isVisible);
|
||||
}
|
||||
return this.emitUnreadIndicatorChange(true);
|
||||
}
|
||||
|
||||
return this.emitUnreadIndicatorChange(false);
|
||||
return this.emitUnreadIndicatorChange(false);
|
||||
});
|
||||
};
|
||||
|
||||
render() {
|
||||
@@ -333,7 +333,7 @@ class List extends PureComponent {
|
||||
stickySectionHeadersEnabled={false}
|
||||
viewabilityConfig={{
|
||||
viewAreaCoveragePercentThreshold: 3,
|
||||
waitForInteraction: false
|
||||
waitForInteraction: true
|
||||
}}
|
||||
/>
|
||||
<UnreadIndicator
|
||||
|
||||
@@ -306,8 +306,9 @@ class ChannelIntro extends PureComponent {
|
||||
};
|
||||
|
||||
render() {
|
||||
const {isLoadingPosts, theme} = this.props;
|
||||
const {currentChannel, isLoadingPosts, theme} = this.props;
|
||||
const style = getStyleSheet(theme);
|
||||
const channelType = currentChannel.type;
|
||||
|
||||
if (isLoadingPosts) {
|
||||
return (
|
||||
@@ -317,14 +318,23 @@ class ChannelIntro extends PureComponent {
|
||||
);
|
||||
}
|
||||
|
||||
let profiles;
|
||||
if (channelType === General.DM_CHANNEL || channelType === General.GM_CHANNEL) {
|
||||
profiles = (
|
||||
<View>
|
||||
<View style={style.profilesContainer}>
|
||||
{this.buildProfiles()}
|
||||
</View>
|
||||
<View style={style.namesContainer}>
|
||||
{this.buildNames()}
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<View style={style.container}>
|
||||
<View style={style.profilesContainer}>
|
||||
{this.buildProfiles()}
|
||||
</View>
|
||||
<View style={style.namesContainer}>
|
||||
{this.buildNames()}
|
||||
</View>
|
||||
{profiles}
|
||||
<View style={style.contentContainer}>
|
||||
{this.buildContent()}
|
||||
</View>
|
||||
|
||||
@@ -21,13 +21,13 @@ export default class Drawer extends BaseDrawer {
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this.keyboardDidShow);
|
||||
this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this.keyboardDidHide);
|
||||
Keyboard.addListener('keyboardDidShow', this.keyboardDidShow);
|
||||
Keyboard.addListener('keyboardDidHide', this.keyboardDidHide);
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
this.keyboardDidShowListener.remove();
|
||||
this.keyboardDidHideListener.remove();
|
||||
Keyboard.removeListener('keyboardDidShow', this.keyboardDidShow);
|
||||
Keyboard.removeListener('keyboardDidHide', this.keyboardDidHide);
|
||||
}
|
||||
|
||||
getMainHeight = () => '100%';
|
||||
|
||||
@@ -5,6 +5,7 @@ import React, {PureComponent} from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import {
|
||||
Image,
|
||||
ImageBackground,
|
||||
Linking,
|
||||
Platform,
|
||||
StyleSheet,
|
||||
@@ -185,7 +186,7 @@ export default class PostBodyAdditionalContent extends PureComponent {
|
||||
{...this.responder}
|
||||
onPress={this.playYouTubeVideo}
|
||||
>
|
||||
<Image
|
||||
<ImageBackground
|
||||
style={[styles.image, {width, height}]}
|
||||
source={{uri: imgUrl}}
|
||||
resizeMode={'cover'}
|
||||
@@ -197,7 +198,7 @@ export default class PostBodyAdditionalContent extends PureComponent {
|
||||
onPress={this.playYouTubeVideo}
|
||||
/>
|
||||
</TouchableWithoutFeedback>
|
||||
</Image>
|
||||
</ImageBackground>
|
||||
</TouchableWithoutFeedback>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -20,8 +20,7 @@ function mapStateToProps(state, ownProps) {
|
||||
return {
|
||||
theme: ownProps.theme || getTheme(state),
|
||||
status,
|
||||
user,
|
||||
...ownProps
|
||||
user
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -358,6 +358,7 @@ export default class Mattermost {
|
||||
};
|
||||
|
||||
handleReset = () => {
|
||||
this.appStarted = false;
|
||||
this.resetBadgeAndVersion();
|
||||
this.startApp('fade');
|
||||
};
|
||||
@@ -560,6 +561,7 @@ export default class Mattermost {
|
||||
|
||||
const {dispatch, getState} = this.store;
|
||||
await loadConfigAndLicense()(dispatch, getState);
|
||||
this.appStarted = false;
|
||||
this.startApp('fade');
|
||||
};
|
||||
|
||||
@@ -607,6 +609,8 @@ export default class Mattermost {
|
||||
},
|
||||
animationType
|
||||
});
|
||||
|
||||
this.appStarted = true;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ function mapStateToProps(state) {
|
||||
const currentUserId = getCurrentUserId(state);
|
||||
const favoriteChannels = getSortedFavoriteChannelIds(state);
|
||||
const isCurrent = currentChannel.id === state.entities.channels.currentChannelId;
|
||||
const isFavorite = favoriteChannels.indexOf(currentChannel.id) > -1;
|
||||
const isFavorite = favoriteChannels && favoriteChannels.indexOf(currentChannel.id) > -1;
|
||||
const roles = getCurrentUserRoles(state);
|
||||
const canManageUsers = currentChannel.hasOwnProperty('id') ? canManageChannelMembers(state) : false;
|
||||
|
||||
|
||||
@@ -10,9 +10,9 @@ export function messageRetention() {
|
||||
return (next) => (action) => {
|
||||
if (action.type === 'persist/REHYDRATE') {
|
||||
const {app} = action.payload;
|
||||
const {entities} = action.payload;
|
||||
const {entities, views} = action.payload;
|
||||
|
||||
if (!entities) {
|
||||
if (!entities || !views) {
|
||||
return next(action);
|
||||
}
|
||||
|
||||
@@ -36,7 +36,19 @@ export function messageRetention() {
|
||||
function resetStateForNewVersion(action) {
|
||||
const {payload} = action;
|
||||
const lastChannelForTeam = getLastChannelForTeam(payload);
|
||||
const currentUserId = payload.entities.users.currentUserId;
|
||||
let users = {};
|
||||
|
||||
if (payload.entities.users) {
|
||||
const currentUserId = payload.entities.users.currentUserId;
|
||||
if (currentUserId) {
|
||||
users = {
|
||||
currentUserId,
|
||||
profiles: {
|
||||
[currentUserId]: payload.entities.users.profiles[currentUserId]
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
const nextState = {
|
||||
app: {
|
||||
@@ -50,12 +62,7 @@ function resetStateForNewVersion(action) {
|
||||
teams: payload.entities.teams.teams,
|
||||
myMembers: payload.entities.teams.myMembers
|
||||
},
|
||||
users: {
|
||||
currentUserId,
|
||||
profiles: {
|
||||
[currentUserId]: payload.entities.users.profiles[currentUserId]
|
||||
}
|
||||
},
|
||||
users,
|
||||
preferences: payload.entities.preferences,
|
||||
search: {
|
||||
recent: payload.entities.search.recent
|
||||
@@ -102,7 +109,6 @@ function cleanupState(action, keepCurrent = false) {
|
||||
const {payload: resetPayload} = resetStateForNewVersion(action);
|
||||
const {payload} = action;
|
||||
const {currentChannelId} = payload.entities.channels;
|
||||
const {statuses, ...otherUsers} = payload.entities.users; //eslint-disable-line no-unused-vars
|
||||
|
||||
const {lastChannelForTeam} = resetPayload.views.team;
|
||||
const nextEntitites = {
|
||||
@@ -110,6 +116,7 @@ function cleanupState(action, keepCurrent = false) {
|
||||
posts: {},
|
||||
postsInChannel: {},
|
||||
reactions: {},
|
||||
openGraph: payload.entities.posts.openGraph,
|
||||
selectedPostId: payload.entities.posts.selectedPostId,
|
||||
currentFocusedPostId: payload.entities.posts.currentFocusedPostId
|
||||
},
|
||||
@@ -125,7 +132,7 @@ function cleanupState(action, keepCurrent = false) {
|
||||
// we need to check that the channel id is not already included
|
||||
// the reason it can be included is cause at least one of the last channels viewed
|
||||
// in a team can be a DM or GM and the id can be duplicate
|
||||
if (!nextEntitites.posts.postsInChannel[id]) {
|
||||
if (!nextEntitites.posts.postsInChannel[id] && payload.entities.posts.postsInChannel[id]) {
|
||||
let postIds;
|
||||
if (keepCurrent && currentChannelId === id) {
|
||||
postIds = payload.entities.posts.postsInChannel[id];
|
||||
@@ -143,30 +150,45 @@ function cleanupState(action, keepCurrent = false) {
|
||||
|
||||
postIdsToKeep.forEach((postId) => {
|
||||
const post = payload.entities.posts.posts[postId];
|
||||
const skip = keepCurrent && currentChannelId === post.channel_id;
|
||||
|
||||
if (!skip && retentionPeriod && (Date.now() - post.create_at) / (1000 * 3600 * 24) > retentionPeriod) {
|
||||
const postsInChannel = nextEntitites.posts.postsInChannel[post.channel_id];
|
||||
const index = postsInChannel.indexOf(postId);
|
||||
if (index !== -1) {
|
||||
postsInChannel.splice(index, 1);
|
||||
if (post) {
|
||||
const skip = keepCurrent && currentChannelId === post.channel_id;
|
||||
|
||||
if (!skip && retentionPeriod && (Date.now() - post.create_at) / (1000 * 3600 * 24) > retentionPeriod) {
|
||||
const postsInChannel = nextEntitites.posts.postsInChannel[post.channel_id] || [];
|
||||
const index = postsInChannel.indexOf(postId);
|
||||
if (index !== -1) {
|
||||
postsInChannel.splice(index, 1);
|
||||
}
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
nextEntitites.posts.posts[postId] = post;
|
||||
nextEntitites.posts.posts[postId] = post;
|
||||
|
||||
const reaction = payload.entities.posts.reactions[postId];
|
||||
if (reaction) {
|
||||
nextEntitites.posts.reactions[postId] = reaction;
|
||||
}
|
||||
const reaction = payload.entities.posts.reactions[postId];
|
||||
if (reaction) {
|
||||
nextEntitites.posts.reactions[postId] = reaction;
|
||||
}
|
||||
|
||||
const fileIds = payload.entities.files.fileIdsByPostId[postId];
|
||||
if (fileIds) {
|
||||
nextEntitites.files.fileIdsByPostId[postId] = fileIds;
|
||||
fileIds.forEach((fileId) => {
|
||||
nextEntitites.files.files[fileId] = payload.entities.files.files[fileId];
|
||||
});
|
||||
const fileIds = payload.entities.files.fileIdsByPostId[postId];
|
||||
if (fileIds) {
|
||||
nextEntitites.files.fileIdsByPostId[postId] = fileIds;
|
||||
fileIds.forEach((fileId) => {
|
||||
nextEntitites.files.files[fileId] = payload.entities.files.files[fileId];
|
||||
});
|
||||
}
|
||||
} else {
|
||||
// If the post is not in the store we need to remove it from the postsInChannel
|
||||
const channelIds = Object.keys(nextEntitites.posts.postsInChannel);
|
||||
for (let i = 0; i < channelIds.length; i++) {
|
||||
const channelId = channelIds[i];
|
||||
const posts = nextEntitites.posts.postsInChannel[channelId];
|
||||
const index = posts.indexOf(postId);
|
||||
if (index !== -1) {
|
||||
posts.splice(index, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@@ -180,18 +202,18 @@ function cleanupState(action, keepCurrent = false) {
|
||||
preferences: resetPayload.entities.preferences,
|
||||
search: resetPayload.entities.search,
|
||||
teams: resetPayload.entities.teams,
|
||||
users: {
|
||||
...otherUsers
|
||||
}
|
||||
users: payload.entities.users
|
||||
},
|
||||
views: {
|
||||
...resetPayload.views
|
||||
...resetPayload.views,
|
||||
channel: {
|
||||
...resetPayload.views.channel,
|
||||
...payload.views.channel
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
if (keepCurrent) {
|
||||
nextState.errors = payload.errors;
|
||||
}
|
||||
nextState.errors = payload.errors;
|
||||
|
||||
return {
|
||||
type: 'persist/REHYDRATE',
|
||||
|
||||
16
app/utils/channels.js
Normal file
16
app/utils/channels.js
Normal file
@@ -0,0 +1,16 @@
|
||||
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import {Preferences} from 'mattermost-redux/constants';
|
||||
import {getUserIdFromChannelName} from 'mattermost-redux/utils/channel_utils';
|
||||
|
||||
export function isDirectChannelVisible(userId, myPreferences, channel) {
|
||||
const channelId = getUserIdFromChannelName(userId, channel.name);
|
||||
const dm = myPreferences[`${Preferences.CATEGORY_DIRECT_CHANNEL_SHOW}--${channelId}`];
|
||||
return dm && dm.value === 'true';
|
||||
}
|
||||
|
||||
export function isGroupChannelVisible(myPreferences, channel) {
|
||||
const gm = myPreferences[`${Preferences.CATEGORY_GROUP_CHANNEL_SHOW}--${channel.id}`];
|
||||
return gm && gm.value === 'true';
|
||||
}
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Serverprotokoll",
|
||||
"admin.manage_roles.additionalRoles": "Weitere Berechtigungen für das Konto auswählen. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Mehr über Rollen und Berechtigungen lesen</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Diesem Konto erlauben, <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">persönliche Zugriffs-Token</a> zu generieren.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "Abbrechen",
|
||||
"admin.manage_roles.manageRolesTitle": "Rollen verwalten",
|
||||
"admin.manage_roles.postAllPublicRole": "Zugriff zum Senden in alle öffentlichen Mattermost-Kanäle.",
|
||||
@@ -651,7 +652,7 @@
|
||||
"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 <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">Interaktion mit diesem Mattermost Server</a> verwendet werden. Lernen Sie mehr über <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">Benutzer-Zugriffs-Token</a>.",
|
||||
"admin.manage_tokens.userAccessTokensDescription": "Persönliche Zugriffs-Token funktionieren ähnlich wie Sitzungs-Token und können von Integrationen zur <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">Interaktion mit diesem Mattermost-Server</a> verwendet werden. Lernen Sie mehr über <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">Benutzer-Zugriffs-Token</a>.",
|
||||
"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 <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>Dokumentation</a> um mehr über die Konfiguration von Performanceüberwachung für Mattermost zu erfahren.",
|
||||
"admin.metrics.enableTitle": "Performance Monitoring aktivieren:",
|
||||
@@ -903,12 +904,12 @@
|
||||
"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.tlsCertFile": "TLS-Zertifikatsdatei:",
|
||||
"admin.service.tlsCertFileDescription": "Das zu verwendende Zertifikat.",
|
||||
"admin.service.tlsKeyFile": "TLS Schlüsseldatei:",
|
||||
"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.useLetsEncryptDescription": "Aktiviere automatischen Abruf von Zertifikaten über Let's Encrypt. Das Zertifikat wird abgerufen, wenn ein Client versucht von einer neuen Domain zuzugreifen. Dies funktioniert mit mehreren Domains.",
|
||||
"admin.service.userAccessTokensDescLabel": "Name: ",
|
||||
"admin.service.userAccessTokensDescription": "Wenn wahr, können Benutzer <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">persönliche Zugriffs-Token</a> für Integrationen in <strong>Kontoeinstellungen > Sicherheit</strong> erstellen. Sie können zur Authentifizierung gegenüber der API verwendet werden und geben vollen Zugriff auf das Konto.<br/><br/>Um zu verwalten, wer persönliche Zugriffs-Token erstellen kann, gehen Sie zur Seite <strong>Systemkonsole > Benutzer</strong>.",
|
||||
"admin.service.userAccessTokensIdLabel": "Token-ID: ",
|
||||
@@ -918,7 +919,7 @@
|
||||
"admin.service.webhooksDescription": "Wenn wahr, werden eingehende Webhooks erlaubt. Um Phishing-Attacken vorzubeugen werden alle Posts von Webhooks mit dem BOT-Tag versehen. <a href='http://docs.mattermost.com/developer/webhooks-incoming.html' target='_blank'>Dokumentation</a> 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.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",
|
||||
@@ -975,7 +976,7 @@
|
||||
"admin.sidebar.support": "Rechtsabteilung und Support",
|
||||
"admin.sidebar.users": "Benutzer",
|
||||
"admin.sidebar.usersAndTeams": "Benutzer und Teams",
|
||||
"admin.sidebar.view_statistics": "System Statistiken",
|
||||
"admin.sidebar.view_statistics": "Systemstatistiken",
|
||||
"admin.sidebar.webrtc": "WebRTC (Beta)",
|
||||
"admin.sidebarHeader.systemConsole": "Systemkonsole",
|
||||
"admin.sql.dataSource": "Datenquelle:",
|
||||
@@ -1029,8 +1030,8 @@
|
||||
"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.enableConfirmNotificationsToChannelDescription": "When true, users will be prompted to confirm when posting @channel and @all in channels with over five members. When false, no confirmation is required.",
|
||||
"admin.team.enableConfirmNotificationsToChannelTitle": "Show @channel and @all confirmation dialog: ",
|
||||
"admin.team.enableConfirmNotificationsToChannelDescription": "Wenn wahr, müssen Benutzer bestätigen, wenn sie @channel und @all in Kanälen mit mehr als fünf Mitgliedern verwenden. Wenn falsch, ist keine Bestätigung erforderlich.",
|
||||
"admin.team.enableConfirmNotificationsToChannelTitle": "Zeige den @channel- und @all-Bestätigungsdialog: ",
|
||||
"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:",
|
||||
@@ -1050,7 +1051,7 @@
|
||||
"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_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",
|
||||
@@ -1122,13 +1123,13 @@
|
||||
"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.webserverModeDisabledDescription": "Der Mattermost-Server wird keine statischen Dateien bereitstellen.",
|
||||
"admin.webserverModeGzip": "gzip",
|
||||
"admin.webserverModeGzipDescription": "Der Mattermostserver wird statische Dateien gzip komprimiert bereitstellen.",
|
||||
"admin.webserverModeGzipDescription": "Der Mattermost-Server 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.",
|
||||
"admin.webserverModeUncompressedDescription": "Der Mattermost-Server 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",
|
||||
@@ -1140,7 +1141,7 @@
|
||||
"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 <a href='https://docs.mattermost.com/administration/statistics.html' target='_blank'>Dokumentation</a>",
|
||||
"analytics.system.textPosts": "Nur-Text Beiträge",
|
||||
"analytics.system.title": "System Statistiken",
|
||||
"analytics.system.title": "Systemstatistiken",
|
||||
"analytics.system.totalChannels": "Kanäle Gesamt",
|
||||
"analytics.system.totalCommands": "Befehle Gesamt",
|
||||
"analytics.system.totalFilePosts": "Beiträge mit Dateien",
|
||||
@@ -1246,11 +1247,11 @@
|
||||
"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.endWithLetter": "Die URL muss mit einem Buchstaben oder einer Zahl 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.startWithLetter": "Die URL muss mit einem Buchstaben oder einer Zahl beginnen.",
|
||||
"change_url.urlLabel": "Kanal-URL",
|
||||
"channelHeader.addToFavorites": "Zu Favoriten hinzufügen",
|
||||
"channelHeader.removeFromFavorites": "Aus Favoriten entfernen",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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}}.",
|
||||
"discard_changes_modal.leave": "Ja, verwerfen",
|
||||
"discard_changes_modal.message": "Sie haben nicht gespeicherte Änderungen, möchten Sie diese wirklich verwerfen?",
|
||||
"discard_changes_modal.title": "Änderungen verwerfen?",
|
||||
"edit_channel_header.editHeader": "Kanalüberschrift bearbeiten...",
|
||||
"edit_channel_header.previewHeader": "Überschrift bearbeiten",
|
||||
"edit_channel_header_modal.cancel": "Abbrechen",
|
||||
@@ -1638,7 +1642,7 @@
|
||||
"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.ordered": "Erstellen Sie eine sortiere Liste, indem Sie stattdessen Zahlen 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:",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"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?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Privater Kanal",
|
||||
"mobile.channel_list.publicChannel": "Öffentlicher Kanal",
|
||||
"mobile.channel_list.unreads": "UNGELESENE",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Server Version: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Server Version: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Aktualisieren",
|
||||
"mobile.components.channels_list_view.yourChannels": "Ihre Kanäle:",
|
||||
"mobile.components.error_list.dismiss_all": "Alle verwerfen",
|
||||
"mobile.components.select_server_view.continue": "Weiter",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Mehr",
|
||||
"mobile.file_upload.video": "Videobibliothek",
|
||||
"mobile.help.title": "Hilfe",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "Bild speichern",
|
||||
"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.",
|
||||
@@ -1961,8 +1990,8 @@
|
||||
"mobile.notification_settings.mentions_replies": "Erwähnungen und Antworten",
|
||||
"mobile.notification_settings.mobile": "Mobil",
|
||||
"mobile.notification_settings.mobile_title": "Mobile Push-Nachrichten",
|
||||
"mobile.notification_settings.modal_cancel": "CANCEL",
|
||||
"mobile.notification_settings.modal_save": "SAVE",
|
||||
"mobile.notification_settings.modal_cancel": "ABBRECHEN",
|
||||
"mobile.notification_settings.modal_save": "SPEICHERN",
|
||||
"mobile.notification_settings.save_failed_description": "Die Benachrichtigungseinstellungen konnten durch ein Verbindungsproblem nicht gespeichert werden, bitte erneut versuchen.",
|
||||
"mobile.notification_settings.save_failed_title": "Verbindungsproblem",
|
||||
"mobile.notification_settings_mentions.keywords": "Stichwörter",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "Teamauswahl",
|
||||
"mobile.suggestion.members": "Mitglieder",
|
||||
"modal.manaul_status.ask": "Nicht wieder nachfragen",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "Suchen...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "Sie haben bisher keine Nachrichten markiert.",
|
||||
@@ -2466,8 +2494,8 @@
|
||||
"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_oauth_app.confirm": "OAuth-2.0-Applikation hinzufügen",
|
||||
"update_oauth_app.question": "Ihre Änderungen könnten einen existierenden Slash-Befehl außer Kraft setzen. Sind Sie sich sicher, dass Sie ihn aktualisieren möchten?",
|
||||
"update_oauth_app.confirm": "OAuth-2.0-Applikation bearbeiten",
|
||||
"update_oauth_app.question": "Ihre Änderungen könnten die existierende OAut-2.0.-Anwendung zerstören. Sind Sie sich sicher, dass Sie aktualisieren möchten?",
|
||||
"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",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token-ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "Keine Benutzer-Zugriffs-Token.",
|
||||
"user_list.notFound": "Keine Benutzer gefunden",
|
||||
"user_profile.account.editSettings": "Kontoeinstellungen",
|
||||
"user_profile.send.dm": "Nachricht versenden",
|
||||
"user_profile.webrtc.call": "Videoanruf starten",
|
||||
"user_profile.webrtc.offline": "Der Benutzer ist offline",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Server Logs",
|
||||
"admin.manage_roles.additionalRoles": "Select additional permissions for the account. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Read more about roles and permissions</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Allow this account to generate <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "Cancel",
|
||||
"admin.manage_roles.manageRolesTitle": "Manage Roles",
|
||||
"admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
|
||||
@@ -651,7 +652,7 @@
|
||||
"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 <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Tokens are disabled if the user is deactivated. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>documentation</a> to learn more about configuring performance monitoring for Mattermost.",
|
||||
"admin.metrics.enableTitle": "Enable Performance Monitoring:",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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.",
|
||||
"discard_changes_modal.leave": "Yes, Discard",
|
||||
"discard_changes_modal.message": "You have unsaved changes, are you sure you want to discard them?",
|
||||
"discard_changes_modal.title": "Discard Changes?",
|
||||
"edit_channel_header.editHeader": "Edit the Channel Header...",
|
||||
"edit_channel_header.previewHeader": "Edit header",
|
||||
"edit_channel_header_modal.cancel": "Cancel",
|
||||
@@ -1880,14 +1884,14 @@
|
||||
"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.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"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}?",
|
||||
@@ -1914,17 +1918,17 @@
|
||||
"mobile.channel_list.publicChannel": "Public Channel",
|
||||
"mobile.channel_list.unreads": "UNREADS",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Latest Version: {version}",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Your Version: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Update",
|
||||
"mobile.components.channels_list_view.yourChannels": "Your channels:",
|
||||
"mobile.components.error_list.dismiss_all": "Dismiss All",
|
||||
@@ -1955,8 +1959,8 @@
|
||||
"mobile.file_upload.more": "More",
|
||||
"mobile.file_upload.video": "Video Library",
|
||||
"mobile.help.title": "Help",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2059,10 +2063,10 @@
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "Team Selection",
|
||||
"mobile.suggestion.members": "Members",
|
||||
"modal.manaul_status.ask": "Do not ask me again",
|
||||
@@ -2253,8 +2257,6 @@
|
||||
"search_results.searching": "Searching...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "You haven't flagged any messages yet.",
|
||||
@@ -2806,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"user_list.notFound": "No users found",
|
||||
"user_profile.account.editSettings": "Edit Account Settings",
|
||||
"user_profile.send.dm": "Send Message",
|
||||
"user_profile.webrtc.call": "Start Video Call",
|
||||
"user_profile.webrtc.offline": "The user is offline",
|
||||
|
||||
@@ -468,9 +468,9 @@
|
||||
"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.siteUrl": "GitLab Site URL: ",
|
||||
"admin.gitlab.siteUrlDescription": "Enter the URL of your GitLab instance, e.g. https://example.com:3000. If your GitLab instance is not set up with SSL, start the URL with http:// instead of https://.",
|
||||
"admin.gitlab.siteUrlExample": "E.g.: https://",
|
||||
"admin.gitlab.siteUrl": "URL del sitio de GitLab: ",
|
||||
"admin.gitlab.siteUrlDescription": "Introduce la URL de su instance de GitLab, por ejemplo, https://example.com:3000. Si su instancia de GitLab no está configurada con SSL, el inicio de la URL debe ser con http:// en lugar de https://.",
|
||||
"admin.gitlab.siteUrlExample": "Ej.: https://",
|
||||
"admin.gitlab.tokenTitle": "Url para obteción de Token:",
|
||||
"admin.gitlab.userTitle": "URL para obtener datos de usuario:",
|
||||
"admin.google.EnableHtmlDesc": "<ol><li><a target='_blank' href='https://accounts.google.com/login'>Inicia sesión</a> con tu cuenta de Google.</li><li>Dirigete a <a target='_blank' href='https://console.developers.google.com'>https://console.developers.google.com</a>, haz clic en <strong>Credenciales</strong> en la barra lateral izquierda e ingresa \"Mattermost - el-nombre-de-tu-empresa\" como el <strong>Nombre del Proyecto</strong>, luego haz clic en <strong>Crear</strong>.</li><li>Haz clic en el encabezado de <strong>Pantalla de autorización de OAuth</strong> e ingresa \"Mattermost\" como el <strong>Nombre de producto mostrado a los usuarios</strong>, luego haz clic en <strong>Guardar</strong>.</li><li>En el encabezado de <strong>Credenciales</strong>, haz clic en <strong>Crear credenciales</strong>, escoge <strong>ID de cliente de OAuth</strong> y selecciona <strong>Web</strong>.</li><li>En <strong>Restricciones</strong> y <strong>URIs de redireccionamiento autorizados</strong> ingresa <strong>tu-url-de-mattermost/signup/google/complete</strong> (ejemplo: http://localhost:8065/signup/google/complete). Haz clic en <strong>Crear</strong>.</li><li>Pega el <strong>ID de Cliente</strong> y el <strong>Secreto de Cliente</strong> en los campos que se encuentran en la parte inferior, luego haz clic en <strong>Guardar</strong>.</li><li>Finalmente, dirigete a <a target='_blank' href='https://console.developers.google.com/apis/api/plus/overview'>Google+ API</a> y haz clic en <strong>Habilitar</strong>. Puede que esta acción tome unos minutos en propagarse por los sistemas de Google.</li></ol>",
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Servidor de registros",
|
||||
"admin.manage_roles.additionalRoles": "Selecciona permisos adicionales para la cuenta. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Conoce más acerca de roles y permisos</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Permitir que esta cuenta genere <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">tokens de acceso personales</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"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.",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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}}.",
|
||||
"discard_changes_modal.leave": "Sí, Descartar",
|
||||
"discard_changes_modal.message": "Tienes cambios sin guardar, ¿Estás seguro que los quieres descartar?",
|
||||
"discard_changes_modal.title": "¿Descartar Cambios?",
|
||||
"edit_channel_header.editHeader": "Editar el Encabezado del Canal...",
|
||||
"edit_channel_header.previewHeader": "Editar Encabezado",
|
||||
"edit_channel_header_modal.cancel": "Cancelar",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licenciado a: {company}",
|
||||
"mobile.about.powered_by": "{site} es impulsado por Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "Para tomar fotos y videos con la cámara, por favor, cambia la configuración de permisos.",
|
||||
"mobile.android.camera_permission_denied_title": "Acceso a la cámara es necesario",
|
||||
"mobile.android.permission_denied_dismiss": "Cerrar",
|
||||
"mobile.android.permission_denied_retry": "Establecer permisos",
|
||||
"mobile.android.photos_permission_denied_description": "Para cargar imágenes desde tu biblioteca, por favor, cambia la configuración de permisos.",
|
||||
"mobile.android.photos_permission_denied_title": "Acceso a la biblioteca de fotos es necesario",
|
||||
"mobile.android.videos_permission_denied_description": "Para subir los vídeos de tu biblioteca, por favor, cambia la configuración de permisos.",
|
||||
"mobile.android.videos_permission_denied_title": "Acceso a la biblioteca de vídeos es necesario",
|
||||
"mobile.channel_drawer.search": "Saltar a...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "¿Seguro quieres abandonar el {term} {name}?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "¿Seguro quieres abandonar el {term} {name}?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Canal Privado",
|
||||
"mobile.channel_list.publicChannel": "Canal Público",
|
||||
"mobile.channel_list.unreads": "SIN LEER",
|
||||
"mobile.client_upgrade": "Actualizar App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "Una nueva versión está disponible para su descarga.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Actualización Disponible",
|
||||
"mobile.client_upgrade.close": "Actualizar más tarde",
|
||||
"mobile.client_upgrade.current_version": "Última Versión: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "Se ha producido un error en la descarga de la nueva versión.",
|
||||
"mobile.client_upgrade.download_error.title": "No se puede Instalar la Actualización",
|
||||
"mobile.client_upgrade.latest_version": "Versión Actual: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Por favor actualiza la aplicación para continuar.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Actualización Necesaria",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "Ya tienes la última versión.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Tu Aplicación es la más reciente",
|
||||
"mobile.client_upgrade.upgrade": "Actualizar",
|
||||
"mobile.components.channels_list_view.yourChannels": "Tus canales:",
|
||||
"mobile.components.error_list.dismiss_all": "Descartar todo",
|
||||
"mobile.components.select_server_view.continue": "Continuar",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Más",
|
||||
"mobile.file_upload.video": "Librería de Videos",
|
||||
"mobile.help.title": "Ayuda",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Comprobar actualizaciones",
|
||||
"mobile.settings.team_selection": "Seleccionar Equipo",
|
||||
"mobile.suggestion.members": "Miembros",
|
||||
"modal.manaul_status.ask": "No preguntarme de nuevo",
|
||||
@@ -2222,15 +2252,13 @@
|
||||
"search_item.direct": "Mensajes Directos (con {username})",
|
||||
"search_item.jump": "Ir ",
|
||||
"search_results.noResults": "No se encontraron resultados. ¿Inténtalo de nuevo?",
|
||||
"search_results.noResults.partialPhraseSuggestion": "If you're searching a partial phrase (ex. searching \"rea\", looking for \"reach\" or \"reaction\"), append a * to your search term.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Two letter searches and common words like \"this\", \"a\" and \"is\" won't appear in search results due to excessive results returned.",
|
||||
"search_results.noResults.partialPhraseSuggestion": "Si estás buscando una parte de la frase (ej. buscar \"alc\", mientras se quiere encontrar \"alcanzar\" o \"alcantara\"), anexa un * en el término de búsqueda.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Las búsquedas de palabras de dos letras y palabras comunes como \"this\", \"a\" y \"is\" no aparecerá en los resultados de búsqueda debido a la excesiva cantidad de resultados devueltos.",
|
||||
"search_results.searching": "Buscando…",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usage.dataRetention": "Sólo los mensajes publicados en los últimos {days} días son retornados. Póngase en contacto con su Administrador del Sistema para obtener más detalles.",
|
||||
"search_results.usage.fromInSuggestion": "Utiliza {fromUser} para encontrar mensajes de usuarios específicos y {inChannel} para encontrar mensajes en canales específicos",
|
||||
"search_results.usage.phrasesSuggestion": "Utiliza {quotationMarks} para realizar búsquedas de frases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"comillas\"",
|
||||
"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.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"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.account.editSettings": "Editar Configuración de la Cuenta",
|
||||
"user_profile.send.dm": "Enviar Mensaje",
|
||||
"user_profile.webrtc.call": "Iniciar llamada de vídeo",
|
||||
"user_profile.webrtc.offline": "El usuario está desconectado",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Journaux du serveur",
|
||||
"admin.manage_roles.additionalRoles": "Sélectionner des autorisations supplémentaires pour le compte. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">En savoir plus sur les rôles et autorisations</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Autoriser ce compte à générer <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">des jetons d'accès personnel</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"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.",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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}}.",
|
||||
"discard_changes_modal.leave": "Oui, abandonner",
|
||||
"discard_changes_modal.message": "Certaines modifications ne sont pas sauvegardées, voulez-vous vraiment abandonner ?",
|
||||
"discard_changes_modal.title": "Abandonner les modifications ?",
|
||||
"edit_channel_header.editHeader": "Modifier l'entête du canal...",
|
||||
"edit_channel_header.previewHeader": "Modifier l'entête",
|
||||
"edit_channel_header_modal.cancel": "Annuler",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "Voulez-vous vraiment supprimer le {term} {name} ?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "Voulez-vous vraiment quitter le {term} {name} ?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Canal privé",
|
||||
"mobile.channel_list.publicChannel": "Canal public",
|
||||
"mobile.channel_list.unreads": "NON LUS",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Version du serveur : {version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Version du serveur : {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Mettre à jour",
|
||||
"mobile.components.channels_list_view.yourChannels": "Vos canaux :",
|
||||
"mobile.components.error_list.dismiss_all": "Annuler tout",
|
||||
"mobile.components.select_server_view.continue": "Continuer",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Plus…",
|
||||
"mobile.file_upload.video": "Bibliothèque vidéo",
|
||||
"mobile.help.title": "Aide",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "Sélection d'équipe",
|
||||
"mobile.suggestion.members": "Membres",
|
||||
"modal.manaul_status.ask": "Ne plus me demander",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "Recherche en cours…",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "Vous n'avez pas encore de messages marqués d'un indicateur.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"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.account.editSettings": "Paramètres du compte",
|
||||
"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",
|
||||
|
||||
@@ -234,7 +234,7 @@
|
||||
"admin.customization.enableCustomEmojiTitle": "Abilita Emoji personalizzati:",
|
||||
"admin.customization.enableEmojiPickerDesc": "Il selettore delle emoji consente agli utenti di selezionare un emoji e utilizzarla come reazione o per aggiungerla a un messaggio. Attivare il selettore delle emoji con un elevato numero di emoji personalizzate può rallentare la velocità del sistema.",
|
||||
"admin.customization.enableEmojiPickerTitle": "Attiva il selettore delle emoji:",
|
||||
"admin.customization.enableLinkPreviewsDesc": "Display a preview of website content below messages, when available. Users can disable these previews from Account Settings > Display > Website Link Previews.",
|
||||
"admin.customization.enableLinkPreviewsDesc": "Visualizza l'anteprima nel sito web sotto i messaggi, quando disponibile. Gli utenti possono disabilitare le anteprima da Impostazioni Account > Aspetto > Anteprima siti web.",
|
||||
"admin.customization.enableLinkPreviewsTitle": "Abilita anteprime collegamenti:",
|
||||
"admin.customization.iosAppDownloadLinkDesc": "Aggiungere un collegamento per scaricare l'app iOS. Gli utenti che accedano al sito da seb browser mobile verranno sollecitati con l'apertura di una pagina a scaricare l'app. Lasciare il campo in bianco per evitare la comparsa della pagina.",
|
||||
"admin.customization.iosAppDownloadLinkTitle": "Collegamento per scaricare l'app iOS:",
|
||||
@@ -468,9 +468,9 @@
|
||||
"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.siteUrl": "GitLab Site URL: ",
|
||||
"admin.gitlab.siteUrlDescription": "Enter the URL of your GitLab instance, e.g. https://example.com:3000. If your GitLab instance is not set up with SSL, start the URL with http:// instead of https://.",
|
||||
"admin.gitlab.siteUrlExample": "E.g.: https://",
|
||||
"admin.gitlab.siteUrl": "URL sito GitLab: ",
|
||||
"admin.gitlab.siteUrlDescription": "Inserire l'URL della tua instanza GitLab, es. https://esempio.com:3000. Se l'istanza GitLab non è impostata con SSL, iniziare l'URL con http:// invece di https://.",
|
||||
"admin.gitlab.siteUrlExample": "Es.: https://",
|
||||
"admin.gitlab.tokenTitle": "Endpoint Token:",
|
||||
"admin.gitlab.userTitle": "Endpoint API utente:",
|
||||
"admin.google.EnableHtmlDesc": "<ol><li><a target='_blank' href='https://accounts.google.com/login'>Accedi</a> al tuo account Google.</li><li> Vai a <a target='_blank' href='https://console.developers.google.com'>https://console.developers.google.com</a>, clicca su <strong>Credenziali</strong> nella barra laterale a sinistra ed immetti \"Mattermost - nome-tua-azienda\" come <strong>Nome Progetto</strong>, in seguito clicca su <strong>Crea</strong>.</li><li>Clicca sulla <strong>scermata di consenso OAuth</strong> ed immetti \"Mattermost\" come <strong>Nome prodotto mostrato agli utenti</strong>, successivamente clicca su <strong>Salva</strong>.</li><li>Sotto l'intestazione <strong>Credenziali</strong>, clicca <strong>Crea credenziali</strong>, scegli <strong>ID client OAuth</strong>e seleziona <strong>Applicazione Web</strong>.</li><li>Sotto <strong>Restrizioni</strong> e <strong>Redirect URI Autorizzati</strong> immettere <strong>tuo-url-mattermost/signup/google/complete</strong> (esempio: http://localhost:8065/signup/google/complete). Clicca <strong>Crea</strong>.</li><li>Incolla <strong>ID Client</strong> e <strong>Segreto Client</strong> nei campi sottostanti, e poi clicca su <strong>Salva</strong>.</li><li>Infine, visita <a target='_blank' href='https://console.developers.google.com/apis/api/plus/overview'>Google+ API</a> e clicca <strong>Abilita</strong>. Potrebbe essere necessario qualche minuto affinchè le modifiche vengano propagate all'interno dei sistemi di Google.</li></ol>",
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Log del Server",
|
||||
"admin.manage_roles.additionalRoles": "Seleziona permessi addizionali per l'account. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Scopri di più su ruoli e permessi</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Permetti a questo account di generare <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">token di accesso</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "Annulla",
|
||||
"admin.manage_roles.manageRolesTitle": "Gestisci ruoli",
|
||||
"admin.manage_roles.postAllPublicRole": "Accede alle pubblicazione di tutti i canali pubblici.",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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}}.",
|
||||
"discard_changes_modal.leave": "Si, Scarta",
|
||||
"discard_changes_modal.message": "Hai dei cambiamenti non salvati, sei sicuro di volerli cancelllare?",
|
||||
"discard_changes_modal.title": "Scartare le modifiche?",
|
||||
"edit_channel_header.editHeader": "Modifica il titolo del canale...",
|
||||
"edit_channel_header.previewHeader": "Modifica titolo",
|
||||
"edit_channel_header_modal.cancel": "Cancella",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licenza di: {company}",
|
||||
"mobile.about.powered_by": "{site} è offerto da Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "Per scattare foto e girare video con la videocamera, modificare i permessi nelle impostazioni.",
|
||||
"mobile.android.camera_permission_denied_title": "L'accesso alla videocamera è richiesto",
|
||||
"mobile.android.permission_denied_dismiss": "Annulla",
|
||||
"mobile.android.permission_denied_retry": "Imposta permessi",
|
||||
"mobile.android.photos_permission_denied_description": "Per caricare immagini dalla libreria modificare i permessi nelle impostazioni.",
|
||||
"mobile.android.photos_permission_denied_title": "L'accesso alla libreria delle foto è richiesto",
|
||||
"mobile.android.videos_permission_denied_description": "Per caricare video dalla libreria modificare i permessi nelle impostazioni.",
|
||||
"mobile.android.videos_permission_denied_title": "L'accesso alla libreria dei video è richiesto",
|
||||
"mobile.channel_drawer.search": "Vai a...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "Sei sicuro di voler eliminare questo {term} {name}?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "Sei sicuro di voler tralasciare questo {term} {name}?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Canale Privato",
|
||||
"mobile.channel_list.publicChannel": "Canale Pubblico",
|
||||
"mobile.channel_list.unreads": "NON LETTI",
|
||||
"mobile.client_upgrade": "Aggiorna app",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "Una nuova versione è disponibile per il download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Aggiornamento disponibile",
|
||||
"mobile.client_upgrade.close": "Aggiorna più tardi",
|
||||
"mobile.client_upgrade.current_version": "Ultima Versione: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "Si è verificato un errore durante l'aggiornamento.",
|
||||
"mobile.client_upgrade.download_error.title": "Impossibile installare l'aggiornamento",
|
||||
"mobile.client_upgrade.latest_version": "Versione Installata: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Aggiornare l'app per proseguire.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Aggiornamento Richiesto",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "Si dispone già dell'ultima versione disponibile.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "L'App è aggiornata",
|
||||
"mobile.client_upgrade.upgrade": "Aggiorna",
|
||||
"mobile.components.channels_list_view.yourChannels": "I tuoi canali:",
|
||||
"mobile.components.error_list.dismiss_all": "Ignora Tutti",
|
||||
"mobile.components.select_server_view.continue": "Continua",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Più",
|
||||
"mobile.file_upload.video": "Libreria video",
|
||||
"mobile.help.title": "Aiuto",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Controlla aggiornamenti",
|
||||
"mobile.settings.team_selection": "Seleziona gruppo",
|
||||
"mobile.suggestion.members": "Membri",
|
||||
"modal.manaul_status.ask": "Non chiedere più in futuro",
|
||||
@@ -2222,15 +2252,13 @@
|
||||
"search_item.direct": "Messaggio diretto (with {username})",
|
||||
"search_item.jump": "Salta",
|
||||
"search_results.noResults": "Nessun risultato trovato. Ritentare?",
|
||||
"search_results.noResults.partialPhraseSuggestion": "If you're searching a partial phrase (ex. searching \"rea\", looking for \"reach\" or \"reaction\"), append a * to your search term.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Two letter searches and common words like \"this\", \"a\" and \"is\" won't appear in search results due to excessive results returned.",
|
||||
"search_results.noResults.partialPhraseSuggestion": "Se stai cercando una parte di frase (es. cercare \"rea\", per trovare \"reazione\" or \"reagente\"), aggiungi un * al termine di ricerca.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Ricerche con due lettere o con parole comuni come \"questo\", \"a\" e \"è\" non forniranno risultati a causa dell'elevato numero di corrispondenze.",
|
||||
"search_results.searching": "Ricerca...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usage.dataRetention": "Solo i messaggi pubblicato negli ultimi {days} giorni saranno tornati. Contattare l'Amministratore di Sistema per ulteriori informazioni.",
|
||||
"search_results.usage.fromInSuggestion": "Usare {fromUser} per cercare le pubblicazioni di un utente specifico e {inChannel} per cercare in specifici canali",
|
||||
"search_results.usage.phrasesSuggestion": "Usare {quotationMarks} per cercare intere frasi",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"doppi apici\"",
|
||||
"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.",
|
||||
@@ -2523,10 +2551,10 @@
|
||||
"user.settings.display.fixedWidthCentered": "Larghezza fissa, centrato",
|
||||
"user.settings.display.fullScreen": "A tutta larghezza",
|
||||
"user.settings.display.language": "Lingua",
|
||||
"user.settings.display.linkPreviewDesc": "When available, the first web link in a message will show a preview of the website content below the message.",
|
||||
"user.settings.display.linkPreviewDisplay": "Website Link Previews",
|
||||
"user.settings.display.linkPreviewOff": "Spento",
|
||||
"user.settings.display.linkPreviewOn": "Acceso",
|
||||
"user.settings.display.linkPreviewDesc": "Se disponibile, il primo collegamento web in un messaggio visualizzerà un'anteprima del contenuto del sito sotto il messaggio.",
|
||||
"user.settings.display.linkPreviewDisplay": "Anteprima siti web",
|
||||
"user.settings.display.linkPreviewOff": "Disattivato",
|
||||
"user.settings.display.linkPreviewOn": "Attivato",
|
||||
"user.settings.display.messageDisplayClean": "Standard",
|
||||
"user.settings.display.messageDisplayCleanDes": "Facile da leggere e scandire.",
|
||||
"user.settings.display.messageDisplayCompact": "Compatto",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "Nessun token di accesso personale.",
|
||||
"user_list.notFound": "Nessun utente trovato",
|
||||
"user_profile.account.editSettings": "Impostazioni Account",
|
||||
"user_profile.send.dm": "Invia messaggio",
|
||||
"user_profile.webrtc.call": "Avvia videochiamata",
|
||||
"user_profile.webrtc.offline": "L'utente è offline",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"activity_log.moreInfo": "詳細情報",
|
||||
"activity_log.os": "OS: {os}",
|
||||
"activity_log.sessionId": "セッションID: {id}",
|
||||
"activity_log.sessionsDescription": "セッションは新しいブラウザーまたはデバイスからログインからログインした時に作成されます。Mattermostはシステム管理者が指定した期間内であればログインし直すことなく使用できます。すぐにログアウトしたい場合には、「ログアウト」ボタンを使用することで、セッションを終了させることができます。",
|
||||
"activity_log.sessionsDescription": "セッションはデバイスの新しいブラウザーからログインした時に作成されます。セッションにより、システム管理者が指定した期間内であればログインし直すことなくMattermostを使用できます。すぐにログアウトしたい場合には、下の「ログアウト」ボタンを使用することで、セッションを終了させることができます。",
|
||||
"activity_log_modal.android": "Android",
|
||||
"activity_log_modal.androidNativeApp": "Androidネイティブアプリ",
|
||||
"activity_log_modal.androidNativeClassicApp": "Androidネイティブクラシックアプリ",
|
||||
@@ -368,7 +368,7 @@
|
||||
"admin.email.pushDesc": "本番環境では有効に設定してください。有効な場合、Mattermostはプッシュ通知サーバーを通じてiOSとAndroidにプッシュ通知を送信します。",
|
||||
"admin.email.pushOff": "プッシュ通知を送らない",
|
||||
"admin.email.pushOffHelp": "セットアップオプションを設定する前に、<a href=\"https://about.mattermost.com/default-mobile-push-notifications\" target='_blank'>プッシュ通知についての説明</a>を参照してください。",
|
||||
"admin.email.pushServerDesc": "Mattermost プッシュ通知サービスをファイアウォールの内側に設置するには、https://github.com/mattermost/push-proxy を使ってください。テストするためには、http://push-test.mattermost.com を使うことができます。これには、Apple AppStoreにあるサンプルのMattermost iOSアプリで接続できます。本番環境でテストサービスを使わないでください。",
|
||||
"admin.email.pushServerDesc": "https://github.com/mattermost/push-proxy を使用することでMattermost プッシュ通知サービスをファイアウォールの内側に設置することができます。テスト用に http://push-test.mattermost.com を使用することができます。これには、Apple AppStoreにあるサンプルのMattermost iOSアプリで接続できます。本番環境ではテストサービスを使わないでください。",
|
||||
"admin.email.pushServerEx": "例: \"http://push-test.mattermost.com\"",
|
||||
"admin.email.pushServerTitle": "プッシュ通知サーバー:",
|
||||
"admin.email.pushTitle": "プッシュ通知を有効にする: ",
|
||||
@@ -469,8 +469,8 @@
|
||||
"admin.gitlab.enableTitle": "GitLabの認証を有効にする: ",
|
||||
"admin.gitlab.settingsTitle": "GitLabの設定",
|
||||
"admin.gitlab.siteUrl": "GitLab Site URL: ",
|
||||
"admin.gitlab.siteUrlDescription": "Enter the URL of your GitLab instance, e.g. https://example.com:3000. If your GitLab instance is not set up with SSL, start the URL with http:// instead of https://.",
|
||||
"admin.gitlab.siteUrlExample": "E.g.: https://",
|
||||
"admin.gitlab.siteUrlDescription": "GitLabインスタンスのURLを入力してください(例. https://example.com:3000)。GitLabインスタンスがSSLを使用していない場合、URLは https:// の代わりに http:// で始めてください。",
|
||||
"admin.gitlab.siteUrlExample": "例: https://",
|
||||
"admin.gitlab.tokenTitle": "トークンエンドポイント:",
|
||||
"admin.gitlab.userTitle": "ユーザーAPIエンドポイント:",
|
||||
"admin.google.EnableHtmlDesc": "<ol><li>あなたのGoogleアカウントに<a target='_blank' href='https://accounts.google.com/login'>ログイン</a>します。</li><li><a target='_blank' href='https://console.developers.google.com'>https://console.developers.google.com</a>へ行き、左サイドバーの<strong>認証情報</strong>をクリックし、<strong>認証情報を作成</strong>をクリックした後、<strong>プロジェクト名</strong>として\"Mattermost - 会社名\"を入力します。</li><li>ヘッダー部の<strong>OAuth同意画面</strong>をクリックし、<strong>ユーザーに表示するサービス名</strong>として\"Mattermost\"を入力し、<strong>保存</strong>をクリックします。</li><li>ヘッダー部の<strong>認証情報</strong>で、<strong>認証情報を作成</strong>をクリックし、<strong>OAuthクライアント ID</strong>を選び、<strong>ウェブアプリケーション</strong>を選択します。</li><li><strong>制限事項</strong>の<strong>承認済みのリダイレクト URI</strong>で<strong>your-mattermost-url/signup/google/complete</strong>(例: http://localhost:8065/signup/google/complete)を入力します。<strong>作成</strong>クリックします。</li><li><strong>クライアントID</strong>と<strong>クライアントシークレット</strong>を下記にペーストし、<strong>保存</strong>をクリックします。</li><li>最後に、<a target='_blank' href='https://console.developers.google.com/apis/api/plus/overview'>Google+ API</a>へ行き、<strong>有効にする</strong>をクリックします。Googleのシステムに伝播するのに数分かかります。</li></ol>",
|
||||
@@ -552,7 +552,7 @@
|
||||
"admin.ldap.firstnameAttrDesc": "(オプション) Mattermostのユーザーの名前(ファーストネーム)を設定するために使用されるAD/LDAPサーバーの属性です。設定された場合、この属性はLDAPサーバーと同期されるため、ユーザーは名前(ファーストネーム)を編集することはできません。空欄のままにした場合、ユーザーはアカウントの設定で自身の名前(ファーストネーム)を設定できます。",
|
||||
"admin.ldap.firstnameAttrEx": "例: \"givenName\"",
|
||||
"admin.ldap.firstnameAttrTitle": "名前(ファーストネーム)の属性値",
|
||||
"admin.ldap.idAttrDesc": "Mattermostで重複なくユーザーを認識するために使用されるAD/LDAPサーバーの属性です。AD/LDAPのこの属性値は変更されない値であるべきであり、ユーザー名やユーザーIDを使用します。この項目が変更されると、新しいMattermostアカウントが古いアカウントとは独立して作成されます。この値は、Mattermostのログイン画面の「AD/LDAPユーザー名」欄に入力します。通常、この属性値は、上の「ユーザー名の属性値」欄と同じです。あなたのチームがdomain\\\\usernameの形式を他のサービスにAD/LDAPを使ってログインするのに使用している場合には、サイト間の一貫性を維持するためこの項目にはdomain\\\\username形式を使ってください。",
|
||||
"admin.ldap.idAttrDesc": "Mattermostで重複なくユーザーを認識するために使用されるAD/LDAPサーバーの属性です。AD/LDAPのこの属性値は変更されない値であるべきであり、ユーザー名やユーザーIDを使用します。この項目が変更されると、新しいMattermostアカウントが古いアカウントとは独立して作成されます。この値は、Mattermostのログイン画面の「AD/LDAPユーザー名」欄に入力します。通常、この属性値は、上の「ユーザー名の属性値」欄と同じです。あなたのチームがdomain\\\\usernameの形式を他のサービスにAD/LDAPを使ってログインするのに使用している場合には、サイト間の一貫性を維持するためこの項目にはdomain\\\\username形式を使用してください。",
|
||||
"admin.ldap.idAttrEx": "例: \"sAMAccountName\"",
|
||||
"admin.ldap.idAttrTitle": "ID属性値: ",
|
||||
"admin.ldap.jobExtraInfo": "{ldapUsers} LDAPユーザーをスキャン。{updateCount}ユーザーが更新されました。{deleteCount}ユーザーが無効化されました。",
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "サーバーログ",
|
||||
"admin.manage_roles.additionalRoles": "アカウントに関する追加の権限を選択してください。 <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">役割と権限の詳細</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "このアカウントで<a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">パーソナルアクセストークン</a>を生成できるようにする.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "キャンセル",
|
||||
"admin.manage_roles.manageRolesTitle": "役割の管理",
|
||||
"admin.manage_roles.postAllPublicRole": "すべてのMattermost公開チャンネルの投稿へのアクセスする。",
|
||||
@@ -1410,7 +1411,7 @@
|
||||
"create_team.team_url.charLength": "名前は{min}文字以上の{max}文字以下にしてください",
|
||||
"create_team.team_url.creatingTeam": "チームを作成中です…",
|
||||
"create_team.team_url.finish": "完了",
|
||||
"create_team.team_url.hint": "<li>短く覚えやすいものがベストです</li><li>英小文字、数字、ダッシュを使ってください</li><li>英小文字で始めてください。ダッシュで終わることはできません</li>",
|
||||
"create_team.team_url.hint": "<li>短く覚えやすいものがベストです</li><li>英小文字、数字、ダッシュが使用できます</li><li>英小文字で始めてください。ダッシュで終わることはできません</li>",
|
||||
"create_team.team_url.regex": "英小文字、数字、ダッシュのみ使用できます。英小文字で始めてください。ダッシュで終わることはできません。",
|
||||
"create_team.team_url.required": "この項目は必須です",
|
||||
"create_team.team_url.taken": "このURLは <a href='https://docs.mattermost.com/help/getting-started/creating-teams.html#team-url' target='_blank'>予約語で始まっている</a>か、使用できません。 他のものを試してください。",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"delete_post.post": "投稿",
|
||||
"delete_post.question": "{term}を本当に削除しますか?",
|
||||
"delete_post.warning": "この投稿には {count, number} {count, plural, one {comment} other {comments}} が紐づいています。",
|
||||
"discard_changes_modal.leave": "破棄する",
|
||||
"discard_changes_modal.message": "保存されていない変更があります。変更を破棄しますか?",
|
||||
"discard_changes_modal.title": "変更を破棄しますか?",
|
||||
"edit_channel_header.editHeader": "チャンネルヘッダーを編集する...",
|
||||
"edit_channel_header.previewHeader": "ヘッダーを編集する",
|
||||
"edit_channel_header_modal.cancel": "キャンセル",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"mobile.about.appVersion": "バージョン: {version} (ビルド {number})",
|
||||
"mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved",
|
||||
"mobile.about.database": "データベース: {type}",
|
||||
"mobile.about.licensed": "ライセンス: {company}",
|
||||
"mobile.about.powered_by": "{site} はMattermostを利用しています",
|
||||
"mobile.about.serverVersion": "サーバーバージョン: {version} (ビルド {number})",
|
||||
"mobile.about.serverVersionNoBuild": "サーバーバージョン: {version}",
|
||||
"mobile.account.notifications.email.footer": "5分以上オフラインか離席中の場合",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"mobile.advanced_settings.reset_message": "\nこれにより全てのオフラインデータがクリアされ、アプリが再起動します。アプリが再起動されると、自動でログインされます。\n",
|
||||
"mobile.advanced_settings.reset_title": "キャッシュをリセットする",
|
||||
"mobile.advanced_settings.title": "詳細設定",
|
||||
"mobile.android.camera_permission_denied_description": "カメラで写真やビデオを撮るには権限設定を変更してください。",
|
||||
"mobile.android.camera_permission_denied_title": "カメラへのアクセスを要求しています",
|
||||
"mobile.android.permission_denied_dismiss": "破棄",
|
||||
"mobile.android.permission_denied_retry": "権限を設定する",
|
||||
"mobile.android.photos_permission_denied_description": "ライブラリから画像をアップロードするには権限設定を変更してください。",
|
||||
"mobile.android.photos_permission_denied_title": "フォトライブラリーへのアクセスを要求しています",
|
||||
"mobile.android.videos_permission_denied_description": "ライブラリからビデオをアップロードするには権限設定を変更してください。",
|
||||
"mobile.android.videos_permission_denied_title": "ビデオライブラリーへのアクセスを要求しています",
|
||||
"mobile.channel_drawer.search": "移動する...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "{term} {name} を本当に削除しますか?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "{term} {name} から本当に脱退しますか?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "非公開チャンネル",
|
||||
"mobile.channel_list.publicChannel": "公開チャンネル",
|
||||
"mobile.channel_list.unreads": "未読",
|
||||
"mobile.client_upgrade": "アプリを更新する",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "新しいバージョンが利用できます",
|
||||
"mobile.client_upgrade.can_upgrade_title": "アップデートできます",
|
||||
"mobile.client_upgrade.close": "あとでアップデートする",
|
||||
"mobile.client_upgrade.current_version": "最新バージョン: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "新しいバージョンをダウンロードする際にエラーが発生しました。",
|
||||
"mobile.client_upgrade.download_error.title": "更新してインストールする",
|
||||
"mobile.client_upgrade.latest_version": "現在のバージョン: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "続けるためにはアプリをアップデートしてください。",
|
||||
"mobile.client_upgrade.must_upgrade_title": "更新が必要です",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "あなたのバージョンは最新です。",
|
||||
"mobile.client_upgrade.no_upgrade_title": "あなたのアプリは最新です",
|
||||
"mobile.client_upgrade.upgrade": "更新",
|
||||
"mobile.components.channels_list_view.yourChannels": "あなたのチャンネル:",
|
||||
"mobile.components.error_list.dismiss_all": "すべて取り消す",
|
||||
"mobile.components.select_server_view.continue": "続ける",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "もっと",
|
||||
"mobile.file_upload.video": "ビデオライブラリー",
|
||||
"mobile.help.title": "ヘルプ",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "画像の保存",
|
||||
"mobile.intro_messages.DM": "{teammate}とのダイレクトメッセージの履歴の最初です。ダイレクトメッセージとそこで共有されているファイルは、この領域の外のユーザーからは見ることができません。",
|
||||
"mobile.intro_messages.default_message": "ここはチームメイトが利用登録した際に最初に見るチャンネルです - みんなが知るべき情報を投稿してください。",
|
||||
@@ -1956,8 +1985,8 @@
|
||||
"mobile.notification_settings.email_title": "電子メール通知",
|
||||
"mobile.notification_settings.mentions.channelWide": "チャンネル範囲のあなたについての投稿",
|
||||
"mobile.notification_settings.mentions.reply_title": "返信通知を送信する",
|
||||
"mobile.notification_settings.mentions.sensitiveName": "あなたの大文字小文字を区別した姓",
|
||||
"mobile.notification_settings.mentions.sensitiveUsername": "あなたの大文字小文字を区別しない姓",
|
||||
"mobile.notification_settings.mentions.sensitiveName": "あなたの大文字小文字を区別した苗字",
|
||||
"mobile.notification_settings.mentions.sensitiveUsername": "あなたの大文字小文字を区別しないユーザー名",
|
||||
"mobile.notification_settings.mentions_replies": "あなたについての投稿と返信",
|
||||
"mobile.notification_settings.mobile": "モバイル",
|
||||
"mobile.notification_settings.mobile_title": "モバイルプッシュ通知",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"mobile.settings.clear": "オフラインデータをクリアする",
|
||||
"mobile.settings.clear_button": "クリア",
|
||||
"mobile.settings.clear_message": "\nこれにより全てのオフラインデータがクリアされ、アプリが再起動します。アプリが再起動されると、自動でログインされます。\n",
|
||||
"mobile.settings.modal.check_for_upgrade": "更新の確認",
|
||||
"mobile.settings.team_selection": "チームを切り替える",
|
||||
"mobile.suggestion.members": "メンバー",
|
||||
"modal.manaul_status.ask": "次回からこのメッセージを表示しない",
|
||||
@@ -2214,7 +2244,7 @@
|
||||
"rhs_root.unpin": "チャンネルへのピン止めをやめる",
|
||||
"rhs_thread.rootPostDeletedMessage.body": "このスレッドの一部はデータ保持ポリシーによって削除されました。このスレッドに返信することはできません。",
|
||||
"search_bar.search": "検索する",
|
||||
"search_bar.usage": "<h4>検索オプション</h4><ul><li><span>文を検索するには</span><b>「引用符」</b><span>を使ってください</span></li><li><span>特定のユーザーの投稿に限定して検索するには</span><b>From:</b><span>を、特定のチャンネルのみ検索するには</span><b>in:</b><span>を使ってください</span></li></ul>",
|
||||
"search_bar.usage": "<h4>検索オプション</h4><ul><li><span>文を検索するには</span><b>「引用符」</b><span>を使用してください</span></li><li><span>特定のユーザーの投稿に限定して検索するには</span><b>from:</b><span>を、特定のチャンネル内の投稿のみを検索するには</span><b>in:</b><span>を使用してください</span></li></ul>",
|
||||
"search_header.results": "検索結果",
|
||||
"search_header.title2": "最近のあなたについての投稿",
|
||||
"search_header.title3": "フラグの立てられた投稿",
|
||||
@@ -2222,15 +2252,13 @@
|
||||
"search_item.direct": "ダイレクトメッセージ({username}を参照)",
|
||||
"search_item.jump": "ジャンプする",
|
||||
"search_results.noResults": "結果が見付かりません。もう一度試しますか?",
|
||||
"search_results.noResults.partialPhraseSuggestion": "If you're searching a partial phrase (ex. searching \"rea\", looking for \"reach\" or \"reaction\"), append a * to your search term.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Two letter searches and common words like \"this\", \"a\" and \"is\" won't appear in search results due to excessive results returned.",
|
||||
"search_results.noResults.partialPhraseSuggestion": "フレーズの一部で検索(例. \"rea\"で検索し、\"reach\"や\"reaction\"を探す)するには、検索ワードに * を付けてください。",
|
||||
"search_results.noResults.stopWordsSuggestion": "2文字での検索や、\"this\" や \"a\"、 \"is\" などの一般的な単語では、大量の結果が返されるため検索結果が現れません。",
|
||||
"search_results.searching": "検索中...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usage.dataRetention": "過去{days}日間に投稿されたメッセージのみが返されます。詳しくはシステム管理者に問い合わせてください。",
|
||||
"search_results.usage.fromInSuggestion": "特定のユーザーの投稿を探すには{fromUser}を、特定のチャンネルの投稿を探すには{inChannel}を使用してください",
|
||||
"search_results.usage.phrasesSuggestion": "フレーズを検索するには {quotationMarks} を使用してください",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"引用符\"",
|
||||
"search_results.usageFlag1": "まだフラグの立てられたメッセージはありません。",
|
||||
"search_results.usageFlag2": "アイコンをクリックすることでメッセージとコメントにフラグを立てることができます。",
|
||||
"search_results.usageFlag3": "アイコンはタイムスタンプの隣にあります。",
|
||||
@@ -2365,7 +2393,7 @@
|
||||
"signup_user_completed.or": "または",
|
||||
"signup_user_completed.passwordLength": "{min}文字以上{max}文字以下で入力してください",
|
||||
"signup_user_completed.required": "この項目は必須です",
|
||||
"signup_user_completed.reserved": "このユーザー名は予約されています。他のユーザー名を使ってください。",
|
||||
"signup_user_completed.reserved": "このユーザー名は予約されています。他のユーザー名を使用してください。",
|
||||
"signup_user_completed.signIn": "サインインするためにここをクリックしてください。",
|
||||
"signup_user_completed.userHelp": "ユーザー名は英小文字で始めてください。また{min}から{max} 文字の英数字と'.'、'-'、'_'の記号だけで構成してください。",
|
||||
"signup_user_completed.usernameLength": "ユーザー名は英小文字で始めてください。また{min}から{max} 文字の英数字と'.'、'-'、'_'の記号だけで構成してください。",
|
||||
@@ -2555,7 +2583,7 @@
|
||||
"user.settings.general.emailGoogleCantUpdate": "Googleからログインしました。電子メールアドレスは更新できません。通知に使われる電子メールアドレスは{email}です。",
|
||||
"user.settings.general.emailHelp1": "電子メールアドレスはサインイン、通知、パスワード初期化に使用されます。電子メールアドレスを変更した場合には、確認が必要です。",
|
||||
"user.settings.general.emailHelp2": "電子メールはシステム管理者によって無効にされています。有効にされるまで通知電子メールは送信されません。",
|
||||
"user.settings.general.emailHelp3": "電子メールアドレスがサインイン、通知、パスワード初期化に使用されます。",
|
||||
"user.settings.general.emailHelp3": "電子メールアドレスはサインイン、通知、パスワード初期化に使用されます。",
|
||||
"user.settings.general.emailHelp4": "{email}に電子メールアドレスの確認用電子メールが送信されました。",
|
||||
"user.settings.general.emailLdapCantUpdate": "AD/LDAPでログインしました。電子メールアドレスは更新できません。通知に使われる電子メールアドレスは{email}です。",
|
||||
"user.settings.general.emailMatch": "あなたの入力した新しい電子メールアドレスが一致しません。",
|
||||
@@ -2593,7 +2621,7 @@
|
||||
"user.settings.general.uploadImage": "画像をアップロードするには「編集する」をクリックしてください",
|
||||
"user.settings.general.username": "ユーザー名",
|
||||
"user.settings.general.usernameInfo": "チームメイトが理解しやすく、覚えやすいものを選んでください。",
|
||||
"user.settings.general.usernameReserved": "このユーザー名は予約されています。他のユーザー名を使ってください。",
|
||||
"user.settings.general.usernameReserved": "このユーザー名は予約されています。他のユーザー名を使用してください。",
|
||||
"user.settings.general.usernameRestrictions": "ユーザー名は英小文字で始めてください。また{min}から{max} 文字の英数字と'.'、'-'、'_'の記号だけで構成してください。",
|
||||
"user.settings.general.validEmail": "有効な電子メールアドレスを入力してください",
|
||||
"user.settings.general.validImage": "JPGまたはPNG画像だけがプロフィール画像として使用できます",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "トークンID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "パーソナルアクセストークンがありません。",
|
||||
"user_list.notFound": "ユーザーが見付かりません",
|
||||
"user_profile.account.editSettings": "アカウント設定を編集する",
|
||||
"user_profile.send.dm": "メッセージを送信",
|
||||
"user_profile.webrtc.call": "ビデオ通話の開始",
|
||||
"user_profile.webrtc.offline": "ユーザーはオフラインです",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "서버 로그",
|
||||
"admin.manage_roles.additionalRoles": "Select additional permissions for the account. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Read more about roles and permissions</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Allow this account to generate <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "취소",
|
||||
"admin.manage_roles.manageRolesTitle": "Manage Roles",
|
||||
"admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
|
||||
@@ -651,7 +652,7 @@
|
||||
"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 <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Tokens are disabled if the user is deactivated. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>documentation</a> to learn more about configuring performance monitoring for Mattermost.",
|
||||
"admin.metrics.enableTitle": "Enable Performance Monitoring:",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"delete_post.post": "글",
|
||||
"delete_post.question": "정말 {term}을 삭제하시겠습니까?",
|
||||
"delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
|
||||
"discard_changes_modal.leave": "네, 취소합니다.",
|
||||
"discard_changes_modal.message": "저장되지 않은 변경사항이 있습니다, 저장하지 않고 취소하겠습니까?",
|
||||
"discard_changes_modal.title": "변경을 취소하시겠습니까?",
|
||||
"edit_channel_header.editHeader": "Edit the Channel Header...",
|
||||
"edit_channel_header.previewHeader": "헤더 편집",
|
||||
"edit_channel_header_modal.cancel": "취소",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "{term} {name}을 (를) 삭제 하시겠습니까?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "{term} {name}을 (를) 종료 하시겠습니까?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "비공개 채널",
|
||||
"mobile.channel_list.publicChannel": "공개 채널",
|
||||
"mobile.channel_list.unreads": "UNREADS",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Latest Version: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Your Version: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Update",
|
||||
"mobile.components.channels_list_view.yourChannels": "Your channels:",
|
||||
"mobile.components.error_list.dismiss_all": "Dismiss All",
|
||||
"mobile.components.select_server_view.continue": "계속하기",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "더 보기",
|
||||
"mobile.file_upload.video": "Video Library",
|
||||
"mobile.help.title": "도움말",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "팀 선택",
|
||||
"mobile.suggestion.members": "회원",
|
||||
"modal.manaul_status.ask": "Do not ask me again",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "Searching...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "중요 지정된 메시지가 아직 없습니다.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"user_list.notFound": "사용자를 찾을 수 없습니다 :(",
|
||||
"user_profile.account.editSettings": "계정 설정",
|
||||
"user_profile.send.dm": "Send Message",
|
||||
"user_profile.webrtc.call": "영상통화 시작",
|
||||
"user_profile.webrtc.offline": "사용자가 오프라인입니다",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Server Logs",
|
||||
"admin.manage_roles.additionalRoles": "Select additional permissions for the account. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Read more about roles and permissions</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Allow this account to generate <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "Annuleren",
|
||||
"admin.manage_roles.manageRolesTitle": "Manage Roles",
|
||||
"admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
|
||||
@@ -651,7 +652,7 @@
|
||||
"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 <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Tokens are disabled if the user is deactivated. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>documentation</a> to learn more about configuring performance monitoring for Mattermost.",
|
||||
"admin.metrics.enableTitle": "Enable Performance Monitoring:",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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.",
|
||||
"discard_changes_modal.leave": "Ja, verwijderen",
|
||||
"discard_changes_modal.message": "U niet-opgeslagen wijzigingen, weet u zeker dat u deze wilt verwijderen?",
|
||||
"discard_changes_modal.title": "Wijzigingen verwijderen?",
|
||||
"edit_channel_header.editHeader": "Edit the Channel Header...",
|
||||
"edit_channel_header.previewHeader": "Koptekst bewerken",
|
||||
"edit_channel_header_modal.cancel": "Annuleren",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"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?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Verlaat kanaal",
|
||||
"mobile.channel_list.publicChannel": "Publieke kanalen",
|
||||
"mobile.channel_list.unreads": "UNREADS",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Latest Version: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Your Version: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Update",
|
||||
"mobile.components.channels_list_view.yourChannels": "Your channels:",
|
||||
"mobile.components.error_list.dismiss_all": "Dismiss All",
|
||||
"mobile.components.select_server_view.continue": "doorgaan",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Meer",
|
||||
"mobile.file_upload.video": "Video Library",
|
||||
"mobile.help.title": "Help",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "Save Image",
|
||||
"mobile.intro_messages.DM": "Dit is de start van uw privé berichten historiek met teamlid {teammate}.<br /> 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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "Team Selectie",
|
||||
"mobile.suggestion.members": " Leden",
|
||||
"modal.manaul_status.ask": "Do not ask me again",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "Searching...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "Je hebt nog geen berichten gemarkeerd.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"user_list.notFound": "Geen gebruikers gevonden",
|
||||
"user_profile.account.editSettings": "Account-instellingen",
|
||||
"user_profile.send.dm": "Send Message",
|
||||
"user_profile.webrtc.call": "Start een video-oproep",
|
||||
"user_profile.webrtc.offline": "The user is offline",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Logi serwera",
|
||||
"admin.manage_roles.additionalRoles": "Select additional permissions for the account. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Read more about roles and permissions</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Allow this account to generate <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "Anuluj",
|
||||
"admin.manage_roles.manageRolesTitle": "Zarządzaj rolami",
|
||||
"admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
|
||||
@@ -651,7 +652,7 @@
|
||||
"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 <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Tokens are disabled if the user is deactivated. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensNone": "Brak osobistych tokenów dostępu.",
|
||||
"admin.metrics.enableDescription": "Jeśli włączone, Mattermost umożliwi monitorowanie wydajności oraz profilowanie. Zobacz proszę <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>dokumentację</a> aby dowiedzieć się więcej na temat konfiguracji monitoringu wydajności dla Mattermost.",
|
||||
"admin.metrics.enableTitle": "Włącz Monitorowanie Wydajności:",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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.",
|
||||
"discard_changes_modal.leave": "Tak, Porzuć",
|
||||
"discard_changes_modal.message": "Masz niezapisane zmiany, jesteś pewien, że chcesz je porzucić?",
|
||||
"discard_changes_modal.title": "Porzucić zmiany?",
|
||||
"edit_channel_header.editHeader": "Edytuj nagłówek kanału...",
|
||||
"edit_channel_header.previewHeader": "Edytuj nagłówek",
|
||||
"edit_channel_header_modal.cancel": "Anuluj",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "Jesteś pewien, że chcesz usunąć {term} {name}?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "Jesteś pewien, że chcesz opuścić {term} {name}?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Kanał prywatny",
|
||||
"mobile.channel_list.publicChannel": "Kanał publiczny",
|
||||
"mobile.channel_list.unreads": "NIEPRZECZYTANE",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Wersja serwera: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Wersja serwera: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Zaktualizuj",
|
||||
"mobile.components.channels_list_view.yourChannels": "Twoje kanały:",
|
||||
"mobile.components.error_list.dismiss_all": "Odrzuć wszystkie",
|
||||
"mobile.components.select_server_view.continue": "Kontynuuj",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Więcej",
|
||||
"mobile.file_upload.video": "Biblioteka wideo",
|
||||
"mobile.help.title": "Pomoc",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "Zapisz obraz",
|
||||
"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ć.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "Wybór zespołu",
|
||||
"mobile.suggestion.members": "Użytkownicy",
|
||||
"modal.manaul_status.ask": "Nie pytaj ponownie",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "Searching...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "Nie masz oznaczonych postów.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "Brak osobistych tokenów dostępu.",
|
||||
"user_list.notFound": "Nie odnaleziono użytkowników",
|
||||
"user_profile.account.editSettings": "Ustawienia konta",
|
||||
"user_profile.send.dm": "Wyślij wiadomość",
|
||||
"user_profile.webrtc.call": "Rozpocznij rozmowę wideo",
|
||||
"user_profile.webrtc.offline": "Użytkownik jest w trybie offline",
|
||||
|
||||
@@ -468,9 +468,9 @@
|
||||
"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.siteUrl": "GitLab Site URL: ",
|
||||
"admin.gitlab.siteUrlDescription": "Enter the URL of your GitLab instance, e.g. https://example.com:3000. If your GitLab instance is not set up with SSL, start the URL with http:// instead of https://.",
|
||||
"admin.gitlab.siteUrlExample": "E.g.: https://",
|
||||
"admin.gitlab.siteUrl": "URL do GitLab: ",
|
||||
"admin.gitlab.siteUrlDescription": "Entre com a URL da instância do seu GitLab, por exemplo https://example.com:3000. Se a instância do GitLab não estiver o SSL configurado, o início da URL começa com http:// em vez de https://.",
|
||||
"admin.gitlab.siteUrlExample": "Ex.: https://",
|
||||
"admin.gitlab.tokenTitle": "Token Endpoint:",
|
||||
"admin.gitlab.userTitle": "API Usuário Endpoint:",
|
||||
"admin.google.EnableHtmlDesc": "<ol><li><a target='_blank' href='https://accounts.google.com/login'>Log in</a> to sua conta Google.</li><li>Ir para <a target='_blank' href='https://console.developers.google.com'>https://console.developers.google.com</a>, clique <strong>Credenciais</strong> na barra lateral esquerda e digite \"Mattermost - nome-da-sua-empresa\" como o <strong>Nome do Projeto</strong>, então clique <strong>Criar</strong>.</li><li>Clique no título <strong>tela de consentimento OAuth</strong> e digite \"Mattermost\" como o <strong>nome do Produto exibido para os usuários</strong>, então clique <strong>Salvar</strong>.</li><li>Dentro do título <strong>Credenciais</strong>, clique <strong>Criar credenciais</strong>, escolha <strong>ID do cliente OAuth</strong> e selecione <strong>Aplicação da Web</strong>.</li><li>Dentro de <strong>Restrições</strong> e <strong>URIs de redirecionamento autorizados</strong> digite <strong>sua-url-mattermost/signup/google/complete</strong> (exemplo: http://localhost:8065/signup/google/complete). Clique <strong>Criar</strong>.</li><li>Cole <strong>ID do Cliente</strong> e <strong>Chave Secreta do Cliente</strong> nos campos abaixo, então clique <strong>Salvar</strong>.</li><li>Finalmente, vá para <a target='_blank' href='https://console.developers.google.com/apis/api/plus/overview'>Google+ API</a> e clique <strong>Ativar</strong>. Isto pode levar alguns minutos para propagar através do si sistema do Google.</li></ol>",
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Log do Servidor",
|
||||
"admin.manage_roles.additionalRoles": "Selecione permissões adicionais para a conta.<a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Leia mais sobre funções e permissões</a>",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Permitir que esta conta gere <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">tokens de acesso individual</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"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.",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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.",
|
||||
"discard_changes_modal.leave": "Sim, Descartar",
|
||||
"discard_changes_modal.message": "Você tem alterações não salvas, você tem certeza que quer descartar elas?",
|
||||
"discard_changes_modal.title": "Descartar alterações?",
|
||||
"edit_channel_header.editHeader": "Editar o Cabeçalho do Canal...",
|
||||
"edit_channel_header.previewHeader": "Editar cabeçalho",
|
||||
"edit_channel_header_modal.cancel": "Cancelar",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Licenciado para: {company}",
|
||||
"mobile.about.powered_by": "{site} é desenvoldido por Mattermost",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "Para fazer fotos e vides com sua camera, por favor altere as permissões.",
|
||||
"mobile.android.camera_permission_denied_title": "Acesso a camera é necessário",
|
||||
"mobile.android.permission_denied_dismiss": "Ignorar",
|
||||
"mobile.android.permission_denied_retry": "Ajustar permissões",
|
||||
"mobile.android.photos_permission_denied_description": "Para enviar imagens de sua galeria, por favor altere as permissões.",
|
||||
"mobile.android.photos_permission_denied_title": "Acesso a galeria de fotos é necessário",
|
||||
"mobile.android.videos_permission_denied_description": "Para enviar vides de sua galeria, por favor altere as permissões.",
|
||||
"mobile.android.videos_permission_denied_title": "Acesso a galeria de videis é necessário",
|
||||
"mobile.channel_drawer.search": "Pular para...",
|
||||
"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}?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Canal Privado",
|
||||
"mobile.channel_list.publicChannel": "Canal Público",
|
||||
"mobile.channel_list.unreads": "NÃO LIDOS",
|
||||
"mobile.client_upgrade": "Atualizar App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "Uma nova versão está disponível para download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Atualização disponível",
|
||||
"mobile.client_upgrade.close": "Atualizar Depois",
|
||||
"mobile.client_upgrade.current_version": "Última Versão: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "Um erro ocorreu durante o download da nova versão.",
|
||||
"mobile.client_upgrade.download_error.title": "Não é possível instalar a atualização",
|
||||
"mobile.client_upgrade.latest_version": "Sua Versão: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Por favor atualize o app para continuar.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Atualização Requerida",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "Você já possui a última versão.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Seu App Está Atualizado",
|
||||
"mobile.client_upgrade.upgrade": "Atualizar",
|
||||
"mobile.components.channels_list_view.yourChannels": "Seus canais:",
|
||||
"mobile.components.error_list.dismiss_all": "Descartar todos",
|
||||
"mobile.components.select_server_view.continue": "Continuar",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Mais",
|
||||
"mobile.file_upload.video": "Galeria de Videos",
|
||||
"mobile.help.title": "Ajuda",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Procurar por Atualizações",
|
||||
"mobile.settings.team_selection": "Seleção da Equipe",
|
||||
"mobile.suggestion.members": "Membros",
|
||||
"modal.manaul_status.ask": "Não me pergunte novamente",
|
||||
@@ -2222,15 +2252,13 @@
|
||||
"search_item.direct": "Mensagem Direta (com {username})",
|
||||
"search_item.jump": "Pular",
|
||||
"search_results.noResults": "Nenhum resultado encontrado. Tentar novamente?",
|
||||
"search_results.noResults.partialPhraseSuggestion": "If you're searching a partial phrase (ex. searching \"rea\", looking for \"reach\" or \"reaction\"), append a * to your search term.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Two letter searches and common words like \"this\", \"a\" and \"is\" won't appear in search results due to excessive results returned.",
|
||||
"search_results.noResults.partialPhraseSuggestion": "Se você estiver procurando por uma palavra parcial (ex. procurando \"atu\", procurando \"atualizar\" ou \"atual\"), adicione * no termo de busca.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Busca com duas letras e palavras comuns como \"este\", \"a\" e \"é\" não irão aparecer nos resultados de busca devido a resultados excessivos retornados.",
|
||||
"search_results.searching": "Pesquisando...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usage.dataRetention": "Somente mensagens postadas nos últimos {days} dias são retornadas. Entre em contato com o Administrador do Sistema para mais detalhes.",
|
||||
"search_results.usage.fromInSuggestion": "Utilize {fromUser} para encontrar postagens de um usuário específico e {inChannel} para encontrar postagens em canais específicos",
|
||||
"search_results.usage.phrasesSuggestion": "Utilize {quotationMarks} para procurar por frases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"aspas\"",
|
||||
"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.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"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.account.editSettings": "Editar Definições de Conta",
|
||||
"user_profile.send.dm": "Enviar Mensagem",
|
||||
"user_profile.webrtc.call": "Iniciar Video Chamada",
|
||||
"user_profile.webrtc.offline": "O usuário está desconectado",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Серверные логи",
|
||||
"admin.manage_roles.additionalRoles": "Select additional permissions for the account. <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Read more about roles and permissions</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Allow this account to generate <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "Отмена",
|
||||
"admin.manage_roles.manageRolesTitle": "Manage Roles",
|
||||
"admin.manage_roles.postAllPublicRole": "Access to post to all Mattermost public channels.",
|
||||
@@ -651,7 +652,7 @@
|
||||
"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 <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensDescription": "Personal access tokens function similar to session tokens and can be used by integrations to <a href=\"https://about.mattermost.com/default-api-authentication\" target=\"_blank\">interact with this Mattermost server</a>. Tokens are disabled if the user is deactivated. Learn more about <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">personal access tokens</a>.",
|
||||
"admin.manage_tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"admin.metrics.enableDescription": "Если включено, в Mattermost будет включен сбор данных о производительности и профилирование. Дополнительную информацию по конфигурации мониторинга производительности смотрите в <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>документации</a>.",
|
||||
"admin.metrics.enableTitle": "Включить мониторинг производительности",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"delete_post.post": "Сообщение",
|
||||
"delete_post.question": "Действительно хотите удалить {term}?",
|
||||
"delete_post.warning": "This post has {count, number} {count, plural, one {comment} other {comments}} on it.",
|
||||
"discard_changes_modal.leave": "Да, Отменить",
|
||||
"discard_changes_modal.message": "Вы уверены, что хотите отменить несохраненные изменения?",
|
||||
"discard_changes_modal.title": "Отменить изменения?",
|
||||
"edit_channel_header.editHeader": "Изменить заголовок канала...",
|
||||
"edit_channel_header.previewHeader": "Правка заголовка",
|
||||
"edit_channel_header_modal.cancel": "Отмена",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"mobile.about.appVersion": "Версия приложения: {version} (Сборка {number})",
|
||||
"mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. Все права защищены",
|
||||
"mobile.about.database": "Тип базы данных: {type}",
|
||||
"mobile.about.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"mobile.about.serverVersion": "Версия сервера: {version} (Сборка {number})",
|
||||
"mobile.about.serverVersionNoBuild": "Версия сервера: {version}",
|
||||
"mobile.account.notifications.email.footer": "Когда отошел более чем на пять минут",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"mobile.advanced_settings.reset_message": "\nДанное действие приведёт к очистке локальных данных и перезапуску приложения.\n",
|
||||
"mobile.advanced_settings.reset_title": "Reset Cache",
|
||||
"mobile.advanced_settings.title": "Дополнительные параметры",
|
||||
"mobile.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "Вы действительно хотите удалить {term} {name}?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "Вы действительно хотите покинуть {term} {name}?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Приватный канал",
|
||||
"mobile.channel_list.publicChannel": "Публичный канал",
|
||||
"mobile.channel_list.unreads": "НЕПРОЧИТАННЫЕ",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "Версия сервера: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "Версия сервера: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "Обновить",
|
||||
"mobile.components.channels_list_view.yourChannels": "Ваши каналы:",
|
||||
"mobile.components.error_list.dismiss_all": "Отменить все",
|
||||
"mobile.components.select_server_view.continue": "Продолжить",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Еще",
|
||||
"mobile.file_upload.video": "Библиотека видео",
|
||||
"mobile.help.title": "Помощь",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "Сохранить изображение",
|
||||
"mobile.intro_messages.DM": "Начало истории личных сообщений с {teammate}. Личные сообщения и файлы доступны здесь и не видны за пределами этой области.",
|
||||
"mobile.intro_messages.default_message": "Это первый канал, который видит новый участник группы - используйте его для отправки сообщений, которые должны увидеть все.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"mobile.settings.clear": "Очистить локальное хранилище",
|
||||
"mobile.settings.clear_button": "Очистить",
|
||||
"mobile.settings.clear_message": "\nДанное действие приведёт к очистке локальных данных и перезапуску приложения.\n",
|
||||
"mobile.settings.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "Выбор команды",
|
||||
"mobile.suggestion.members": "Участники",
|
||||
"modal.manaul_status.ask": "Не задавать больше этот вопрос",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "Searching...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "Вы не имеете отмеченных сообщений.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "No personal access tokens.",
|
||||
"user_list.notFound": "Пользователи не найдены",
|
||||
"user_profile.account.editSettings": "Учетная запись",
|
||||
"user_profile.send.dm": "Отправить сообщение",
|
||||
"user_profile.webrtc.call": "Видеовызов",
|
||||
"user_profile.webrtc.offline": "Пользователь не в сети",
|
||||
|
||||
@@ -468,9 +468,9 @@
|
||||
"admin.gitlab.enableDescription": "Bu seçenek etkinleştirildiğinde, GitLab OAuth kullanarak Mattermost üzerine takım ve hesap eklenebilir.",
|
||||
"admin.gitlab.enableTitle": "GitLab kimlik doğrulaması kullanılsın: ",
|
||||
"admin.gitlab.settingsTitle": "GitLab Ayarları",
|
||||
"admin.gitlab.siteUrl": "GitLab Site URL: ",
|
||||
"admin.gitlab.siteUrlDescription": "Enter the URL of your GitLab instance, e.g. https://example.com:3000. If your GitLab instance is not set up with SSL, start the URL with http:// instead of https://.",
|
||||
"admin.gitlab.siteUrlExample": "E.g.: https://",
|
||||
"admin.gitlab.siteUrl": "GitLab Sitesi Adresi: ",
|
||||
"admin.gitlab.siteUrlDescription": "GitLab kopyanızın adresini yazın. Örnek: https://ornek.com:3000. GitLab kopyanız SSL kullanmıyorsa adresi https:// yerine http:// ile başlayarak yazın.",
|
||||
"admin.gitlab.siteUrlExample": "Örnek: https://",
|
||||
"admin.gitlab.tokenTitle": "Kod Noktası:",
|
||||
"admin.gitlab.userTitle": "Kullanıcı API Noktası:",
|
||||
"admin.google.EnableHtmlDesc": "Google Hesabınız ile <ol><li><a target='_blank' href='https://accounts.google.com/login'>Oturum Açın</a>.</li><li>Sol yandaki menüden <a target='_blank' href='https://console.developers.google.com'>https://console.developers.google.com</a>, click <strong>Kimlik Bilgileri</strong> bölümüne gidin ve <strong>Proje adı</strong> olarak \"Mattermost - kuruluşunuzun-adı\" yazıp <strong>Oluştur</strong> üzerine tıklayın.</li><li><strong>OAuth consent screen</strong> başlığı üzerine tıklayın ve <strong>Kullanıcılara görüntülenecek ürün adı </strong> olarak \"Mattermost\" yazıp <strong>Kaydet</strong> üzerine tıklayın.</li><li><strong>Credentials</strong> başlığı altından<strong>Create credentials</strong> üzerine tıklayın ve <strong>OAuth client ID</strong> üzerine tıklayın <strong>Web Application</strong> seçin.</li><li><strong>Restrictions</strong> ve <strong>Authorized redirect URIs</strong> altında <strong>mattermost-adresiniz/signup/google/complete</strong> yazın (Örnek: http://localhost:8065/signup/google/complete). <strong>Create</strong> üzerine tıklayın.</li><li><strong>Client ID</strong> ve <strong>Client Secret</strong> bilgilerini aşağıdaki alanlara yazınve <strong>Kaydet</strong> üzerine tıklayın.</li><li>Son olarak <a target='_blank' href='https://console.developers.google.com/apis/api/plus/overview'>Google+ API</a> bölümüne giderek <strong>Etkinleştir</strong> üzerine tıklayın. Uygulamanın Google sistemleri üzerinde etkin olması bir kaç dakika sürebilir.</li></ol>",
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "Sunucu Günlükleri",
|
||||
"admin.manage_roles.additionalRoles": "Hesaba verilecek ek izinleri seçin.<a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">Rol ve izinler hakkında ayrıntılı bilgi alın</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokens": "Bu hesabın <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">kişisel erişim kodları</a> oluşturmasına izin verin.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"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.",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"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ış.",
|
||||
"discard_changes_modal.leave": "Evet, İptal Et",
|
||||
"discard_changes_modal.message": "Kaydedilmemiş değişiklikleriniz var. Bunları iptal etmek istediğinize emin misiniz?",
|
||||
"discard_changes_modal.title": "Değişiklikler iptal edilsin mi?",
|
||||
"edit_channel_header.editHeader": "Edit the Channel Header...",
|
||||
"edit_channel_header.previewHeader": "Edit header",
|
||||
"edit_channel_header_modal.cancel": "İptal",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"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.licensed": "Lisans sahibi: {company}",
|
||||
"mobile.about.powered_by": "{site} sitesi Mattermost tarafından sunulmaktadır",
|
||||
"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",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"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.android.camera_permission_denied_description": "Kameranız ile fotoğraf ve görüntü çekebilmek için izin ayarlarınızı değiştirmelisiniz.",
|
||||
"mobile.android.camera_permission_denied_title": "Kameraya erişim izni gereklidir",
|
||||
"mobile.android.permission_denied_dismiss": "Kapat",
|
||||
"mobile.android.permission_denied_retry": "İzni ayarla",
|
||||
"mobile.android.photos_permission_denied_description": "Kitaplığınızdan görsel yükleyebilmek için izin ayarlarınızı değiştirmelisiniz.",
|
||||
"mobile.android.photos_permission_denied_title": "Fotoğraf kitaplığına erişim izni gereklidir",
|
||||
"mobile.android.videos_permission_denied_description": "Kitaplığınızdan görüntü yükleyebilmek için izin ayarlarınızı değiştirmelisiniz.",
|
||||
"mobile.android.videos_permission_denied_title": "Görüntü kitaplığına erişim izni gereklidir",
|
||||
"mobile.channel_drawer.search": "Şuraya 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?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "Özel Kanal",
|
||||
"mobile.channel_list.publicChannel": "Herkese Açık Kanal",
|
||||
"mobile.channel_list.unreads": "OKUNMAMIŞLAR",
|
||||
"mobile.client_upgrade": "Uygulamayı Güncelle",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "Yeni bir sürüm yayınlanmış.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Güncelleme Yayınlanmış",
|
||||
"mobile.client_upgrade.close": "Daha Sonra Güncelle",
|
||||
"mobile.client_upgrade.current_version": "Son Sürüm: {version}",
|
||||
"mobile.client_upgrade.download_error.message": "Yeni sürüm indirilirken sorun çıktı.",
|
||||
"mobile.client_upgrade.download_error.title": "Güncelleme Kurulamadı",
|
||||
"mobile.client_upgrade.latest_version": "Kullandığınız Sürüm: {version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Lütfen devam etmek için uygulamayı güncelleyin.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Güncelleme Gerekiyor",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "Son sürümü kullanıyorsunuz.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Uygulamanız Güncel",
|
||||
"mobile.client_upgrade.upgrade": "Güncelle",
|
||||
"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",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "Diğer",
|
||||
"mobile.file_upload.video": "Görüntü Kitaplığı",
|
||||
"mobile.help.title": "Yardım",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"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.",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"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.modal.check_for_upgrade": "Güncellemeleri Denetle",
|
||||
"mobile.settings.team_selection": "Takım Seçimi",
|
||||
"mobile.suggestion.members": "Üyeler",
|
||||
"modal.manaul_status.ask": "Bir daha sorma",
|
||||
@@ -2222,15 +2252,13 @@
|
||||
"search_item.direct": "Doğrudan İleti ({username} ile)",
|
||||
"search_item.jump": "Görüntüle",
|
||||
"search_results.noResults": "Herhangi bir sonuç bulunamadı. Yeniden denemek ister misiniz?",
|
||||
"search_results.noResults.partialPhraseSuggestion": "If you're searching a partial phrase (ex. searching \"rea\", looking for \"reach\" or \"reaction\"), append a * to your search term.",
|
||||
"search_results.noResults.stopWordsSuggestion": "Two letter searches and common words like \"this\", \"a\" and \"is\" won't appear in search results due to excessive results returned.",
|
||||
"search_results.noResults.partialPhraseSuggestion": "Bir ifadenin bir bölümünü arıyorsanız (Örneğin \"arama\" ve \"aranabilir\" için \"ara\" ifadesi gibi), arama ifadenizde * kullanın (ara*).",
|
||||
"search_results.noResults.stopWordsSuggestion": "İki harfli aramalar ve \"this\", \"a\" ve \"is\" gibi sık kullanılan sözcükler arama sonuçlarını kalabalıklaştırmamak için görüntülenmez.",
|
||||
"search_results.searching": "Aranıyor...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usage.dataRetention": "Yalnız son {days} gündeki iletiler görüntülenir. Ayrıntılı bilgi almak için sistem yöneticiniz ile görüşün.",
|
||||
"search_results.usage.fromInSuggestion": "Belirli kullanıcıların iletilerini aramak için {fromUser}, belirli kanallardaki iletileri aramak için {inChannel} kullanın",
|
||||
"search_results.usage.phrasesSuggestion": "İfadeleri aramak için {quotationMarks} içine alarak kullanın",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"tırnak işaretleri\"",
|
||||
"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.",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Erişim Kodu: ",
|
||||
"user.settings.tokens.userAccessTokensNone": "Herhangi bir kişisel erişim kodu yok.",
|
||||
"user_list.notFound": "Herhangi bir kullanıcı bulunamadı",
|
||||
"user_profile.account.editSettings": "Hesap Ayarlarını Düzenle",
|
||||
"user_profile.send.dm": "İletiyi Gönder",
|
||||
"user_profile.webrtc.call": "Görüntülü Görüşme Başlat",
|
||||
"user_profile.webrtc.offline": "Kullanıcı çevrimdışı",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "服务器日志",
|
||||
"admin.manage_roles.additionalRoles": "选择帐号额外的权限。<a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">阅读更多关于角色于权限</a>。",
|
||||
"admin.manage_roles.allowUserAccessTokens": "允许此帐号生成<a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">个人访问令牌</a>。",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "取消",
|
||||
"admin.manage_roles.manageRolesTitle": "管理角色",
|
||||
"admin.manage_roles.postAllPublicRole": "允许发送消息到所有 Mattermost 公开频道。",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"delete_post.post": "发布",
|
||||
"delete_post.question": "您确认要删除{term}?",
|
||||
"delete_post.warning": "此消息有 {count, number} 条评论。",
|
||||
"discard_changes_modal.leave": "是的,抛弃",
|
||||
"discard_changes_modal.message": "您有未保存的更改,您确定你想要放弃他们吗?",
|
||||
"discard_changes_modal.title": "放弃修改?",
|
||||
"edit_channel_header.editHeader": "修改频道标题...",
|
||||
"edit_channel_header.previewHeader": "编辑标题",
|
||||
"edit_channel_header_modal.cancel": "取消",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"mobile.about.appVersion": "应用版本:{version} (Build {number})",
|
||||
"mobile.about.copyright": "版权所有 2015-{currentYear} Mattermost, Inc. 保留所有权利",
|
||||
"mobile.about.database": "数据库:{type}",
|
||||
"mobile.about.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"mobile.about.serverVersion": "服务端版本:{version} (Build {number})",
|
||||
"mobile.about.serverVersionNoBuild": "服务端版本:{version}",
|
||||
"mobile.account.notifications.email.footer": "当离线或离开超过五分钟",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"mobile.advanced_settings.reset_message": "\n这将清除所有离线数据并重启应用。您将会在应用重启后自动登入。\n",
|
||||
"mobile.advanced_settings.reset_title": "重置缓存",
|
||||
"mobile.advanced_settings.title": "高级设置",
|
||||
"mobile.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "您确定要删除{term} {name}?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "您确定要离开{term} {name}?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "私有频道",
|
||||
"mobile.channel_list.publicChannel": "公共频道",
|
||||
"mobile.channel_list.unreads": "未读数",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "服务端版本:{version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "服务端版本:{version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "更新",
|
||||
"mobile.components.channels_list_view.yourChannels": "您的频道:",
|
||||
"mobile.components.error_list.dismiss_all": "关闭所有",
|
||||
"mobile.components.select_server_view.continue": "继续",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "更多",
|
||||
"mobile.file_upload.video": "视频库",
|
||||
"mobile.help.title": "帮助",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "保存图片",
|
||||
"mobile.intro_messages.DM": "这是您和{teammate}私信记录的开端。此区域外的人不能看到这里共享的私信和文件。",
|
||||
"mobile.intro_messages.default_message": "这是团队成员注册后第一个看到的频道 - 使用它发布所有人需要知道的消息。",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"mobile.settings.clear": "清除离线储存",
|
||||
"mobile.settings.clear_button": "清除",
|
||||
"mobile.settings.clear_message": "\n这将清除所有离线数据并重启应用。您将会在应用重启后自动登入。\n",
|
||||
"mobile.settings.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "团队选择",
|
||||
"mobile.suggestion.members": "成员",
|
||||
"modal.manaul_status.ask": "不要再次询问",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "正在搜索...",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "您还没标记任何信息。",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "令牌 ID:",
|
||||
"user.settings.tokens.userAccessTokensNone": "无个人访问令牌。",
|
||||
"user_list.notFound": "没有找到用户",
|
||||
"user_profile.account.editSettings": "账户设置",
|
||||
"user_profile.send.dm": "发送消息",
|
||||
"user_profile.webrtc.call": "开始视频通话",
|
||||
"user_profile.webrtc.offline": "此用户已离线",
|
||||
|
||||
@@ -640,6 +640,7 @@
|
||||
"admin.logs.title": "主機記錄",
|
||||
"admin.manage_roles.additionalRoles": "為此帳號選取額外的權限。 <a href=\"https://about.mattermost.com/default-permissions\" target=\"_blank\">關於角色與權限</a>。",
|
||||
"admin.manage_roles.allowUserAccessTokens": "允許此帳號產生 <a href=\"https://about.mattermost.com/default-user-access-tokens\" target=\"_blank\">個人存取 Token</a>.",
|
||||
"admin.manage_roles.allowUserAccessTokensDesc": "Removing this permission doesn't delete existing tokens. To delete them, go to the user's Manage Tokens menu.",
|
||||
"admin.manage_roles.cancel": "取消",
|
||||
"admin.manage_roles.manageRolesTitle": "管理角色",
|
||||
"admin.manage_roles.postAllPublicRole": "允許在所有的公開頻道發布訊息。",
|
||||
@@ -1436,6 +1437,9 @@
|
||||
"delete_post.post": "訊息",
|
||||
"delete_post.question": "確定要刪除{term}嘛?",
|
||||
"delete_post.warning": "此訊息有 {count, number} 個註解。",
|
||||
"discard_changes_modal.leave": "是,放棄它們",
|
||||
"discard_changes_modal.message": "還有未儲存的變更,要放棄它們嘛?",
|
||||
"discard_changes_modal.title": "放棄變更?",
|
||||
"edit_channel_header.editHeader": "修改頻道標題",
|
||||
"edit_channel_header.previewHeader": "修改標題",
|
||||
"edit_channel_header_modal.cancel": "取消",
|
||||
@@ -1865,6 +1869,8 @@
|
||||
"mobile.about.appVersion": "應用程式版本:{version} (Build {number})",
|
||||
"mobile.about.copyright": "版權所有 2015-{currentYear} Mattermost, Inc. 保留所有權利",
|
||||
"mobile.about.database": "資料庫:{type}",
|
||||
"mobile.about.licensed": "Licensed to: {company}",
|
||||
"mobile.about.powered_by": "{site} is powered by Mattermost",
|
||||
"mobile.about.serverVersion": "伺服器版本:{version} (Build {number}) ",
|
||||
"mobile.about.serverVersionNoBuild": "伺服器版本:{version}",
|
||||
"mobile.account.notifications.email.footer": "當下線或是離開超過五分鐘時",
|
||||
@@ -1878,6 +1884,14 @@
|
||||
"mobile.advanced_settings.reset_message": "\n這將會清除所有離線資料並重新啟動 app 。在重啟 app 後會自動重新登入。\n",
|
||||
"mobile.advanced_settings.reset_title": "清除快取",
|
||||
"mobile.advanced_settings.title": "進階設定",
|
||||
"mobile.android.camera_permission_denied_description": "To take photos and videos with your camera, please change your permission settings.",
|
||||
"mobile.android.camera_permission_denied_title": "Camera access is required",
|
||||
"mobile.android.permission_denied_dismiss": "Dismiss",
|
||||
"mobile.android.permission_denied_retry": "Set permission",
|
||||
"mobile.android.photos_permission_denied_description": "To upload images from your library, please change your permission settings.",
|
||||
"mobile.android.photos_permission_denied_title": "Photo library access is required",
|
||||
"mobile.android.videos_permission_denied_description": "To upload videos from your library, please change your permission settings.",
|
||||
"mobile.android.videos_permission_denied_title": "Video library access is required",
|
||||
"mobile.channel_drawer.search": "Jump to...",
|
||||
"mobile.channel_info.alertMessageDeleteChannel": "確定要刪除{term} {name} 嘛?",
|
||||
"mobile.channel_info.alertMessageLeaveChannel": "確定要離開{term} {name} 嘛?",
|
||||
@@ -1903,6 +1917,19 @@
|
||||
"mobile.channel_list.privateChannel": "私人頻道",
|
||||
"mobile.channel_list.publicChannel": "公開頻道",
|
||||
"mobile.channel_list.unreads": "未讀",
|
||||
"mobile.client_upgrade": "Update App",
|
||||
"mobile.client_upgrade.can_upgrade_subtitle": "A new version is available for download.",
|
||||
"mobile.client_upgrade.can_upgrade_title": "Update Available",
|
||||
"mobile.client_upgrade.close": "Update Later",
|
||||
"mobile.client_upgrade.current_version": "伺服器版本:{version}",
|
||||
"mobile.client_upgrade.download_error.message": "An error occurred downloading the new version.",
|
||||
"mobile.client_upgrade.download_error.title": "Unable to Install Update",
|
||||
"mobile.client_upgrade.latest_version": "伺服器版本:{version}",
|
||||
"mobile.client_upgrade.must_upgrade_subtitle": "Please update the app to continue.",
|
||||
"mobile.client_upgrade.must_upgrade_title": "Update Required",
|
||||
"mobile.client_upgrade.no_upgrade_subtitle": "You already have the latest version.",
|
||||
"mobile.client_upgrade.no_upgrade_title": "Your App Is Up to Date",
|
||||
"mobile.client_upgrade.upgrade": "更新",
|
||||
"mobile.components.channels_list_view.yourChannels": "您的頻道:",
|
||||
"mobile.components.error_list.dismiss_all": "全部關閉",
|
||||
"mobile.components.select_server_view.continue": "繼續",
|
||||
@@ -1932,6 +1959,8 @@
|
||||
"mobile.file_upload.more": "更多",
|
||||
"mobile.file_upload.video": "媒體櫃",
|
||||
"mobile.help.title": "說明",
|
||||
"mobile.image_preview.deleted_post_message": "This post and it's files have been deleted. The previewer will now be closed.",
|
||||
"mobile.image_preview.deleted_post_title": "Post Deleted",
|
||||
"mobile.image_preview.save": "儲存圖片",
|
||||
"mobile.intro_messages.DM": "這是跟{teammate}之間直接訊息的起頭。直接訊息跟在這邊分享的檔案除了在此處以外的人都看不到。",
|
||||
"mobile.intro_messages.default_message": "這將是團隊成員註冊後第一個看到的頻道,請利用它張貼所有人都應該知道的事項。",
|
||||
@@ -2037,6 +2066,7 @@
|
||||
"mobile.settings.clear": "清除離線儲存資料",
|
||||
"mobile.settings.clear_button": "清除",
|
||||
"mobile.settings.clear_message": "\n這將會清除所有離線資料並重新啟動 app 。在重啟 app 後會自動重新登入。\n",
|
||||
"mobile.settings.modal.check_for_upgrade": "Check for Updates",
|
||||
"mobile.settings.team_selection": "選擇團隊",
|
||||
"mobile.suggestion.members": "成員",
|
||||
"modal.manaul_status.ask": "別再問我",
|
||||
@@ -2227,8 +2257,6 @@
|
||||
"search_results.searching": "搜尋中…",
|
||||
"search_results.usage.dataRetention": "Only messages posted in the last {days} days are returned. Contact your System Administrator for more detail.",
|
||||
"search_results.usage.fromInSuggestion": "Use {fromUser} to find posts from specific users and {inChannel} to find posts in specific channels",
|
||||
"search_results.usage.fromInSuggestion.fromUser": "from:",
|
||||
"search_results.usage.fromInSuggestion.inChannel": "in:",
|
||||
"search_results.usage.phrasesSuggestion": "Use {quotationMarks} to search for phrases",
|
||||
"search_results.usage.phrasesSuggestion.quotationMarks": "\"quotation marks\"",
|
||||
"search_results.usageFlag1": "尚未標記任何訊息。",
|
||||
@@ -2780,6 +2808,7 @@
|
||||
"user.settings.tokens.tokenId": "Token ID:",
|
||||
"user.settings.tokens.userAccessTokensNone": "沒有個人存取 Token。",
|
||||
"user_list.notFound": "找不到任何使用者",
|
||||
"user_profile.account.editSettings": "帳號設定",
|
||||
"user_profile.send.dm": "發送訊息",
|
||||
"user_profile.webrtc.call": "開始視訊通話",
|
||||
"user_profile.webrtc.offline": "使用者離線中",
|
||||
|
||||
@@ -1954,7 +1954,7 @@
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_ENTITLEMENTS = Mattermost/Mattermost.entitlements;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
CURRENT_PROJECT_VERSION = 59;
|
||||
CURRENT_PROJECT_VERSION = 63;
|
||||
DEAD_CODE_STRIPPING = NO;
|
||||
DEVELOPMENT_TEAM = UQ8HT4Q2XM;
|
||||
ENABLE_BITCODE = NO;
|
||||
@@ -2001,7 +2001,7 @@
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_ENTITLEMENTS = Mattermost/Mattermost.entitlements;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
CURRENT_PROJECT_VERSION = 59;
|
||||
CURRENT_PROJECT_VERSION = 63;
|
||||
DEAD_CODE_STRIPPING = NO;
|
||||
DEVELOPMENT_TEAM = UQ8HT4Q2XM;
|
||||
ENABLE_BITCODE = NO;
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>59</string>
|
||||
<string>63</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
|
||||
@@ -19,6 +19,6 @@
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>59</string>
|
||||
<string>63</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
@@ -62,6 +62,7 @@
|
||||
"babel-eslint": "7.2.3",
|
||||
"babel-plugin-module-resolver": "2.7.1",
|
||||
"babel-plugin-transform-remove-console": "6.8.5",
|
||||
"babel-preset-env": "1.6.1",
|
||||
"babel-preset-es2015": "6.24.1",
|
||||
"babel-preset-latest": "6.24.1",
|
||||
"babel-preset-react": "6.24.1",
|
||||
|
||||
99
yarn.lock
99
yarn.lock
@@ -583,7 +583,7 @@ babel-plugin-transform-async-to-generator@6.16.0:
|
||||
babel-plugin-syntax-async-functions "^6.8.0"
|
||||
babel-runtime "^6.0.0"
|
||||
|
||||
babel-plugin-transform-async-to-generator@^6.16.0, babel-plugin-transform-async-to-generator@^6.24.1:
|
||||
babel-plugin-transform-async-to-generator@^6.16.0, babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
|
||||
dependencies:
|
||||
@@ -637,7 +637,7 @@ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0, babel-plugin-trans
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-block-scoping@^6.24.1, babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.7.1, babel-plugin-transform-es2015-block-scoping@^6.8.0:
|
||||
babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1, babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.7.1, babel-plugin-transform-es2015-block-scoping@^6.8.0:
|
||||
version "6.26.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
|
||||
dependencies:
|
||||
@@ -647,7 +647,7 @@ babel-plugin-transform-es2015-block-scoping@^6.24.1, babel-plugin-transform-es20
|
||||
babel-types "^6.26.0"
|
||||
lodash "^4.17.4"
|
||||
|
||||
babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.6.5, babel-plugin-transform-es2015-classes@^6.8.0:
|
||||
babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.6.5, babel-plugin-transform-es2015-classes@^6.8.0:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
|
||||
dependencies:
|
||||
@@ -661,33 +661,33 @@ babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-cla
|
||||
babel-traverse "^6.24.1"
|
||||
babel-types "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-computed-properties@^6.24.1, babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.6.5, babel-plugin-transform-es2015-computed-properties@^6.8.0:
|
||||
babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1, babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.6.5, babel-plugin-transform-es2015-computed-properties@^6.8.0:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
babel-template "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.6.5, babel-plugin-transform-es2015-destructuring@^6.8.0:
|
||||
babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.6.5, babel-plugin-transform-es2015-destructuring@^6.8.0:
|
||||
version "6.23.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
|
||||
babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
babel-types "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.6.0, babel-plugin-transform-es2015-for-of@^6.8.0:
|
||||
babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0, babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.6.0, babel-plugin-transform-es2015-for-of@^6.8.0:
|
||||
version "6.23.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.5.0, babel-plugin-transform-es2015-function-name@^6.8.0:
|
||||
babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.5.0, babel-plugin-transform-es2015-function-name@^6.8.0:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
|
||||
dependencies:
|
||||
@@ -701,7 +701,7 @@ babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-li
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
||||
babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
|
||||
dependencies:
|
||||
@@ -709,7 +709,7 @@ babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
||||
babel-runtime "^6.22.0"
|
||||
babel-template "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.7.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0:
|
||||
babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.7.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0:
|
||||
version "6.26.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
|
||||
dependencies:
|
||||
@@ -718,7 +718,7 @@ babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es201
|
||||
babel-template "^6.26.0"
|
||||
babel-types "^6.26.0"
|
||||
|
||||
babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
|
||||
babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
|
||||
dependencies:
|
||||
@@ -726,7 +726,7 @@ babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
|
||||
babel-runtime "^6.22.0"
|
||||
babel-template "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-modules-umd@^6.24.1:
|
||||
babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
|
||||
dependencies:
|
||||
@@ -734,14 +734,14 @@ babel-plugin-transform-es2015-modules-umd@^6.24.1:
|
||||
babel-runtime "^6.22.0"
|
||||
babel-template "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-object-super@^6.24.1, babel-plugin-transform-es2015-object-super@^6.6.5, babel-plugin-transform-es2015-object-super@^6.8.0:
|
||||
babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1, babel-plugin-transform-es2015-object-super@^6.6.5, babel-plugin-transform-es2015-object-super@^6.8.0:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
|
||||
dependencies:
|
||||
babel-helper-replace-supers "^6.24.1"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.24.1, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.7.0, babel-plugin-transform-es2015-parameters@^6.8.0:
|
||||
babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.7.0, babel-plugin-transform-es2015-parameters@^6.8.0:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
|
||||
dependencies:
|
||||
@@ -752,7 +752,7 @@ babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-para
|
||||
babel-traverse "^6.24.1"
|
||||
babel-types "^6.24.1"
|
||||
|
||||
babel-plugin-transform-es2015-shorthand-properties@6.x, babel-plugin-transform-es2015-shorthand-properties@^6.24.1, babel-plugin-transform-es2015-shorthand-properties@^6.5.0, babel-plugin-transform-es2015-shorthand-properties@^6.8.0:
|
||||
babel-plugin-transform-es2015-shorthand-properties@6.x, babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1, babel-plugin-transform-es2015-shorthand-properties@^6.5.0, babel-plugin-transform-es2015-shorthand-properties@^6.8.0:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
|
||||
dependencies:
|
||||
@@ -765,7 +765,7 @@ babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-sticky-regex@6.x, babel-plugin-transform-es2015-sticky-regex@^6.24.1:
|
||||
babel-plugin-transform-es2015-sticky-regex@6.x, babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
|
||||
dependencies:
|
||||
@@ -779,13 +779,13 @@ babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
|
||||
babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
|
||||
version "6.23.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-unicode-regex@6.x, babel-plugin-transform-es2015-unicode-regex@^6.24.1:
|
||||
babel-plugin-transform-es2015-unicode-regex@6.x, babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
|
||||
dependencies:
|
||||
@@ -805,7 +805,7 @@ babel-plugin-transform-es3-property-literals@^6.5.0, babel-plugin-transform-es3-
|
||||
dependencies:
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-exponentiation-operator@^6.24.1:
|
||||
babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
|
||||
dependencies:
|
||||
@@ -875,7 +875,7 @@ babel-plugin-transform-react-jsx@^6.24.1, babel-plugin-transform-react-jsx@^6.5.
|
||||
babel-plugin-syntax-jsx "^6.8.0"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-regenerator@^6.24.1, babel-plugin-transform-regenerator@^6.5.0:
|
||||
babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1, babel-plugin-transform-regenerator@^6.5.0:
|
||||
version "6.26.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
|
||||
dependencies:
|
||||
@@ -908,6 +908,41 @@ babel-polyfill@^6.20.0, babel-polyfill@^6.26.0:
|
||||
core-js "^2.5.0"
|
||||
regenerator-runtime "^0.10.5"
|
||||
|
||||
babel-preset-env@1.6.1:
|
||||
version "1.6.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48"
|
||||
dependencies:
|
||||
babel-plugin-check-es2015-constants "^6.22.0"
|
||||
babel-plugin-syntax-trailing-function-commas "^6.22.0"
|
||||
babel-plugin-transform-async-to-generator "^6.22.0"
|
||||
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
|
||||
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
|
||||
babel-plugin-transform-es2015-block-scoping "^6.23.0"
|
||||
babel-plugin-transform-es2015-classes "^6.23.0"
|
||||
babel-plugin-transform-es2015-computed-properties "^6.22.0"
|
||||
babel-plugin-transform-es2015-destructuring "^6.23.0"
|
||||
babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
|
||||
babel-plugin-transform-es2015-for-of "^6.23.0"
|
||||
babel-plugin-transform-es2015-function-name "^6.22.0"
|
||||
babel-plugin-transform-es2015-literals "^6.22.0"
|
||||
babel-plugin-transform-es2015-modules-amd "^6.22.0"
|
||||
babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
|
||||
babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
|
||||
babel-plugin-transform-es2015-modules-umd "^6.23.0"
|
||||
babel-plugin-transform-es2015-object-super "^6.22.0"
|
||||
babel-plugin-transform-es2015-parameters "^6.23.0"
|
||||
babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
|
||||
babel-plugin-transform-es2015-spread "^6.22.0"
|
||||
babel-plugin-transform-es2015-sticky-regex "^6.22.0"
|
||||
babel-plugin-transform-es2015-template-literals "^6.22.0"
|
||||
babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
|
||||
babel-plugin-transform-es2015-unicode-regex "^6.22.0"
|
||||
babel-plugin-transform-exponentiation-operator "^6.22.0"
|
||||
babel-plugin-transform-regenerator "^6.22.0"
|
||||
browserslist "^2.1.2"
|
||||
invariant "^2.2.2"
|
||||
semver "^5.3.0"
|
||||
|
||||
babel-preset-es2015-node@^6.1.1:
|
||||
version "6.1.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f"
|
||||
@@ -1371,6 +1406,13 @@ browser-stdout@1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f"
|
||||
|
||||
browserslist@^2.1.2:
|
||||
version "2.6.1"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.6.1.tgz#cc65a05ad6131ebda26f076f2822ba1bc826376b"
|
||||
dependencies:
|
||||
caniuse-lite "^1.0.30000755"
|
||||
electron-to-chromium "^1.3.27"
|
||||
|
||||
bser@1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169"
|
||||
@@ -1439,6 +1481,10 @@ camelcase@^4.1.0:
|
||||
version "4.1.0"
|
||||
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
||||
|
||||
caniuse-lite@^1.0.30000755:
|
||||
version "1.0.30000757"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000757.tgz#81e3bc029728a032933501994ef79db1c21159e3"
|
||||
|
||||
caseless@~0.12.0:
|
||||
version "0.12.0"
|
||||
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
||||
@@ -2068,6 +2114,10 @@ ejs@^2.4.1:
|
||||
version "2.5.7"
|
||||
resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.7.tgz#cc872c168880ae3c7189762fd5ffc00896c9518a"
|
||||
|
||||
electron-to-chromium@^1.3.27:
|
||||
version "1.3.27"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d"
|
||||
|
||||
encodeurl@~1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
|
||||
@@ -3881,10 +3931,11 @@ makeerror@1.0.x:
|
||||
tmpl "1.0.x"
|
||||
|
||||
mattermost-redux@mattermost/mattermost-redux#master:
|
||||
version "0.0.1"
|
||||
resolved "https://codeload.github.com/mattermost/mattermost-redux/tar.gz/14b5f58c9be349c0f9514bc9e457ea4ac6bf2d03"
|
||||
version "1.0.0"
|
||||
resolved "https://codeload.github.com/mattermost/mattermost-redux/tar.gz/c3c3f9e9cf2ab31b0e30c61b056b4da2972d95ea"
|
||||
dependencies:
|
||||
deep-equal "1.0.1"
|
||||
form-data "2.3.1"
|
||||
harmony-reflect "1.5.1"
|
||||
isomorphic-fetch "2.2.1"
|
||||
mime-db "1.30.0"
|
||||
@@ -5273,8 +5324,8 @@ redux-persist@4.9.1:
|
||||
lodash-es "^4.17.4"
|
||||
|
||||
redux-persist@^4.5.0:
|
||||
version "4.10.1"
|
||||
resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-4.10.1.tgz#4fb2b789942f10f56d51cc7ad068d9d6beb46124"
|
||||
version "4.10.2"
|
||||
resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-4.10.2.tgz#8efdb16cfe882c521a78a6d0bfdfef2437f49f96"
|
||||
dependencies:
|
||||
json-stringify-safe "^5.0.1"
|
||||
lodash "^4.17.4"
|
||||
|
||||
Reference in New Issue
Block a user