Refactor KeyboardShortcuts component (#5835)
This commit is contained in:
		
					parent
					
						
							
								1b57d4dd3a
							
						
					
				
			
			
				commit
				
					
						2b3b44ebbc
					
				
			
		
					 34 changed files with 661 additions and 34 deletions
				
			
		|  | @ -1,28 +1,11 @@ | ||||||
| import React from 'react'; | import React from 'react'; | ||||||
| import Column from '../ui/components/column'; | import Column from '../ui/components/column'; | ||||||
| import { defineMessages, injectIntl } from 'react-intl'; | import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; | ||||||
| import PropTypes from 'prop-types'; | import PropTypes from 'prop-types'; | ||||||
| import ImmutablePureComponent from 'react-immutable-pure-component'; | import ImmutablePureComponent from 'react-immutable-pure-component'; | ||||||
| 
 | 
 | ||||||
| const messages = defineMessages({ | const messages = defineMessages({ | ||||||
|   heading: { id: 'keyboard_shortcuts.heading', defaultMessage: 'Keyboard Shortcuts' }, |   heading: { id: 'keyboard_shortcuts.heading', defaultMessage: 'Keyboard Shortcuts' }, | ||||||
|   hotkey: { id: 'keyboard_shortcuts.hotkey', defaultMessage: 'Hotkey' }, |  | ||||||
|   description: { id: 'keyboard_shortcuts.description', defaultMessage: 'Description' }, |  | ||||||
|   reply: { id: 'keyboard_shortcuts.reply', defaultMessage: 'to reply' }, |  | ||||||
|   mention: { id: 'keyboard_shortcuts.mention', defaultMessage: 'to mention author' }, |  | ||||||
|   favourite: { id: 'keyboard_shortcuts.favourite', defaultMessage: 'to favourite' }, |  | ||||||
|   boost: { id: 'keyboard_shortcuts.boost', defaultMessage: 'to boost' }, |  | ||||||
|   enter: { id: 'keyboard_shortcuts.enter', defaultMessage: 'to open status' }, |  | ||||||
|   profile: { id: 'keyboard_shortcuts.profile', defaultMessage: 'to open author\'s profile' }, |  | ||||||
|   up: { id: 'keyboard_shortcuts.up', defaultMessage: 'to move up in the list' }, |  | ||||||
|   down: { id: 'keyboard_shortcuts.down', defaultMessage: 'to move down in the list' }, |  | ||||||
|   column: { id: 'keyboard_shortcuts.column', defaultMessage: 'to focus a status in one of the columns' }, |  | ||||||
|   compose: { id: 'keyboard_shortcuts.compose', defaultMessage: 'to focus the compose textarea' }, |  | ||||||
|   toot: { id: 'keyboard_shortcuts.toot', defaultMessage: 'to start a brand new toot' }, |  | ||||||
|   back: { id: 'keyboard_shortcuts.back', defaultMessage: 'to navigate back' }, |  | ||||||
|   search: { id: 'keyboard_shortcuts.search', defaultMessage: 'to focus search' }, |  | ||||||
|   unfocus: { id: 'keyboard_shortcuts.unfocus', defaultMessage: 'to un-focus compose textarea/search' }, |  | ||||||
|   legend: { id: 'keyboard_shortcuts.legend', defaultMessage: 'to display this legend' }, |  | ||||||
| }); | }); | ||||||
| 
 | 
 | ||||||
| @injectIntl | @injectIntl | ||||||
|  | @ -41,23 +24,68 @@ export default class KeyboardShortcuts extends ImmutablePureComponent { | ||||||
|         <div className='keyboard-shortcuts scrollable optionally-scrollable'> |         <div className='keyboard-shortcuts scrollable optionally-scrollable'> | ||||||
|           <table> |           <table> | ||||||
|             <thead> |             <thead> | ||||||
|               <tr><th>{intl.formatMessage(messages.hotkey)}</th><th>{intl.formatMessage(messages.description)}</th></tr> |               <tr> | ||||||
|  |                 <th><FormattedMessage id='keyboard_shortcuts.hotkey' defaultMessage='Hotkey' /></th> | ||||||
|  |                 <th><FormattedMessage id='keyboard_shortcuts.description' defaultMessage='Description' /></th> | ||||||
|  |               </tr> | ||||||
|             </thead> |             </thead> | ||||||
|             <tbody> |             <tbody> | ||||||
|               <tr><td><code>r</code></td><td>{intl.formatMessage(messages.reply)}</td></tr> |               <tr> | ||||||
|               <tr><td><code>m</code></td><td>{intl.formatMessage(messages.mention)}</td></tr> |                 <td><code>r</code></td> | ||||||
|               <tr><td><code>f</code></td><td>{intl.formatMessage(messages.favourite)}</td></tr> |                 <td><FormattedMessage id='keyboard_shortcuts.reply' defaultMessage='to reply' /></td> | ||||||
|               <tr><td><code>b</code></td><td>{intl.formatMessage(messages.boost)}</td></tr> |               </tr> | ||||||
|               <tr><td><code>enter</code></td><td>{intl.formatMessage(messages.enter)}</td></tr> |               <tr> | ||||||
|               <tr><td><code>up</code></td><td>{intl.formatMessage(messages.up)}</td></tr> |                 <td><code>m</code></td> | ||||||
|               <tr><td><code>down</code></td><td>{intl.formatMessage(messages.down)}</td></tr> |                 <td><FormattedMessage id='keyboard_shortcuts.mention' defaultMessage='to mention author' /></td> | ||||||
|               <tr><td><code>1</code>-<code>9</code></td><td>{intl.formatMessage(messages.column)}</td></tr> |               </tr> | ||||||
|               <tr><td><code>n</code></td><td>{intl.formatMessage(messages.compose)}</td></tr> |               <tr> | ||||||
|               <tr><td><code>alt</code>+<code>n</code></td><td>{intl.formatMessage(messages.toot)}</td></tr> |                 <td><code>f</code></td> | ||||||
|               <tr><td><code>backspace</code></td><td>{intl.formatMessage(messages.back)}</td></tr> |                 <td><FormattedMessage id='keyboard_shortcuts.favourite' defaultMessage='to favourite' /></td> | ||||||
|               <tr><td><code>s</code></td><td>{intl.formatMessage(messages.search)}</td></tr> |               </tr> | ||||||
|               <tr><td><code>esc</code></td><td>{intl.formatMessage(messages.unfocus)}</td></tr> |               <tr> | ||||||
|               <tr><td><code>?</code></td><td>{intl.formatMessage(messages.legend)}</td></tr> |                 <td><code>b</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.boost' defaultMessage='to boost' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>enter</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>up</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.up' defaultMessage='to move up in the list' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>down</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.down' defaultMessage='to move down in the list' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>1</code>-<code>9</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.column' defaultMessage='to focus a status in one of the columns' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>n</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.compose' defaultMessage='to focus the compose textarea' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>alt</code>+<code>n</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.toot' defaultMessage='to start a brand new toot' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>backspace</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.back' defaultMessage='to navigate back' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>s</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.search' defaultMessage='to focus search' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>esc</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.unfocus' defaultMessage='to un-focus compose textarea/search' /></td> | ||||||
|  |               </tr> | ||||||
|  |               <tr> | ||||||
|  |                 <td><code>?</code></td> | ||||||
|  |                 <td><FormattedMessage id='keyboard_shortcuts.legend' defaultMessage='to display this legend' /></td> | ||||||
|  |               </tr> | ||||||
|             </tbody> |             </tbody> | ||||||
|           </table> |           </table> | ||||||
|         </div> |         </div> | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "عرض الترقيات", |   "home.column_settings.show_reblogs": "عرض الترقيات", | ||||||
|   "home.column_settings.show_replies": "عرض الردود", |   "home.column_settings.show_replies": "عرض الردود", | ||||||
|   "home.settings": "إعدادات العمود", |   "home.settings": "إعدادات العمود", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "إغلاق", |   "lightbox.close": "إغلاق", | ||||||
|   "lightbox.next": "التالي", |   "lightbox.next": "التالي", | ||||||
|   "lightbox.previous": "العودة", |   "lightbox.previous": "العودة", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Show boosts", |   "home.column_settings.show_reblogs": "Show boosts", | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Затвори", |   "lightbox.close": "Затвори", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Mostrar impulsos", |   "home.column_settings.show_reblogs": "Mostrar impulsos", | ||||||
|   "home.column_settings.show_replies": "Mostrar respostes", |   "home.column_settings.show_replies": "Mostrar respostes", | ||||||
|   "home.settings": "Ajustos de columna", |   "home.settings": "Ajustos de columna", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Tancar", |   "lightbox.close": "Tancar", | ||||||
|   "lightbox.next": "Següent", |   "lightbox.next": "Següent", | ||||||
|   "lightbox.previous": "Anterior", |   "lightbox.previous": "Anterior", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen", |   "home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen", | ||||||
|   "home.column_settings.show_replies": "Antworten anzeigen", |   "home.column_settings.show_replies": "Antworten anzeigen", | ||||||
|   "home.settings": "Spalteneinstellungen", |   "home.settings": "Spalteneinstellungen", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Schließen", |   "lightbox.close": "Schließen", | ||||||
|   "lightbox.next": "Weiter", |   "lightbox.next": "Weiter", | ||||||
|   "lightbox.previous": "Zurück", |   "lightbox.previous": "Zurück", | ||||||
|  |  | ||||||
|  | @ -923,6 +923,79 @@ | ||||||
|     ], |     ], | ||||||
|     "path": "app/javascript/mastodon/features/home_timeline/index.json" |     "path": "app/javascript/mastodon/features/home_timeline/index.json" | ||||||
|   }, |   }, | ||||||
|  |   { | ||||||
|  |     "descriptors": [ | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "Keyboard Shortcuts", | ||||||
|  |         "id": "keyboard_shortcuts.heading" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "Hotkey", | ||||||
|  |         "id": "keyboard_shortcuts.hotkey" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "Description", | ||||||
|  |         "id": "keyboard_shortcuts.description" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to reply", | ||||||
|  |         "id": "keyboard_shortcuts.reply" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to mention author", | ||||||
|  |         "id": "keyboard_shortcuts.mention" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to favourite", | ||||||
|  |         "id": "keyboard_shortcuts.favourite" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to boost", | ||||||
|  |         "id": "keyboard_shortcuts.boost" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to open status", | ||||||
|  |         "id": "keyboard_shortcuts.enter" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to move up in the list", | ||||||
|  |         "id": "keyboard_shortcuts.up" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to move down in the list", | ||||||
|  |         "id": "keyboard_shortcuts.down" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to focus a status in one of the columns", | ||||||
|  |         "id": "keyboard_shortcuts.column" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to focus the compose textarea", | ||||||
|  |         "id": "keyboard_shortcuts.compose" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to start a brand new toot", | ||||||
|  |         "id": "keyboard_shortcuts.toot" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to navigate back", | ||||||
|  |         "id": "keyboard_shortcuts.back" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to focus search", | ||||||
|  |         "id": "keyboard_shortcuts.search" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to un-focus compose textarea/search", | ||||||
|  |         "id": "keyboard_shortcuts.unfocus" | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "defaultMessage": "to display this legend", | ||||||
|  |         "id": "keyboard_shortcuts.legend" | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "path": "app/javascript/mastodon/features/keyboard_shortcuts/index.json" | ||||||
|  |   }, | ||||||
|   { |   { | ||||||
|     "descriptors": [ |     "descriptors": [ | ||||||
|       { |       { | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Show boosts", |   "home.column_settings.show_reblogs": "Show boosts", | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Close", |   "lightbox.close": "Close", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Montri diskonigojn", |   "home.column_settings.show_reblogs": "Montri diskonigojn", | ||||||
|   "home.column_settings.show_replies": "Montri respondojn", |   "home.column_settings.show_replies": "Montri respondojn", | ||||||
|   "home.settings": "Agordoj de la kolumno", |   "home.settings": "Agordoj de la kolumno", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Fermi", |   "lightbox.close": "Fermi", | ||||||
|   "lightbox.next": "Malantaŭa", |   "lightbox.next": "Malantaŭa", | ||||||
|   "lightbox.previous": "Antaŭa", |   "lightbox.previous": "Antaŭa", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Mostrar retoots", |   "home.column_settings.show_reblogs": "Mostrar retoots", | ||||||
|   "home.column_settings.show_replies": "Mostrar respuestas", |   "home.column_settings.show_replies": "Mostrar respuestas", | ||||||
|   "home.settings": "Ajustes de columna", |   "home.settings": "Ajustes de columna", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Cerrar", |   "lightbox.close": "Cerrar", | ||||||
|   "lightbox.next": "Siguiente", |   "lightbox.next": "Siguiente", | ||||||
|   "lightbox.previous": "Anterior", |   "lightbox.previous": "Anterior", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "نمایش بازبوقها", |   "home.column_settings.show_reblogs": "نمایش بازبوقها", | ||||||
|   "home.column_settings.show_replies": "نمایش پاسخها", |   "home.column_settings.show_replies": "نمایش پاسخها", | ||||||
|   "home.settings": "تنظیمات ستون", |   "home.settings": "تنظیمات ستون", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "بستن", |   "lightbox.close": "بستن", | ||||||
|   "lightbox.next": "بعدی", |   "lightbox.next": "بعدی", | ||||||
|   "lightbox.previous": "قبلی", |   "lightbox.previous": "قبلی", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Show boosts", |   "home.column_settings.show_reblogs": "Show boosts", | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Sulje", |   "lightbox.close": "Sulje", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Afficher les partages", |   "home.column_settings.show_reblogs": "Afficher les partages", | ||||||
|   "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", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Fermer", |   "lightbox.close": "Fermer", | ||||||
|   "lightbox.next": "Suivant", |   "lightbox.next": "Suivant", | ||||||
|   "lightbox.previous": "Précédent", |   "lightbox.previous": "Précédent", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "הצגת הדהודים", |   "home.column_settings.show_reblogs": "הצגת הדהודים", | ||||||
|   "home.column_settings.show_replies": "הצגת תגובות", |   "home.column_settings.show_replies": "הצגת תגובות", | ||||||
|   "home.settings": "הגדרות טור", |   "home.settings": "הגדרות טור", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "סגירה", |   "lightbox.close": "סגירה", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Pokaži boostove", |   "home.column_settings.show_reblogs": "Pokaži boostove", | ||||||
|   "home.column_settings.show_replies": "Pokaži odgovore", |   "home.column_settings.show_replies": "Pokaži odgovore", | ||||||
|   "home.settings": "Postavke Stupca", |   "home.settings": "Postavke Stupca", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Zatvori", |   "lightbox.close": "Zatvori", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Show boosts", |   "home.column_settings.show_reblogs": "Show boosts", | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Bezárás", |   "lightbox.close": "Bezárás", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Tampilkan Boost", |   "home.column_settings.show_reblogs": "Tampilkan Boost", | ||||||
|   "home.column_settings.show_replies": "Tampilkan balasan", |   "home.column_settings.show_replies": "Tampilkan balasan", | ||||||
|   "home.settings": "Pengaturan kolom", |   "home.settings": "Pengaturan kolom", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Tutup", |   "lightbox.close": "Tutup", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Montrar repeti", |   "home.column_settings.show_reblogs": "Montrar repeti", | ||||||
|   "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", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Klozar", |   "lightbox.close": "Klozar", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Mostra post condivisi", |   "home.column_settings.show_reblogs": "Mostra post condivisi", | ||||||
|   "home.column_settings.show_replies": "Mostra risposte", |   "home.column_settings.show_replies": "Mostra risposte", | ||||||
|   "home.settings": "Impostazioni colonna", |   "home.settings": "Impostazioni colonna", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Chiudi", |   "lightbox.close": "Chiudi", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "ブースト表示", |   "home.column_settings.show_reblogs": "ブースト表示", | ||||||
|   "home.column_settings.show_replies": "返信表示", |   "home.column_settings.show_replies": "返信表示", | ||||||
|   "home.settings": "カラム設定", |   "home.settings": "カラム設定", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "閉じる", |   "lightbox.close": "閉じる", | ||||||
|   "lightbox.next": "次", |   "lightbox.next": "次", | ||||||
|   "lightbox.previous": "前", |   "lightbox.previous": "前", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "부스트 표시", |   "home.column_settings.show_reblogs": "부스트 표시", | ||||||
|   "home.column_settings.show_replies": "답글 표시", |   "home.column_settings.show_replies": "답글 표시", | ||||||
|   "home.settings": "컬럼 설정", |   "home.settings": "컬럼 설정", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "닫기", |   "lightbox.close": "닫기", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Boosts tonen", |   "home.column_settings.show_reblogs": "Boosts tonen", | ||||||
|   "home.column_settings.show_replies": "Reacties tonen", |   "home.column_settings.show_replies": "Reacties tonen", | ||||||
|   "home.settings": "Kolom-instellingen", |   "home.settings": "Kolom-instellingen", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Sluiten", |   "lightbox.close": "Sluiten", | ||||||
|   "lightbox.next": "Volgende", |   "lightbox.next": "Volgende", | ||||||
|   "lightbox.previous": "Vorige", |   "lightbox.previous": "Vorige", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Vis fremhevinger", |   "home.column_settings.show_reblogs": "Vis fremhevinger", | ||||||
|   "home.column_settings.show_replies": "Vis svar", |   "home.column_settings.show_replies": "Vis svar", | ||||||
|   "home.settings": "Kolonneinnstillinger", |   "home.settings": "Kolonneinnstillinger", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Lukk", |   "lightbox.close": "Lukk", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Mostrar los partatges", |   "home.column_settings.show_reblogs": "Mostrar los partatges", | ||||||
|   "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", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Tampar", |   "lightbox.close": "Tampar", | ||||||
|   "lightbox.next": "Seguent", |   "lightbox.next": "Seguent", | ||||||
|   "lightbox.previous": "Precedent", |   "lightbox.previous": "Precedent", | ||||||
|  |  | ||||||
|  | @ -114,7 +114,6 @@ | ||||||
|   "keyboard_shortcuts.hotkey": "Klawisz", |   "keyboard_shortcuts.hotkey": "Klawisz", | ||||||
|   "keyboard_shortcuts.legend": "aby wyświetlić tą legendę", |   "keyboard_shortcuts.legend": "aby wyświetlić tą legendę", | ||||||
|   "keyboard_shortcuts.mention": "aby wspomnieć o autorze", |   "keyboard_shortcuts.mention": "aby wspomnieć o autorze", | ||||||
|   "keyboard_shortcuts.profile": "aby przejść do profilu autora", |  | ||||||
|   "keyboard_shortcuts.reply": "aby odpowiedzieć", |   "keyboard_shortcuts.reply": "aby odpowiedzieć", | ||||||
|   "keyboard_shortcuts.search": "aby przejść do pola wyszukiwania", |   "keyboard_shortcuts.search": "aby przejść do pola wyszukiwania", | ||||||
|   "keyboard_shortcuts.toot": "aby utworzyć nowy wpis", |   "keyboard_shortcuts.toot": "aby utworzyć nowy wpis", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Mostrar compartilhamentos", |   "home.column_settings.show_reblogs": "Mostrar compartilhamentos", | ||||||
|   "home.column_settings.show_replies": "Mostrar as respostas", |   "home.column_settings.show_replies": "Mostrar as respostas", | ||||||
|   "home.settings": "Configurações de colunas", |   "home.settings": "Configurações de colunas", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Fechar", |   "lightbox.close": "Fechar", | ||||||
|   "lightbox.next": "Próximo", |   "lightbox.next": "Próximo", | ||||||
|   "lightbox.previous": "Anterior", |   "lightbox.previous": "Anterior", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Mostrar as partilhas", |   "home.column_settings.show_reblogs": "Mostrar as partilhas", | ||||||
|   "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", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Fechar", |   "lightbox.close": "Fechar", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Показывать продвижения", |   "home.column_settings.show_reblogs": "Показывать продвижения", | ||||||
|   "home.column_settings.show_replies": "Показывать ответы", |   "home.column_settings.show_replies": "Показывать ответы", | ||||||
|   "home.settings": "Настройки колонки", |   "home.settings": "Настройки колонки", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Закрыть", |   "lightbox.close": "Закрыть", | ||||||
|   "lightbox.next": "Далее", |   "lightbox.next": "Далее", | ||||||
|   "lightbox.previous": "Назад", |   "lightbox.previous": "Назад", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Visa knuffar", |   "home.column_settings.show_reblogs": "Visa knuffar", | ||||||
|   "home.column_settings.show_replies": "Visa svar", |   "home.column_settings.show_replies": "Visa svar", | ||||||
|   "home.settings": "Kolumninställningar", |   "home.settings": "Kolumninställningar", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Stäng", |   "lightbox.close": "Stäng", | ||||||
|   "lightbox.next": "Nästa", |   "lightbox.next": "Nästa", | ||||||
|   "lightbox.previous": "Tidigare", |   "lightbox.previous": "Tidigare", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Show boosts", |   "home.column_settings.show_reblogs": "Show boosts", | ||||||
|   "home.column_settings.show_replies": "Show replies", |   "home.column_settings.show_replies": "Show replies", | ||||||
|   "home.settings": "Column settings", |   "home.settings": "Column settings", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Close", |   "lightbox.close": "Close", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Boost edilenleri göster", |   "home.column_settings.show_reblogs": "Boost edilenleri göster", | ||||||
|   "home.column_settings.show_replies": "Cevapları göster", |   "home.column_settings.show_replies": "Cevapları göster", | ||||||
|   "home.settings": "Kolon ayarları", |   "home.settings": "Kolon ayarları", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Kapat", |   "lightbox.close": "Kapat", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "Показувати передмухи", |   "home.column_settings.show_reblogs": "Показувати передмухи", | ||||||
|   "home.column_settings.show_replies": "Показувати відповіді", |   "home.column_settings.show_replies": "Показувати відповіді", | ||||||
|   "home.settings": "Налаштування колонок", |   "home.settings": "Налаштування колонок", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "Закрити", |   "lightbox.close": "Закрити", | ||||||
|   "lightbox.next": "Next", |   "lightbox.next": "Next", | ||||||
|   "lightbox.previous": "Previous", |   "lightbox.previous": "Previous", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "显示转嘟", |   "home.column_settings.show_reblogs": "显示转嘟", | ||||||
|   "home.column_settings.show_replies": "显示回复", |   "home.column_settings.show_replies": "显示回复", | ||||||
|   "home.settings": "栏目设置", |   "home.settings": "栏目设置", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "关闭", |   "lightbox.close": "关闭", | ||||||
|   "lightbox.next": "下一步", |   "lightbox.next": "下一步", | ||||||
|   "lightbox.previous": "上一步", |   "lightbox.previous": "上一步", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "顯示被轉推的文章", |   "home.column_settings.show_reblogs": "顯示被轉推的文章", | ||||||
|   "home.column_settings.show_replies": "顯示回應文章", |   "home.column_settings.show_replies": "顯示回應文章", | ||||||
|   "home.settings": "欄位設定", |   "home.settings": "欄位設定", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "關閉", |   "lightbox.close": "關閉", | ||||||
|   "lightbox.next": "繼續", |   "lightbox.next": "繼續", | ||||||
|   "lightbox.previous": "回退", |   "lightbox.previous": "回退", | ||||||
|  |  | ||||||
|  | @ -102,6 +102,23 @@ | ||||||
|   "home.column_settings.show_reblogs": "顯示轉推", |   "home.column_settings.show_reblogs": "顯示轉推", | ||||||
|   "home.column_settings.show_replies": "顯示回應", |   "home.column_settings.show_replies": "顯示回應", | ||||||
|   "home.settings": "欄位設定", |   "home.settings": "欄位設定", | ||||||
|  |   "keyboard_shortcuts.back": "to navigate back", | ||||||
|  |   "keyboard_shortcuts.boost": "to boost", | ||||||
|  |   "keyboard_shortcuts.column": "to focus a status in one of the columns", | ||||||
|  |   "keyboard_shortcuts.compose": "to focus the compose textarea", | ||||||
|  |   "keyboard_shortcuts.description": "Description", | ||||||
|  |   "keyboard_shortcuts.down": "to move down in the list", | ||||||
|  |   "keyboard_shortcuts.enter": "to open status", | ||||||
|  |   "keyboard_shortcuts.favourite": "to favourite", | ||||||
|  |   "keyboard_shortcuts.heading": "Keyboard Shortcuts", | ||||||
|  |   "keyboard_shortcuts.hotkey": "Hotkey", | ||||||
|  |   "keyboard_shortcuts.legend": "to display this legend", | ||||||
|  |   "keyboard_shortcuts.mention": "to mention author", | ||||||
|  |   "keyboard_shortcuts.reply": "to reply", | ||||||
|  |   "keyboard_shortcuts.search": "to focus search", | ||||||
|  |   "keyboard_shortcuts.toot": "to start a brand new toot", | ||||||
|  |   "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", | ||||||
|  |   "keyboard_shortcuts.up": "to move up in the list", | ||||||
|   "lightbox.close": "關閉", |   "lightbox.close": "關閉", | ||||||
|   "lightbox.next": "繼續", |   "lightbox.next": "繼續", | ||||||
|   "lightbox.previous": "回退", |   "lightbox.previous": "回退", | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue