Fix that translation is not applied to "joining hashtags" (#9397)
This commit is contained in:
		
							parent
							
								
									3948b6fa52
								
							
						
					
					
						commit
						bfec030a4e
					
				
					 3 changed files with 9 additions and 9 deletions
				
			
		|  | @ -42,13 +42,13 @@ class HashtagTimeline extends React.PureComponent { | |||
|   title = () => { | ||||
|     let title = [this.props.params.id]; | ||||
|     if (this.additionalFor('any')) { | ||||
|       title.push(<FormattedMessage id='hashtag.column_header.tag_mode.any'  values={{ additional: this.additionalFor('any') }} defaultMessage=' or {additional}' />); | ||||
|       title.push(' ', <FormattedMessage id='hashtag.column_header.tag_mode.any'  values={{ additional: this.additionalFor('any') }} defaultMessage='or {additional}' />); | ||||
|     } | ||||
|     if (this.additionalFor('all')) { | ||||
|       title.push(<FormattedMessage id='hashtag.column_header.tag_mode.all'  values={{ additional: this.additionalFor('all') }} defaultMessage=' and {additional}' />); | ||||
|       title.push(' ', <FormattedMessage id='hashtag.column_header.tag_mode.all'  values={{ additional: this.additionalFor('all') }} defaultMessage='and {additional}' />); | ||||
|     } | ||||
|     if (this.additionalFor('none')) { | ||||
|       title.push(<FormattedMessage id='hashtag.column_header.tag_mode.none' values={{ additional: this.additionalFor('none') }} defaultMessage=' without {additional}' />); | ||||
|       title.push(' ', <FormattedMessage id='hashtag.column_header.tag_mode.none' values={{ additional: this.additionalFor('none') }} defaultMessage='without {additional}' />); | ||||
|     } | ||||
|     return title; | ||||
|   } | ||||
|  |  | |||
|  | @ -138,9 +138,9 @@ | |||
|   "getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.", | ||||
|   "getting_started.security": "Security", | ||||
|   "getting_started.terms": "Terms of service", | ||||
|   "hashtag.column_header.tag_mode.all": "{tag} and {additional}", | ||||
|   "hashtag.column_header.tag_mode.any": "{tag} or {additional}", | ||||
|   "hashtag.column_header.tag_mode.none": "{tag} without {additional}", | ||||
|   "hashtag.column_header.tag_mode.all": "and {additional}", | ||||
|   "hashtag.column_header.tag_mode.any": "or {additional}", | ||||
|   "hashtag.column_header.tag_mode.none": "without {additional}", | ||||
|   "hashtag.column_settings.tag_mode.all": "All of these", | ||||
|   "hashtag.column_settings.tag_mode.any": "Any of these", | ||||
|   "hashtag.column_settings.tag_mode.none": "None of these", | ||||
|  |  | |||
|  | @ -138,9 +138,9 @@ | |||
|   "getting_started.open_source_notice": "Mastodonはオープンソースソフトウェアです。誰でもGitHub({github})から開発に参加したり、問題を報告したりできます。", | ||||
|   "getting_started.security": "セキュリティ", | ||||
|   "getting_started.terms": "プライバシーポリシー", | ||||
|   "hashtag.column_header.tag_mode.all": " と {additional}", | ||||
|   "hashtag.column_header.tag_mode.any": " か {additional}", | ||||
|   "hashtag.column_header.tag_mode.none": " ({additional} を除く)", | ||||
|   "hashtag.column_header.tag_mode.all": "と {additional}", | ||||
|   "hashtag.column_header.tag_mode.any": "か {additional}", | ||||
|   "hashtag.column_header.tag_mode.none": "({additional} を除く)", | ||||
|   "hashtag.column_settings.tag_mode.all": "すべてを含む", | ||||
|   "hashtag.column_settings.tag_mode.any": "いずれかを含む", | ||||
|   "hashtag.column_settings.tag_mode.none": "これらを除く", | ||||
|  |  | |||
		Reference in a new issue