* Add autotranslations
* Develop latest changes and missing features
* i18n-extract
* Fix tests and update api behavior
* Fix minor bugs
* adjustments to shimmer animation, showtranslation modal style
* Update post.tsx
* Update show_translation.tsx
* adjust sizing and opacity of translate icon
* Add channel header translated icon
* Disable auto translation item if it is not a supported language
* Move channel info to the top
* Update edit channel to channel info
* Fix align of option items
* Fix i18n
* Add detox related changes for channel settings changes
* Add tests
* Address changes around the my channel column change
* Address feedback
* Fix test
* Fix bad import
* Fix set my channel autotranslation
* Fix test
* Address feedback
* Add missing files from last commit
* Remove unneeded change
---------
(cherry picked from commit 23565b5135)
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: Matthew Birtch <mattbirtch@gmail.com>
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from '@utils/key_mirror';
|
|
|
|
export default keyMirror({
|
|
ACCOUNT_SELECT_TABLET_VIEW: null,
|
|
CHANNEL_ARCHIVED: null,
|
|
CHANNEL_SWITCH: null,
|
|
CLOSE_BOTTOM_SHEET: null,
|
|
CLOSE_GALLERY: null,
|
|
CONFIG_CHANGED: null,
|
|
LICENSE_CHANGED: null,
|
|
FREEZE_SCREEN: null,
|
|
GALLERY_ACTIONS: null,
|
|
LEAVE_CHANNEL: null,
|
|
LEAVE_TEAM: null,
|
|
LOADING_CHANNEL_POSTS: null,
|
|
NOTIFICATION_ERROR: null,
|
|
REMOVE_USER_FROM_CHANNEL: null,
|
|
MANAGE_USER_CHANGE_ROLE: null,
|
|
SERVER_LOGOUT: null,
|
|
SERVER_VERSION_CHANGED: null,
|
|
SESSION_EXPIRED: null,
|
|
TAB_BAR_VISIBLE: null,
|
|
TEAM_LOAD_ERROR: null,
|
|
TEAM_SWITCH: null,
|
|
USER_TYPING: null,
|
|
USER_STOP_TYPING: null,
|
|
POST_LIST_SCROLL_TO_BOTTOM: null,
|
|
SWIPEABLE: null,
|
|
ITEM_IN_VIEWPORT: null,
|
|
SEND_TO_POST_DRAFT: null,
|
|
CRT_TOGGLED: null,
|
|
JOIN_CALL_BAR_VISIBLE: null,
|
|
DRAFT_SWIPEABLE: null,
|
|
ACTIVE_SCREEN: null,
|
|
ACTIVE_SERVER_CHANGED: null,
|
|
FILE_ADD_REMOVED: null,
|
|
POST_DELETED_FOR_CHANNEL: null,
|
|
KEYBOARD_STATE_CHANGED: null,
|
|
CLOSE_INPUT_ACCESSORY_VIEW: null,
|
|
EMOJI_PICKER_SEARCH_FOCUSED: null,
|
|
});
|