Ben Schumacher
486e836b83
Fix racy test issues ( #24971 )
2023-11-06 12:26:17 +01:00
Scott Bishel
db238a205c
MM-55202-remove 'boards' from help command ( #25225 )
...
* remove 'boards' from help command
* remove boards from /help command
---------
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-11-03 15:27:34 +01:00
Antonis Stamatiou
fc87054f14
feat: Introduce go-version file to support multiple go versions on CI ( #25271 )
2023-11-03 16:25:54 +02:00
Syed Fazil
b2abd533a1
[MM-55212] Migrate server/channels/app/channel.go to make use of GenericStoreResult ( #25262 )
...
* Make use of GenericStoreResult in channels/app/channel.go
* Make use of GenericStoreResult in channels/app/channel.go
* Make use of GenericStoreResult in channels/app/channel.go
* Make use of GenericStoreResult in channels/app/channel.go
* Make use of GenericStoreResult in channels/app/channel.go
* Make use of GenericStoreResult in channels/app/channel.go
* Make use of GenericStoreResult in channels/app/channel.go
---------
Co-authored-by: fazil-syed <fazil@Gojo>
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-11-03 12:50:25 +01:00
Catena cyber
04e7b6bc9e
Applies perfsprint linter ( #24999 )
...
Replacing usages of fmt.Sprint with faster alternatives
Signed-off-by: Philippe Antoine <contact@catenacyber.fr >
2023-11-03 11:18:18 +01:00
Ben Schumacher
43f4734eae
[MM-55051] Assign correct timestamp to support packet files ( #25035 )
...
* Assign correct timestamp to support packet files
* Fix linter error
* Add back compression
---------
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-11-03 09:48:18 +01:00
Ben Schumacher
e8569c91af
[MM-32406] Introduce trace logging level for LDAP messages ( #25118 )
2023-11-03 08:06:16 +01:00
Amy Blais
aecfba2cfb
Update version.go ( #25276 )
...
Automatic Merge
2023-11-02 15:52:23 +01:00
Ben Schumacher
4948aa106b
[MM-54403] Introduce separate AdvanctedLogging levels for LDAP messages ( #24873 )
2023-11-02 12:31:57 +01:00
Vishal
dfb561a641
[MM-54357] Recent Mentions is showing posts for other similar named users. ( #25010 )
...
* Handle double quotes in Postgres
* quote the username when performing the search
2023-11-02 11:05:44 +05:30
Ben Schumacher
274adbf077
Reduce usage of mlog.Any ( #25180 )
2023-11-01 12:57:13 +01:00
Ben Schumacher
73fba481ed
[MM-55170] Improve error message when trying to activate a plugin in an unsupported environment ( #25160 )
2023-11-01 12:18:50 +01:00
Daniel Espino García
b0dc74957a
Fix flaky test introduced in #24602 ( #25236 )
2023-11-01 11:23:56 +01:00
mattermod
ba335b4025
Update latest version to 9.1.1
2023-10-31 16:14:24 +00:00
Ibrahim Serdar Acikgoz
1cd439f8e0
db/migrations: drop nextsyncat and description columns from shared remotes ( #25064 )
2023-10-31 15:25:16 +03:00
Ben Schumacher
a4ece51391
[MM-45065] Switch all api4 methods to use the new logger ( #24896 )
2023-10-31 11:00:22 +01:00
Ben Schumacher
b4c9eddca8
[MM-55096] Introduce generic StoreResult ( #25086 )
2023-10-31 10:21:31 +01:00
ludvigbolin
4547d9ab0e
[GH24626] Remove ExperimentalTimezone as this is always true ( #24657 )
...
* Remove all occurrences of ExperimentalTimezone in /server
This removes all uses of ExperimentalTimezone and makes all conditions using this setting being either removed (== false) or always used (== true)
* Remove timezone parameter for getChannelMemberByGroup
As timezone is always enabled this function no longer has a second parameter. The endpoint will always be called with includeTimezones set to true
* Remove all uses of ExperimentalTimezone in webapp
All conditions dependent of this are adjusted to always be true if experimentalTimezone should be true and vice versa
* Change all tests checking for correct usage of ExperimentalTimezone
As this parameter is no longer used, the tests which check for correct behaviour of this is no longer needed
* Fix type errors
Tests regarding types does now pass
'npm run check-types' will run successfully
* fix lint issues
Fix all current lint errors and now lint test goes through
* Fix test regarding profile popover
enableTimezone now is gone and all profile_popover.test.tsx can run successfully.
Added state.entities.users.profiles[] as it before threw an error without it.
* Fix tests where "April 1 2019" was changed to "April 01 2019"
Now it will show "April 1 2019" and "timeZone" will only show if its other than empty ("").
* Fix test where date was set to NaN
Now date will show correctly and will not be NaN
* fix minor test case that failed before
* fix linting in server
* Delete tests that are not valid with timeZoneEnabled removed
tests in advanced_create_comment and advanced_create_post had timeZoneEnabled
set to false as default. The tests that use this are now changed to once which are meant to have timeZoneEnabled set to true.
Adjust jest function in advanced_create_post to get correct stacktrace
* Parameter deleted
isTimeZoneEnabled is always true and therefore the parameter can be deleted
* adjust to prettier standard
* Remove all occurrences of ExperimentalTimezone in /server
This removes all uses of ExperimentalTimezone and makes all conditions using this setting being either removed (== false) or always used (== true)
* Remove timezone parameter for getChannelMemberByGroup
As timezone is always enabled this function no longer has a second parameter. The endpoint will always be called with includeTimezones set to true
* Remove all uses of ExperimentalTimezone in webapp
All conditions dependent of this are adjusted to always be true if experimentalTimezone should be true and vice versa
* Change all tests checking for correct usage of ExperimentalTimezone
As this parameter is no longer used, the tests which check for correct behaviour of this is no longer needed
* Fix type errors
Tests regarding types does now pass
'npm run check-types' will run successfully
* fix lint issues
Fix all current lint errors and now lint test goes through
* Fix test regarding profile popover
enableTimezone now is gone and all profile_popover.test.tsx can run successfully.
Added state.entities.users.profiles[] as it before threw an error without it.
* Fix tests where "April 1 2019" was changed to "April 01 2019"
Now it will show "April 1 2019" and "timeZone" will only show if its other than empty ("").
* Fix test where date was set to NaN
Now date will show correctly and will not be NaN
* fix minor test case that failed before
* fix linting in server
* Delete tests that are not valid with timeZoneEnabled removed
tests in advanced_create_comment and advanced_create_post had timeZoneEnabled
set to false as default. The tests that use this are now changed to once which are meant to have timeZoneEnabled set to true.
Adjust jest function in advanced_create_post to get correct stacktrace
* Parameter deleted
isTimeZoneEnabled is always true and therefore the parameter can be deleted
* adjust to prettier standard
---------
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com >
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-10-30 15:31:05 -04:00
Nicolas Le Cam
0b32e66c8e
server: Force local mode when launching test-data target ( #25155 )
2023-10-30 16:41:14 +01:00
Ben Schumacher
c7461751f2
Use request.CTX instead of *request.Context ( #24877 )
...
* Use request.CTX instead of *request.Context
* Fix tests
2023-10-30 16:33:37 +01:00
Michael Kochell
ee3b5e6810
Bump prepackage todo plugin version to 0.7.1 ( #25039 )
2023-10-27 17:16:22 -04:00
Julien Tant
375404c12e
[MM-54522] Add trial info to log + support packet ( #24596 )
...
Automatic Merge
2023-10-26 22:22:22 +03:00
Amy Blais
c1eb40ae05
Update en.json ( #25074 )
...
Automatic Merge
2023-10-26 16:52:22 +03:00
Daniel Espino García
cee4411355
[MM-54495] Fix update post plugin hooks ( #24602 )
...
* Fix updatePost props and plugin hooks
* Add more tests
* Minor naming improvement
* Revert props related changes
* Fix test
---------
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-10-26 15:15:00 +02:00
Neto Costa
00108d44bb
[MM-47821]: fix searchUserCmdF to return proper errors ( #24700 )
...
* fix: fix searchUserCmdF to return proper errors
* fix: fix broken tests
* fix: fix go-ci issues
* fix: fix more broken tests
* fix: fix wrong function call on error getting user test
* fix: fix e2e test
---------
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-10-25 14:56:12 -04:00
Antonis Stamatiou
f01e8f6c6d
[CLD-6501] Enhance visibility for PR builds artefacts ( #25141 )
...
Co-authored-by: Akis Maziotis <akis.maziotis@mattermost.com >
2023-10-25 18:22:15 +03:00
Ben Schumacher
671cf6cc3d
[MM-54319] Add AdvancedLoggingJSON setting to system console ( #24733 )
...
* Add AdvancedLoggingJSON setting to system console
* Apply suggestions from code review
Co-authored-by: Doug Lauder <wiggin77@warpmail.net >
* Add validation for AdvancedLoggingJSON
---------
Co-authored-by: Doug Lauder <wiggin77@warpmail.net >
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-10-25 16:40:07 +02:00
Jesse Hallam
2b8432bd5c
Fix i18n merge conflicts ( #25126 )
...
* Translated using Weblate (Dutch)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/nl/
* Translated using Weblate (Polish)
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/pl/
* Translated using Weblate (Turkish)
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/tr/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/zh_Hans/
* Translated using Weblate (Kazakh)
Currently translated at 2.1% (125 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/kk/
Translated using Weblate (Kazakh)
Currently translated at 1.4% (83 of 5702 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/kk/
* Translated using Weblate (Vietnamese)
Currently translated at 83.5% (2081 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/vi/
Translated using Weblate (Vietnamese)
Currently translated at 83.2% (2072 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (German)
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/de/
Translated using Weblate (German)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/de/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/sv/
* Translated using Weblate (Albanian)
Currently translated at 4.3% (247 of 5702 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/sq/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/nl/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/zh_Hans/
* Translated using Weblate (German)
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/de/
* Translated using Weblate (Kazakh)
Currently translated at 2.8% (161 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/kk/
* Translated using Weblate (Vietnamese)
Currently translated at 89.8% (2237 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/vi/
* Translated using Weblate (Vietnamese)
Currently translated at 89.8% (2237 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/vi/
---------
Co-authored-by: ctlaltdieliet_TESTACCOUNTFORWEBINARS <github3@controlaltdieliet.be >
Co-authored-by: master7 <marcin.karkosz@rajska.info >
Co-authored-by: Kaya Zeren <kayazeren@gmail.com >
Co-authored-by: ThrRip He <thrrip@thrrip.space >
Co-authored-by: Akbar Abdrakhmanov <kz.akbar@gmail.com >
Co-authored-by: linkvn <nguyentunglinh87@gmail.com >
Co-authored-by: jprusch <rs@schaeferbarthold.de >
Co-authored-by: MArtin Johnson <martinjohnson@bahnhof.se >
Co-authored-by: rubinaga <rubinaga02@gmail.com >
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be >
Co-authored-by: cescpmantidfly <cescpmantidfly@gmail.com >
2023-10-24 17:45:44 -03:00
Daniel Espino García
6125b0ca7f
MM-54778 Fix mark as unread on GMs ( #24880 )
...
* Fix mark as unread on GMs
* Don't count own messages in gms when marking as unread
* Change argument name
* Rename userId
---------
Co-authored-by: Mattermost Build <build@mattermost.com >
2023-10-24 15:27:30 +02:00
Ben Schumacher
5d3ba7483b
[MM-53057] Disallow malformed channel names for DMs ( #24404 )
2023-10-24 15:08:14 +02:00
Ben Schumacher
22c9c80cd2
[MM-54929] Revert "Remove unnecessary mmctl enterprise deps ( #24395 )" ( #25063 )
...
* Revert "Remove unnecessary mmctl enterprise deps (#24395 )"
This reverts commit 32512d35fb .
* Add comment
2023-10-24 10:51:38 +02:00
Ben Schumacher
e864f9cfee
[MM-55052] Improve file extraction logging ( #25036 )
2023-10-23 20:25:40 +02:00
Ben Schumacher
aa82597e2d
[MM-55048] Pretty print posts, users, channels and teams in logs ( #25029 )
2023-10-23 20:22:36 +02:00
Harrison Healey
a78710c2a6
MM-54201 Refactor mention parsing in preparation for multi-word mentions ( #25030 )
...
* MM-54201 Move ExplicitMentions to its own file and rename it (#24932 )
* MM-54201 Move ExplicitMentions to its own file and rename it
* Fix vet
* MM-54201 Refactor current mention parsing into MentionParserStandard (#24936 )
* MM-54201 Refactor current mention parsing into MentionParserStandard
* Fix vet
* MM-54201 Unify user and group mention parsing logic (#24937 )
* MM-54201 Add MentionKeywords type
* MM-54201 Move group mentions into MentionKeywords
* Fix flaky test caused by random iteration order
* Update server/channels/app/mention_results.go
Co-authored-by: Jesse Hallam <jesse.hallam@gmail.com >
* Address feedback
---------
Co-authored-by: Jesse Hallam <jesse.hallam@gmail.com >
---------
Co-authored-by: Jesse Hallam <jesse.hallam@gmail.com >
2023-10-23 12:37:58 -04:00
Julien Tant
74f35aa92c
(makefile) Injecting test data should not stop the server ( #25045 )
2023-10-23 09:22:07 -07:00
MArtin Johnson
41bf4a9fda
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/sv/
2023-10-23 18:22:23 +03:00
jprusch
9b38785a88
Translated using Weblate (German)
...
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/de/
Translated using Weblate (German)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/de/
2023-10-23 18:22:23 +03:00
linkvn
5919039e71
Translated using Weblate (Vietnamese)
...
Currently translated at 83.5% (2081 of 2490 strings)
Translation: Mattermost/server
Translate-URL: https://translate.mattermost.com/projects/mattermost/server/vi/
Translated using Weblate (Vietnamese)
Currently translated at 83.2% (2072 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
2023-10-23 18:22:23 +03:00
Kaya Zeren
40354f7759
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/tr/
2023-10-23 18:22:23 +03:00
master7
58570a29ad
Translated using Weblate (Polish)
...
Currently translated at 100.0% (5705 of 5705 strings)
Translation: Mattermost/webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (5702 of 5702 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/pl/
2023-10-23 18:22:23 +03:00
ctlaltdieliet_TESTACCOUNTFORWEBINARS
7cbabdf6c5
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (2490 of 2490 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/nl/
2023-10-23 18:22:23 +03:00
Jesse Hallam
4043f8b57b
upgrade gotestsum@v1.11.0 ( #25062 )
2023-10-23 11:54:42 -03:00
Qrypt
a46ad3169c
(feature) New MessagesWillBeConsumed Server Plugin Hook ( #23305 )
...
* feature: implemented basic MessageWillBeConsumed hook and applied on GetSinglePost method.
* use hook in get methods
* chore: refactored hook usage and created utils functions to apply hook
* bugfix: single post not updating
* chore: adjusted hook to return post
* chore: reverted some uneeded changes
* chore: updated hook to accept slice of posts
* bugfix: slice filled with niil values
* chore: MessageWillBeConsumed ranamed to MessagesWillBeConsumed
* Update plugin/hooks.go
Co-authored-by: Jesse Hallam <jesse@thehallams.ca >
* Add feature flag
* Update min version
* update tests to account for feature flag
* fix linting issues
---------
Co-authored-by: Matej Topolovac <>
Co-authored-by: mtopolovac <43346061+mtopolovac@users.noreply.github.com >
Co-authored-by: Jesse Hallam <jesse@thehallams.ca >
Co-authored-by: Kevin Hsieh <kevinh@qrypt.com >
Co-authored-by: Jesse Hallam <jesse.hallam@gmail.com >
2023-10-23 11:12:46 -03:00
Ben Schumacher
d0c22aa1cd
[MM-54435] Use annotated logger to capture compliance export logs ( #24791 )
2023-10-23 10:20:32 +02:00
Agniva De Sarker
2f5ca43158
Clarify the sensitive/sanitized logic ( #25034 )
...
I was looking at the high number of user_updated ws events
and ran across this piece of code. Had a hard time digesting it,
thought of adding a comment for people to understand it more
clearly.
```release-note
NONE
```
2023-10-20 20:49:50 +05:30
Ben Schumacher
86b965a3c4
[MM-53256] Use buildinfo instead of env variables for mmctl ( #23794 )
2023-10-20 11:23:05 +02:00
Ben Schumacher
e090adcb65
Add information about permanent user deletion to audit logs ( #25017 )
2023-10-19 17:49:53 +02:00
Ben Schumacher
4ed32be6d2
[MM-53019] Add file storage permission check to workspace health dashboard ( #24403 )
2023-10-19 17:31:09 +02:00
Maria A Nunez
6f67876629
Bumped NPS version ( #25007 )
2023-10-19 10:17:53 -04:00
Jesse Hallam
c0afe57ae1
Fix vi merge issues ( #25001 )
...
* Translated using Weblate (Vietnamese)
Currently translated at 71.8% (1789 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
Translated using Weblate (Dutch)
Currently translated at 100.0% (5706 of 5706 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/nl/
* Translated using Weblate (Vietnamese)
Currently translated at 68.6% (1708 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
Translated using Weblate (Vietnamese)
Currently translated at 60.6% (1510 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Russian)
Currently translated at 98.8% (5640 of 5706 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/ru/
Translated using Weblate (Russian)
Currently translated at 98.7% (5633 of 5706 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (2489 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/ru/
* Translated using Weblate (Vietnamese)
Currently translated at 70.6% (1758 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Vietnamese)
Currently translated at 70.6% (1758 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Vietnamese)
Currently translated at 71.4% (1778 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Vietnamese)
Currently translated at 71.7% (1785 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
Translated using Weblate (Vietnamese)
Currently translated at 71.4% (1778 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Update translation files
Updated by "Cleanup translation files" hook in Weblate.
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/
Update translation files
Updated by "Remove blank strings" hook in Weblate.
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/
* Translated using Weblate (Turkish)
Currently translated at 100.0% (5706 of 5706 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/tr/
* Translated using Weblate (Vietnamese)
Currently translated at 73.8% (1837 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
Translated using Weblate (Vietnamese)
Currently translated at 73.2% (1822 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
Translated using Weblate (Vietnamese)
Currently translated at 71.8% (1789 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Swedish)
Currently translated at 99.3% (5667 of 5703 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (2489 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/sv/
Translated using Weblate (Swedish)
Currently translated at 99.7% (2484 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/sv/
* Translated using Weblate (Hebrew)
Currently translated at 1.8% (46 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/he/
* Translated using Weblate (French)
Currently translated at 81.9% (4676 of 5703 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/fr/
* Translated using Weblate (Vietnamese)
Currently translated at 78.1% (1946 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
Translated using Weblate (Vietnamese)
Currently translated at 75.7% (1885 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Croatian)
Currently translated at 5.9% (339 of 5703 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/hr/
Translated using Weblate (Croatian)
Currently translated at 6.8% (171 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/hr/
* Translated using Weblate (Polish)
Currently translated at 100.0% (5703 of 5703 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/pl/
* Translated using Weblate (Swedish)
Currently translated at 99.9% (5702 of 5703 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/sv/
* Translated using Weblate (Kazakh)
Currently translated at 1.1% (65 of 5703 strings)
Translation: Mattermost/mattermost-webapp-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/webapp-monorepo/kk/
* Translated using Weblate (Vietnamese)
Currently translated at 81.5% (2029 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
* Translated using Weblate (Vietnamese)
Currently translated at 81.5% (2029 of 2489 strings)
Translation: Mattermost/mattermost-server-monorepo
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server-monorepo/vi/
---------
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be >
Co-authored-by: linkvn <nguyentunglinh87@gmail.com >
Co-authored-by: Konstantin <eleferen@gmail.com >
Co-authored-by: cescpmantidfly <cescpmantidfly@gmail.com >
Co-authored-by: Hosted Weblate <hosted@weblate.org >
Co-authored-by: Kaya Zeren <kayazeren@gmail.com >
Co-authored-by: MArtin Johnson <martinjohnson@bahnhof.se >
Co-authored-by: Tomer Ben-Rachel <tomerpacific@gmail.com >
Co-authored-by: Nicolas <nicolas.miard@zaclys.net >
Co-authored-by: Milo Ivir <mail@milotype.de >
Co-authored-by: Bartek Szopka <bartek.szopka+github@gmail.com >
Co-authored-by: Akbar Abdrakhmanov <kz.akbar@gmail.com >
2023-10-18 14:20:14 -03:00