proxy 
							
						 
					 
					
						
						
							
						
						3bbf6b1519 
					 
					
						
						
							
							[Glitch] reword "boost to original audience" as per tootsuite#14596  
						
						 
						
						... 
						
						
						
						Port 46210a65d1  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-30 16:34:38 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Takeshi Umeda 
							
						 
					 
					
						
						
							
						
						cd806663af 
					 
					
						
						
							
							[Glitch] Fix click range discrepancies in gifv  
						
						 
						
						... 
						
						
						
						Port debf6ae316  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-30 16:31:41 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						45d1f34a30 
					 
					
						
						
							
							[Glitch] Fix scrolling issues when closing some dropdown menus  
						
						 
						
						... 
						
						
						
						Port c7cfd4e67a  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-30 16:31:02 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						8c3c27bf06 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/merge-upstream  
						
						 
						
						... 
						
						
						
						Conflicts:
- `app/controllers/accounts_controller.rb`:
  Upstream change too close to a glitch-soc change related to
  instance-local toots. Merged upstream changes.
- `app/services/fan_out_on_write_service.rb`:
  Minor conflict due to glitch-soc's handling of Direct Messages,
  merged upstream changes.
- `yarn.lock`:
  Not really a conflict, caused by glitch-soc-only dependencies
  being textually too close to updated upstream dependencies.
  Merged upstream changes. 
						
						
					 
					
						2020-08-30 16:13:08 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						30632adf9e 
					 
					
						
						
							
							Fix replying to some remote toots switching to local-only  
						
						 
						
						
						
						
					 
					
						2020-08-29 19:57:32 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						f1d31cf18d 
					 
					
						
						
							
							Fix spacing around reblog counter in detailed statuses  
						
						 
						
						... 
						
						
						
						And bring the whole thing closer to upstream's code. 
						
						
					 
					
						2020-08-24 20:03:37 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								santiagorodriguez96 
							
						 
					 
					
						
						
							
						
						e8d41bc2fe 
					 
					
						
						
							
							Add WebAuthn as an alternative 2FA method ( #14466 )  
						
						 
						
						... 
						
						
						
						* feat: add possibility of adding WebAuthn security keys to use as 2FA
This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor
to the Settings page for editing the 2FA methods – now it will list the
methods that are available to the user (TOTP and WebAuthn) and from
there they'll be able to add or remove any of them.
Also, it's worth mentioning that for enabling WebAuthn it's required to
have TOTP enabled, so the first time that you go to the 2FA Settings
page, you'll be asked to set it up.
This work was inspired by the one donde by Github in their platform, and
despite it could be approached in different ways, we decided to go with
this one given that we feel that this gives a great UX.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com >
* feat: add request for WebAuthn as second factor at login if enabled
This commits adds the feature for using WebAuthn as a second factor for
login when enabled.
If users have WebAuthn enabled, now a page requesting for the use of a
WebAuthn credential for log in will appear, although a link redirecting
to the old page for logging in using a two-factor code will also be
present.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com >
* feat: add possibility of deleting WebAuthn Credentials
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com >
* feat: disable WebAuthn when an Admin disables 2FA for a user
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com >
* feat: remove ability to disable TOTP leaving only WebAuthn as 2FA
Following examples form other platforms like Github, we decided to make
Webauthn 2FA secondary to 2FA with TOTP, so that we removed the
possibility of removing TOTP authentication only, leaving users with
just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA'
in order to remove second factor auth.
The reason for WebAuthn being secondary to TOPT is that in that way,
users will still be able to log in using their code from their phone's
application if they don't have their security keys with them – or maybe
even lost them.
* We had to change a little the flow for setting up TOTP, given that now
  it's possible to setting up again if you already had TOTP, in order to
  let users modify their authenticator app – given that now it's not
  possible for them to disable TOTP and set it up again with another
  authenticator app.
  So, basically, now instead of storing the new `otp_secret` in the
  user, we store it in the session until the process of set up is
  finished.
  This was because, as it was before, when users clicked on 'Edit' in
  the new two-factor methods lists page, but then went back without
  finishing the flow, their `otp_secret` had been changed therefore
  invalidating their previous authenticator app, making them unable to
  log in again using TOTP.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com >
* refactor: fix eslint errors
The PR build was failing given that linting returning some errors.
This commit attempts to fix them.
* refactor: normalize i18n translations
The build was failing given that i18n translations files were not
normalized.
This commits fixes that.
* refactor: avoid having the webauthn gem locked to a specific version
* refactor: use symbols for routes without '/'
* refactor: avoid sending webauthn disabled email when 2FA is disabled
When an admins disable 2FA for users, we were sending two mails
to them, one notifying that 2FA was disabled and the other to notify
that WebAuthn was disabled.
As the second one is redundant since the first email includes it, we can
remove it and send just one email to users.
* refactor: avoid creating new env variable for webauthn_origin config
* refactor: improve flash error messages for webauthn pages
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com > 
						
						
					 
					
						2020-08-24 16:46:27 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tdxdxoz 
							
						 
					 
					
						
						
							
						
						a3ec9af9b0 
					 
					
						
						
							
							Fix: also use custom private boost icon for detailed status ( #14471 )  
						
						 
						
						... 
						
						
						
						* use custom private boost icon for detail status
* only use className 
						
						
					 
					
						2020-08-24 14:13:44 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Daigo 3 Dango 
							
						 
					 
					
						
						
							
						
						9669557be1 
					 
					
						
						
							
							Better manage subscriptionCounters ( #14608 )  
						
						 
						
						... 
						
						
						
						Before this change:
- unsubscribe() was not called for a disconnection
- It seems that WebSocketClient calls connected() and reconnected().
  subscriptionCounters were incremented twice for a single reconnection,
  first from connected() and second from reconnected()
This might be a an additional change to
https://github.com/tootsuite/mastodon/pull/14579 
to recover subscriptions after a reconnect. 
						
						
					 
					
						2020-08-24 14:06:45 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								proxy 
							
						 
					 
					
						
						
							
						
						46210a65d1 
					 
					
						
						
							
							reword "boost to original audience" as per  #14596  ( #14598 )  
						
						 
						
						
						
						
					 
					
						2020-08-23 00:08:31 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Takeshi Umeda 
							
						 
					 
					
						
						
							
						
						debf6ae316 
					 
					
						
						
							
							Fix click range discrepancies in gifv ( #14615 )  
						
						 
						
						
						
						
					 
					
						2020-08-23 00:08:12 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						c7cfd4e67a 
					 
					
						
						
							
							Fix scrolling issues when closing some dropdown menus ( #14606 )  
						
						 
						
						
						
						
					 
					
						2020-08-21 14:14:28 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						5dcc406abe 
					 
					
						
						
							
							Change styling to always have scrollbar on search results  
						
						 
						
						
						
						
					 
					
						2020-08-17 15:46:18 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						d4b65193c7 
					 
					
						
						
							
							Fix WebUI crash in edge case when media display size causes scroll  
						
						 
						
						... 
						
						
						
						Fixes  #1406  
						
						
					 
					
						2020-08-17 15:46:18 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						e5dbdebc31 
					 
					
						
						
							
							Fix styling of display names and account handles, make it closer to upstream  
						
						 
						
						
						
						
					 
					
						2020-08-13 23:32:29 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						0f71372d63 
					 
					
						
						
							
							[Glitch] Add client-side validation in password change forms  
						
						 
						
						... 
						
						
						
						Port 7dc4c74265  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-13 22:26:22 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						b6c0f1fdc6 
					 
					
						
						
							
							[Glitch] Add HTML form validation for the registration form  
						
						 
						
						... 
						
						
						
						Port d70c3ab4c3  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-13 22:25:33 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						da62e350e0 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/merge-upstream  
						
						 
						
						
						
						
					 
					
						2020-08-13 22:17:29 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						7dc4c74265 
					 
					
						
						
							
							Add client-side validation in password change forms ( #14564 )  
						
						 
						
						... 
						
						
						
						* Fix client-side username validation at registration
It used the Account::USERNAME_RE regexp which is for *remote* users,
local user validation is stricter. Also take into account max username length.
* Add client-side form validation for password change
* Add client-side form validation to dedicated registration form
Previous changes only applied to the /about page, not the dedicated form on
/auth 
						
						
					 
					
						2020-08-12 12:11:15 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						660188c900 
					 
					
						
						
							
							Fix local-only flag not necessarily being preserved on delete & redraft  
						
						 
						
						
						
						
					 
					
						2020-08-12 00:02:44 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						d70c3ab4c3 
					 
					
						
						
							
							Add HTML form validation for the registration form ( #14560 )  
						
						 
						
						... 
						
						
						
						* Add HTML-level validation of username in sign-up form
* Make required fields with incorrect values more visible
* Enable HTML form validation for the registration form
* Mark agreement checkbox as required client-side
* Add minimum length to password
* Add client-side password confirmation validation 
						
						
					 
					
						2020-08-11 23:09:13 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						0376b6b92b 
					 
					
						
						
							
							Fix new audio player when under content warnings  
						
						 
						
						
						
						
					 
					
						2020-08-11 22:37:51 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eugen Rochko 
							
						 
					 
					
						
						
							
						
						8ae52dc792 
					 
					
						
						
							
							[Glitch] Add support for managing multiple stream subscriptions in a single connection  
						
						 
						
						... 
						
						
						
						Ported ef057584fd  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-11 19:40:35 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						78fa15d08f 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/master  
						
						 
						
						... 
						
						
						
						Conflicts:
- `streaming/index.js`:
  Upstream entirely refactored it.
  Ported our changes to upstream's refactor. Hopefuly. 
						
						
					 
					
						2020-08-11 19:19:27 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eugen Rochko 
							
						 
					 
					
						
						
							
						
						ef057584fd 
					 
					
						
						
							
							Add support for managing multiple stream subscriptions in a single connection ( #14524 )  
						
						 
						
						
						
						
					 
					
						2020-08-11 18:24:59 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						5d5b9e2f62 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/merge-upstream  
						
						 
						
						
						
						
					 
					
						2020-08-08 19:10:40 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						bd3420b139 
					 
					
						
						
							
							Fix crash when failing to load emoji picker ( #14525 )  
						
						 
						
						... 
						
						
						
						Fixes  #14523  
						
						
					 
					
						2020-08-08 17:57:56 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								abcang 
							
						 
					 
					
						
						
							
						
						4a4d08f3a0 
					 
					
						
						
							
							Fix eslint error ( #14521 )  
						
						 
						
						
						
						
					 
					
						2020-08-07 10:40:33 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						a637344e37 
					 
					
						
						
							
							Fallback to previous, more approximative hashtag RE on older browsers ( #14513 )  
						
						 
						
						... 
						
						
						
						Fixes  #14511  
						
						
					 
					
						2020-08-05 22:39:14 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						a3806ec6ba 
					 
					
						
						
							
							[Glitch] Fallback to previous, more approximative hashtag RE on older browsers  
						
						 
						
						... 
						
						
						
						Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-05 13:43:32 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						8f0e6122a9 
					 
					
						
						
							
							[Glitch] Fix audio player on Safari  
						
						 
						
						... 
						
						
						
						Port 635b6a0f1a  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-02 22:30:51 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						b578d70957 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/merge-upstream  
						
						 
						
						
						
						
					 
					
						2020-08-02 22:29:17 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						635b6a0f1a 
					 
					
						
						
							
							Fix audio player on Safari ( #14485 )  
						
						 
						
						
						
						
					 
					
						2020-08-02 18:47:09 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						de7ba22c45 
					 
					
						
						
							
							[Glitch] Fix new audio player features not working on Safari  
						
						 
						
						... 
						
						
						
						Port 51b5bb5301  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-02 14:35:40 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						8f3295f212 
					 
					
						
						
							
							[Glitch] Fix wrong proptypes for onEditAccountNote  
						
						 
						
						... 
						
						
						
						Port 5faf2de938  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-02 14:34:56 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								kedama 
							
						 
					 
					
						
						
							
						
						1d8e930445 
					 
					
						
						
							
							[Glitch] Fix the hashtag judgment of the compose form to be the same as the server side  
						
						 
						
						... 
						
						
						
						Port cd94854e7d  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-08-02 14:33:22 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						23cd5f2c15 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/merge-upstream  
						
						 
						
						
						
						
					 
					
						2020-08-02 14:30:28 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						3ade834830 
					 
					
						
						
							
							Fix disabled boost icon being replaced by private boost icon on hover ( #14456 )  
						
						 
						
						... 
						
						
						
						Fixes  #14455  
						
						
					 
					
						2020-08-02 11:21:28 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						51b5bb5301 
					 
					
						
						
							
							Fix new audio player features not working on Safari ( #14465 )  
						
						 
						
						... 
						
						
						
						Fixes  #14462  
						
						
					 
					
						2020-08-02 11:20:17 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						5faf2de938 
					 
					
						
						
							
							Fix wrong proptypes for onEditAccountNote ( #14481 )  
						
						 
						
						... 
						
						
						
						Also add missing PropTypes to the correct component
Fixes  #14478  
						
						
					 
					
						2020-08-02 11:20:02 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								kedama 
							
						 
					 
					
						
						
							
						
						cd94854e7d 
					 
					
						
						
							
							Fix the hashtag judgment of the compose form to be the same as the server side ( #14484 )  
						
						 
						
						
						
						
					 
					
						2020-08-02 11:19:43 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						2cfa142961 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/merge-upstream  
						
						 
						
						... 
						
						
						
						Conflicts:
- `yarn.lock`:
  No real conflict, just a glitch-soc-only dependency textually too close to
  one updated upstream. Ported upstream changes. 
						
						
					 
					
						2020-08-01 20:24:23 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eugen Rochko 
							
						 
					 
					
						
						
							
						
						00448db3c8 
					 
					
						
						
							
							Fix unnecessary second connection to user stream from account timeline in web UI ( #14387 )  
						
						 
						
						... 
						
						
						
						Fix regression from #14212  
						
						
					 
					
						2020-07-24 14:55:14 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eugen Rochko 
							
						 
					 
					
						
						
							
						
						054f4af603 
					 
					
						
						
							
							New Crowdin updates ( #14335 )  
						
						 
						
						... 
						
						
						
						* New translations en.yml (Kazakh)
[ci skip]
* New translations en.json (Norwegian Nynorsk)
[ci skip]
* New translations simple_form.en.yml (Norwegian Nynorsk)
[ci skip]
* New translations en.yml (Latvian)
[ci skip]
* New translations simple_form.en.yml (Kazakh)
[ci skip]
* New translations en.json (Latvian)
[ci skip]
* New translations doorkeeper.en.yml (Estonian)
[ci skip]
* New translations simple_form.en.yml (Estonian)
[ci skip]
* New translations en.yml (Estonian)
[ci skip]
* New translations en.yml (Norwegian Nynorsk)
[ci skip]
* New translations en.yml (Slovak)
[ci skip]
* New translations doorkeeper.en.yml (Croatian)
[ci skip]
* New translations en.yml (Spanish, Argentina)
[ci skip]
* New translations doorkeeper.en.yml (Portuguese, Brazilian)
[ci skip]
* New translations en.json (Indonesian)
[ci skip]
* New translations simple_form.en.yml (Indonesian)
[ci skip]
* New translations doorkeeper.en.yml (Indonesian)
[ci skip]
* New translations simple_form.en.yml (Persian)
[ci skip]
* New translations doorkeeper.en.yml (Persian)
[ci skip]
* New translations en.json (Tamil)
[ci skip]
* New translations en.yml (Tamil)
[ci skip]
* New translations simple_form.en.yml (Tamil)
[ci skip]
* New translations doorkeeper.en.yml (Tamil)
[ci skip]
* New translations simple_form.en.yml (Spanish, Argentina)
[ci skip]
* New translations simple_form.en.yml (Croatian)
[ci skip]
* New translations doorkeeper.en.yml (Spanish, Argentina)
[ci skip]
* New translations en.json (Bengali)
[ci skip]
* New translations en.yml (Bengali)
[ci skip]
* New translations simple_form.en.yml (Bengali)
[ci skip]
* New translations en.json (Marathi)
[ci skip]
* New translations en.yml (Marathi)
[ci skip]
* New translations doorkeeper.en.yml (Marathi)
[ci skip]
* New translations en.json (Croatian)
[ci skip]
* New translations en.yml (Welsh)
[ci skip]
* New translations en.yml (Croatian)
[ci skip]
* New translations en.json (Welsh)
[ci skip]
* New translations simple_form.en.yml (Asturian)
[ci skip]
* New translations simple_form.en.yml (Welsh)
[ci skip]
* New translations en.yml (Taigi)
[ci skip]
* New translations en.yml (Corsican)
[ci skip]
* New translations simple_form.en.yml (Corsican)
[ci skip]
* New translations doorkeeper.en.yml (Corsican)
[ci skip]
* New translations doorkeeper.en.yml (Kabyle)
[ci skip]
* New translations en.json (Ido)
[ci skip]
* New translations en.yml (Ido)
[ci skip]
* New translations simple_form.en.yml (Ido)
[ci skip]
* New translations doorkeeper.en.yml (Ido)
[ci skip]
* New translations en.json (Taigi)
[ci skip]
* New translations doorkeeper.en.yml (Serbian (Latin))
[ci skip]
* New translations en.json (Silesian)
[ci skip]
* New translations en.yml (Silesian)
[ci skip]
* New translations en.json (Uyghur)
[ci skip]
* New translations en.yml (Uyghur)
[ci skip]
* New translations en.json (Sorani (Kurdish))
[ci skip]
* New translations en.yml (Sorani (Kurdish))
[ci skip]
* New translations simple_form.en.yml (Serbian (Latin))
[ci skip]
* New translations doorkeeper.en.yml (Welsh)
[ci skip]
* New translations en.yml (Breton)
[ci skip]
* New translations en.json (Esperanto)
[ci skip]
* New translations simple_form.en.yml (Esperanto)
[ci skip]
* New translations doorkeeper.en.yml (Esperanto)
[ci skip]
* New translations en.json (Chinese Traditional, Hong Kong)
[ci skip]
* New translations en.yml (Chinese Traditional, Hong Kong)
[ci skip]
* New translations simple_form.en.yml (Chinese Traditional, Hong Kong)
[ci skip]
* New translations doorkeeper.en.yml (Chinese Traditional, Hong Kong)
[ci skip]
* New translations en.json (Malayalam)
[ci skip]
* New translations en.yml (Malayalam)
[ci skip]
* New translations simple_form.en.yml (Malayalam)
[ci skip]
* New translations doorkeeper.en.yml (Malayalam)
[ci skip]
* New translations simple_form.en.yml (Breton)
[ci skip]
* New translations en.yml (Serbian (Latin))
[ci skip]
* New translations doorkeeper.en.yml (Breton)
[ci skip]
* New translations en.json (Kannada)
[ci skip]
* New translations en.yml (Kannada)
[ci skip]
* New translations en.json (Asturian)
[ci skip]
* New translations en.yml (Asturian)
[ci skip]
* New translations en.yml (Portuguese, Brazilian)
[ci skip]
* New translations doorkeeper.en.yml (Asturian)
[ci skip]
* New translations en.yml (Occitan)
[ci skip]
* New translations simple_form.en.yml (Occitan)
[ci skip]
* New translations doorkeeper.en.yml (Occitan)
[ci skip]
* New translations en.json (Serbian (Latin))
[ci skip]
* New translations simple_form.en.yml (Portuguese, Brazilian)
[ci skip]
* New translations doorkeeper.en.yml (Turkish)
[ci skip]
* New translations en.json (Portuguese, Brazilian)
[ci skip]
* New translations en.json (Georgian)
[ci skip]
* New translations doorkeeper.en.yml (Hungarian)
[ci skip]
* New translations en.yml (Armenian)
[ci skip]
* New translations simple_form.en.yml (Armenian)
[ci skip]
* New translations doorkeeper.en.yml (Armenian)
[ci skip]
* New translations en.yml (Italian)
[ci skip]
* New translations simple_form.en.yml (Italian)
[ci skip]
* New translations doorkeeper.en.yml (Italian)
[ci skip]
* New translations simple_form.en.yml (Japanese)
[ci skip]
* New translations doorkeeper.en.yml (Japanese)
[ci skip]
* New translations en.yml (Georgian)
[ci skip]
* New translations simple_form.en.yml (Hebrew)
[ci skip]
* New translations simple_form.en.yml (Georgian)
[ci skip]
* New translations doorkeeper.en.yml (Georgian)
[ci skip]
* New translations en.yml (Korean)
[ci skip]
* New translations simple_form.en.yml (Korean)
[ci skip]
* New translations doorkeeper.en.yml (Korean)
[ci skip]
* New translations en.json (Lithuanian)
[ci skip]
* New translations en.yml (Lithuanian)
[ci skip]
* New translations en.json (Macedonian)
[ci skip]
* New translations en.yml (Macedonian)
[ci skip]
* New translations doorkeeper.en.yml (Hebrew)
[ci skip]
* New translations en.yml (Hebrew)
[ci skip]
* New translations en.json (Occitan)
[ci skip]
* New translations en.json (Sardinian)
[ci skip]
* New translations en.yml (Sardinian)
[ci skip]
* New translations en.json (Slovenian)
[ci skip]
* New translations en.yml (Slovenian)
[ci skip]
* New translations en.yml (Esperanto)
[ci skip]
* New translations en.yml (Russian)
[ci skip]
* New translations en.json (Hebrew)
[ci skip]
* New translations en.json (Slovak)
[ci skip]
* New translations simple_form.en.yml (Russian)
[ci skip]
* New translations simple_form.en.yml (Ukrainian)
[ci skip]
* New translations en.yml (Hungarian)
[ci skip]
* New translations simple_form.en.yml (Hungarian)
[ci skip]
* New translations en.yml (Japanese)
[ci skip]
* New translations simple_form.en.yml (Chinese Simplified)
[ci skip]
* New translations en.yml (Persian)
[ci skip]
* New translations en.json (Ukrainian)
[ci skip]
* New translations en.yml (Ukrainian)
[ci skip]
* New translations simple_form.en.yml (Finnish)
[ci skip]
* New translations doorkeeper.en.yml (Finnish)
[ci skip]
* New translations en.json (Dutch)
[ci skip]
* New translations doorkeeper.en.yml (Icelandic)
[ci skip]
* New translations en.yml (Urdu (Pakistan))
[ci skip]
* New translations doorkeeper.en.yml (Swedish)
[ci skip]
* New translations en.json (Turkish)
[ci skip]
* New translations en.yml (Turkish)
[ci skip]
* New translations simple_form.en.yml (Turkish)
[ci skip]
* New translations en.yml (Indonesian)
[ci skip]
* New translations doorkeeper.en.yml (Ukrainian)
[ci skip]
* New translations en.yml (Chinese Traditional)
[ci skip]
* New translations simple_form.en.yml (Chinese Traditional)
[ci skip]
* New translations doorkeeper.en.yml (Chinese Traditional)
[ci skip]
* New translations en.json (Urdu (Pakistan))
[ci skip]
* New translations en.yml (Swedish)
[ci skip]
* New translations en.yml (Galician)
[ci skip]
* New translations simple_form.en.yml (Galician)
[ci skip]
* New translations doorkeeper.en.yml (Galician)
[ci skip]
* New translations en.json (Icelandic)
[ci skip]
* New translations en.yml (Icelandic)
[ci skip]
* New translations simple_form.en.yml (Icelandic)
[ci skip]
* New translations simple_form.en.yml (Swedish)
[ci skip]
* New translations en.json (Swedish)
[ci skip]
* New translations en.yml (Dutch)
[ci skip]
* New translations simple_form.en.yml (Portuguese)
[ci skip]
* New translations simple_form.en.yml (Dutch)
[ci skip]
* New translations doorkeeper.en.yml (Dutch)
[ci skip]
* New translations en.json (Norwegian)
[ci skip]
* New translations en.yml (Norwegian)
[ci skip]
* New translations simple_form.en.yml (Norwegian)
[ci skip]
* New translations doorkeeper.en.yml (Norwegian)
[ci skip]
* New translations en.json (Polish)
[ci skip]
* New translations en.yml (Polish)
[ci skip]
* New translations simple_form.en.yml (Polish)
[ci skip]
* New translations doorkeeper.en.yml (Polish)
[ci skip]
* New translations en.yml (Portuguese)
[ci skip]
* New translations doorkeeper.en.yml (Portuguese)
[ci skip]
* New translations doorkeeper.en.yml (Serbian (Cyrillic))
[ci skip]
* New translations doorkeeper.en.yml (Russian)
[ci skip]
* New translations simple_form.en.yml (Slovak)
[ci skip]
* New translations doorkeeper.en.yml (Slovak)
[ci skip]
* New translations simple_form.en.yml (Slovenian)
[ci skip]
* New translations doorkeeper.en.yml (Slovenian)
[ci skip]
* New translations en.yml (Albanian)
[ci skip]
* New translations simple_form.en.yml (Albanian)
[ci skip]
* New translations doorkeeper.en.yml (Albanian)
[ci skip]
* New translations en.json (Serbian (Cyrillic))
[ci skip]
* New translations en.yml (Serbian (Cyrillic))
[ci skip]
* New translations simple_form.en.yml (Serbian (Cyrillic))
[ci skip]
* New translations en.json (Portuguese, Brazilian)
[ci skip]
* New translations en.yml (Thai)
[ci skip]
* New translations en.json (French)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations doorkeeper.en.yml (Vietnamese)
[ci skip]
* New translations doorkeeper.en.yml (Vietnamese)
[ci skip]
* New translations simple_form.en.yml (Vietnamese)
[ci skip]
* New translations doorkeeper.en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Chinese Simplified)
[ci skip]
* New translations en.yml (Chinese Simplified)
[ci skip]
* New translations en.yml (Chinese Simplified)
[ci skip]
* New translations en.yml (Chinese Simplified)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Spanish)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.json (Finnish)
[ci skip]
* New translations en.json (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations simple_form.en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations simple_form.en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.json (Finnish)
[ci skip]
* New translations en.json (Finnish)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Dutch)
[ci skip]
* New translations en.json (Dutch)
[ci skip]
* New translations en.yml (Dutch)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* New translations devise.en.yml (Thai)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* New translations en.json (Korean)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* New translations en.yml (Thai)
[ci skip]
* New translations en.yml (Thai)
[ci skip]
* New translations en.yml (Thai)
[ci skip]
* New translations en.yml (Thai)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.json (Spanish)
[ci skip]
* New translations en.yml (Spanish)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations simple_form.en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations simple_form.en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations simple_form.en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* i18n-tasks normalize
* yarn manage:translations
* Fix normalization 
						
						
					 
					
						2020-07-24 12:46:46 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						753ba9fc23 
					 
					
						
						
							
							Fix hover and normal colors for private boost icon being swapped ( #14386 )  
						
						 
						
						
						
						
					 
					
						2020-07-24 12:19:30 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						5e93c7359d 
					 
					
						
						
							
							Fix custom boost icon colors being swapped  
						
						 
						
						
						
						
					 
					
						2020-07-24 11:58:09 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						b136e621ea 
					 
					
						
						
							
							[Glitch] Add custom icon for private boosts  
						
						 
						
						... 
						
						
						
						Port 956473142c  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-07-24 11:29:20 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thibaut Girka 
							
						 
					 
					
						
						
							
						
						4d950c71e9 
					 
					
						
						
							
							Merge branch 'master' into glitch-soc/master  
						
						 
						
						
						
						
					 
					
						2020-07-24 11:26:40 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						956473142c 
					 
					
						
						
							
							Add custom icon for private boosts ( #14380 )  
						
						 
						
						
						
						
					 
					
						2020-07-23 23:54:19 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ThibG 
							
						 
					 
					
						
						
							
						
						59e0eb1ba0 
					 
					
						
						
							
							[Glitch] Change disabled retweet icon  
						
						 
						
						... 
						
						
						
						Port e93efc0309  to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com > 
						
						
					 
					
						2020-07-22 22:57:57 +02:00