d76039db23e63d587eead575b7100b88bf62a4fa
12751 Коммитов
| Автор | SHA1 | Сообщение | Дата | |
|---|---|---|---|---|
|
|
d76039db23 |
[MM-25659] ability to permanent delete channel through client (#15202)
Summary
Ability to permanent delete channel through client
Ticket Link
https://mattermost.atlassian.net/browse/MM-25659
|
||
|
|
11513a8d0d |
MM-27507: Propagate rate limit errors to client (#15230)
* MM-27507: Propagate rate limit errors to client We return an error from SendInviteEmails instead of just logging it to let the client know that a rate limit error has happened. The status code is chosen as 413 (entity too large) instead of 429 (too many requests) because it's not the request which is rate limited, but the payload inside it which is. Ideally, the email sending should have been implemented by a queue which would just return an error to the client when full. That is also why we are not returning an X-Retry-After and X-Reset-After in the headers because that would mix with the actual rate limiting. A separate header X-Email-Invite-Reset-After might do the job, but it comes at an extra cost of additional API surface and a clunky API. Instead, that information is contained in the error response. The web client needs to just surface the error. An API client will have to do a bit more work to parse the error if it needs to automatically know when to retry. Given that an email sending client is not a very common use case, we decide to keep the API clean. This decision can be revisited if it becomes problematic in the future. https://mattermost.atlassian.net/browse/MM-27507 * Fixing translations * Added retry_after and reset_after in API response. |
||
|
|
20e44399c7 |
SystemStore migration to return plain errors (#14835)
* SystemStore migration to return plain errors * Fix nilness * Fix translations * Fix merge * Fix layers * Fix merge errors * Lint: remove unnecessary use of sprint * Fix merge errors * Fix i18n Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in> |
||
|
|
e8d431ee7c |
[MM-26837] attempt at fixing flaky test on mysql-5.6 (#15110)
Summary - Attempt at fixing the AutocompleteInTeam/empty_string test which is flaky on MySQL-5.6. This is likely an index_merge_intersection optimization issue. See https://community.mattermost.com/core/pl/uzgygwa9e3d4pns14ayfs7mobw for more discussion. The fix here simply modifies the where clause to change the query plan so index_merge_intersection is not used, while also not introducing a temporary table or a filesort. Ticket Link - https://mattermost.atlassian.net/browse/MM-26837 |
||
|
|
ac26555cdb |
MM-27735: Do not build test and other tools in CI (#15238)
Our codebase uses main_test.go files to control tests at a package level. However, the problem with that is when we use ./... to build the codebase, those binaries also get built. This is unnecessary and creates further delays in the pipeline. All we need to build are only mattermost and platform binaries in CI. The rest are dependant on the developer. In my dev environment, this reduces the build times from 13 seconds to 4 seconds. https://mattermost.atlassian.net/browse/MM-27735 |
||
|
|
220d39d09b |
MM-24544: Fix crash in (*Status).ToClusterJson (#14484)
We apply the same fix that was done in https://github.com/mattermost/mattermost-server/pull/14147. This method was missed out. Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
4e43826c5c | cmd/version: skip server start to get the current mattermost version (#15234) | ||
|
|
91a76b2df9 |
MM-27456: Use reflect-free serialization for hot structs (#15171)
Automatic Merge |
||
|
|
32b7d2b5f1 |
StatusStore migration (#14978)
* Finished! * Typos * Fix error * Fix layers * Lint: remove unnecessary use of sprint * Fix shadowing err |
||
|
|
909cda6d49 |
Pluginstore migration (#14971)
Automatic Merge |
||
|
|
19173ea6ff |
Migrating Team.SaveMember/SaveMultipleMembers into errors (#14924)
* Migrating Team.SaveMember/SaveMultipleMembers into errors * Removing copy/paste comments * Fixing another small thing * Fixing tests * Addressing PR review comments * Fixing some tests * Fixing golangci-lint * Fixing linter * Regenerating store layers * Fix lint error after merge * Other lint error fixed Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
1b141678fe |
Adding initial retry layer version (#14954)
* Adding initial retry layer version * Some simplification around the generated code * Generating retry layer again * Improving naming generation in store generated layers * Address PR review comments * Updating store layers * Addressing PR review comments * fixing lint errors * Updating store layers * Adding license header * Applying the retry layer to the reaction_store * Regenerating retry layer |
||
|
|
c89c56ab2e |
[MM-27328] Upgrade minio-go to v7 (#15177)
* Upgrade minio-go to v7 * Update to v7.0.3 Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
5566395032 |
First part of PostStore migration (#15123)
Automatic Merge |
||
|
|
d9ee26a47b |
MM-26575: Move app initialization inside Websocket router out of handler (#14991)
* MM-26575: Move app initialization inside Websocket router out of handler The websocket router struct is shared amongst multiple handlers. Therefore, there is a race condition while setting the app field and reading from it. We move the initialization of the app field when the router struct is initialized. And we also remove the initializations of some app fields which caused race conditions by being written from multiple goroutines. They are already being written once inside the AppInitializedOnce.Do method and it's redundant to set them again to the same value. * Add missing fields in server connector Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
1f09d86f42 |
Moving slash-commands out of app package (#14979)
* Moving slash-commands out of app package * Fixing golint checks * Fixing golangci-lint * Fixing golangci-lint errors |
||
|
|
788c130774 |
Moving slack importer into a service (#14860)
* Moving slack importer into a service * Adding missed license headers * Fixing tests * Adding license header |
||
|
|
5ab06162dc |
[MM-27377] api4/team_local: add updateChannelPrivacy and restoreTeam to local mode (#15201)
* api4/team_local: add update ch privacy to local mode * api4/team_local: add restoreTeam to local mode * api4/team: add a test case |
||
|
|
aa88fb445c | Log URL for requests to non-existing plugins (#15229) | ||
|
|
3124b81229 |
MM-27040: Fix flaky tests due to same UpdateAt timestamp (#15216)
* MM-27040: Fix flaky tests due to same UpdateAt timestamp
Update queries are not guaranteed to always update the row.
Since we are only bumping the UpdateAt timestamps, if 2 update
requests hit concurrently within the same millisecond, then one
is bound to fail.
We fix all cases in the codebase where we were updating the UpdateAt
field to not check for count != 1, but rather count > 1.
A similar fix was already done in
|
||
|
|
e73ff83e9d |
Translations update from Weblate (#15223)
* Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (1953 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.3% (1931 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Korean) Currently translated at 99.3% (1991 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Japanese) Currently translated at 99.9% (2002 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.0% (1985 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.2% (1928 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.4% (1933 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Dutch) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.6% (2000 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 98.4% (1976 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.2% (1932 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 99.9% (2006 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Romanian) Currently translated at 100.0% (2008 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (1957 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.3% (1935 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Korean) Currently translated at 99.3% (1995 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Japanese) Currently translated at 99.9% (2006 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.0% (1989 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.2% (1932 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 100.0% (2008 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.4% (1937 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Romanian) Currently translated at 100.0% (2008 of 2008 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Dutch) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Dutch) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Dutch) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Dutch) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Dutch) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.6% (1996 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 98.4% (1972 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.2% (1928 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 99.9% (2002 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 99.9% (2002 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Russian) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 98.3% (1970 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ * Translated using Weblate (Turkish) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Turkish) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 98.4% (1972 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ * Translated using Weblate (Spanish) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (Spanish) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net> Co-authored-by: Tom De Moor <tom@controlaltdieliet.be> Co-authored-by: Alexey Napalkov <flynbit@gmail.com> Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com> Co-authored-by: Kaya Zeren <kayazeren@gmail.com> Co-authored-by: Mattermost Weblate Notify Bot <dev-ops@mattermost.com> Co-authored-by: Elias Nahum <elias@mattermost.com> |
||
|
|
101c6c7c01 |
[MM-27623] Add new session prop for oauth (#15221)
* Add new session prop for oauth * Make it isOAuthUser to differentiate better * Fix up caps * Fix tests * Add tests for IsOAuthUser |
||
|
|
a540dcdf9c |
move MM-26057 to 5.28; set previous PluginIds to '' (#15218)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
9333b7d896 | Start required docker services before running tests (#15217) | ||
|
|
4492549d80 |
MM-27572 permissions regression (#15215)
* Fix regression in HasPermissionToTeam * Removing unessisary special case + verify system admins always have permissions. * Fixing testing and bad cleanup. |
||
|
|
8138600dd1 |
MM-27575: Use index hints to prevent index_merge_intersection (#15207)
Even after specifying all the 3 columns to coerce MySQL into choosing the right multi-column index, it sometimes uses 2 separate indices and does an index_merge of them. This creates problems because the DeleteAt=0 search is essentially the entire Posts table, and causes a disastrously bad performance than even choosing the wrong index (idx_create_at). The problem with this approach is that we hardcode the decision to a specific index when MySQL was free to choose the right index depending on table statistics. However, there does not appear to be a case where this index can cause regressions than using some other index. Another option here was to set optimizer_switch="index_merge_intersection=off" at a session level for a transaction and then switch it back on after the query is done. However, this can cause some unintentional consequences because this setting is only available at a session level and not at a query level. There is no need to set something at the session level when an index hint suffices. https://mattermost.atlassian.net/browse/MM-27575 |
||
|
|
3f19a8c011 |
[MM-27376] api4/channel: add move channel to local mode (#15200)
* api4/channel: add move channel to local mode * app/channel: reflect review comments |
||
|
|
d906be1d6c |
MM-27574: Add Learn More text to Admin Advisor bot message (#15199)
* MM-27574: add Learn More text to bot message Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com> |
||
|
|
4f46fefd7d | include user delete at (#15191) | ||
|
|
c3d945513c | Token is not team and guest then error (#15193) | ||
|
|
063393f694 |
Update en.json (#15194)
Automatic Merge |
||
|
|
e8326fd7e8 | api4/bot: fix permission check in convert handler (#15196) | ||
|
|
a22f02c867 |
MM-27412 Fixing /test command. (#15155)
* Fixing /test command. * Add error handling to channels command. * Switch to using app instead of client in some places. * Fix lint being confused. * Join channels automatically. Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
fb453d578f | [MM-24526] Filter * characters from the search terms in DB (#14884) | ||
|
|
7f64199a37 |
MM-27184 deprecate model.SetExpireInDays (#15165)
Mobile users were having their sessions unexpectedly expired, despite having ServiceSettings.ExtendSessionLengthWithActivity enabled. Every time a mobile app is opened it called `/api/v4/sessions/device` which calls attachDeviceId which calls `(*Session)SetExpireInDays`. This code above assumed the expiry should be relative to CreateAt which is incorrect when ExtendSessionLengthWithActivity is enabled. Therefore, every time the mobile app was opened, the maximum expiry was set in memory to CreateAt + session_length, even if the session was extended. (*Session)SetExpireInDays is now deprecated and replaced with (*App)SetSessionExpireInDays which takes into account the ExtendSessionLengthWithActivity setting. |
||
|
|
86290685ae |
RoleStore migration (#15017)
Automatic Merge |
||
|
|
7a4d31c583 |
Translations update from Weblate (#15179)
* Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Russian) Currently translated at 100.0% (1971 of 1971 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1969 of 1969 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.5% (1959 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 97.7% (1923 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Korean) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Spanish) Currently translated at 99.9% (1967 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (Dutch) Currently translated at 99.4% (1958 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Turkish) Currently translated at 99.3% (1956 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Romanian) Currently translated at 99.1% (1951 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (French) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Japanese) Currently translated at 99.4% (1958 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.8% (1966 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Italian) Currently translated at 99.7% (1963 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (German) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Chinese (Simplified)) Currently translated at 99.1% (1951 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Polish) Currently translated at 98.5% (1939 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Ukrainian) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 99.4% (1958 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Italian) Currently translated at 99.7% (1963 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Dutch) Currently translated at 99.7% (1963 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Spanish) Currently translated at 99.9% (1967 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 99.8% (1966 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ * Translated using Weblate (Turkish) Currently translated at 99.9% (1970 of 1971 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Turkish) Currently translated at 99.9% (1967 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Japanese) Currently translated at 99.9% (1970 of 1971 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ * Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 98.0% (1965 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 98.0% (1965 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 98.2% (1969 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 98.2% (1970 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 97.2% (1950 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.6% (1957 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.6% (1938 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 97.8% (1962 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Japanese) Currently translated at 98.2% (1969 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 97.8% (1962 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 98.0% (1966 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Russian) Currently translated at 98.3% (1971 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.0% (1984 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 98.1% (1968 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Russian) Currently translated at 98.4% (1971 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (German) Currently translated at 96.7% (1938 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Italian) Currently translated at 99.4% (1991 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Italian) Currently translated at 99.4% (1991 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Japanese) Currently translated at 98.1% (1966 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.3% (1990 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.4% (1933 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 97.9% (1963 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.6% (1937 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Dutch) Currently translated at 99.9% (2002 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Romanian) Currently translated at 99.5% (1993 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.0% (1984 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Italian) Currently translated at 99.4% (1991 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Romanian) Currently translated at 99.5% (1993 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2002 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Russian) Currently translated at 100.0% (2003 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2002 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Korean) Currently translated at 96.7% (1937 of 2002 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (German) Currently translated at 96.4% (1938 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Chinese (Traditional)) Currently translated at 98.9% (1983 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 97.9% (1962 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.4% (1933 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 99.8% (2001 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 99.9% (2002 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 99.4% (1992 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.5% (1954 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.6% (1936 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 99.8% (2001 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 96.8% (1940 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Spanish) Currently translated at 99.9% (2003 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2009 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Japanese) Currently translated at 97.8% (1967 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.0% (1991 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.2% (1934 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 99.7% (2004 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Korean) Currently translated at 99.5% (2000 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 98.7% (1984 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 97.6% (1963 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.2% (1934 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Romanian) Currently translated at 99.1% (1993 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.2% (1955 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.3% (1937 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 99.6% (2002 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 99.5% (2000 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Russian) Currently translated at 100.0% (2010 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Spanish) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.1% (1986 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 97.8% (1961 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.3% (1931 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 99.9% (2003 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 99.1% (1987 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (1952 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.5% (1934 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 99.6% (1996 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 99.5% (1994 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Japanese) Currently translated at 98.0% (1964 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.2% (1988 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.3% (1931 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 99.9% (2003 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.6% (1936 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.5% (1955 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ * Translated using Weblate (Russian) Currently translated at 100.0% (2005 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Romanian) Currently translated at 100.0% (2005 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 98.5% (1975 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.7% (1999 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Ukrainian) Currently translated at 96.2% (1931 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ * Translated using Weblate (Japanese) Currently translated at 97.9% (1964 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ * Translated using Weblate (French) Currently translated at 96.2% (1931 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ * Translated using Weblate (Spanish) Currently translated at 99.9% (2004 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Polish) Currently translated at 96.4% (1934 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ * Translated using Weblate (German) Currently translated at 96.5% (1936 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Russian) Currently translated at 100.0% (2006 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Russian) Currently translated at 100.0% (2006 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Korean) Currently translated at 99.4% (1994 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Italian) Currently translated at 99.1% (1988 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Romanian) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 98.4% (1975 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (1955 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ * Translated using Weblate (Romanian) Currently translated at 100.0% (2006 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Japanese) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ * Translated using Weblate (Japanese) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2006 of 2007 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Russian) Currently translated at 100.0% (2007 of 2007 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Co-authored-by: Alexey Napalkov <flynbit@gmail.com> Co-authored-by: Chikei <chikei@gmail.com> Co-authored-by: mlongo <m.longo@metalsistem.com> Co-authored-by: Tom De Moor <tom@controlaltdieliet.be> Co-authored-by: Elias Nahum <elias@mattermost.com> Co-authored-by: aeomin <lin@aeomin.net> Co-authored-by: Kaya Zeren <kayazeren@gmail.com> Co-authored-by: kaakaa <stooner.hoe@gmail.com> Co-authored-by: Mattermost Weblate Notify Bot <dev-ops@mattermost.com> Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com> Co-authored-by: thePanz <thepanz@gmail.com> Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net> Co-authored-by: Changho Park <pch4463@gmail.com> Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com> Co-authored-by: Peter Chen <petercpg@gmail.com> |
||
|
|
70e649b36a |
MM-27178: Use FileSettings.Directory in export tool (#15100)
* MM-27178: use FileSettings.Directory in export * Set empty FileSettings.Directory to default value * Validate that FileSettings.Directory is non-empty * Don't set FileSettings.Directory to / in fixConfig * Run make i18n-extract Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
8b7e00f0f7 | Fix empty string on app error (#15166) | ||
|
|
d4dac31b04 |
MM-27407 Return archived channels even if view archived config is false for sysadmin endpoints (#15149)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
339c5bae76 |
MM-26836: Remove some app fields which cause race conditions (#15019)
`(a *App) InitServer` was being called from multiple goroutines and were modifying the fields of the App struct concurrently. However, the fields were just reflecting the Server fields, and we already have public getters for those fields. Therefore, we remove those fields and just change the code to return the server field directly. Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
d22dd262ee |
[MM-24665] refactor team store to use squirrel (#14549)
* Refactor team store to use squirrel * Fixing or expression * Refactor team store to use squirrel * Refactor team store to use squirrel * Refactor team store to use squirrel * Refactor team store to use squirrel * Removing shadow declaration * Fix error messages * Improving Update() and Delete() calls * Update store/sqlstore/team_store.go Using squirrel to build 'in' clause Co-authored-by: Miguel de la Cruz <mgdelacroix@gmail.com> * Add missing translation Co-authored-by: Dante Pippi <dantepippi@gmai.com> Co-authored-by: Miguel de la Cruz <mgdelacroix@gmail.com> Co-authored-by: mattermod <mattermod@users.noreply.github.com> Co-authored-by: Claudio Costa <cstcld91@gmail.com> |
||
|
|
94ee1fa5c6 |
IS-255: Test and remove code for creating enterprise docker image. (#14395)
Co-authored-by: mattermod <mattermod@users.noreply.github.com> |
||
|
|
4baf255dc2 | Fix possible panic on server shutdown (#15140) | ||
|
|
38307c0b73 |
[MM-27293] Remove heap pre-allocation for file uploads (#15143)
* Validate Content-Length * Avoid pre-allocating memory for file uploads * Add small pre-allocation to help mitigate small uploads performance |
||
|
|
8693a479d9 |
Translations update from Weblate (#15167)
* Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Russian) Currently translated at 100.0% (1971 of 1971 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1969 of 1969 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Russian) Currently translated at 100.0% (1968 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.5% (1959 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 97.7% (1923 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Korean) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Spanish) Currently translated at 99.9% (1967 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (Dutch) Currently translated at 99.4% (1958 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Turkish) Currently translated at 99.3% (1956 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Romanian) Currently translated at 99.1% (1951 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (French) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Japanese) Currently translated at 99.4% (1958 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.8% (1966 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Italian) Currently translated at 99.7% (1963 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (German) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Chinese (Simplified)) Currently translated at 99.1% (1951 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Polish) Currently translated at 98.5% (1939 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Ukrainian) Currently translated at 98.3% (1936 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 99.4% (1958 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Italian) Currently translated at 99.7% (1963 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Dutch) Currently translated at 99.7% (1963 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Spanish) Currently translated at 99.9% (1967 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 99.8% (1966 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ * Translated using Weblate (Turkish) Currently translated at 99.9% (1970 of 1971 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Turkish) Currently translated at 99.9% (1967 of 1968 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Japanese) Currently translated at 99.9% (1970 of 1971 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ * Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 98.0% (1965 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 98.0% (1965 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 98.2% (1969 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 98.2% (1970 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 97.2% (1950 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.6% (1957 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.6% (1938 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 97.8% (1962 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Japanese) Currently translated at 98.2% (1969 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 97.8% (1962 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 98.0% (1966 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.5% (1935 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Russian) Currently translated at 98.3% (1971 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.0% (1984 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 98.1% (1968 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Russian) Currently translated at 98.4% (1971 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (German) Currently translated at 96.7% (1938 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Italian) Currently translated at 99.4% (1991 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Italian) Currently translated at 99.4% (1991 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Japanese) Currently translated at 98.1% (1966 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.3% (1990 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.4% (1933 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 97.9% (1963 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.6% (1937 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Dutch) Currently translated at 99.9% (2002 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Romanian) Currently translated at 99.5% (1993 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.0% (1984 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Italian) Currently translated at 99.4% (1991 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Romanian) Currently translated at 99.5% (1993 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2002 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Russian) Currently translated at 100.0% (2003 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2002 of 2003 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Korean) Currently translated at 96.7% (1937 of 2002 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (German) Currently translated at 96.4% (1938 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ Translated using Weblate (Chinese (Traditional)) Currently translated at 98.9% (1983 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 97.9% (1962 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.4% (1933 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 99.8% (2001 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 99.9% (2002 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 99.4% (1992 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.5% (1954 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.6% (1936 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 99.8% (2001 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 96.8% (1940 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Spanish) Currently translated at 99.9% (2003 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2009 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Japanese) Currently translated at 97.8% (1967 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.0% (1991 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.2% (1934 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 99.7% (2004 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Korean) Currently translated at 99.5% (2000 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 98.7% (1984 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 97.6% (1963 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.2% (1934 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Romanian) Currently translated at 99.1% (1993 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.2% (1955 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.3% (1937 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 99.6% (2002 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 99.5% (2000 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Russian) Currently translated at 100.0% (2010 of 2010 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Spanish) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (Chinese (Traditional)) Currently translated at 99.1% (1986 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 97.8% (1961 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ Translated using Weblate (Ukrainian) Currently translated at 96.3% (1931 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ Translated using Weblate (Turkish) Currently translated at 99.9% (2003 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ Translated using Weblate (Russian) Currently translated at 100.0% (2004 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ Translated using Weblate (Romanian) Currently translated at 99.1% (1987 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (1952 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Translated using Weblate (Polish) Currently translated at 96.5% (1934 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ Translated using Weblate (Dutch) Currently translated at 99.6% (1996 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Korean) Currently translated at 99.5% (1994 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ Translated using Weblate (Japanese) Currently translated at 98.0% (1964 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ Translated using Weblate (Italian) Currently translated at 99.2% (1988 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ Translated using Weblate (French) Currently translated at 96.3% (1931 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ Translated using Weblate (Spanish) Currently translated at 99.9% (2003 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ Translated using Weblate (German) Currently translated at 96.6% (1936 of 2004 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.5% (1955 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ * Translated using Weblate (Russian) Currently translated at 100.0% (2005 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Romanian) Currently translated at 100.0% (2005 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 98.5% (1975 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.7% (1999 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hant/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2004 of 2005 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Turkish) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/ * Translated using Weblate (Dutch) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/nl/ * Translated using Weblate (Ukrainian) Currently translated at 96.2% (1931 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/uk/ * Translated using Weblate (Japanese) Currently translated at 97.9% (1964 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/ * Translated using Weblate (French) Currently translated at 96.2% (1931 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/fr/ * Translated using Weblate (Spanish) Currently translated at 99.9% (2004 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/es/ * Translated using Weblate (Polish) Currently translated at 96.4% (1934 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/ * Translated using Weblate (German) Currently translated at 96.5% (1936 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/ * Translated using Weblate (Russian) Currently translated at 100.0% (2006 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Russian) Currently translated at 100.0% (2006 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ru/ * Translated using Weblate (Korean) Currently translated at 99.4% (1994 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ko/ * Translated using Weblate (Italian) Currently translated at 99.1% (1988 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/it/ * Translated using Weblate (Romanian) Currently translated at 99.9% (2005 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ro/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 98.4% (1975 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/zh_Hans/ * Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (1955 of 2006 strings) Translation: mattermost-languages-shipped/mattermost-server_master Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pt_BR/ Co-authored-by: Alexey Napalkov <flynbit@gmail.com> Co-authored-by: Chikei <chikei@gmail.com> Co-authored-by: mlongo <m.longo@metalsistem.com> Co-authored-by: Tom De Moor <tom@controlaltdieliet.be> Co-authored-by: Elias Nahum <elias@mattermost.com> Co-authored-by: aeomin <lin@aeomin.net> Co-authored-by: Kaya Zeren <kayazeren@gmail.com> Co-authored-by: kaakaa <stooner.hoe@gmail.com> Co-authored-by: Mattermost Weblate Notify Bot <dev-ops@mattermost.com> Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com> Co-authored-by: thePanz <thepanz@gmail.com> Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net> Co-authored-by: Changho Park <pch4463@gmail.com> Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com> Co-authored-by: Peter Chen <petercpg@gmail.com> |
||
|
|
9bfc5de44c |
MM-26584: Bump up Go patch version (#15156)
* MM-26584: Bump up Go patch version This contains a patch fix for https://github.com/golang/go/issues/38023 which have been encountered in our load tests and some users. I have verified on such a stuck instance and the thread dump seem to match with what is seen on the issue. All threads stuck on runtime.futex, except one, which is at runtime.osyield. And of all the times load tests were run which _did not_ show this issue, it was run with a version greater than 1.14.1, which further points to the theory that this bug is the culprit. * Replace docker image versions. * Update build/README.md Co-authored-by: Elisabeth Kulzer <elikul@elikul.de> Co-authored-by: Mattermod <mattermod@users.noreply.github.com> |
||
|
|
c5c6a5ce53 |
MM-26057 - Add CreateCommand plugin API (#14916)
Automatic Merge |
||
|
|
61cc7a8680 |
[MM-26576] fix flaky TestCreateUserInputFilter test (#15097)
- Summary
fix flaky TestCreateUserInputFilter test by deleting created user between interations
- Ticket Link
https://mattermost.atlassian.net/browse/MM-26576
|
||
|
|
1c5b6522e3 |
WebhookStore migration (#15042)
* Migration completed * Fix tests Co-authored-by: Jesús Espino <jespinog@gmail.com> |