Improve accessibility (part 7) (#4457)
* fix(media_modal): Keyboard navigation * fix(column_back_button): Use native button * fix(media_gallery): Keyboard navigation * fix(status_content): Make CW content focusable
This commit is contained in:
		
					parent
					
						
							
								970297a138
							
						
					
				
			
			
				commit
				
					
						e44f03bc71
					
				
			
		
					 37 changed files with 90 additions and 18 deletions
				
			
		|  | @ -8,19 +8,20 @@ export default class ColumnBackButton extends React.PureComponent { | ||||||
|     router: PropTypes.object, |     router: PropTypes.object, | ||||||
|   }; |   }; | ||||||
| 
 | 
 | ||||||
|   handleClick = (e) => { |   handleClick = () => { | ||||||
|     if (!e.key || e.key === 'Enter') { |     if (window.history && window.history.length === 1) { | ||||||
|       if (window.history && window.history.length === 1) this.context.router.history.push('/'); |       this.context.router.history.push('/'); | ||||||
|       else this.context.router.history.goBack(); |     } else { | ||||||
|  |       this.context.router.history.goBack(); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|   render () { |   render () { | ||||||
|     return ( |     return ( | ||||||
|       <div role='button' tabIndex='0' onClick={this.handleClick} onKeyDown={this.handleClick} className='column-back-button'> |       <button onClick={this.handleClick} className='column-back-button'> | ||||||
|         <i className='fa fa-fw fa-chevron-left column-back-button__icon' /> |         <i className='fa fa-fw fa-chevron-left column-back-button__icon' /> | ||||||
|         <FormattedMessage id='column_back_button.label' defaultMessage='Back' /> |         <FormattedMessage id='column_back_button.label' defaultMessage='Back' /> | ||||||
|       </div> |       </button> | ||||||
|     ); |     ); | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -212,10 +212,10 @@ export default class MediaGallery extends React.PureComponent { | ||||||
|       } |       } | ||||||
| 
 | 
 | ||||||
|       children = ( |       children = ( | ||||||
|         <div role='button' tabIndex='0' className='media-spoiler' onClick={this.handleOpen}> |         <button className='media-spoiler' onClick={this.handleOpen}> | ||||||
|           <span className='media-spoiler__warning'>{warning}</span> |           <span className='media-spoiler__warning'>{warning}</span> | ||||||
|           <span className='media-spoiler__trigger'><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span> |           <span className='media-spoiler__trigger'><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span> | ||||||
|         </div> |         </button> | ||||||
|       ); |       ); | ||||||
|     } else { |     } else { | ||||||
|       const size = media.take(4).size; |       const size = media.take(4).size; | ||||||
|  |  | ||||||
|  | @ -155,7 +155,7 @@ export default class StatusContent extends React.PureComponent { | ||||||
| 
 | 
 | ||||||
|           {mentionsPlaceholder} |           {mentionsPlaceholder} | ||||||
| 
 | 
 | ||||||
|           <div className={`status__content__text ${!hidden ? 'status__content__text--visible' : ''}`} style={directionStyle} dangerouslySetInnerHTML={content} /> |           <div tabIndex={!hidden && 0} className={`status__content__text ${!hidden ? 'status__content__text--visible' : ''}`} style={directionStyle} dangerouslySetInnerHTML={content} /> | ||||||
|         </div> |         </div> | ||||||
|       ); |       ); | ||||||
|     } else if (this.props.onClick) { |     } else if (this.props.onClick) { | ||||||
|  |  | ||||||
|  | @ -10,6 +10,8 @@ import ImageLoader from './image_loader'; | ||||||
| 
 | 
 | ||||||
| const messages = defineMessages({ | const messages = defineMessages({ | ||||||
|   close: { id: 'lightbox.close', defaultMessage: 'Close' }, |   close: { id: 'lightbox.close', defaultMessage: 'Close' }, | ||||||
|  |   previous: { id: 'lightbox.previous', defaultMessage: 'Previous' }, | ||||||
|  |   next: { id: 'lightbox.next', defaultMessage: 'Next' }, | ||||||
| }); | }); | ||||||
| 
 | 
 | ||||||
| @injectIntl | @injectIntl | ||||||
|  | @ -66,16 +68,10 @@ export default class MediaModal extends ImmutablePureComponent { | ||||||
| 
 | 
 | ||||||
|     const index = this.getIndex(); |     const index = this.getIndex(); | ||||||
| 
 | 
 | ||||||
|     let leftNav, rightNav, content; |     const leftNav  = media.size > 1 && <button tabIndex='0' className='modal-container__nav modal-container__nav--left' onClick={this.handlePrevClick} aria-label={intl.formatMessage(messages.previous)}><i className='fa fa-fw fa-chevron-left' /></button>; | ||||||
|  |     const rightNav = media.size > 1 && <button tabIndex='0' className='modal-container__nav  modal-container__nav--right' onClick={this.handleNextClick} aria-label={intl.formatMessage(messages.next)}><i className='fa fa-fw fa-chevron-right' /></button>; | ||||||
| 
 | 
 | ||||||
|     leftNav = rightNav = content = ''; |     const content = media.map((image) => { | ||||||
| 
 |  | ||||||
|     if (media.size > 1) { |  | ||||||
|       leftNav  = <div role='button' tabIndex='0' className='modal-container__nav modal-container__nav--left' onClick={this.handlePrevClick}><i className='fa fa-fw fa-chevron-left' /></div>; |  | ||||||
|       rightNav = <div role='button' tabIndex='0' className='modal-container__nav  modal-container__nav--right' onClick={this.handleNextClick}><i className='fa fa-fw fa-chevron-right' /></div>; |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     content = media.map((image) => { |  | ||||||
|       const width  = image.getIn(['meta', 'original', 'width']) || null; |       const width  = image.getIn(['meta', 'original', 'width']) || null; | ||||||
|       const height = image.getIn(['meta', 'original', 'height']) || null; |       const height = image.getIn(['meta', 'original', 'height']) || null; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "عرض الردود", |   "home.column_settings.show_replies": "عرض الردود", | ||||||
|   "home.settings": "إعدادات العمود", |   "home.settings": "إعدادات العمود", | ||||||
|   "lightbox.close": "إغلاق", |   "lightbox.close": "إغلاق", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "تحميل ...", |   "loading_indicator.label": "تحميل ...", | ||||||
|   "media_gallery.toggle_visible": "عرض / إخفاء", |   "media_gallery.toggle_visible": "عرض / إخفاء", | ||||||
|   "missing_indicator.label": "تعذر العثور عليه", |   "missing_indicator.label": "تعذر العثور عليه", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Затвори", |   "lightbox.close": "Затвори", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Зареждане...", |   "loading_indicator.label": "Зареждане...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Mostrar respostes", |   "home.column_settings.show_replies": "Mostrar respostes", | ||||||
|   "home.settings": "Ajustos de columna", |   "home.settings": "Ajustos de columna", | ||||||
|   "lightbox.close": "Tancar", |   "lightbox.close": "Tancar", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Carregant...", |   "loading_indicator.label": "Carregant...", | ||||||
|   "media_gallery.toggle_visible": "Alternar visibilitat", |   "media_gallery.toggle_visible": "Alternar visibilitat", | ||||||
|   "missing_indicator.label": "No trobat", |   "missing_indicator.label": "No trobat", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Antworten anzeigen", |   "home.column_settings.show_replies": "Antworten anzeigen", | ||||||
|   "home.settings": "Spalteneinstellungen", |   "home.settings": "Spalteneinstellungen", | ||||||
|   "lightbox.close": "Schließen", |   "lightbox.close": "Schließen", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Lade…", |   "loading_indicator.label": "Lade…", | ||||||
|   "media_gallery.toggle_visible": "Sichtbarkeit einstellen", |   "media_gallery.toggle_visible": "Sichtbarkeit einstellen", | ||||||
|   "missing_indicator.label": "Nicht gefunden", |   "missing_indicator.label": "Nicht gefunden", | ||||||
|  |  | ||||||
|  | @ -1113,6 +1113,14 @@ | ||||||
|       { |       { | ||||||
|         "defaultMessage": "Close", |         "defaultMessage": "Close", | ||||||
|         "id": "lightbox.close" |         "id": "lightbox.close" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "Previous", | ||||||
|  |         "id": "lightbox.previous" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "Next", | ||||||
|  |         "id": "lightbox.next" | ||||||
|       } |       } | ||||||
|     ], |     ], | ||||||
|     "path": "app/javascript/mastodon/features/ui/components/media_modal.json" |     "path": "app/javascript/mastodon/features/ui/components/media_modal.json" | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Close", |   "lightbox.close": "Close", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Loading...", |   "loading_indicator.label": "Loading...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Fermi", |   "lightbox.close": "Fermi", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Ŝarĝanta...", |   "loading_indicator.label": "Ŝarĝanta...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Cerrar", |   "lightbox.close": "Cerrar", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Cargando...", |   "loading_indicator.label": "Cargando...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "نمایش پاسخها", |   "home.column_settings.show_replies": "نمایش پاسخها", | ||||||
|   "home.settings": "تنظیمات ستون", |   "home.settings": "تنظیمات ستون", | ||||||
|   "lightbox.close": "بستن", |   "lightbox.close": "بستن", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "بارگیری...", |   "loading_indicator.label": "بارگیری...", | ||||||
|   "media_gallery.toggle_visible": "تغییر پیدایی", |   "media_gallery.toggle_visible": "تغییر پیدایی", | ||||||
|   "missing_indicator.label": "پیدا نشد", |   "missing_indicator.label": "پیدا نشد", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Sulje", |   "lightbox.close": "Sulje", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Ladataan...", |   "loading_indicator.label": "Ladataan...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Afficher les réponses", |   "home.column_settings.show_replies": "Afficher les réponses", | ||||||
|   "home.settings": "Paramètres de la colonne", |   "home.settings": "Paramètres de la colonne", | ||||||
|   "lightbox.close": "Fermer", |   "lightbox.close": "Fermer", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Chargement…", |   "loading_indicator.label": "Chargement…", | ||||||
|   "media_gallery.toggle_visible": "Modifier la visibilité", |   "media_gallery.toggle_visible": "Modifier la visibilité", | ||||||
|   "missing_indicator.label": "Non trouvé", |   "missing_indicator.label": "Non trouvé", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "הצגת תגובות", |   "home.column_settings.show_replies": "הצגת תגובות", | ||||||
|   "home.settings": "הגדרות טור", |   "home.settings": "הגדרות טור", | ||||||
|   "lightbox.close": "סגירה", |   "lightbox.close": "סגירה", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "טוען...", |   "loading_indicator.label": "טוען...", | ||||||
|   "media_gallery.toggle_visible": "נראה\\בלתי נראה", |   "media_gallery.toggle_visible": "נראה\\בלתי נראה", | ||||||
|   "missing_indicator.label": "לא נמצא", |   "missing_indicator.label": "לא נמצא", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Pokaži odgovore", |   "home.column_settings.show_replies": "Pokaži odgovore", | ||||||
|   "home.settings": "Postavke Stupca", |   "home.settings": "Postavke Stupca", | ||||||
|   "lightbox.close": "Zatvori", |   "lightbox.close": "Zatvori", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Učitavam...", |   "loading_indicator.label": "Učitavam...", | ||||||
|   "media_gallery.toggle_visible": "Preklopi vidljivost", |   "media_gallery.toggle_visible": "Preklopi vidljivost", | ||||||
|   "missing_indicator.label": "Nije nađen", |   "missing_indicator.label": "Nije nađen", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Bezárás", |   "lightbox.close": "Bezárás", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Betöltés...", |   "loading_indicator.label": "Betöltés...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Tampilkan balasan", |   "home.column_settings.show_replies": "Tampilkan balasan", | ||||||
|   "home.settings": "Pengaturan kolom", |   "home.settings": "Pengaturan kolom", | ||||||
|   "lightbox.close": "Tutup", |   "lightbox.close": "Tutup", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Tunggu sebentar...", |   "loading_indicator.label": "Tunggu sebentar...", | ||||||
|   "media_gallery.toggle_visible": "Tampil/Sembunyikan", |   "media_gallery.toggle_visible": "Tampil/Sembunyikan", | ||||||
|   "missing_indicator.label": "Tidak ditemukan", |   "missing_indicator.label": "Tidak ditemukan", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Montrar respondi", |   "home.column_settings.show_replies": "Montrar respondi", | ||||||
|   "home.settings": "Aranji di la kolumno", |   "home.settings": "Aranji di la kolumno", | ||||||
|   "lightbox.close": "Klozar", |   "lightbox.close": "Klozar", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Kargante...", |   "loading_indicator.label": "Kargante...", | ||||||
|   "media_gallery.toggle_visible": "Chanjar videbleso", |   "media_gallery.toggle_visible": "Chanjar videbleso", | ||||||
|   "missing_indicator.label": "Ne trovita", |   "missing_indicator.label": "Ne trovita", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Mostra risposte", |   "home.column_settings.show_replies": "Mostra risposte", | ||||||
|   "home.settings": "Impostazioni colonna", |   "home.settings": "Impostazioni colonna", | ||||||
|   "lightbox.close": "Chiudi", |   "lightbox.close": "Chiudi", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Carico...", |   "loading_indicator.label": "Carico...", | ||||||
|   "media_gallery.toggle_visible": "Imposta visibilità", |   "media_gallery.toggle_visible": "Imposta visibilità", | ||||||
|   "missing_indicator.label": "Non trovato", |   "missing_indicator.label": "Non trovato", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "返信表示", |   "home.column_settings.show_replies": "返信表示", | ||||||
|   "home.settings": "カラム設定", |   "home.settings": "カラム設定", | ||||||
|   "lightbox.close": "閉じる", |   "lightbox.close": "閉じる", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "読み込み中...", |   "loading_indicator.label": "読み込み中...", | ||||||
|   "media_gallery.toggle_visible": "表示切り替え", |   "media_gallery.toggle_visible": "表示切り替え", | ||||||
|   "missing_indicator.label": "見つかりません", |   "missing_indicator.label": "見つかりません", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "답글 표시", |   "home.column_settings.show_replies": "답글 표시", | ||||||
|   "home.settings": "컬럼 설정", |   "home.settings": "컬럼 설정", | ||||||
|   "lightbox.close": "닫기", |   "lightbox.close": "닫기", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "불러오는 중...", |   "loading_indicator.label": "불러오는 중...", | ||||||
|   "media_gallery.toggle_visible": "표시 전환", |   "media_gallery.toggle_visible": "표시 전환", | ||||||
|   "missing_indicator.label": "찾을 수 없습니다", |   "missing_indicator.label": "찾을 수 없습니다", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Reacties tonen", |   "home.column_settings.show_replies": "Reacties tonen", | ||||||
|   "home.settings": "Kolom-instellingen", |   "home.settings": "Kolom-instellingen", | ||||||
|   "lightbox.close": "Sluiten", |   "lightbox.close": "Sluiten", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Laden…", |   "loading_indicator.label": "Laden…", | ||||||
|   "media_gallery.toggle_visible": "Media wel/niet tonen", |   "media_gallery.toggle_visible": "Media wel/niet tonen", | ||||||
|   "missing_indicator.label": "Niet gevonden", |   "missing_indicator.label": "Niet gevonden", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Vis svar", |   "home.column_settings.show_replies": "Vis svar", | ||||||
|   "home.settings": "Kolonneinnstillinger", |   "home.settings": "Kolonneinnstillinger", | ||||||
|   "lightbox.close": "Lukk", |   "lightbox.close": "Lukk", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Laster...", |   "loading_indicator.label": "Laster...", | ||||||
|   "media_gallery.toggle_visible": "Veksle synlighet", |   "media_gallery.toggle_visible": "Veksle synlighet", | ||||||
|   "missing_indicator.label": "Ikke funnet", |   "missing_indicator.label": "Ikke funnet", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Mostrar las responsas", |   "home.column_settings.show_replies": "Mostrar las responsas", | ||||||
|   "home.settings": "Paramètres de la colomna", |   "home.settings": "Paramètres de la colomna", | ||||||
|   "lightbox.close": "Tampar", |   "lightbox.close": "Tampar", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Cargament…", |   "loading_indicator.label": "Cargament…", | ||||||
|   "media_gallery.toggle_visible": "Modificar la visibilitat", |   "media_gallery.toggle_visible": "Modificar la visibilitat", | ||||||
|   "missing_indicator.label": "Pas trobat", |   "missing_indicator.label": "Pas trobat", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Pokazuj odpowiedzi", |   "home.column_settings.show_replies": "Pokazuj odpowiedzi", | ||||||
|   "home.settings": "Ustawienia kolumny", |   "home.settings": "Ustawienia kolumny", | ||||||
|   "lightbox.close": "Zamknij", |   "lightbox.close": "Zamknij", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Ładowanie...", |   "loading_indicator.label": "Ładowanie...", | ||||||
|   "media_gallery.toggle_visible": "Przełącz widoczność", |   "media_gallery.toggle_visible": "Przełącz widoczność", | ||||||
|   "missing_indicator.label": "Nie znaleziono", |   "missing_indicator.label": "Nie znaleziono", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Mostrar as respostas", |   "home.column_settings.show_replies": "Mostrar as respostas", | ||||||
|   "home.settings": "Parâmetros da listagem", |   "home.settings": "Parâmetros da listagem", | ||||||
|   "lightbox.close": "Fechar", |   "lightbox.close": "Fechar", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Carregando...", |   "loading_indicator.label": "Carregando...", | ||||||
|   "media_gallery.toggle_visible": "Esconder/Mostrar", |   "media_gallery.toggle_visible": "Esconder/Mostrar", | ||||||
|   "missing_indicator.label": "Não encontrado", |   "missing_indicator.label": "Não encontrado", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Mostrar as respostas", |   "home.column_settings.show_replies": "Mostrar as respostas", | ||||||
|   "home.settings": "Parâmetros da listagem", |   "home.settings": "Parâmetros da listagem", | ||||||
|   "lightbox.close": "Fechar", |   "lightbox.close": "Fechar", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Carregando...", |   "loading_indicator.label": "Carregando...", | ||||||
|   "media_gallery.toggle_visible": "Esconder/Mostrar", |   "media_gallery.toggle_visible": "Esconder/Mostrar", | ||||||
|   "missing_indicator.label": "Não encontrado", |   "missing_indicator.label": "Não encontrado", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Показывать ответы", |   "home.column_settings.show_replies": "Показывать ответы", | ||||||
|   "home.settings": "Настройки колонки", |   "home.settings": "Настройки колонки", | ||||||
|   "lightbox.close": "Закрыть", |   "lightbox.close": "Закрыть", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Загрузка...", |   "loading_indicator.label": "Загрузка...", | ||||||
|   "media_gallery.toggle_visible": "Показать/скрыть", |   "media_gallery.toggle_visible": "Показать/скрыть", | ||||||
|   "missing_indicator.label": "Не найдено", |   "missing_indicator.label": "Не найдено", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|   "lightbox.close": "Close", |   "lightbox.close": "Close", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Loading...", |   "loading_indicator.label": "Loading...", | ||||||
|   "media_gallery.toggle_visible": "Toggle visibility", |   "media_gallery.toggle_visible": "Toggle visibility", | ||||||
|   "missing_indicator.label": "Not found", |   "missing_indicator.label": "Not found", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Cevapları göster", |   "home.column_settings.show_replies": "Cevapları göster", | ||||||
|   "home.settings": "Kolon ayarları", |   "home.settings": "Kolon ayarları", | ||||||
|   "lightbox.close": "Kapat", |   "lightbox.close": "Kapat", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Yükleniyor...", |   "loading_indicator.label": "Yükleniyor...", | ||||||
|   "media_gallery.toggle_visible": "Görünürlüğü değiştir", |   "media_gallery.toggle_visible": "Görünürlüğü değiştir", | ||||||
|   "missing_indicator.label": "Bulunamadı", |   "missing_indicator.label": "Bulunamadı", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "Показувати відповіді", |   "home.column_settings.show_replies": "Показувати відповіді", | ||||||
|   "home.settings": "Налаштування колонок", |   "home.settings": "Налаштування колонок", | ||||||
|   "lightbox.close": "Закрити", |   "lightbox.close": "Закрити", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "Завантаження...", |   "loading_indicator.label": "Завантаження...", | ||||||
|   "media_gallery.toggle_visible": "Показати/приховати", |   "media_gallery.toggle_visible": "Показати/приховати", | ||||||
|   "missing_indicator.label": "Не знайдено", |   "missing_indicator.label": "Не знайдено", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "显示回应嘟文", |   "home.column_settings.show_replies": "显示回应嘟文", | ||||||
|   "home.settings": "字段设置", |   "home.settings": "字段设置", | ||||||
|   "lightbox.close": "关闭", |   "lightbox.close": "关闭", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "加载中……", |   "loading_indicator.label": "加载中……", | ||||||
|   "media_gallery.toggle_visible": "打开或关上", |   "media_gallery.toggle_visible": "打开或关上", | ||||||
|   "missing_indicator.label": "找不到内容", |   "missing_indicator.label": "找不到内容", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "顯示回應文章", |   "home.column_settings.show_replies": "顯示回應文章", | ||||||
|   "home.settings": "欄位設定", |   "home.settings": "欄位設定", | ||||||
|   "lightbox.close": "關閉", |   "lightbox.close": "關閉", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "載入中...", |   "loading_indicator.label": "載入中...", | ||||||
|   "media_gallery.toggle_visible": "打開或關上", |   "media_gallery.toggle_visible": "打開或關上", | ||||||
|   "missing_indicator.label": "找不到內容", |   "missing_indicator.label": "找不到內容", | ||||||
|  |  | ||||||
|  | @ -94,6 +94,8 @@ | ||||||
|   "home.column_settings.show_replies": "顯示回應", |   "home.column_settings.show_replies": "顯示回應", | ||||||
|   "home.settings": "欄位設定", |   "home.settings": "欄位設定", | ||||||
|   "lightbox.close": "關閉", |   "lightbox.close": "關閉", | ||||||
|  |   "lightbox.next": "Next", | ||||||
|  |   "lightbox.previous": "Previous", | ||||||
|   "loading_indicator.label": "讀取中...", |   "loading_indicator.label": "讀取中...", | ||||||
|   "media_gallery.toggle_visible": "切換可見性", |   "media_gallery.toggle_visible": "切換可見性", | ||||||
|   "missing_indicator.label": "找不到", |   "missing_indicator.label": "找不到", | ||||||
|  |  | ||||||
|  | @ -1595,6 +1595,8 @@ | ||||||
|   cursor: pointer; |   cursor: pointer; | ||||||
|   flex: 0 0 auto; |   flex: 0 0 auto; | ||||||
|   font-size: 16px; |   font-size: 16px; | ||||||
|  |   border: 0; | ||||||
|  |   text-align: start; | ||||||
|   padding: 15px; |   padding: 15px; | ||||||
|   z-index: 3; |   z-index: 3; | ||||||
| 
 | 
 | ||||||
|  | @ -2325,6 +2327,8 @@ button.icon-button.active i.fa-retweet { | ||||||
|   cursor: pointer; |   cursor: pointer; | ||||||
|   display: flex; |   display: flex; | ||||||
|   flex-direction: column; |   flex-direction: column; | ||||||
|  |   border: 0; | ||||||
|  |   width: 100%; | ||||||
|   height: 100%; |   height: 100%; | ||||||
|   justify-content: center; |   justify-content: center; | ||||||
|   position: relative; |   position: relative; | ||||||
|  | @ -2398,6 +2402,7 @@ button.icon-button.active i.fa-retweet { | ||||||
|   align-items: center; |   align-items: center; | ||||||
|   background: rgba($base-overlay-background, 0.5); |   background: rgba($base-overlay-background, 0.5); | ||||||
|   box-sizing: border-box; |   box-sizing: border-box; | ||||||
|  |   border: 0; | ||||||
|   color: $primary-text-color; |   color: $primary-text-color; | ||||||
|   cursor: pointer; |   cursor: pointer; | ||||||
|   display: flex; |   display: flex; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue