Merge branch 'main' into glitch-soc/merge-upstream
Conflicts: - `.github/workflows/build-image.yml`: Upstream changed the workflow a bit. Conflict comes from us pushing to ghcr while upstream pushes to dockerhub. Ported the upstream changes while still pushing to ghcr.
This commit is contained in:
		
						commit
						3d25fe0426
					
				
							
								
								
									
										2
									
								
								.github/workflows/build-image.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/build-image.yml
									
									
									
									
										vendored
									
									
								
							| @ -22,6 +22,7 @@ jobs: | |||||||
|           registry: ghcr.io |           registry: ghcr.io | ||||||
|           username: ${{ github.repository_owner }} |           username: ${{ github.repository_owner }} | ||||||
|           password: ${{ secrets.GITHUB_TOKEN }} |           password: ${{ secrets.GITHUB_TOKEN }} | ||||||
|  |         if: github.event_name != 'pull_request' | ||||||
|       - uses: docker/metadata-action@v3 |       - uses: docker/metadata-action@v3 | ||||||
|         id: meta |         id: meta | ||||||
|         with: |         with: | ||||||
| @ -31,6 +32,7 @@ jobs: | |||||||
|           tags: | |           tags: | | ||||||
|             type=edge,branch=main |             type=edge,branch=main | ||||||
|             type=semver,pattern={{ raw }} |             type=semver,pattern={{ raw }} | ||||||
|  |             type=ref,event=pr | ||||||
|       - uses: docker/build-push-action@v2 |       - uses: docker/build-push-action@v2 | ||||||
|         with: |         with: | ||||||
|           context: . |           context: . | ||||||
|  | |||||||
| @ -17,17 +17,7 @@ class Api::Web::PushSubscriptionsController < Api::Web::BaseController | |||||||
| 
 | 
 | ||||||
|     data = { |     data = { | ||||||
|       policy: 'all', |       policy: 'all', | ||||||
| 
 |       alerts: Notification::TYPES.index_with { alerts_enabled }, | ||||||
|       alerts: { |  | ||||||
|         follow: alerts_enabled, |  | ||||||
|         follow_request: alerts_enabled, |  | ||||||
|         favourite: alerts_enabled, |  | ||||||
|         reblog: alerts_enabled, |  | ||||||
|         mention: alerts_enabled, |  | ||||||
|         poll: alerts_enabled, |  | ||||||
|         status: alerts_enabled, |  | ||||||
|         update: alerts_enabled, |  | ||||||
|       }, |  | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     data.deep_merge!(data_params) if params[:data] |     data.deep_merge!(data_params) if params[:data] | ||||||
| @ -62,15 +52,6 @@ class Api::Web::PushSubscriptionsController < Api::Web::BaseController | |||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   def data_params |   def data_params | ||||||
|     @data_params ||= params.require(:data).permit(:policy, alerts: [ |     @data_params ||= params.require(:data).permit(:policy, alerts: Notification::TYPES) | ||||||
|       :follow, |  | ||||||
|       :follow_request, |  | ||||||
|       :favourite, |  | ||||||
|       :reblog, |  | ||||||
|       :mention, |  | ||||||
|       :poll, |  | ||||||
|       :status, |  | ||||||
|       :update, |  | ||||||
|     ]) |  | ||||||
|   end |   end | ||||||
| end | end | ||||||
|  | |||||||
| @ -45,7 +45,7 @@ defineMessages({ | |||||||
| }); | }); | ||||||
| 
 | 
 | ||||||
| const fetchRelatedRelationships = (dispatch, notifications) => { | const fetchRelatedRelationships = (dispatch, notifications) => { | ||||||
|   const accountIds = notifications.filter(item => item.type === 'follow').map(item => item.account.id); |   const accountIds = notifications.filter(item => ['follow', 'follow_request', 'admin.sign_up'].indexOf(item.type) !== -1).map(item => item.account.id); | ||||||
| 
 | 
 | ||||||
|   if (accountIds.length > 0) { |   if (accountIds.length > 0) { | ||||||
|     dispatch(fetchRelationships(accountIds)); |     dispatch(fetchRelationships(accountIds)); | ||||||
| @ -132,6 +132,7 @@ const excludeTypesFromFilter = filter => { | |||||||
|     'poll', |     'poll', | ||||||
|     'status', |     'status', | ||||||
|     'update', |     'update', | ||||||
|  |     'admin.sign_up', | ||||||
|   ]); |   ]); | ||||||
| 
 | 
 | ||||||
|   return allTypes.filterNot(item => item === filter).toJS(); |   return allTypes.filterNot(item => item === filter).toJS(); | ||||||
|  | |||||||
| @ -6,7 +6,7 @@ export const CircularProgress = ({ size, strokeWidth }) => { | |||||||
|   const radius  = (size - strokeWidth) / 2; |   const radius  = (size - strokeWidth) / 2; | ||||||
| 
 | 
 | ||||||
|   return ( |   return ( | ||||||
|     <svg width={size} heigh={size} viewBox={viewBox} className='circular-progress' role='progressbar'> |     <svg width={size} height={size} viewBox={viewBox} className='circular-progress' role='progressbar'> | ||||||
|       <circle |       <circle | ||||||
|         fill='none' |         fill='none' | ||||||
|         cx={size / 2} |         cx={size / 2} | ||||||
|  | |||||||
| @ -90,7 +90,7 @@ Object.keys(emojiIndex.emojis).forEach(key => { | |||||||
|   let { short_names, search, unified } = emojiMartData.emojis[key]; |   let { short_names, search, unified } = emojiMartData.emojis[key]; | ||||||
| 
 | 
 | ||||||
|   if (short_names[0] !== key) { |   if (short_names[0] !== key) { | ||||||
|     throw new Error('The compresser expects the first short_code to be the ' + |     throw new Error('The compressor expects the first short_code to be the ' + | ||||||
|       'key. It may need to be rewritten if the emoji change such that this ' + |       'key. It may need to be rewritten if the emoji change such that this ' + | ||||||
|       'is no longer the case.'); |       'is no longer the case.'); | ||||||
|   } |   } | ||||||
|  | |||||||
| @ -5,6 +5,7 @@ import { FormattedMessage } from 'react-intl'; | |||||||
| import ClearColumnButton from './clear_column_button'; | import ClearColumnButton from './clear_column_button'; | ||||||
| import GrantPermissionButton from './grant_permission_button'; | import GrantPermissionButton from './grant_permission_button'; | ||||||
| import SettingToggle from './setting_toggle'; | import SettingToggle from './setting_toggle'; | ||||||
|  | import { isStaff } from 'mastodon/initial_state'; | ||||||
| 
 | 
 | ||||||
| export default class ColumnSettings extends React.PureComponent { | export default class ColumnSettings extends React.PureComponent { | ||||||
| 
 | 
 | ||||||
| @ -155,7 +156,7 @@ export default class ColumnSettings extends React.PureComponent { | |||||||
|         </div> |         </div> | ||||||
| 
 | 
 | ||||||
|         <div role='group' aria-labelledby='notifications-update'> |         <div role='group' aria-labelledby='notifications-update'> | ||||||
|           <span id='notifications-status' className='column-settings__section'><FormattedMessage id='notifications.column_settings.update' defaultMessage='Edits:' /></span> |           <span id='notifications-update' className='column-settings__section'><FormattedMessage id='notifications.column_settings.update' defaultMessage='Edits:' /></span> | ||||||
| 
 | 
 | ||||||
|           <div className='column-settings__row'> |           <div className='column-settings__row'> | ||||||
|             <SettingToggle disabled={browserPermission === 'denied'} prefix='notifications_desktop' settings={settings} settingPath={['alerts', 'update']} onChange={onChange} label={alertStr} /> |             <SettingToggle disabled={browserPermission === 'denied'} prefix='notifications_desktop' settings={settings} settingPath={['alerts', 'update']} onChange={onChange} label={alertStr} /> | ||||||
| @ -164,6 +165,19 @@ export default class ColumnSettings extends React.PureComponent { | |||||||
|             <SettingToggle prefix='notifications' settings={settings} settingPath={['sounds', 'update']} onChange={onChange} label={soundStr} /> |             <SettingToggle prefix='notifications' settings={settings} settingPath={['sounds', 'update']} onChange={onChange} label={soundStr} /> | ||||||
|           </div> |           </div> | ||||||
|         </div> |         </div> | ||||||
|  | 
 | ||||||
|  |         {isStaff && ( | ||||||
|  |           <div role='group' aria-labelledby='notifications-admin-sign-up'> | ||||||
|  |             <span id='notifications-status' className='column-settings__section'><FormattedMessage id='notifications.column_settings.admin.sign_up' defaultMessage='New sign-ups:' /></span> | ||||||
|  | 
 | ||||||
|  |             <div className='column-settings__row'> | ||||||
|  |               <SettingToggle disabled={browserPermission === 'denied'} prefix='notifications_desktop' settings={settings} settingPath={['alerts', 'admin.sign_up']} onChange={onChange} label={alertStr} /> | ||||||
|  |               {showPushSettings && <SettingToggle prefix='notifications_push' settings={pushSettings} settingPath={['alerts', 'admin.sign_up']} onChange={this.onPushChange} label={pushStr} />} | ||||||
|  |               <SettingToggle prefix='notifications' settings={settings} settingPath={['shows', 'admin.sign_up']} onChange={onChange} label={showStr} /> | ||||||
|  |               <SettingToggle prefix='notifications' settings={settings} settingPath={['sounds', 'admin.sign_up']} onChange={onChange} label={soundStr} /> | ||||||
|  |             </div> | ||||||
|  |           </div> | ||||||
|  |         )} | ||||||
|       </div> |       </div> | ||||||
|     ); |     ); | ||||||
|   } |   } | ||||||
|  | |||||||
| @ -20,6 +20,7 @@ const messages = defineMessages({ | |||||||
|   reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your status' }, |   reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your status' }, | ||||||
|   status: { id: 'notification.status', defaultMessage: '{name} just posted' }, |   status: { id: 'notification.status', defaultMessage: '{name} just posted' }, | ||||||
|   update: { id: 'notification.update', defaultMessage: '{name} edited a post' }, |   update: { id: 'notification.update', defaultMessage: '{name} edited a post' }, | ||||||
|  |   adminSignUp: { id: 'notification.admin.sign_up', defaultMessage: '{name} signed up' }, | ||||||
| }); | }); | ||||||
| 
 | 
 | ||||||
| const notificationForScreenReader = (intl, message, timestamp) => { | const notificationForScreenReader = (intl, message, timestamp) => { | ||||||
| @ -344,6 +345,28 @@ class Notification extends ImmutablePureComponent { | |||||||
|     ); |     ); | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|  |   renderAdminSignUp (notification, account, link) { | ||||||
|  |     const { intl, unread } = this.props; | ||||||
|  | 
 | ||||||
|  |     return ( | ||||||
|  |       <HotKeys handlers={this.getHandlers()}> | ||||||
|  |         <div className={classNames('notification notification-admin-sign-up focusable', { unread })} tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.adminSignUp, { name: account.get('acct') }), notification.get('created_at'))}> | ||||||
|  |           <div className='notification__message'> | ||||||
|  |             <div className='notification__favourite-icon-wrapper'> | ||||||
|  |               <Icon id='user-plus' fixedWidth /> | ||||||
|  |             </div> | ||||||
|  | 
 | ||||||
|  |             <span title={notification.get('created_at')}> | ||||||
|  |               <FormattedMessage id='notification.admin.sign_up' defaultMessage='{name} signed up' values={{ name: link }} /> | ||||||
|  |             </span> | ||||||
|  |           </div> | ||||||
|  | 
 | ||||||
|  |           <AccountContainer id={account.get('id')} hidden={this.props.hidden} /> | ||||||
|  |         </div> | ||||||
|  |       </HotKeys> | ||||||
|  |     ); | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|   render () { |   render () { | ||||||
|     const { notification } = this.props; |     const { notification } = this.props; | ||||||
|     const account          = notification.get('account'); |     const account          = notification.get('account'); | ||||||
| @ -367,6 +390,8 @@ class Notification extends ImmutablePureComponent { | |||||||
|       return this.renderUpdate(notification, link); |       return this.renderUpdate(notification, link); | ||||||
|     case 'poll': |     case 'poll': | ||||||
|       return this.renderPoll(notification, account); |       return this.renderPoll(notification, account); | ||||||
|  |     case 'admin.sign_up': | ||||||
|  |       return this.renderAdminSignUp(notification, account, link); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     return null; |     return null; | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Ha finalitzat una enquesta en la que has votat", |   "notification.poll": "Ha finalitzat una enquesta en la que has votat", | ||||||
|   "notification.reblog": "{name} ha impulsat el teu estat", |   "notification.reblog": "{name} ha impulsat el teu estat", | ||||||
|   "notification.status": "ha publicat {name}", |   "notification.status": "ha publicat {name}", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} ha editat una publicació", | ||||||
|   "notifications.clear": "Netejar notificacions", |   "notifications.clear": "Netejar notificacions", | ||||||
|   "notifications.clear_confirmation": "Estàs segur que vols esborrar permanentment totes les teves notificacions?", |   "notifications.clear_confirmation": "Estàs segur que vols esborrar permanentment totes les teves notificacions?", | ||||||
|   "notifications.column_settings.alert": "Notificacions d'escriptori", |   "notifications.column_settings.alert": "Notificacions d'escriptori", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nous tuts:", |   "notifications.column_settings.status": "Nous tuts:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notificacions no llegides", |   "notifications.column_settings.unread_notifications.category": "Notificacions no llegides", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Destaca notificacions no llegides", |   "notifications.column_settings.unread_notifications.highlight": "Destaca notificacions no llegides", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Edicions:", | ||||||
|   "notifications.filter.all": "Tots", |   "notifications.filter.all": "Tots", | ||||||
|   "notifications.filter.boosts": "Impulsos", |   "notifications.filter.boosts": "Impulsos", | ||||||
|   "notifications.filter.favourites": "Favorits", |   "notifications.filter.favourites": "Favorits", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "En afstemning, du deltog i, er færdig", |   "notification.poll": "En afstemning, du deltog i, er færdig", | ||||||
|   "notification.reblog": "{name} fremhævede dit indlæg", |   "notification.reblog": "{name} fremhævede dit indlæg", | ||||||
|   "notification.status": "{name} har netop udgivet", |   "notification.status": "{name} har netop udgivet", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} redigerede et indlæg", | ||||||
|   "notifications.clear": "Ryd notifikationer", |   "notifications.clear": "Ryd notifikationer", | ||||||
|   "notifications.clear_confirmation": "Er du sikker på, du vil rydde alle dine notifikationer permanent?", |   "notifications.clear_confirmation": "Er du sikker på, du vil rydde alle dine notifikationer permanent?", | ||||||
|   "notifications.column_settings.alert": "Skrivebordsnotifikationer", |   "notifications.column_settings.alert": "Skrivebordsnotifikationer", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nye indlæg:", |   "notifications.column_settings.status": "Nye indlæg:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Ulæste notifikationer", |   "notifications.column_settings.unread_notifications.category": "Ulæste notifikationer", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Fremhæv ulæste notifikationer", |   "notifications.column_settings.unread_notifications.highlight": "Fremhæv ulæste notifikationer", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Redigeringer:", | ||||||
|   "notifications.filter.all": "Alle", |   "notifications.filter.all": "Alle", | ||||||
|   "notifications.filter.boosts": "Fremhævelser", |   "notifications.filter.boosts": "Fremhævelser", | ||||||
|   "notifications.filter.favourites": "Favoritter", |   "notifications.filter.favourites": "Favoritter", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Τελείωσε μια από τις ψηφοφορίες που συμμετείχες", |   "notification.poll": "Τελείωσε μια από τις ψηφοφορίες που συμμετείχες", | ||||||
|   "notification.reblog": "Ο/Η {name} προώθησε την κατάστασή σου", |   "notification.reblog": "Ο/Η {name} προώθησε την κατάστασή σου", | ||||||
|   "notification.status": "Ο/Η {name} μόλις έγραψε κάτι", |   "notification.status": "Ο/Η {name} μόλις έγραψε κάτι", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} επεξεργάστηκε μια δημοσίευση", | ||||||
|   "notifications.clear": "Καθαρισμός ειδοποιήσεων", |   "notifications.clear": "Καθαρισμός ειδοποιήσεων", | ||||||
|   "notifications.clear_confirmation": "Σίγουρα θέλεις να καθαρίσεις όλες τις ειδοποιήσεις σου;", |   "notifications.clear_confirmation": "Σίγουρα θέλεις να καθαρίσεις όλες τις ειδοποιήσεις σου;", | ||||||
|   "notifications.column_settings.alert": "Ειδοποιήσεις επιφάνειας εργασίας", |   "notifications.column_settings.alert": "Ειδοποιήσεις επιφάνειας εργασίας", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Νέα τουτ:", |   "notifications.column_settings.status": "Νέα τουτ:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Μη αναγνωσμένες ειδοποιήσεις", |   "notifications.column_settings.unread_notifications.category": "Μη αναγνωσμένες ειδοποιήσεις", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Επισήμανση μη αναγνωσμένων ειδοποιήσεων", |   "notifications.column_settings.unread_notifications.highlight": "Επισήμανση μη αναγνωσμένων ειδοποιήσεων", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Επεξεργασίες:", | ||||||
|   "notifications.filter.all": "Όλες", |   "notifications.filter.all": "Όλες", | ||||||
|   "notifications.filter.boosts": "Προωθήσεις", |   "notifications.filter.boosts": "Προωθήσεις", | ||||||
|   "notifications.filter.favourites": "Αγαπημένα", |   "notifications.filter.favourites": "Αγαπημένα", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Finalizó una encuesta en la que votaste", |   "notification.poll": "Finalizó una encuesta en la que votaste", | ||||||
|   "notification.reblog": "{name} adhirió a tu mensaje", |   "notification.reblog": "{name} adhirió a tu mensaje", | ||||||
|   "notification.status": "{name} acaba de enviar un mensaje", |   "notification.status": "{name} acaba de enviar un mensaje", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} editó un mensaje", | ||||||
|   "notifications.clear": "Limpiar notificaciones", |   "notifications.clear": "Limpiar notificaciones", | ||||||
|   "notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?", |   "notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?", | ||||||
|   "notifications.column_settings.alert": "Notificaciones de escritorio", |   "notifications.column_settings.alert": "Notificaciones de escritorio", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nuevos mensajes:", |   "notifications.column_settings.status": "Nuevos mensajes:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notificaciones sin leer", |   "notifications.column_settings.unread_notifications.category": "Notificaciones sin leer", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Resaltar notificaciones no leídas", |   "notifications.column_settings.unread_notifications.highlight": "Resaltar notificaciones no leídas", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Ediciones:", | ||||||
|   "notifications.filter.all": "Todas", |   "notifications.filter.all": "Todas", | ||||||
|   "notifications.filter.boosts": "Adhesiones", |   "notifications.filter.boosts": "Adhesiones", | ||||||
|   "notifications.filter.favourites": "Favoritos", |   "notifications.filter.favourites": "Favoritos", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Una encuesta en la que has votado ha terminado", |   "notification.poll": "Una encuesta en la que has votado ha terminado", | ||||||
|   "notification.reblog": "{name} ha retooteado tu publicación", |   "notification.reblog": "{name} ha retooteado tu publicación", | ||||||
|   "notification.status": "{name} acaba de publicar", |   "notification.status": "{name} acaba de publicar", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} editó una publicación", | ||||||
|   "notifications.clear": "Limpiar notificaciones", |   "notifications.clear": "Limpiar notificaciones", | ||||||
|   "notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?", |   "notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?", | ||||||
|   "notifications.column_settings.alert": "Notificaciones de escritorio", |   "notifications.column_settings.alert": "Notificaciones de escritorio", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nuevas publicaciones:", |   "notifications.column_settings.status": "Nuevas publicaciones:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notificaciones sin leer", |   "notifications.column_settings.unread_notifications.category": "Notificaciones sin leer", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Destacar notificaciones no leídas", |   "notifications.column_settings.unread_notifications.highlight": "Destacar notificaciones no leídas", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Ediciones:", | ||||||
|   "notifications.filter.all": "Todos", |   "notifications.filter.all": "Todos", | ||||||
|   "notifications.filter.boosts": "Retoots", |   "notifications.filter.boosts": "Retoots", | ||||||
|   "notifications.filter.favourites": "Favoritos", |   "notifications.filter.favourites": "Favoritos", | ||||||
|  | |||||||
| @ -47,8 +47,8 @@ | |||||||
|   "account.unmute": "Desmututu @{name}", |   "account.unmute": "Desmututu @{name}", | ||||||
|   "account.unmute_notifications": "Desmututu @{name}(r)en jakinarazpenak", |   "account.unmute_notifications": "Desmututu @{name}(r)en jakinarazpenak", | ||||||
|   "account_note.placeholder": "Click to add a note", |   "account_note.placeholder": "Click to add a note", | ||||||
|   "admin.dashboard.daily_retention": "User retention rate by day after sign-up", |   "admin.dashboard.daily_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo eguneko", | ||||||
|   "admin.dashboard.monthly_retention": "User retention rate by month after sign-up", |   "admin.dashboard.monthly_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo hilabeteko", | ||||||
|   "admin.dashboard.retention.average": "Batezbestekoa", |   "admin.dashboard.retention.average": "Batezbestekoa", | ||||||
|   "admin.dashboard.retention.cohort": "Izen emate hilean", |   "admin.dashboard.retention.cohort": "Izen emate hilean", | ||||||
|   "admin.dashboard.retention.cohort_size": "Erabiltzaile berriak", |   "admin.dashboard.retention.cohort_size": "Erabiltzaile berriak", | ||||||
| @ -105,7 +105,7 @@ | |||||||
|   "compose_form.poll.switch_to_single": "Aldatu inkesta aukera bakarra onartzeko", |   "compose_form.poll.switch_to_single": "Aldatu inkesta aukera bakarra onartzeko", | ||||||
|   "compose_form.publish": "Toot", |   "compose_form.publish": "Toot", | ||||||
|   "compose_form.publish_loud": "{publish}!", |   "compose_form.publish_loud": "{publish}!", | ||||||
|   "compose_form.save_changes": "Save changes", |   "compose_form.save_changes": "Gorde aldaketak", | ||||||
|   "compose_form.sensitive.hide": "Markatu multimedia hunkigarri gisa", |   "compose_form.sensitive.hide": "Markatu multimedia hunkigarri gisa", | ||||||
|   "compose_form.sensitive.marked": "Multimedia edukia hunkigarri gisa markatu da", |   "compose_form.sensitive.marked": "Multimedia edukia hunkigarri gisa markatu da", | ||||||
|   "compose_form.sensitive.unmarked": "Multimedia edukia ez da hunkigarri gisa markatu", |   "compose_form.sensitive.unmarked": "Multimedia edukia ez da hunkigarri gisa markatu", | ||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Zuk erantzun duzun inkesta bat bukatu da", |   "notification.poll": "Zuk erantzun duzun inkesta bat bukatu da", | ||||||
|   "notification.reblog": "{name}(e)k bultzada eman dio zure bidalketari", |   "notification.reblog": "{name}(e)k bultzada eman dio zure bidalketari", | ||||||
|   "notification.status": "{name} erabiltzaileak bidalketa egin berri du", |   "notification.status": "{name} erabiltzaileak bidalketa egin berri du", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} erabiltzaileak bidalketa bat editatu du", | ||||||
|   "notifications.clear": "Garbitu jakinarazpenak", |   "notifications.clear": "Garbitu jakinarazpenak", | ||||||
|   "notifications.clear_confirmation": "Ziur zure jakinarazpen guztiak behin betirako garbitu nahi dituzula?", |   "notifications.clear_confirmation": "Ziur zure jakinarazpen guztiak behin betirako garbitu nahi dituzula?", | ||||||
|   "notifications.column_settings.alert": "Mahaigaineko jakinarazpenak", |   "notifications.column_settings.alert": "Mahaigaineko jakinarazpenak", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Bidalketa berriak:", |   "notifications.column_settings.status": "Bidalketa berriak:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Irakurri gabeko jakinarazpenak", |   "notifications.column_settings.unread_notifications.category": "Irakurri gabeko jakinarazpenak", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Nabarmendu irakurri gabeko jakinarazpenak", |   "notifications.column_settings.unread_notifications.highlight": "Nabarmendu irakurri gabeko jakinarazpenak", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Edizioak:", | ||||||
|   "notifications.filter.all": "Denak", |   "notifications.filter.all": "Denak", | ||||||
|   "notifications.filter.boosts": "Bultzadak", |   "notifications.filter.boosts": "Bultzadak", | ||||||
|   "notifications.filter.favourites": "Gogokoak", |   "notifications.filter.favourites": "Gogokoak", | ||||||
| @ -367,20 +367,20 @@ | |||||||
|   "regeneration_indicator.label": "Kargatzen…", |   "regeneration_indicator.label": "Kargatzen…", | ||||||
|   "regeneration_indicator.sublabel": "Zure hasiera-jarioa prestatzen ari da!", |   "regeneration_indicator.sublabel": "Zure hasiera-jarioa prestatzen ari da!", | ||||||
|   "relative_time.days": "{number}e", |   "relative_time.days": "{number}e", | ||||||
|   "relative_time.full.days": "{number, plural, one {# day} other {# days}} ago", |   "relative_time.full.days": "Duela {number, plural, one {egun #} other {# egun}}", | ||||||
|   "relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago", |   "relative_time.full.hours": "Duela {number, plural, one {ordu #} other {# ordu}}", | ||||||
|   "relative_time.full.just_now": "just now", |   "relative_time.full.just_now": "oraintxe", | ||||||
|   "relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago", |   "relative_time.full.minutes": "Duela {number, plural, one {minutu #} other {# minutu}}", | ||||||
|   "relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago", |   "relative_time.full.seconds": "Duela {number, plural, one {segundo #} other {# segundo}}", | ||||||
|   "relative_time.hours": "{number}h", |   "relative_time.hours": "{number}h", | ||||||
|   "relative_time.just_now": "orain", |   "relative_time.just_now": "orain", | ||||||
|   "relative_time.minutes": "{number}m", |   "relative_time.minutes": "{number}m", | ||||||
|   "relative_time.seconds": "{number}s", |   "relative_time.seconds": "{number}s", | ||||||
|   "relative_time.today": "gaur", |   "relative_time.today": "gaur", | ||||||
|   "reply_indicator.cancel": "Utzi", |   "reply_indicator.cancel": "Utzi", | ||||||
|   "report.categories.other": "Other", |   "report.categories.other": "Bestelakoak", | ||||||
|   "report.categories.spam": "Spam", |   "report.categories.spam": "Spam", | ||||||
|   "report.categories.violation": "Content violates one or more server rules", |   "report.categories.violation": "Edukiak zerbitzariko arau bat edo gehiago urratzen ditu", | ||||||
|   "report.forward": "Birbidali hona: {target}", |   "report.forward": "Birbidali hona: {target}", | ||||||
|   "report.forward_hint": "Kontu hau beste zerbitzari batekoa da. Bidali txostenaren kopia anonimo hara ere?", |   "report.forward_hint": "Kontu hau beste zerbitzari batekoa da. Bidali txostenaren kopia anonimo hara ere?", | ||||||
|   "report.hint": "Txostena zure zerbitzariaren moderatzaileei bidaliko zaie. Kontu hau zergatik salatzen duzun behean azaldu dezakezu:", |   "report.hint": "Txostena zure zerbitzariaren moderatzaileei bidaliko zaie. Kontu hau zergatik salatzen duzun behean azaldu dezakezu:", | ||||||
| @ -409,14 +409,14 @@ | |||||||
|   "status.delete": "Ezabatu", |   "status.delete": "Ezabatu", | ||||||
|   "status.detailed_status": "Elkarrizketaren ikuspegi xehetsua", |   "status.detailed_status": "Elkarrizketaren ikuspegi xehetsua", | ||||||
|   "status.direct": "Mezu zuzena @{name}(r)i", |   "status.direct": "Mezu zuzena @{name}(r)i", | ||||||
|   "status.edit": "Edit", |   "status.edit": "Editatu", | ||||||
|   "status.edited": "Edited {date}", |   "status.edited": "Editatua {date}", | ||||||
|   "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", |   "status.edited_x_times": "{count, plural, one {behin} other {{count} aldiz}} editatua", | ||||||
|   "status.embed": "Txertatu", |   "status.embed": "Txertatu", | ||||||
|   "status.favourite": "Gogokoa", |   "status.favourite": "Gogokoa", | ||||||
|   "status.filtered": "Iragazita", |   "status.filtered": "Iragazita", | ||||||
|   "status.history.created": "{name} created {date}", |   "status.history.created": "{name} erabiltzaileak sortua {date}", | ||||||
|   "status.history.edited": "{name} edited {date}", |   "status.history.edited": "{name} erabiltzaileak editatua {date}", | ||||||
|   "status.load_more": "Kargatu gehiago", |   "status.load_more": "Kargatu gehiago", | ||||||
|   "status.media_hidden": "Multimedia ezkutatua", |   "status.media_hidden": "Multimedia ezkutatua", | ||||||
|   "status.mention": "Aipatu @{name}", |   "status.mention": "Aipatu @{name}", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Kysely, johon osallistuit, on päättynyt", |   "notification.poll": "Kysely, johon osallistuit, on päättynyt", | ||||||
|   "notification.reblog": "{name} buustasi julkaisusi", |   "notification.reblog": "{name} buustasi julkaisusi", | ||||||
|   "notification.status": "{name} julkaisi juuri", |   "notification.status": "{name} julkaisi juuri", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} muokkasi viestiä", | ||||||
|   "notifications.clear": "Tyhjennä ilmoitukset", |   "notifications.clear": "Tyhjennä ilmoitukset", | ||||||
|   "notifications.clear_confirmation": "Haluatko varmasti poistaa kaikki ilmoitukset pysyvästi?", |   "notifications.clear_confirmation": "Haluatko varmasti poistaa kaikki ilmoitukset pysyvästi?", | ||||||
|   "notifications.column_settings.alert": "Työpöytäilmoitukset", |   "notifications.column_settings.alert": "Työpöytäilmoitukset", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Uudet julkaisut:", |   "notifications.column_settings.status": "Uudet julkaisut:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Lukemattomat ilmoitukset", |   "notifications.column_settings.unread_notifications.category": "Lukemattomat ilmoitukset", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Korosta lukemattomat ilmoitukset", |   "notifications.column_settings.unread_notifications.highlight": "Korosta lukemattomat ilmoitukset", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Muokkaukset:", | ||||||
|   "notifications.filter.all": "Kaikki", |   "notifications.filter.all": "Kaikki", | ||||||
|   "notifications.filter.boosts": "Buustit", |   "notifications.filter.boosts": "Buustit", | ||||||
|   "notifications.filter.favourites": "Suosikit", |   "notifications.filter.favourites": "Suosikit", | ||||||
|  | |||||||
| @ -13,7 +13,7 @@ | |||||||
|   "account.domain_blocked": "Domaine bloqué", |   "account.domain_blocked": "Domaine bloqué", | ||||||
|   "account.edit_profile": "Modifier le profil", |   "account.edit_profile": "Modifier le profil", | ||||||
|   "account.enable_notifications": "Me notifier quand @{name} publie", |   "account.enable_notifications": "Me notifier quand @{name} publie", | ||||||
|   "account.endorse": "Recommander sur le profil", |   "account.endorse": "Recommander sur votre profil", | ||||||
|   "account.follow": "Suivre", |   "account.follow": "Suivre", | ||||||
|   "account.followers": "Abonnés", |   "account.followers": "Abonnés", | ||||||
|   "account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour l’instant.", |   "account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour l’instant.", | ||||||
| @ -47,7 +47,7 @@ | |||||||
|   "account.unmute": "Ne plus masquer @{name}", |   "account.unmute": "Ne plus masquer @{name}", | ||||||
|   "account.unmute_notifications": "Ne plus masquer les notifications de @{name}", |   "account.unmute_notifications": "Ne plus masquer les notifications de @{name}", | ||||||
|   "account_note.placeholder": "Cliquez pour ajouter une note", |   "account_note.placeholder": "Cliquez pour ajouter une note", | ||||||
|   "admin.dashboard.daily_retention": "User retention rate by day after sign-up", |   "admin.dashboard.daily_retention": "Taux de maintien des utilisateur·rice·s par jour après inscription", | ||||||
|   "admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding", |   "admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding", | ||||||
|   "admin.dashboard.retention.average": "Moyenne", |   "admin.dashboard.retention.average": "Moyenne", | ||||||
|   "admin.dashboard.retention.cohort": "Mois d'inscription", |   "admin.dashboard.retention.cohort": "Mois d'inscription", | ||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Un sondage auquel vous avez participé vient de se terminer", |   "notification.poll": "Un sondage auquel vous avez participé vient de se terminer", | ||||||
|   "notification.reblog": "{name} a partagé votre message", |   "notification.reblog": "{name} a partagé votre message", | ||||||
|   "notification.status": "{name} vient de publier", |   "notification.status": "{name} vient de publier", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} a modifié un message", | ||||||
|   "notifications.clear": "Effacer les notifications", |   "notifications.clear": "Effacer les notifications", | ||||||
|   "notifications.clear_confirmation": "Voulez-vous vraiment effacer toutes vos notifications ?", |   "notifications.clear_confirmation": "Voulez-vous vraiment effacer toutes vos notifications ?", | ||||||
|   "notifications.column_settings.alert": "Notifications du navigateur", |   "notifications.column_settings.alert": "Notifications du navigateur", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nouveaux messages :", |   "notifications.column_settings.status": "Nouveaux messages :", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notifications non lues", |   "notifications.column_settings.unread_notifications.category": "Notifications non lues", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Surligner les notifications non lues", |   "notifications.column_settings.unread_notifications.highlight": "Surligner les notifications non lues", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Modifications :", | ||||||
|   "notifications.filter.all": "Tout", |   "notifications.filter.all": "Tout", | ||||||
|   "notifications.filter.boosts": "Partages", |   "notifications.filter.boosts": "Partages", | ||||||
|   "notifications.filter.favourites": "Favoris", |   "notifications.filter.favourites": "Favoris", | ||||||
| @ -415,8 +415,8 @@ | |||||||
|   "status.embed": "Intégrer", |   "status.embed": "Intégrer", | ||||||
|   "status.favourite": "Ajouter aux favoris", |   "status.favourite": "Ajouter aux favoris", | ||||||
|   "status.filtered": "Filtré", |   "status.filtered": "Filtré", | ||||||
|   "status.history.created": "{name} created {date}", |   "status.history.created": "créé par {name} {date}", | ||||||
|   "status.history.edited": "{name} edited {date}", |   "status.history.edited": "édité par {name} {date}", | ||||||
|   "status.load_more": "Charger plus", |   "status.load_more": "Charger plus", | ||||||
|   "status.media_hidden": "Média caché", |   "status.media_hidden": "Média caché", | ||||||
|   "status.mention": "Mentionner @{name}", |   "status.mention": "Mentionner @{name}", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Unha enquisa na que votaches rematou", |   "notification.poll": "Unha enquisa na que votaches rematou", | ||||||
|   "notification.reblog": "{name} compartiu a túa publicación", |   "notification.reblog": "{name} compartiu a túa publicación", | ||||||
|   "notification.status": "{name} publicou", |   "notification.status": "{name} publicou", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} editou unha publicación", | ||||||
|   "notifications.clear": "Limpar notificacións", |   "notifications.clear": "Limpar notificacións", | ||||||
|   "notifications.clear_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?", |   "notifications.clear_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?", | ||||||
|   "notifications.column_settings.alert": "Notificacións de escritorio", |   "notifications.column_settings.alert": "Notificacións de escritorio", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Novas publicacións:", |   "notifications.column_settings.status": "Novas publicacións:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notificacións non lidas", |   "notifications.column_settings.unread_notifications.category": "Notificacións non lidas", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Resaltar notificacións non lidas", |   "notifications.column_settings.unread_notifications.highlight": "Resaltar notificacións non lidas", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Edicións:", | ||||||
|   "notifications.filter.all": "Todo", |   "notifications.filter.all": "Todo", | ||||||
|   "notifications.filter.boosts": "Compartidos", |   "notifications.filter.boosts": "Compartidos", | ||||||
|   "notifications.filter.favourites": "Favoritos", |   "notifications.filter.favourites": "Favoritos", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "A poll you have voted in has ended", |   "notification.poll": "A poll you have voted in has ended", | ||||||
|   "notification.reblog": "חצרוצך הודהד על ידי {name}", |   "notification.reblog": "חצרוצך הודהד על ידי {name}", | ||||||
|   "notification.status": "{name} just posted", |   "notification.status": "{name} just posted", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} ערכו פוסט", | ||||||
|   "notifications.clear": "הסרת התראות", |   "notifications.clear": "הסרת התראות", | ||||||
|   "notifications.clear_confirmation": "להסיר את כל ההתראות? בטוח?", |   "notifications.clear_confirmation": "להסיר את כל ההתראות? בטוח?", | ||||||
|   "notifications.column_settings.alert": "התראות לשולחן העבודה", |   "notifications.column_settings.alert": "התראות לשולחן העבודה", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "New toots:", |   "notifications.column_settings.status": "New toots:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Unread notifications", |   "notifications.column_settings.unread_notifications.category": "Unread notifications", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications", |   "notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "שינויים:", | ||||||
|   "notifications.filter.all": "All", |   "notifications.filter.all": "All", | ||||||
|   "notifications.filter.boosts": "Boosts", |   "notifications.filter.boosts": "Boosts", | ||||||
|   "notifications.filter.favourites": "Favourites", |   "notifications.filter.favourites": "Favourites", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Egy szavazás, melyben részt vettél, véget ért", |   "notification.poll": "Egy szavazás, melyben részt vettél, véget ért", | ||||||
|   "notification.reblog": "{name} megtolta a bejegyzésedet", |   "notification.reblog": "{name} megtolta a bejegyzésedet", | ||||||
|   "notification.status": "{name} bejegyzést tett közzé", |   "notification.status": "{name} bejegyzést tett közzé", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} szerkesztett egy bejegyzést", | ||||||
|   "notifications.clear": "Értesítések törlése", |   "notifications.clear": "Értesítések törlése", | ||||||
|   "notifications.clear_confirmation": "Biztos, hogy véglegesen törölni akarod az összes értesítésed?", |   "notifications.clear_confirmation": "Biztos, hogy véglegesen törölni akarod az összes értesítésed?", | ||||||
|   "notifications.column_settings.alert": "Asztali értesítések", |   "notifications.column_settings.alert": "Asztali értesítések", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Új bejegyzések:", |   "notifications.column_settings.status": "Új bejegyzések:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Olvasatlan értesítések", |   "notifications.column_settings.unread_notifications.category": "Olvasatlan értesítések", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Olvasatlan értesítések kiemelése", |   "notifications.column_settings.unread_notifications.highlight": "Olvasatlan értesítések kiemelése", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Szerkesztések:", | ||||||
|   "notifications.filter.all": "Mind", |   "notifications.filter.all": "Mind", | ||||||
|   "notifications.filter.boosts": "Megtolások", |   "notifications.filter.boosts": "Megtolások", | ||||||
|   "notifications.filter.favourites": "Kedvencnek jelölések", |   "notifications.filter.favourites": "Kedvencnek jelölések", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Japat yang Anda ikuti telah berakhir", |   "notification.poll": "Japat yang Anda ikuti telah berakhir", | ||||||
|   "notification.reblog": "{name} mem-boost status anda", |   "notification.reblog": "{name} mem-boost status anda", | ||||||
|   "notification.status": "{name} baru saja memposting", |   "notification.status": "{name} baru saja memposting", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} mengedit kiriman", | ||||||
|   "notifications.clear": "Hapus notifikasi", |   "notifications.clear": "Hapus notifikasi", | ||||||
|   "notifications.clear_confirmation": "Apa anda yakin hendak menghapus semua notifikasi anda?", |   "notifications.clear_confirmation": "Apa anda yakin hendak menghapus semua notifikasi anda?", | ||||||
|   "notifications.column_settings.alert": "Notifikasi desktop", |   "notifications.column_settings.alert": "Notifikasi desktop", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Toot baru:", |   "notifications.column_settings.status": "Toot baru:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notifikasi yang belum dibaca", |   "notifications.column_settings.unread_notifications.category": "Notifikasi yang belum dibaca", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Sorot notifikasi yang belum dibaca", |   "notifications.column_settings.unread_notifications.highlight": "Sorot notifikasi yang belum dibaca", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Edit:", | ||||||
|   "notifications.filter.all": "Semua", |   "notifications.filter.all": "Semua", | ||||||
|   "notifications.filter.boosts": "Boost", |   "notifications.filter.boosts": "Boost", | ||||||
|   "notifications.filter.favourites": "Favorit", |   "notifications.filter.favourites": "Favorit", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Könnun sem þú tókst þátt í er lokið", |   "notification.poll": "Könnun sem þú tókst þátt í er lokið", | ||||||
|   "notification.reblog": "{name} endurbirti færsluna þína", |   "notification.reblog": "{name} endurbirti færsluna þína", | ||||||
|   "notification.status": "{name} sendi inn rétt í þessu", |   "notification.status": "{name} sendi inn rétt í þessu", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} breytti færslu", | ||||||
|   "notifications.clear": "Hreinsa tilkynningar", |   "notifications.clear": "Hreinsa tilkynningar", | ||||||
|   "notifications.clear_confirmation": "Ertu viss um að þú viljir endanlega eyða öllum tilkynningunum þínum?", |   "notifications.clear_confirmation": "Ertu viss um að þú viljir endanlega eyða öllum tilkynningunum þínum?", | ||||||
|   "notifications.column_settings.alert": "Tilkynningar á skjáborði", |   "notifications.column_settings.alert": "Tilkynningar á skjáborði", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nýjar færslur:", |   "notifications.column_settings.status": "Nýjar færslur:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Ólesnar tilkynningar", |   "notifications.column_settings.unread_notifications.category": "Ólesnar tilkynningar", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Áherslulita ólesnar tilkynningar", |   "notifications.column_settings.unread_notifications.highlight": "Áherslulita ólesnar tilkynningar", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Breytingar:", | ||||||
|   "notifications.filter.all": "Allt", |   "notifications.filter.all": "Allt", | ||||||
|   "notifications.filter.boosts": "Endurbirtingar", |   "notifications.filter.boosts": "Endurbirtingar", | ||||||
|   "notifications.filter.favourites": "Eftirlæti", |   "notifications.filter.favourites": "Eftirlæti", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Un sondaggio in cui hai votato è terminato", |   "notification.poll": "Un sondaggio in cui hai votato è terminato", | ||||||
|   "notification.reblog": "{name} ha condiviso il tuo post", |   "notification.reblog": "{name} ha condiviso il tuo post", | ||||||
|   "notification.status": "{name} ha appena pubblicato un post", |   "notification.status": "{name} ha appena pubblicato un post", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} ha modificato un post", | ||||||
|   "notifications.clear": "Cancella notifiche", |   "notifications.clear": "Cancella notifiche", | ||||||
|   "notifications.clear_confirmation": "Vuoi davvero cancellare tutte le notifiche?", |   "notifications.clear_confirmation": "Vuoi davvero cancellare tutte le notifiche?", | ||||||
|   "notifications.column_settings.alert": "Notifiche desktop", |   "notifications.column_settings.alert": "Notifiche desktop", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Nuovi post:", |   "notifications.column_settings.status": "Nuovi post:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notifiche non lette", |   "notifications.column_settings.unread_notifications.category": "Notifiche non lette", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Evidenzia notifiche non lette", |   "notifications.column_settings.unread_notifications.highlight": "Evidenzia notifiche non lette", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Modifiche:", | ||||||
|   "notifications.filter.all": "Tutti", |   "notifications.filter.all": "Tutti", | ||||||
|   "notifications.filter.boosts": "Condivisioni", |   "notifications.filter.boosts": "Condivisioni", | ||||||
|   "notifications.filter.favourites": "Apprezzati", |   "notifications.filter.favourites": "Apprezzati", | ||||||
|  | |||||||
| @ -313,7 +313,7 @@ | |||||||
|   "notification.poll": "アンケートが終了しました", |   "notification.poll": "アンケートが終了しました", | ||||||
|   "notification.reblog": "{name}さんがあなたの投稿をブーストしました", |   "notification.reblog": "{name}さんがあなたの投稿をブーストしました", | ||||||
|   "notification.status": "{name}さんが投稿しました", |   "notification.status": "{name}さんが投稿しました", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} が投稿を編集しました", | ||||||
|   "notifications.clear": "通知を消去", |   "notifications.clear": "通知を消去", | ||||||
|   "notifications.clear_confirmation": "本当に通知を消去しますか?", |   "notifications.clear_confirmation": "本当に通知を消去しますか?", | ||||||
|   "notifications.column_settings.alert": "デスクトップ通知", |   "notifications.column_settings.alert": "デスクトップ通知", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Rapirsiyeke ku te deng daye qediya", |   "notification.poll": "Rapirsiyeke ku te deng daye qediya", | ||||||
|   "notification.reblog": "{name} şandiya te bilind kir", |   "notification.reblog": "{name} şandiya te bilind kir", | ||||||
|   "notification.status": "{name} niha şand", |   "notification.status": "{name} niha şand", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} şandiyek serrast kir", | ||||||
|   "notifications.clear": "Agahdariyan pak bike", |   "notifications.clear": "Agahdariyan pak bike", | ||||||
|   "notifications.clear_confirmation": "Bi rastî tu dixwazî bi awayekî dawî hemû agahdariyên xwe pak bikî?", |   "notifications.clear_confirmation": "Bi rastî tu dixwazî bi awayekî dawî hemû agahdariyên xwe pak bikî?", | ||||||
|   "notifications.column_settings.alert": "Agahdariyên sermaseyê", |   "notifications.column_settings.alert": "Agahdariyên sermaseyê", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Şandiyên nû:", |   "notifications.column_settings.status": "Şandiyên nû:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Agahdariyên nexwendî", |   "notifications.column_settings.unread_notifications.category": "Agahdariyên nexwendî", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Agahiyên nexwendî nîşan bike", |   "notifications.column_settings.unread_notifications.highlight": "Agahiyên nexwendî nîşan bike", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Serrastkirin:", | ||||||
|   "notifications.filter.all": "Hemû", |   "notifications.filter.all": "Hemû", | ||||||
|   "notifications.filter.boosts": "Bilindkirî", |   "notifications.filter.boosts": "Bilindkirî", | ||||||
|   "notifications.filter.favourites": "Bijarte", |   "notifications.filter.favourites": "Bijarte", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "당신이 참여 한 투표가 종료되었습니다", |   "notification.poll": "당신이 참여 한 투표가 종료되었습니다", | ||||||
|   "notification.reblog": "{name} 님이 부스트 했습니다", |   "notification.reblog": "{name} 님이 부스트 했습니다", | ||||||
|   "notification.status": "{name} 님이 방금 게시물을 올렸습니다", |   "notification.status": "{name} 님이 방금 게시물을 올렸습니다", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} 님이 게시물을 수정했습니다", | ||||||
|   "notifications.clear": "알림 지우기", |   "notifications.clear": "알림 지우기", | ||||||
|   "notifications.clear_confirmation": "정말로 알림을 삭제하시겠습니까?", |   "notifications.clear_confirmation": "정말로 알림을 삭제하시겠습니까?", | ||||||
|   "notifications.column_settings.alert": "데스크탑 알림", |   "notifications.column_settings.alert": "데스크탑 알림", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "새 게시물:", |   "notifications.column_settings.status": "새 게시물:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "읽지 않은 알림", |   "notifications.column_settings.unread_notifications.category": "읽지 않은 알림", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "읽지 않은 알림 강조", |   "notifications.column_settings.unread_notifications.highlight": "읽지 않은 알림 강조", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "수정내역:", | ||||||
|   "notifications.filter.all": "모두", |   "notifications.filter.all": "모두", | ||||||
|   "notifications.filter.boosts": "부스트", |   "notifications.filter.boosts": "부스트", | ||||||
|   "notifications.filter.favourites": "즐겨찾기", |   "notifications.filter.favourites": "즐겨찾기", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Aprauja, kurā tu piedalījies, ir pabeigta", |   "notification.poll": "Aprauja, kurā tu piedalījies, ir pabeigta", | ||||||
|   "notification.reblog": "{name} paaugstināja tavu ziņu", |   "notification.reblog": "{name} paaugstināja tavu ziņu", | ||||||
|   "notification.status": "{name} tikko publicēja", |   "notification.status": "{name} tikko publicēja", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} ir rediģējis rakstu", | ||||||
|   "notifications.clear": "Notīrīt paziņojumus", |   "notifications.clear": "Notīrīt paziņojumus", | ||||||
|   "notifications.clear_confirmation": "Vai tiešām vēlies neatgriezeniski notīrīt visus savus paziņojumus?", |   "notifications.clear_confirmation": "Vai tiešām vēlies neatgriezeniski notīrīt visus savus paziņojumus?", | ||||||
|   "notifications.column_settings.alert": "Darbvirsmas paziņojumi", |   "notifications.column_settings.alert": "Darbvirsmas paziņojumi", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Jaunas ziņas:", |   "notifications.column_settings.status": "Jaunas ziņas:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Nelasītie paziņojumi", |   "notifications.column_settings.unread_notifications.category": "Nelasītie paziņojumi", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Iezīmēt nelasītos paziņojumus", |   "notifications.column_settings.unread_notifications.highlight": "Iezīmēt nelasītos paziņojumus", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Labojumi:", | ||||||
|   "notifications.filter.all": "Visi", |   "notifications.filter.all": "Visi", | ||||||
|   "notifications.filter.boosts": "Palielinājumi", |   "notifications.filter.boosts": "Palielinājumi", | ||||||
|   "notifications.filter.favourites": "Izlases", |   "notifications.filter.favourites": "Izlases", | ||||||
|  | |||||||
| @ -313,7 +313,7 @@ | |||||||
|   "notification.poll": "Głosowanie w którym brałeś(-aś) udział zakończyło się", |   "notification.poll": "Głosowanie w którym brałeś(-aś) udział zakończyło się", | ||||||
|   "notification.reblog": "{name} podbił(a) Twój wpis", |   "notification.reblog": "{name} podbił(a) Twój wpis", | ||||||
|   "notification.status": "{name} właśnie utworzył(a) wpis", |   "notification.status": "{name} właśnie utworzył(a) wpis", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} edytował post", | ||||||
|   "notifications.clear": "Wyczyść powiadomienia", |   "notifications.clear": "Wyczyść powiadomienia", | ||||||
|   "notifications.clear_confirmation": "Czy na pewno chcesz bezpowrotnie usunąć wszystkie powiadomienia?", |   "notifications.clear_confirmation": "Czy na pewno chcesz bezpowrotnie usunąć wszystkie powiadomienia?", | ||||||
|   "notifications.column_settings.alert": "Powiadomienia na pulpicie", |   "notifications.column_settings.alert": "Powiadomienia na pulpicie", | ||||||
| @ -332,7 +332,7 @@ | |||||||
|   "notifications.column_settings.status": "Nowe wpisy:", |   "notifications.column_settings.status": "Nowe wpisy:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Nieprzeczytane powiadomienia", |   "notifications.column_settings.unread_notifications.category": "Nieprzeczytane powiadomienia", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Podświetl nieprzeczytane powiadomienia", |   "notifications.column_settings.unread_notifications.highlight": "Podświetl nieprzeczytane powiadomienia", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Edycje:", | ||||||
|   "notifications.filter.all": "Wszystkie", |   "notifications.filter.all": "Wszystkie", | ||||||
|   "notifications.filter.boosts": "Podbicia", |   "notifications.filter.boosts": "Podbicia", | ||||||
|   "notifications.filter.favourites": "Ulubione", |   "notifications.filter.favourites": "Ulubione", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Uma votação em que participaste chegou ao fim", |   "notification.poll": "Uma votação em que participaste chegou ao fim", | ||||||
|   "notification.reblog": "{name} partilhou a tua publicação", |   "notification.reblog": "{name} partilhou a tua publicação", | ||||||
|   "notification.status": "{name} acabou de publicar", |   "notification.status": "{name} acabou de publicar", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} editou uma publicação", | ||||||
|   "notifications.clear": "Limpar notificações", |   "notifications.clear": "Limpar notificações", | ||||||
|   "notifications.clear_confirmation": "Queres mesmo limpar todas as notificações?", |   "notifications.clear_confirmation": "Queres mesmo limpar todas as notificações?", | ||||||
|   "notifications.column_settings.alert": "Notificações no ambiente de trabalho", |   "notifications.column_settings.alert": "Notificações no ambiente de trabalho", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Novos toots:", |   "notifications.column_settings.status": "Novos toots:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Notificações não lidas", |   "notifications.column_settings.unread_notifications.category": "Notificações não lidas", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Destacar notificações não lidas", |   "notifications.column_settings.unread_notifications.highlight": "Destacar notificações não lidas", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Edições:", | ||||||
|   "notifications.filter.all": "Todas", |   "notifications.filter.all": "Todas", | ||||||
|   "notifications.filter.boosts": "Boosts", |   "notifications.filter.boosts": "Boosts", | ||||||
|   "notifications.filter.favourites": "Favoritos", |   "notifications.filter.favourites": "Favoritos", | ||||||
|  | |||||||
| @ -35,7 +35,7 @@ | |||||||
|   "account.never_active": "Никогда", |   "account.never_active": "Никогда", | ||||||
|   "account.posts": "Посты", |   "account.posts": "Посты", | ||||||
|   "account.posts_with_replies": "Посты и ответы", |   "account.posts_with_replies": "Посты и ответы", | ||||||
|   "account.report": "Жалоба №{name}", |   "account.report": "Пожаловаться на @{name}", | ||||||
|   "account.requested": "Ожидает подтверждения. Нажмите для отмены запроса", |   "account.requested": "Ожидает подтверждения. Нажмите для отмены запроса", | ||||||
|   "account.share": "Поделиться профилем @{name}", |   "account.share": "Поделиться профилем @{name}", | ||||||
|   "account.show_reblogs": "Показывать продвижения от @{name}", |   "account.show_reblogs": "Показывать продвижения от @{name}", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Новые посты:", |   "notifications.column_settings.status": "Новые посты:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Непрочитанные уведомления", |   "notifications.column_settings.unread_notifications.category": "Непрочитанные уведомления", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Выделять непрочитанные уведомления", |   "notifications.column_settings.unread_notifications.highlight": "Выделять непрочитанные уведомления", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Изменения:", | ||||||
|   "notifications.filter.all": "Все", |   "notifications.filter.all": "Все", | ||||||
|   "notifications.filter.boosts": "Продвижения", |   "notifications.filter.boosts": "Продвижения", | ||||||
|   "notifications.filter.favourites": "Отметки «избранного»", |   "notifications.filter.favourites": "Отметки «избранного»", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Ka përfunduar një pyetësor ku keni votuar", |   "notification.poll": "Ka përfunduar një pyetësor ku keni votuar", | ||||||
|   "notification.reblog": "{name} përforcoi mesazhin tuaj", |   "notification.reblog": "{name} përforcoi mesazhin tuaj", | ||||||
|   "notification.status": "{name} sapo postoi", |   "notification.status": "{name} sapo postoi", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} përpunoi një postim", | ||||||
|   "notifications.clear": "Spastroji njoftimet", |   "notifications.clear": "Spastroji njoftimet", | ||||||
|   "notifications.clear_confirmation": "Jeni i sigurt se doni të spastrohen përgjithmonë krejt njoftimet tuaja?", |   "notifications.clear_confirmation": "Jeni i sigurt se doni të spastrohen përgjithmonë krejt njoftimet tuaja?", | ||||||
|   "notifications.column_settings.alert": "Njoftime desktopi", |   "notifications.column_settings.alert": "Njoftime desktopi", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Mesazhe të rinj:", |   "notifications.column_settings.status": "Mesazhe të rinj:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Njoftime të palexuara", |   "notifications.column_settings.unread_notifications.category": "Njoftime të palexuara", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Theksoji njoftimet e palexuara", |   "notifications.column_settings.unread_notifications.highlight": "Theksoji njoftimet e palexuara", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Përpunime:", | ||||||
|   "notifications.filter.all": "Krejt", |   "notifications.filter.all": "Krejt", | ||||||
|   "notifications.filter.boosts": "Përforcime", |   "notifications.filter.boosts": "Përforcime", | ||||||
|   "notifications.filter.favourites": "Të parapëlqyer", |   "notifications.filter.favourites": "Të parapëlqyer", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "En omröstning du röstat i har avslutats", |   "notification.poll": "En omröstning du röstat i har avslutats", | ||||||
|   "notification.reblog": "{name} knuffade din status", |   "notification.reblog": "{name} knuffade din status", | ||||||
|   "notification.status": "{name} skrev just", |   "notification.status": "{name} skrev just", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} redigerade ett inlägg", | ||||||
|   "notifications.clear": "Rensa aviseringar", |   "notifications.clear": "Rensa aviseringar", | ||||||
|   "notifications.clear_confirmation": "Är du säker på att du vill rensa alla dina aviseringar permanent?", |   "notifications.clear_confirmation": "Är du säker på att du vill rensa alla dina aviseringar permanent?", | ||||||
|   "notifications.column_settings.alert": "Skrivbordsaviseringar", |   "notifications.column_settings.alert": "Skrivbordsaviseringar", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "การสำรวจความคิดเห็นที่คุณได้ลงคะแนนได้สิ้นสุดแล้ว", |   "notification.poll": "การสำรวจความคิดเห็นที่คุณได้ลงคะแนนได้สิ้นสุดแล้ว", | ||||||
|   "notification.reblog": "{name} ได้ดันโพสต์ของคุณ", |   "notification.reblog": "{name} ได้ดันโพสต์ของคุณ", | ||||||
|   "notification.status": "{name} เพิ่งโพสต์", |   "notification.status": "{name} เพิ่งโพสต์", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} ได้แก้ไขโพสต์", | ||||||
|   "notifications.clear": "ล้างการแจ้งเตือน", |   "notifications.clear": "ล้างการแจ้งเตือน", | ||||||
|   "notifications.clear_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการล้างการแจ้งเตือนทั้งหมดของคุณอย่างถาวร?", |   "notifications.clear_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการล้างการแจ้งเตือนทั้งหมดของคุณอย่างถาวร?", | ||||||
|   "notifications.column_settings.alert": "การแจ้งเตือนบนเดสก์ท็อป", |   "notifications.column_settings.alert": "การแจ้งเตือนบนเดสก์ท็อป", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "โพสต์ใหม่:", |   "notifications.column_settings.status": "โพสต์ใหม่:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "การแจ้งเตือนที่ยังไม่ได้อ่าน", |   "notifications.column_settings.unread_notifications.category": "การแจ้งเตือนที่ยังไม่ได้อ่าน", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "เน้นการแจ้งเตือนที่ยังไม่ได้อ่าน", |   "notifications.column_settings.unread_notifications.highlight": "เน้นการแจ้งเตือนที่ยังไม่ได้อ่าน", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "การแก้ไข:", | ||||||
|   "notifications.filter.all": "ทั้งหมด", |   "notifications.filter.all": "ทั้งหมด", | ||||||
|   "notifications.filter.boosts": "การดัน", |   "notifications.filter.boosts": "การดัน", | ||||||
|   "notifications.filter.favourites": "รายการโปรด", |   "notifications.filter.favourites": "รายการโปรด", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Oy verdiğiniz bir anket sona erdi", |   "notification.poll": "Oy verdiğiniz bir anket sona erdi", | ||||||
|   "notification.reblog": "{name} gönderini teşvik etti", |   "notification.reblog": "{name} gönderini teşvik etti", | ||||||
|   "notification.status": "{name} az önce gönderdi", |   "notification.status": "{name} az önce gönderdi", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} bir gönderiyi düzenledi", | ||||||
|   "notifications.clear": "Bildirimleri temizle", |   "notifications.clear": "Bildirimleri temizle", | ||||||
|   "notifications.clear_confirmation": "Tüm bildirimlerinizi kalıcı olarak temizlemek ister misiniz?", |   "notifications.clear_confirmation": "Tüm bildirimlerinizi kalıcı olarak temizlemek ister misiniz?", | ||||||
|   "notifications.column_settings.alert": "Masaüstü bildirimleri", |   "notifications.column_settings.alert": "Masaüstü bildirimleri", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Yeni gönderiler:", |   "notifications.column_settings.status": "Yeni gönderiler:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Okunmamış bildirimler", |   "notifications.column_settings.unread_notifications.category": "Okunmamış bildirimler", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Okunmamış bildirimleri öne çıkar", |   "notifications.column_settings.unread_notifications.highlight": "Okunmamış bildirimleri öne çıkar", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Düzenlemeler:", | ||||||
|   "notifications.filter.all": "Tümü", |   "notifications.filter.all": "Tümü", | ||||||
|   "notifications.filter.boosts": "Boostlar", |   "notifications.filter.boosts": "Boostlar", | ||||||
|   "notifications.filter.favourites": "Beğeniler", |   "notifications.filter.favourites": "Beğeniler", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Опитування, у якому ви голосували, закінчилося", |   "notification.poll": "Опитування, у якому ви голосували, закінчилося", | ||||||
|   "notification.reblog": "{name} передмухнув(-ла) Ваш допис", |   "notification.reblog": "{name} передмухнув(-ла) Ваш допис", | ||||||
|   "notification.status": "{name} щойно дописує", |   "notification.status": "{name} щойно дописує", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} змінює допис", | ||||||
|   "notifications.clear": "Очистити сповіщення", |   "notifications.clear": "Очистити сповіщення", | ||||||
|   "notifications.clear_confirmation": "Ви впевнені, що хочете назавжди видалити всі сповіщеня?", |   "notifications.clear_confirmation": "Ви впевнені, що хочете назавжди видалити всі сповіщеня?", | ||||||
|   "notifications.column_settings.alert": "Сповіщення на комп'ютері", |   "notifications.column_settings.alert": "Сповіщення на комп'ютері", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Нові дмухи:", |   "notifications.column_settings.status": "Нові дмухи:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Непрочитані сповіщення", |   "notifications.column_settings.unread_notifications.category": "Непрочитані сповіщення", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Виділити непрочитані сповіщення", |   "notifications.column_settings.unread_notifications.highlight": "Виділити непрочитані сповіщення", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Зміни:", | ||||||
|   "notifications.filter.all": "Усі", |   "notifications.filter.all": "Усі", | ||||||
|   "notifications.filter.boosts": "Передмухи", |   "notifications.filter.boosts": "Передмухи", | ||||||
|   "notifications.filter.favourites": "Улюблені", |   "notifications.filter.favourites": "Улюблені", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "Cuộc bình chọn đã kết thúc", |   "notification.poll": "Cuộc bình chọn đã kết thúc", | ||||||
|   "notification.reblog": "{name} chia sẻ tút của bạn", |   "notification.reblog": "{name} chia sẻ tút của bạn", | ||||||
|   "notification.status": "{name} vừa đăng", |   "notification.status": "{name} vừa đăng", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} đã viết lại một tút", | ||||||
|   "notifications.clear": "Xóa hết thông báo", |   "notifications.clear": "Xóa hết thông báo", | ||||||
|   "notifications.clear_confirmation": "Bạn thật sự muốn xóa vĩnh viễn tất cả thông báo của mình?", |   "notifications.clear_confirmation": "Bạn thật sự muốn xóa vĩnh viễn tất cả thông báo của mình?", | ||||||
|   "notifications.column_settings.alert": "Thông báo trên máy tính", |   "notifications.column_settings.alert": "Thông báo trên máy tính", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "Tút mới:", |   "notifications.column_settings.status": "Tút mới:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "Thông báo chưa đọc", |   "notifications.column_settings.unread_notifications.category": "Thông báo chưa đọc", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "Nổi bật thông báo chưa đọc", |   "notifications.column_settings.unread_notifications.highlight": "Nổi bật thông báo chưa đọc", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "Lượt sửa:", | ||||||
|   "notifications.filter.all": "Toàn bộ", |   "notifications.filter.all": "Toàn bộ", | ||||||
|   "notifications.filter.boosts": "Chia sẻ", |   "notifications.filter.boosts": "Chia sẻ", | ||||||
|   "notifications.filter.favourites": "Thích", |   "notifications.filter.favourites": "Thích", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "你参与的一个投票已经结束", |   "notification.poll": "你参与的一个投票已经结束", | ||||||
|   "notification.reblog": "{name} 转嘟了你的嘟文", |   "notification.reblog": "{name} 转嘟了你的嘟文", | ||||||
|   "notification.status": "{name} 刚刚发嘟", |   "notification.status": "{name} 刚刚发嘟", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} 编辑了嘟文", | ||||||
|   "notifications.clear": "清空通知列表", |   "notifications.clear": "清空通知列表", | ||||||
|   "notifications.clear_confirmation": "你确定要永久清空通知列表吗?", |   "notifications.clear_confirmation": "你确定要永久清空通知列表吗?", | ||||||
|   "notifications.column_settings.alert": "桌面通知", |   "notifications.column_settings.alert": "桌面通知", | ||||||
|  | |||||||
| @ -308,7 +308,7 @@ | |||||||
|   "notification.poll": "您曾投過的投票已經結束", |   "notification.poll": "您曾投過的投票已經結束", | ||||||
|   "notification.reblog": "{name} 轉嘟了您的嘟文", |   "notification.reblog": "{name} 轉嘟了您的嘟文", | ||||||
|   "notification.status": "{name} 剛剛嘟文", |   "notification.status": "{name} 剛剛嘟文", | ||||||
|   "notification.update": "{name} edited a post", |   "notification.update": "{name} 編輯了嘟文", | ||||||
|   "notifications.clear": "清除通知", |   "notifications.clear": "清除通知", | ||||||
|   "notifications.clear_confirmation": "確定要永久清除您的通知嗎?", |   "notifications.clear_confirmation": "確定要永久清除您的通知嗎?", | ||||||
|   "notifications.column_settings.alert": "桌面通知", |   "notifications.column_settings.alert": "桌面通知", | ||||||
| @ -327,7 +327,7 @@ | |||||||
|   "notifications.column_settings.status": "新嘟文:", |   "notifications.column_settings.status": "新嘟文:", | ||||||
|   "notifications.column_settings.unread_notifications.category": "未讀通知", |   "notifications.column_settings.unread_notifications.category": "未讀通知", | ||||||
|   "notifications.column_settings.unread_notifications.highlight": "突顯未讀通知", |   "notifications.column_settings.unread_notifications.highlight": "突顯未讀通知", | ||||||
|   "notifications.column_settings.update": "Edits:", |   "notifications.column_settings.update": "編輯:", | ||||||
|   "notifications.filter.all": "全部", |   "notifications.filter.all": "全部", | ||||||
|   "notifications.filter.boosts": "轉嘟", |   "notifications.filter.boosts": "轉嘟", | ||||||
|   "notifications.filter.favourites": "最愛", |   "notifications.filter.favourites": "最愛", | ||||||
| @ -367,11 +367,11 @@ | |||||||
|   "regeneration_indicator.label": "載入中…", |   "regeneration_indicator.label": "載入中…", | ||||||
|   "regeneration_indicator.sublabel": "您的主頁時間軸正在準備中!", |   "regeneration_indicator.sublabel": "您的主頁時間軸正在準備中!", | ||||||
|   "relative_time.days": "{number} 天", |   "relative_time.days": "{number} 天", | ||||||
|   "relative_time.full.days": "{number, plural, one {# 天} other {# 天}} 前", |   "relative_time.full.days": "{number, plural, one {# 天} other {# 天}}前", | ||||||
|   "relative_time.full.hours": "{number, plural, one {# 小時} other {# 小時}} 前", |   "relative_time.full.hours": "{number, plural, one {# 小時} other {# 小時}}前", | ||||||
|   "relative_time.full.just_now": "剛剛", |   "relative_time.full.just_now": "剛剛", | ||||||
|   "relative_time.full.minutes": "{number, plural, one {# 分鐘} other {# 分鐘}} 前", |   "relative_time.full.minutes": "{number, plural, one {# 分鐘} other {# 分鐘}}前", | ||||||
|   "relative_time.full.seconds": "{number, plural, one {# 秒} other {# 秒}} 前", |   "relative_time.full.seconds": "{number, plural, one {# 秒} other {# 秒}}前", | ||||||
|   "relative_time.hours": "{number}小時前", |   "relative_time.hours": "{number}小時前", | ||||||
|   "relative_time.just_now": "剛剛", |   "relative_time.just_now": "剛剛", | ||||||
|   "relative_time.minutes": "{number} 分前", |   "relative_time.minutes": "{number} 分前", | ||||||
| @ -410,7 +410,7 @@ | |||||||
|   "status.detailed_status": "詳細的對話內容", |   "status.detailed_status": "詳細的對話內容", | ||||||
|   "status.direct": "發送私訊給 @{name}", |   "status.direct": "發送私訊給 @{name}", | ||||||
|   "status.edit": "編輯", |   "status.edit": "編輯", | ||||||
|   "status.edited": "已編輯:{date}", |   "status.edited": "編輯於 {date}", | ||||||
|   "status.edited_x_times": "已編輯 {count, plural, one {{count} 次} other {{count} 次}}", |   "status.edited_x_times": "已編輯 {count, plural, one {{count} 次} other {{count} 次}}", | ||||||
|   "status.embed": "內嵌", |   "status.embed": "內嵌", | ||||||
|   "status.favourite": "最愛", |   "status.favourite": "最愛", | ||||||
|  | |||||||
| @ -37,6 +37,7 @@ const initialState = ImmutableMap({ | |||||||
|       poll: false, |       poll: false, | ||||||
|       status: false, |       status: false, | ||||||
|       update: false, |       update: false, | ||||||
|  |       'admin.sign_up': false, | ||||||
|     }), |     }), | ||||||
| 
 | 
 | ||||||
|     quickFilter: ImmutableMap({ |     quickFilter: ImmutableMap({ | ||||||
| @ -57,6 +58,7 @@ const initialState = ImmutableMap({ | |||||||
|       poll: true, |       poll: true, | ||||||
|       status: true, |       status: true, | ||||||
|       update: true, |       update: true, | ||||||
|  |       'admin.sign_up': true, | ||||||
|     }), |     }), | ||||||
| 
 | 
 | ||||||
|     sounds: ImmutableMap({ |     sounds: ImmutableMap({ | ||||||
| @ -68,6 +70,7 @@ const initialState = ImmutableMap({ | |||||||
|       poll: true, |       poll: true, | ||||||
|       status: true, |       status: true, | ||||||
|       update: true, |       update: true, | ||||||
|  |       'admin.sign_up': true, | ||||||
|     }), |     }), | ||||||
|   }), |   }), | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -22,6 +22,7 @@ filenames.forEach(filename => { | |||||||
|     'notification.poll': full['notification.poll'] || '', |     'notification.poll': full['notification.poll'] || '', | ||||||
|     'notification.status': full['notification.status'] || '', |     'notification.status': full['notification.status'] || '', | ||||||
|     'notification.update': full['notification.update'] || '', |     'notification.update': full['notification.update'] || '', | ||||||
|  |     'notification.admin.sign_up': full['notification.admin.sign_up'] || '', | ||||||
| 
 | 
 | ||||||
|     'status.show_more': full['status.show_more'] || '', |     'status.show_more': full['status.show_more'] || '', | ||||||
|     'status.reblog': full['status.reblog'] || '', |     'status.reblog': full['status.reblog'] || '', | ||||||
|  | |||||||
| @ -549,7 +549,7 @@ class FeedManager | |||||||
|       end |       end | ||||||
|     else |     else | ||||||
|       # A reblog may reach earlier than the original status because of the |       # A reblog may reach earlier than the original status because of the | ||||||
|       # delay of the worker deliverying the original status, the late addition |       # delay of the worker delivering the original status, the late addition | ||||||
|       # by merging timelines, and other reasons. |       # by merging timelines, and other reasons. | ||||||
|       # If such a reblog already exists, just do not re-insert it into the feed. |       # If such a reblog already exists, just do not re-insert it into the feed. | ||||||
|       return false unless redis.zscore(reblog_key, status.id).nil? |       return false unless redis.zscore(reblog_key, status.id).nil? | ||||||
|  | |||||||
| @ -36,6 +36,7 @@ class Notification < ApplicationRecord | |||||||
|     favourite |     favourite | ||||||
|     poll |     poll | ||||||
|     update |     update | ||||||
|  |     admin.sign_up | ||||||
|   ).freeze |   ).freeze | ||||||
| 
 | 
 | ||||||
|   TARGET_STATUS_INCLUDES_BY_TYPE = { |   TARGET_STATUS_INCLUDES_BY_TYPE = { | ||||||
| @ -63,13 +64,10 @@ class Notification < ApplicationRecord | |||||||
|   scope :without_suspended, -> { joins(:from_account).merge(Account.without_suspended) } |   scope :without_suspended, -> { joins(:from_account).merge(Account.without_suspended) } | ||||||
| 
 | 
 | ||||||
|   scope :browserable, ->(exclude_types = [], account_id = nil) { |   scope :browserable, ->(exclude_types = [], account_id = nil) { | ||||||
|     types = TYPES - exclude_types.map(&:to_sym) |     scope = all | ||||||
| 
 |     scope = where(from_account_id: account_id) if account_id.present? | ||||||
|     if account_id.nil? |     scope = scope.where(type: TYPES - exclude_types.map(&:to_sym)) unless exclude_types.empty? | ||||||
|       where(type: types) |     scope | ||||||
|     else |  | ||||||
|       where(type: types, from_account_id: account_id) |  | ||||||
|     end |  | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|   def type |   def type | ||||||
| @ -142,6 +140,8 @@ class Notification < ApplicationRecord | |||||||
|       self.from_account_id = activity&.account_id |       self.from_account_id = activity&.account_id | ||||||
|     when 'Mention' |     when 'Mention' | ||||||
|       self.from_account_id = activity&.status&.account_id |       self.from_account_id = activity&.status&.account_id | ||||||
|  |     when 'Account' | ||||||
|  |       self.from_account_id = activity&.id | ||||||
|     end |     end | ||||||
|   end |   end | ||||||
| end | end | ||||||
|  | |||||||
| @ -5,6 +5,7 @@ class BootstrapTimelineService < BaseService | |||||||
|     @source_account = source_account |     @source_account = source_account | ||||||
| 
 | 
 | ||||||
|     autofollow_inviter! |     autofollow_inviter! | ||||||
|  |     notify_staff! | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   private |   private | ||||||
| @ -14,4 +15,10 @@ class BootstrapTimelineService < BaseService | |||||||
| 
 | 
 | ||||||
|     FollowService.new.call(@source_account, @source_account.user.invite.user.account) |     FollowService.new.call(@source_account, @source_account.user.invite.user.account) | ||||||
|   end |   end | ||||||
|  | 
 | ||||||
|  |   def notify_staff! | ||||||
|  |     User.staff.includes(:account).find_each do |user| | ||||||
|  |       NotifyService.new.call(user.account, :'admin.new_user', @source_account) | ||||||
|  |     end | ||||||
|  |   end | ||||||
| end | end | ||||||
|  | |||||||
| @ -2,7 +2,7 @@ | |||||||
| 
 | 
 | ||||||
| class FetchLinkCardService < BaseService | class FetchLinkCardService < BaseService | ||||||
|   URL_PATTERN = %r{ |   URL_PATTERN = %r{ | ||||||
|     (#{Twitter::TwitterText::Regex[:valid_url_preceding_chars]})                                                                #   $1 preceeding chars |     (#{Twitter::TwitterText::Regex[:valid_url_preceding_chars]})                                                                #   $1 preceding chars | ||||||
|     (                                                                                                                           #   $2 URL |     (                                                                                                                           #   $2 URL | ||||||
|       (https?:\/\/)                                                                                                             #   $3 Protocol (required) |       (https?:\/\/)                                                                                                             #   $3 Protocol (required) | ||||||
|       (#{Twitter::TwitterText::Regex[:valid_domain]})                                                                           #   $4 Domain(s) |       (#{Twitter::TwitterText::Regex[:valid_domain]})                                                                           #   $4 Domain(s) | ||||||
|  | |||||||
| @ -22,34 +22,6 @@ class NotifyService < BaseService | |||||||
|     FeedManager.instance.filter?(:mentions, @notification.mention.status, @recipient) |     FeedManager.instance.filter?(:mentions, @notification.mention.status, @recipient) | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   def blocked_status? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def blocked_favourite? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def blocked_follow? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def blocked_reblog? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def blocked_follow_request? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def blocked_poll? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def blocked_update? |  | ||||||
|     false |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   def following_sender? |   def following_sender? | ||||||
|     return @following_sender if defined?(@following_sender) |     return @following_sender if defined?(@following_sender) | ||||||
|     @following_sender = @recipient.following?(@notification.from_account) || @recipient.requested?(@notification.from_account) |     @following_sender = @recipient.following?(@notification.from_account) || @recipient.requested?(@notification.from_account) | ||||||
| @ -71,7 +43,7 @@ class NotifyService < BaseService | |||||||
|     message? && @notification.target_status.direct_visibility? |     message? && @notification.target_status.direct_visibility? | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   # Returns true if the sender has been mentionned by the recipient up the thread |   # Returns true if the sender has been mentioned by the recipient up the thread | ||||||
|   def response_to_recipient? |   def response_to_recipient? | ||||||
|     return false if @notification.target_status.in_reply_to_id.nil? |     return false if @notification.target_status.in_reply_to_id.nil? | ||||||
| 
 | 
 | ||||||
| @ -149,15 +121,15 @@ class NotifyService < BaseService | |||||||
| 
 | 
 | ||||||
|     return blocked if message? && from_staff? |     return blocked if message? && from_staff? | ||||||
| 
 | 
 | ||||||
|     blocked ||= domain_blocking?                                 # Skip for domain blocked accounts |     blocked ||= domain_blocking? | ||||||
|     blocked ||= @recipient.blocking?(@notification.from_account) # Skip for blocked accounts |     blocked ||= @recipient.blocking?(@notification.from_account) | ||||||
|     blocked ||= @recipient.muting_notifications?(@notification.from_account) |     blocked ||= @recipient.muting_notifications?(@notification.from_account) | ||||||
|     blocked ||= hellbanned?                                      # Hellban |     blocked ||= hellbanned? | ||||||
|     blocked ||= optional_non_follower?                           # Options |     blocked ||= optional_non_follower? | ||||||
|     blocked ||= optional_non_following?                          # Options |     blocked ||= optional_non_following? | ||||||
|     blocked ||= optional_non_following_and_direct?               # Options |     blocked ||= optional_non_following_and_direct? | ||||||
|     blocked ||= conversation_muted? |     blocked ||= conversation_muted? | ||||||
|     blocked ||= send("blocked_#{@notification.type}?")           # Type-dependent filters |     blocked ||= blocked_mention? if @notification.type == :mention | ||||||
|     blocked |     blocked | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -13,4 +13,4 @@ | |||||||
| <%= t('admin_mailer.new_trending_tags.no_approved_tags') %> | <%= t('admin_mailer.new_trending_tags.no_approved_tags') %> | ||||||
| <% end %> | <% end %> | ||||||
| 
 | 
 | ||||||
| <%= raw t('application_mailer.view')%> <%= admin_trends_tags_url(pending_review: '1') %> | <%= raw t('application_mailer.view')%> <%= admin_trends_tags_url(status: 'pending_review') %> | ||||||
|  | |||||||
| @ -62,6 +62,7 @@ ignore_unused: | |||||||
|   - 'themes.*' |   - 'themes.*' | ||||||
|   - 'statuses.attached.*' |   - 'statuses.attached.*' | ||||||
|   - 'move_handler.carry_{mutes,blocks}_over_text' |   - 'move_handler.carry_{mutes,blocks}_over_text' | ||||||
|  |   - 'notification_mailer.*' | ||||||
| 
 | 
 | ||||||
| ignore_inconsistent_interpolations: | ignore_inconsistent_interpolations: | ||||||
|   - '*.one' |   - '*.one' | ||||||
|  | |||||||
| @ -2,7 +2,7 @@ | |||||||
| # in the Links header per default. | # in the Links header per default. | ||||||
| 
 | 
 | ||||||
| # In our case, that will bloat headers too much and potentially cause | # In our case, that will bloat headers too much and potentially cause | ||||||
| # issues with reverse proxies. Furhermore, we don't need those links, | # issues with reverse proxies. Furthermore, we don't need those links, | ||||||
| # as we already output them as HTML link tags. | # as we already output them as HTML link tags. | ||||||
| 
 | 
 | ||||||
| Rails.application.config.action_view.preload_links_header = false | Rails.application.config.action_view.preload_links_header = false | ||||||
|  | |||||||
| @ -3,7 +3,7 @@ lv: | |||||||
|   activerecord: |   activerecord: | ||||||
|     attributes: |     attributes: | ||||||
|       poll: |       poll: | ||||||
|         expires_at: Gala termiņš |         expires_at: Deadline | ||||||
|         options: Izvēles |         options: Izvēles | ||||||
|       user: |       user: | ||||||
|         agreement: Pakalpojuma līgums |         agreement: Pakalpojuma līgums | ||||||
|  | |||||||
| @ -55,7 +55,7 @@ th: | |||||||
|         subject: 'Mastodon: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว' |         subject: 'Mastodon: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว' | ||||||
|         title: เปิดใช้งาน 2FA แล้ว |         title: เปิดใช้งาน 2FA แล้ว | ||||||
|       two_factor_recovery_codes_changed: |       two_factor_recovery_codes_changed: | ||||||
|         explanation: ยกเลิกรหัสกู้คืนก่อนหน้าและสร้างรหัสใหม่แล้ว |         explanation: ยกเลิกรหัสกู้คืนก่อนหน้านี้และสร้างรหัสใหม่แล้ว | ||||||
|         subject: 'Mastodon: สร้างรหัสกู้คืนสองปัจจัยใหม่แล้ว' |         subject: 'Mastodon: สร้างรหัสกู้คืนสองปัจจัยใหม่แล้ว' | ||||||
|         title: เปลี่ยนรหัสกู้คืน 2FA แล้ว |         title: เปลี่ยนรหัสกู้คืน 2FA แล้ว | ||||||
|       unlock_instructions: |       unlock_instructions: | ||||||
|  | |||||||
| @ -1176,6 +1176,9 @@ en: | |||||||
|     carry_mutes_over_text: This user moved from %{acct}, which you had muted. |     carry_mutes_over_text: This user moved from %{acct}, which you had muted. | ||||||
|     copy_account_note_text: 'This user moved from %{acct}, here were your previous notes about them:' |     copy_account_note_text: 'This user moved from %{acct}, here were your previous notes about them:' | ||||||
|   notification_mailer: |   notification_mailer: | ||||||
|  |     admin: | ||||||
|  |       sign_up: | ||||||
|  |         subject: "%{name} signed up" | ||||||
|     digest: |     digest: | ||||||
|       action: View all notifications |       action: View all notifications | ||||||
|       body: Here is a brief summary of the messages you missed since your last visit on %{since} |       body: Here is a brief summary of the messages you missed since your last visit on %{since} | ||||||
|  | |||||||
| @ -110,6 +110,7 @@ eu: | |||||||
|       confirm: Berretsi |       confirm: Berretsi | ||||||
|       confirmed: Berretsita |       confirmed: Berretsita | ||||||
|       confirming: Berresten |       confirming: Berresten | ||||||
|  |       custom: Pertsonalizatua | ||||||
|       delete: Ezabatu datuak |       delete: Ezabatu datuak | ||||||
|       deleted: Ezabatua |       deleted: Ezabatua | ||||||
|       demote: Jaitsi mailaz |       demote: Jaitsi mailaz | ||||||
| @ -201,6 +202,7 @@ eu: | |||||||
|       silenced: Isilarazita |       silenced: Isilarazita | ||||||
|       statuses: Bidalketa |       statuses: Bidalketa | ||||||
|       subscribe: Harpidetu |       subscribe: Harpidetu | ||||||
|  |       suspend: Kanporatu | ||||||
|       suspended: Kanporatuta |       suspended: Kanporatuta | ||||||
|       suspension_irreversible: Kontu honen datuak behin betiko ezabatu dira. Kontua kanporatzea atzera bota dezakezu, berriz erabilgarri izan dadin, baina datuak ezingo dira berreskuratu. |       suspension_irreversible: Kontu honen datuak behin betiko ezabatu dira. Kontua kanporatzea atzera bota dezakezu, berriz erabilgarri izan dadin, baina datuak ezingo dira berreskuratu. | ||||||
|       suspension_reversible_hint_html: Kontu hau kanporatua izan da eta bere datuak %{date}(e)an behin betiko ezabatuko dira. Ordura arte kontua kalterik gabe leheneratu daiteke. Kontuaren datu guztiak oraintxe bertan ezabatu nahi badituzu, jarraian egin dezakezu. |       suspension_reversible_hint_html: Kontu hau kanporatua izan da eta bere datuak %{date}(e)an behin betiko ezabatuko dira. Ordura arte kontua kalterik gabe leheneratu daiteke. Kontuaren datu guztiak oraintxe bertan ezabatu nahi badituzu, jarraian egin dezakezu. | ||||||
| @ -221,6 +223,7 @@ eu: | |||||||
|       whitelisted: Zerrenda zurian |       whitelisted: Zerrenda zurian | ||||||
|     action_logs: |     action_logs: | ||||||
|       action_types: |       action_types: | ||||||
|  |         approve_appeal: Onartu apelazioa | ||||||
|         approve_user: Onartu erabiltzailea |         approve_user: Onartu erabiltzailea | ||||||
|         assigned_to_self_report: Esleitu salaketa |         assigned_to_self_report: Esleitu salaketa | ||||||
|         change_email_user: Aldatu erabiltzailearen e-maila |         change_email_user: Aldatu erabiltzailearen e-maila | ||||||
| @ -252,6 +255,7 @@ eu: | |||||||
|         enable_user: Gaitu erabiltzailea |         enable_user: Gaitu erabiltzailea | ||||||
|         memorialize_account: Bihurtu kontua oroigarri |         memorialize_account: Bihurtu kontua oroigarri | ||||||
|         promote_user: Igo erabiltzailea mailaz |         promote_user: Igo erabiltzailea mailaz | ||||||
|  |         reject_appeal: Baztertu apelazioa | ||||||
|         reject_user: Baztertu erabiltzailea |         reject_user: Baztertu erabiltzailea | ||||||
|         remove_avatar_user: Kendu abatarra |         remove_avatar_user: Kendu abatarra | ||||||
|         reopen_report: Berrireki txostena |         reopen_report: Berrireki txostena | ||||||
| @ -270,6 +274,7 @@ eu: | |||||||
|         update_domain_block: Eguneratu domeinu-blokeoa |         update_domain_block: Eguneratu domeinu-blokeoa | ||||||
|         update_status: Eguneratu bidalketa |         update_status: Eguneratu bidalketa | ||||||
|       actions: |       actions: | ||||||
|  |         approve_appeal_html: "%{name} erabiltzaileak %{target} erabiltzailearen moderazio erabakiaren apelazioa onartu du" | ||||||
|         approve_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen izen-ematea onartu du" |         approve_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen izen-ematea onartu du" | ||||||
|         assigned_to_self_report_html: "%{name} erabiltzaileak %{target} salaketa bere buruari esleitu dio" |         assigned_to_self_report_html: "%{name} erabiltzaileak %{target} salaketa bere buruari esleitu dio" | ||||||
|         change_email_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen e-posta helbidea aldatu du" |         change_email_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen e-posta helbidea aldatu du" | ||||||
| @ -301,6 +306,7 @@ eu: | |||||||
|         enable_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen saioa gaitu du" |         enable_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen saioa gaitu du" | ||||||
|         memorialize_account_html: "%{name} erabiltzaileak %{target} kontua memoriala bihurtu du" |         memorialize_account_html: "%{name} erabiltzaileak %{target} kontua memoriala bihurtu du" | ||||||
|         promote_user_html: "%{name} erabiltzaileak %{target} erabiltzailea mailaz igo du" |         promote_user_html: "%{name} erabiltzaileak %{target} erabiltzailea mailaz igo du" | ||||||
|  |         reject_appeal_html: "%{name} erabiltzaileak %{target} erabiltzailearen moderazio erabakiaren apelazioa baztertu du" | ||||||
|         reject_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen izen-ematea baztertu du" |         reject_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen izen-ematea baztertu du" | ||||||
|         remove_avatar_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen abatarra kendu du" |         remove_avatar_user_html: "%{name} erabiltzaileak %{target} erabiltzailearen abatarra kendu du" | ||||||
|         reopen_report_html: "%{name} erabiltzaileak %{target} txostena berrireki du" |         reopen_report_html: "%{name} erabiltzaileak %{target} txostena berrireki du" | ||||||
| @ -387,6 +393,10 @@ eu: | |||||||
|       top_languages: Hizkuntza aktiboenak |       top_languages: Hizkuntza aktiboenak | ||||||
|       top_servers: Zerbitzari aktiboenak |       top_servers: Zerbitzari aktiboenak | ||||||
|       website: Webgunea |       website: Webgunea | ||||||
|  |     disputes: | ||||||
|  |       appeals: | ||||||
|  |         empty: Ez da apelaziorik aurkitu. | ||||||
|  |         title: Apelazioak | ||||||
|     domain_allows: |     domain_allows: | ||||||
|       add_new: Sartu domeinua zerrenda zurian |       add_new: Sartu domeinua zerrenda zurian | ||||||
|       created_msg: Domeinua ongi sartu da zerrenda zurian |       created_msg: Domeinua ongi sartu da zerrenda zurian | ||||||
| @ -424,6 +434,10 @@ eu: | |||||||
|         silence: isilarazia |         silence: isilarazia | ||||||
|         suspend: kanporatua |         suspend: kanporatua | ||||||
|       show: |       show: | ||||||
|  |         affected_accounts: | ||||||
|  |           one: Datu-baseko kontu bati eragiten dio | ||||||
|  |           other: Datu-baseko %{count} konturi eragiten die | ||||||
|  |           zero: Ez die eragiten datu-baseko kontuei | ||||||
|         retroactive: |         retroactive: | ||||||
|           silence: Kendu isilarazteko agindua domeinu honetako kontu guztiei |           silence: Kendu isilarazteko agindua domeinu honetako kontu guztiei | ||||||
|           suspend: Kendu kanporatzeko agindua domeinu honetako kontu guztiei |           suspend: Kendu kanporatzeko agindua domeinu honetako kontu guztiei | ||||||
| @ -474,6 +488,10 @@ eu: | |||||||
|       delivery_error_hint: Banaketa ezin bada %{count} egunean egin, banaezin bezala markatuko da automatikoki. |       delivery_error_hint: Banaketa ezin bada %{count} egunean egin, banaezin bezala markatuko da automatikoki. | ||||||
|       destroyed_msg: "%{domain} domeinuko datuak berehala ezabatzeko ilaran daude orain." |       destroyed_msg: "%{domain} domeinuko datuak berehala ezabatzeko ilaran daude orain." | ||||||
|       empty: Ez da domeinurik aurkitu. |       empty: Ez da domeinurik aurkitu. | ||||||
|  |       known_accounts: | ||||||
|  |         one: Kontu ezagun %{count} | ||||||
|  |         other: "%{count} kontu ezagun" | ||||||
|  |         zero: Kontu ezagunik ez | ||||||
|       moderation: |       moderation: | ||||||
|         all: Denak |         all: Denak | ||||||
|         limited: Mugatua |         limited: Mugatua | ||||||
| @ -531,41 +549,61 @@ eu: | |||||||
|     report_notes: |     report_notes: | ||||||
|       created_msg: Salaketa oharra ongi sortu da! |       created_msg: Salaketa oharra ongi sortu da! | ||||||
|       destroyed_msg: Salaketa oharra ongi ezabatu da! |       destroyed_msg: Salaketa oharra ongi ezabatu da! | ||||||
|  |       today_at: Gaur %{time}(e)tan | ||||||
|     reports: |     reports: | ||||||
|       account: |       account: | ||||||
|         notes: |         notes: | ||||||
|           one: Ohar %{count} |           one: Ohar %{count} | ||||||
|           other: "%{count} ohar" |           other: "%{count} ohar" | ||||||
|  |       action_log: Auditoria-egunkaria | ||||||
|       action_taken_by: Neurrien hartzailea |       action_taken_by: Neurrien hartzailea | ||||||
|  |       actions: | ||||||
|  |         other_description_html: Ikusi kontuaren portaera kontrolatzeko eta salatutako kontuarekin komunikazioa pertsonalizatzeko aukera gehiago. | ||||||
|  |         silence_description_html: Profila dagoeneko jarraitzen dutenei edo eskuz bilatzen dutenei bakarrik agertuko zaie, bere irismena asko mugatuz. Beti bota daiteke atzera. | ||||||
|  |         suspend_description_html: Profila eta bere eduki guztiak iritsiezinak bihurtuko dira, ezabatzen den arte. Kontuarekin ezin da interakziorik eduki. Atzera bota daiteke 30 eguneko epean. | ||||||
|  |       actions_description_html: Erabaki txosten hau konpontzeko ze ekintza hartu. Salatutako kontuaren aurka zigor ekintza bat hartzen baduzu, eposta jakinarazpen bat bidaliko zaie, <strong>Spam</strong> kategoria hautatzean ezik. | ||||||
|  |       add_to_report: Gehitu gehiago txostenera | ||||||
|       are_you_sure: Ziur zaude? |       are_you_sure: Ziur zaude? | ||||||
|       assign_to_self: Esleitu niri |       assign_to_self: Esleitu niri | ||||||
|       assigned: Esleitutako moderatzailea |       assigned: Esleitutako moderatzailea | ||||||
|       by_target_domain: Jakinarazitako kontuaren domeinua |       by_target_domain: Jakinarazitako kontuaren domeinua | ||||||
|  |       category: Kategoria | ||||||
|  |       category_description_html: Kontu edo/eta eduki hau salatu izanaren arrazoia salatutako kontuarekiko komunikazioan aipatuko da | ||||||
|       comment: |       comment: | ||||||
|         none: Bat ere ez |         none: Bat ere ez | ||||||
|  |       comment_description_html: 'Informazio gehiago emateko, %{name} idatzi:' | ||||||
|       created_at: Salatua |       created_at: Salatua | ||||||
|  |       delete_and_resolve: Ezabatu bidalketak | ||||||
|       forwarded: Birbidalia |       forwarded: Birbidalia | ||||||
|       forwarded_to: 'Hona birbidalia: %{domain}' |       forwarded_to: 'Hona birbidalia: %{domain}' | ||||||
|       mark_as_resolved: Markatu konpondutako gisa |       mark_as_resolved: Markatu konpondutako gisa | ||||||
|       mark_as_unresolved: Markatu konpondu gabeko gisa |       mark_as_unresolved: Markatu konpondu gabeko gisa | ||||||
|  |       no_one_assigned: Inor ez | ||||||
|       notes: |       notes: | ||||||
|         create: Gehitu oharra |         create: Gehitu oharra | ||||||
|         create_and_resolve: Konpondu ohar batekin |         create_and_resolve: Konpondu ohar batekin | ||||||
|         create_and_unresolve: Berrireki ohar batekin |         create_and_unresolve: Berrireki ohar batekin | ||||||
|         delete: Ezabatu |         delete: Ezabatu | ||||||
|         placeholder: Azaldu hartutako neurriak, edo erlazioa duten bestelako berriak... |         placeholder: Azaldu hartutako neurriak, edo erlazioa duten bestelako berriak... | ||||||
|  |         title: Oharrak | ||||||
|  |       notes_description_html: Ikusi eta idatzi oharrak beste moderatzaileentzat eta zuretzat etorkizunerako | ||||||
|  |       quick_actions_description_html: 'Hartu ekintza azkar bat edo korritu behera salatutako edukia ikusteko:' | ||||||
|       reopen: Berrireki salaketa |       reopen: Berrireki salaketa | ||||||
|       report: 'Salaketa #%{id}' |       report: 'Salaketa #%{id}' | ||||||
|       reported_account: Salatutako kontua |       reported_account: Salatutako kontua | ||||||
|       reported_by: Salatzailea |       reported_by: Salatzailea | ||||||
|       resolved: Konponduta |       resolved: Konponduta | ||||||
|       resolved_msg: Salaketa ongi konpondu da! |       resolved_msg: Salaketa ongi konpondu da! | ||||||
|  |       skip_to_actions: Salto ekintzetara | ||||||
|       status: Mezua |       status: Mezua | ||||||
|  |       statuses: Salatutako edukia | ||||||
|  |       statuses_description_html: Salatutako edukia salatutako kontuarekiko komunikazioan aipatuko da | ||||||
|       target_origin: Salatutako kontuaren jatorria |       target_origin: Salatutako kontuaren jatorria | ||||||
|       title: Salaketak |       title: Salaketak | ||||||
|       unassign: Kendu esleipena |       unassign: Kendu esleipena | ||||||
|       unresolved: Konpondu gabea |       unresolved: Konpondu gabea | ||||||
|       updated_at: Eguneratua |       updated_at: Eguneratua | ||||||
|  |       view_profile: Ikusi profila | ||||||
|     rules: |     rules: | ||||||
|       add_new: Gehitu araua |       add_new: Gehitu araua | ||||||
|       delete: Ezabatu |       delete: Ezabatu | ||||||
| @ -667,12 +705,21 @@ eu: | |||||||
|       destroyed_msg: Guneko igoera ongi ezabatu da! |       destroyed_msg: Guneko igoera ongi ezabatu da! | ||||||
|     statuses: |     statuses: | ||||||
|       back_to_account: Atzera kontuaren orrira |       back_to_account: Atzera kontuaren orrira | ||||||
|  |       back_to_report: Atzera txostenaren orrira | ||||||
|  |       batch: | ||||||
|  |         remove_from_report: Kendu txostenetik | ||||||
|  |         report: Salatu | ||||||
|       deleted: Ezabatuta |       deleted: Ezabatuta | ||||||
|       media: |       media: | ||||||
|         title: Multimedia |         title: Multimedia | ||||||
|       no_status_selected: Ez da bidalketarik aldatu ez delako bidalketarik aukeratu |       no_status_selected: Ez da bidalketarik aldatu ez delako bidalketarik aukeratu | ||||||
|       title: Kontuaren bidalketak |       title: Kontuaren bidalketak | ||||||
|       with_media: Multimediarekin |       with_media: Multimediarekin | ||||||
|  |     strikes: | ||||||
|  |       actions: | ||||||
|  |         delete_statuses: "%{name} erabiltzaileak %{target} erabiltzailearen bidalketak ezabatu ditu" | ||||||
|  |         disable: "%{name} erabiltzailea %{target} erabiltzailearen kontua izoztu du" | ||||||
|  |         none: "%{name} erabiltzaileak abisua bidali dio %{target} erabiltzaileari" | ||||||
|     system_checks: |     system_checks: | ||||||
|       database_schema_check: |       database_schema_check: | ||||||
|         message_html: Aplikatu gabeko datu-basearen migrazioak daude. Exekutatu aplikazioak esperotako portaera izan dezan |         message_html: Aplikatu gabeko datu-basearen migrazioak daude. Exekutatu aplikazioak esperotako portaera izan dezan | ||||||
|  | |||||||
| @ -162,6 +162,11 @@ fi: | |||||||
|       not_subscribed: Ei tilaaja |       not_subscribed: Ei tilaaja | ||||||
|       pending: Odottaa tarkistusta |       pending: Odottaa tarkistusta | ||||||
|       perform_full_suspension: Siirrä kokonaan jäähylle |       perform_full_suspension: Siirrä kokonaan jäähylle | ||||||
|  |       previous_strikes: Aiemmat varoitukset | ||||||
|  |       previous_strikes_description_html: | ||||||
|  |         one: Tällä tilillä on <strong>yksi</strong> varoitus. | ||||||
|  |         other: Tällä tilillä on <strong>%{count}</strong> varoitusta. | ||||||
|  |         zero: Tämä tili on <strong>hyvässä kunnossa</strong>. | ||||||
|       promote: Ylennä |       promote: Ylennä | ||||||
|       protocol: Protokolla |       protocol: Protokolla | ||||||
|       public: Julkinen |       public: Julkinen | ||||||
| @ -226,6 +231,7 @@ fi: | |||||||
|       whitelisted: Sallittu liittämiselle |       whitelisted: Sallittu liittämiselle | ||||||
|     action_logs: |     action_logs: | ||||||
|       action_types: |       action_types: | ||||||
|  |         approve_appeal: Hyväksy valitus | ||||||
|         approve_user: Hyväksy käyttäjä |         approve_user: Hyväksy käyttäjä | ||||||
|         assigned_to_self_report: Määritä raportti |         assigned_to_self_report: Määritä raportti | ||||||
|         change_email_user: Vaihda sähköposti käyttäjälle |         change_email_user: Vaihda sähköposti käyttäjälle | ||||||
| @ -257,6 +263,7 @@ fi: | |||||||
|         enable_user: Tili otettu käyttöön |         enable_user: Tili otettu käyttöön | ||||||
|         memorialize_account: Muuta muistotiliksi |         memorialize_account: Muuta muistotiliksi | ||||||
|         promote_user: Käyttäjä ylennetty |         promote_user: Käyttäjä ylennetty | ||||||
|  |         reject_appeal: Hylkää valitus | ||||||
|         reject_user: Hylkää käyttäjä |         reject_user: Hylkää käyttäjä | ||||||
|         remove_avatar_user: Profiilikuvan poisto |         remove_avatar_user: Profiilikuvan poisto | ||||||
|         reopen_report: Uudelleenavaa raportti |         reopen_report: Uudelleenavaa raportti | ||||||
| @ -275,6 +282,7 @@ fi: | |||||||
|         update_domain_block: Päivitä verkkotunnuksen esto |         update_domain_block: Päivitä verkkotunnuksen esto | ||||||
|         update_status: Päivitä viesti |         update_status: Päivitä viesti | ||||||
|       actions: |       actions: | ||||||
|  |         approve_appeal_html: "%{name} hyväksyi moderointipäätöksen muutoksenhaun lähettäjältä %{target}" | ||||||
|         approve_user_html: "%{name} hyväksyi käyttäjän rekisteröitymisen kohteesta %{target}" |         approve_user_html: "%{name} hyväksyi käyttäjän rekisteröitymisen kohteesta %{target}" | ||||||
|         assigned_to_self_report_html: "%{name} otti raportin %{target} tehtäväkseen" |         assigned_to_self_report_html: "%{name} otti raportin %{target} tehtäväkseen" | ||||||
|         change_email_user_html: "%{name} vaihtoi käyttäjän %{target} sähköpostiosoitteen" |         change_email_user_html: "%{name} vaihtoi käyttäjän %{target} sähköpostiosoitteen" | ||||||
| @ -306,6 +314,7 @@ fi: | |||||||
|         enable_user_html: "%{name} salli kirjautumisen käyttäjälle %{target}" |         enable_user_html: "%{name} salli kirjautumisen käyttäjälle %{target}" | ||||||
|         memorialize_account_html: "%{name} muutti käyttäjän %{target} tilin muistosivuksi" |         memorialize_account_html: "%{name} muutti käyttäjän %{target} tilin muistosivuksi" | ||||||
|         promote_user_html: "%{name} ylensi käyttäjän %{target}" |         promote_user_html: "%{name} ylensi käyttäjän %{target}" | ||||||
|  |         reject_appeal_html: "%{name} hylkäsi moderointipäätöksen muutoksenhaun %{target}" | ||||||
|         reject_user_html: "%{name} hylkäsi käyttäjän rekisteröitymisen kohteesta %{target}" |         reject_user_html: "%{name} hylkäsi käyttäjän rekisteröitymisen kohteesta %{target}" | ||||||
|         remove_avatar_user_html: "%{name} poisti käyttäjän %{target} profiilikuvan" |         remove_avatar_user_html: "%{name} poisti käyttäjän %{target} profiilikuvan" | ||||||
|         reopen_report_html: "%{name} avasi uudelleen raportin %{target}" |         reopen_report_html: "%{name} avasi uudelleen raportin %{target}" | ||||||
| @ -384,6 +393,18 @@ fi: | |||||||
|       media_storage: Median tallennustila |       media_storage: Median tallennustila | ||||||
|       new_users: uudet käyttäjät |       new_users: uudet käyttäjät | ||||||
|       opened_reports: raportit avattu |       opened_reports: raportit avattu | ||||||
|  |       pending_appeals_html: | ||||||
|  |         one: "<strong>%{count}</strong> vireillä oleva valitus" | ||||||
|  |         other: "<strong>%{count}</strong> vireillä olevat valitukset" | ||||||
|  |       pending_reports_html: | ||||||
|  |         one: "<strong>%{count}</strong> odottava raportti" | ||||||
|  |         other: "<strong>%{count}</strong> odottavat raportit" | ||||||
|  |       pending_tags_html: | ||||||
|  |         one: "<strong>%{count}</strong> odottava hashtagi" | ||||||
|  |         other: "<strong>%{count}</strong> odottavat hashtagit" | ||||||
|  |       pending_users_html: | ||||||
|  |         one: "<strong>%{count}</strong> odottava käyttäjä" | ||||||
|  |         other: "<strong>%{count}</strong> odottavat käyttäjät" | ||||||
|       resolved_reports: raportit ratkaistu |       resolved_reports: raportit ratkaistu | ||||||
|       software: Ohjelmisto |       software: Ohjelmisto | ||||||
|       sources: Kirjautumisen lähteet |       sources: Kirjautumisen lähteet | ||||||
| @ -392,6 +413,10 @@ fi: | |||||||
|       top_languages: Aktiiviset kielet |       top_languages: Aktiiviset kielet | ||||||
|       top_servers: Aktiiviset palvelimet |       top_servers: Aktiiviset palvelimet | ||||||
|       website: Sivusto |       website: Sivusto | ||||||
|  |     disputes: | ||||||
|  |       appeals: | ||||||
|  |         empty: Valituksia ei löytynyt. | ||||||
|  |         title: Valitukset | ||||||
|     domain_allows: |     domain_allows: | ||||||
|       add_new: Salli liitto verkkotunnuksella |       add_new: Salli liitto verkkotunnuksella | ||||||
|       created_msg: Verkkotunnus on onnistuneesti sallittu federaatiolle |       created_msg: Verkkotunnus on onnistuneesti sallittu federaatiolle | ||||||
| @ -429,6 +454,10 @@ fi: | |||||||
|         silence: hiljennetty |         silence: hiljennetty | ||||||
|         suspend: jäähyllä |         suspend: jäähyllä | ||||||
|       show: |       show: | ||||||
|  |         affected_accounts: | ||||||
|  |           one: Tämä vaikuttaa yhteen tiliin tietokannassa | ||||||
|  |           other: Vaikuttaa %{count} tiliin tietokannassa | ||||||
|  |           zero: Tämä ei vaikuta mihinkään tietokannan tiliin | ||||||
|         retroactive: |         retroactive: | ||||||
|           silence: Peru kaikkien tässä verkkotunnuksessa jo olemassa olevien tilien hiljennys |           silence: Peru kaikkien tässä verkkotunnuksessa jo olemassa olevien tilien hiljennys | ||||||
|           suspend: Peru kaikkien tässä verkkotunnuksessa jo olemassa olevien tilien jäähy |           suspend: Peru kaikkien tässä verkkotunnuksessa jo olemassa olevien tilien jäähy | ||||||
| @ -471,11 +500,18 @@ fi: | |||||||
|         unavailable: Ei saatavilla |         unavailable: Ei saatavilla | ||||||
|         unavailable_message: Toimitus ei käytettävissä |         unavailable_message: Toimitus ei käytettävissä | ||||||
|         warning: Varoitus |         warning: Varoitus | ||||||
|  |         warning_message: | ||||||
|  |           one: Toimitusvirhe %{count} päivä | ||||||
|  |           other: Toimitushäiriö %{count} päivää | ||||||
|       delivery_available: Toimitus on saatavilla |       delivery_available: Toimitus on saatavilla | ||||||
|       delivery_error_days: Toimitusvirheen päivät |       delivery_error_days: Toimitusvirheen päivät | ||||||
|       delivery_error_hint: Jos toimitus ei ole mahdollista %{count} päivän aikana, se merkitään automaattisesti toimittamattomaksi. |       delivery_error_hint: Jos toimitus ei ole mahdollista %{count} päivän aikana, se merkitään automaattisesti toimittamattomaksi. | ||||||
|       destroyed_msg: Tiedot %{domain} on nyt jonossa välitöntä poistoa varten. |       destroyed_msg: Tiedot %{domain} on nyt jonossa välitöntä poistoa varten. | ||||||
|       empty: Verkkotunnuksia ei löytynyt. |       empty: Verkkotunnuksia ei löytynyt. | ||||||
|  |       known_accounts: | ||||||
|  |         one: "%{count} tunnettu tili" | ||||||
|  |         other: "%{count} tunnettua tiliä" | ||||||
|  |         zero: Ei tunnettua tiliä | ||||||
|       moderation: |       moderation: | ||||||
|         all: Kaikki |         all: Kaikki | ||||||
|         limited: Rajoitettu |         limited: Rajoitettu | ||||||
| @ -535,6 +571,10 @@ fi: | |||||||
|       destroyed_msg: Muistiinpano onnistuneesti poistettu raportista! |       destroyed_msg: Muistiinpano onnistuneesti poistettu raportista! | ||||||
|       today_at: Tänään klo %{time} |       today_at: Tänään klo %{time} | ||||||
|     reports: |     reports: | ||||||
|  |       account: | ||||||
|  |         notes: | ||||||
|  |           one: "%{count} ilmoitus" | ||||||
|  |           other: "%{count} ilmoitusta" | ||||||
|       action_log: Tarkastusloki |       action_log: Tarkastusloki | ||||||
|       action_taken_by: Toimenpiteen tekijä |       action_taken_by: Toimenpiteen tekijä | ||||||
|       actions: |       actions: | ||||||
| @ -901,6 +941,12 @@ fi: | |||||||
|     directory: Profiilihakemisto |     directory: Profiilihakemisto | ||||||
|     explanation: Löydä käyttäjiä heidän kiinnostustensa mukaan |     explanation: Löydä käyttäjiä heidän kiinnostustensa mukaan | ||||||
|     explore_mastodon: Tutki %{title}ia |     explore_mastodon: Tutki %{title}ia | ||||||
|  |   disputes: | ||||||
|  |     strikes: | ||||||
|  |       created_at: Päivätty | ||||||
|  |       recipient: Osoitettu | ||||||
|  |       status: 'Viesti #%{id}' | ||||||
|  |       status_removed: Viesti on jo poistettu järjestelmästä | ||||||
|   domain_validator: |   domain_validator: | ||||||
|     invalid_domain: ei ole kelvollinen toimialueen nimi |     invalid_domain: ei ole kelvollinen toimialueen nimi | ||||||
|   errors: |   errors: | ||||||
| @ -1359,6 +1405,7 @@ fi: | |||||||
|     formats: |     formats: | ||||||
|       default: "%d.%m.%Y klo %H.%M" |       default: "%d.%m.%Y klo %H.%M" | ||||||
|       month: "%b %Y" |       month: "%b %Y" | ||||||
|  |       time: "%H:%M" | ||||||
|   two_factor_authentication: |   two_factor_authentication: | ||||||
|     add: Lisää |     add: Lisää | ||||||
|     disable: Poista käytöstä |     disable: Poista käytöstä | ||||||
| @ -1385,12 +1432,17 @@ fi: | |||||||
|       subject: Ole hyvä ja vahvista sisäänkirjautumisyritys |       subject: Ole hyvä ja vahvista sisäänkirjautumisyritys | ||||||
|       title: Sisäänkirjautumisyritys |       title: Sisäänkirjautumisyritys | ||||||
|     warning: |     warning: | ||||||
|  |       categories: | ||||||
|  |         spam: Roskaposti | ||||||
|  |       reason: 'Syy:' | ||||||
|       subject: |       subject: | ||||||
|         disable: Tilisi %{acct} on jäädytetty |         disable: Tilisi %{acct} on jäädytetty | ||||||
|         none: Varoitus %{acct} |         none: Varoitus %{acct} | ||||||
|       title: |       title: | ||||||
|  |         delete_statuses: Viestit poistettu | ||||||
|         disable: Tili jäädytetty |         disable: Tili jäädytetty | ||||||
|         none: Varoitus |         none: Varoitus | ||||||
|  |         sensitive: Media piilotettu | ||||||
|         silence: Rajoitettu tili |         silence: Rajoitettu tili | ||||||
|         suspend: Tilin käyttäminen keskeytetty |         suspend: Tilin käyttäminen keskeytetty | ||||||
|     welcome: |     welcome: | ||||||
|  | |||||||
| @ -16,11 +16,11 @@ fr: | |||||||
|     contact: Contact |     contact: Contact | ||||||
|     contact_missing: Non défini |     contact_missing: Non défini | ||||||
|     contact_unavailable: Non disponible |     contact_unavailable: Non disponible | ||||||
|     discover_users: Découvrez des utilisateurs |     discover_users: Découvrez des utilisateur·rice·s | ||||||
|     documentation: Documentation |     documentation: Documentation | ||||||
|     federation_hint_html: Avec un compte sur %{instance}, vous pourrez suivre les gens sur n’importe quel serveur Mastodon et au-delà. |     federation_hint_html: Avec un compte sur %{instance}, vous pourrez suivre des gens sur n’importe quel serveur Mastodon et au-delà. | ||||||
|     get_apps: Essayez une application mobile |     get_apps: Essayez une application mobile | ||||||
|     hosted_on: Serveur Mastodon hébergé par %{domain} |     hosted_on: Serveur Mastodon hébergé sur %{domain} | ||||||
|     instance_actor_flash: | |     instance_actor_flash: | | ||||||
|       Ce compte est un acteur virtuel utilisé pour représenter le serveur lui-même et non un·e utilisateur·rice individuel·le. |       Ce compte est un acteur virtuel utilisé pour représenter le serveur lui-même et non un·e utilisateur·rice individuel·le. | ||||||
|       Il est utilisé à des fins de fédération et ne doit pas être bloqué à moins que vous ne vouliez bloquer l’instance entière, auquel cas vous devriez utiliser un blocage de domaine. |       Il est utilisé à des fins de fédération et ne doit pas être bloqué à moins que vous ne vouliez bloquer l’instance entière, auquel cas vous devriez utiliser un blocage de domaine. | ||||||
| @ -35,7 +35,7 @@ fr: | |||||||
|       one: message |       one: message | ||||||
|       other: messages |       other: messages | ||||||
|     status_count_before: Ayant publié |     status_count_before: Ayant publié | ||||||
|     tagline: Suivez vos amis et découvrez-en de nouveaux |     tagline: Suivez vos ami·e·s et découvrez-en de nouveaux·elles | ||||||
|     terms: Conditions d’utilisation |     terms: Conditions d’utilisation | ||||||
|     unavailable_content: Serveurs modérés |     unavailable_content: Serveurs modérés | ||||||
|     unavailable_content_description: |     unavailable_content_description: | ||||||
| @ -162,6 +162,11 @@ fr: | |||||||
|       not_subscribed: Non abonné |       not_subscribed: Non abonné | ||||||
|       pending: En attente d’approbation |       pending: En attente d’approbation | ||||||
|       perform_full_suspension: Suspendre |       perform_full_suspension: Suspendre | ||||||
|  |       previous_strikes: Sanctions précédentes | ||||||
|  |       previous_strikes_description_html: | ||||||
|  |         one: Ce compte a reçu <strong>une</strong> sanction. | ||||||
|  |         other: Ce compte a reçu <strong>%{count}</strong> sanctions. | ||||||
|  |         zero: Ce compte est <strong>en règle</strong>. | ||||||
|       promote: Promouvoir |       promote: Promouvoir | ||||||
|       protocol: Protocole |       protocol: Protocole | ||||||
|       public: Publique |       public: Publique | ||||||
| @ -226,6 +231,7 @@ fr: | |||||||
|       whitelisted: Sur liste blanche |       whitelisted: Sur liste blanche | ||||||
|     action_logs: |     action_logs: | ||||||
|       action_types: |       action_types: | ||||||
|  |         approve_appeal: Approuver l'appel | ||||||
|         approve_user: Approuver l’utilisateur |         approve_user: Approuver l’utilisateur | ||||||
|         assigned_to_self_report: Affecter le signalement |         assigned_to_self_report: Affecter le signalement | ||||||
|         change_email_user: Modifier le courriel pour |         change_email_user: Modifier le courriel pour | ||||||
| @ -257,6 +263,7 @@ fr: | |||||||
|         enable_user: Activer l’utilisateur |         enable_user: Activer l’utilisateur | ||||||
|         memorialize_account: Ériger en mémorial |         memorialize_account: Ériger en mémorial | ||||||
|         promote_user: Promouvoir l’utilisateur |         promote_user: Promouvoir l’utilisateur | ||||||
|  |         reject_appeal: Rejeter l'appel | ||||||
|         reject_user: Rejeter l’utilisateur |         reject_user: Rejeter l’utilisateur | ||||||
|         remove_avatar_user: Supprimer l’avatar |         remove_avatar_user: Supprimer l’avatar | ||||||
|         reopen_report: Rouvrir le signalement |         reopen_report: Rouvrir le signalement | ||||||
| @ -275,6 +282,7 @@ fr: | |||||||
|         update_domain_block: Mettre à jour le blocage de domaine |         update_domain_block: Mettre à jour le blocage de domaine | ||||||
|         update_status: Mettre à jour le message |         update_status: Mettre à jour le message | ||||||
|       actions: |       actions: | ||||||
|  |         approve_appeal_html: "%{name} a approuvé l'appel de la décision de modération émis par %{target}" | ||||||
|         approve_user_html: "%{name} a approuvé l’inscription de %{target}" |         approve_user_html: "%{name} a approuvé l’inscription de %{target}" | ||||||
|         assigned_to_self_report_html: "%{name} s’est assigné·e le signalement de %{target}" |         assigned_to_self_report_html: "%{name} s’est assigné·e le signalement de %{target}" | ||||||
|         change_email_user_html: "%{name} a modifié l'adresse de courriel de l'utilisateur·rice %{target}" |         change_email_user_html: "%{name} a modifié l'adresse de courriel de l'utilisateur·rice %{target}" | ||||||
| @ -306,6 +314,7 @@ fr: | |||||||
|         enable_user_html: "%{name} a activé la connexion de l'utilisateur·rice %{target}" |         enable_user_html: "%{name} a activé la connexion de l'utilisateur·rice %{target}" | ||||||
|         memorialize_account_html: "%{name} a converti le compte de %{target} en un mémorial" |         memorialize_account_html: "%{name} a converti le compte de %{target} en un mémorial" | ||||||
|         promote_user_html: "%{name} a promu l'utilisateur·rice %{target}" |         promote_user_html: "%{name} a promu l'utilisateur·rice %{target}" | ||||||
|  |         reject_appeal_html: "%{name} a rejeté l'appel de la décision de modération émis par %{target}" | ||||||
|         reject_user_html: "%{name} a rejeté l’inscription de %{target}" |         reject_user_html: "%{name} a rejeté l’inscription de %{target}" | ||||||
|         remove_avatar_user_html: "%{name} a supprimé l'avatar de %{target}" |         remove_avatar_user_html: "%{name} a supprimé l'avatar de %{target}" | ||||||
|         reopen_report_html: "%{name} a rouvert le signalement %{target}" |         reopen_report_html: "%{name} a rouvert le signalement %{target}" | ||||||
| @ -384,6 +393,9 @@ fr: | |||||||
|       media_storage: Stockage des médias |       media_storage: Stockage des médias | ||||||
|       new_users: nouveaux utilisateurs |       new_users: nouveaux utilisateurs | ||||||
|       opened_reports: rapports ouverts |       opened_reports: rapports ouverts | ||||||
|  |       pending_appeals_html: | ||||||
|  |         one: "<strong>%{count}</strong> appel en attente" | ||||||
|  |         other: "<strong>%{count}</strong> appels en attente" | ||||||
|       pending_reports_html: |       pending_reports_html: | ||||||
|         one: "<strong>%{count}</strong> rapport en attente" |         one: "<strong>%{count}</strong> rapport en attente" | ||||||
|         other: "<strong>%{count}</strong> rapports en attente" |         other: "<strong>%{count}</strong> rapports en attente" | ||||||
| @ -401,6 +413,10 @@ fr: | |||||||
|       top_languages: Langues les plus actives |       top_languages: Langues les plus actives | ||||||
|       top_servers: Serveurs les plus actifs |       top_servers: Serveurs les plus actifs | ||||||
|       website: Site Web |       website: Site Web | ||||||
|  |     disputes: | ||||||
|  |       appeals: | ||||||
|  |         empty: Aucun appel trouvé. | ||||||
|  |         title: Appels | ||||||
|     domain_allows: |     domain_allows: | ||||||
|       add_new: Mettre le domaine sur liste sur blanche |       add_new: Mettre le domaine sur liste sur blanche | ||||||
|       created_msg: Ce domaine a été ajouté à la liste blanche avec succès |       created_msg: Ce domaine a été ajouté à la liste blanche avec succès | ||||||
| @ -562,9 +578,12 @@ fr: | |||||||
|       action_log: Journal d’audit |       action_log: Journal d’audit | ||||||
|       action_taken_by: Intervention de |       action_taken_by: Intervention de | ||||||
|       actions: |       actions: | ||||||
|  |         delete_description_html: Les messages signalés seront supprimés et une sanction sera enregistrée pour vous aider à prendre les mesures appropriées en cas d'infractions futures par le même compte. | ||||||
|         other_description_html: Voir plus d'options pour contrôler le comportement du compte et personnaliser la communication vers le compte signalé. |         other_description_html: Voir plus d'options pour contrôler le comportement du compte et personnaliser la communication vers le compte signalé. | ||||||
|  |         resolve_description_html: Aucune mesure ne sera prise contre le compte signalé, aucune sanction ne sera enregistrée et le sigalement sera clôturé. | ||||||
|         silence_description_html: Le profil ne sera visible que pour ceux qui le suivent déjà ou le consultent manuellement, ce qui limite considérablement sa portée. Peut toujours être restauré. |         silence_description_html: Le profil ne sera visible que pour ceux qui le suivent déjà ou le consultent manuellement, ce qui limite considérablement sa portée. Peut toujours être restauré. | ||||||
|         suspend_description_html: Le profil et tout son contenu deviendront inaccessibles jusqu'à ce qu'il soit éventuellement supprimé. Interagir avec le compte sera impossible. Réversible dans les 30 jours. |         suspend_description_html: Le profil et tout son contenu deviendront inaccessibles jusqu'à ce qu'il soit éventuellement supprimé. Interagir avec le compte sera impossible. Réversible dans les 30 jours. | ||||||
|  |       actions_description_html: Décidez des mesures à prendre pour résoudre ce signalement. Si vous prenez des mesures punitives contre le compte signalé, une notification sera envoyée par e-mail, sauf si la catégorie <strong>Spam</strong> est sélectionnée. | ||||||
|       add_to_report: Ajouter davantage au rapport |       add_to_report: Ajouter davantage au rapport | ||||||
|       are_you_sure: Voulez-vous vraiment faire ça ? |       are_you_sure: Voulez-vous vraiment faire ça ? | ||||||
|       assign_to_self: Me l’assigner |       assign_to_self: Me l’assigner | ||||||
| @ -718,6 +737,16 @@ fr: | |||||||
|       no_status_selected: Aucun statut n’a été modifié car aucun n’a été sélectionné |       no_status_selected: Aucun statut n’a été modifié car aucun n’a été sélectionné | ||||||
|       title: Messages du compte |       title: Messages du compte | ||||||
|       with_media: Avec médias |       with_media: Avec médias | ||||||
|  |     strikes: | ||||||
|  |       actions: | ||||||
|  |         delete_statuses: "%{name} a supprimé les messages de %{target}" | ||||||
|  |         disable: "%{name} a bloqué le compte de %{target}" | ||||||
|  |         none: "%{name} a envoyé un avertissement à %{target}" | ||||||
|  |         sensitive: "%{name} a marqué le compte de %{target} comme sensible" | ||||||
|  |         silence: "%{name} a limité le compte de %{target}" | ||||||
|  |         suspend: "%{name} a suspendu le compte de %{target}" | ||||||
|  |       appeal_approved: Appel soumis | ||||||
|  |       appeal_pending: Appel en attente | ||||||
|     system_checks: |     system_checks: | ||||||
|       database_schema_check: |       database_schema_check: | ||||||
|         message_html: Vous avez des migrations de base de données en attente. Veuillez les exécuter pour vous assurer que l'application se comporte comme prévu |         message_html: Vous avez des migrations de base de données en attente. Veuillez les exécuter pour vous assurer que l'application se comporte comme prévu | ||||||
| @ -739,6 +768,10 @@ fr: | |||||||
|         allow_provider: Autoriser l'éditeur |         allow_provider: Autoriser l'éditeur | ||||||
|         disallow: Interdire le lien |         disallow: Interdire le lien | ||||||
|         disallow_provider: Interdire l'éditeur |         disallow_provider: Interdire l'éditeur | ||||||
|  |         shared_by_over_week: | ||||||
|  |           one: Partagé par une personne au cours de la semaine dernière | ||||||
|  |           other: Partagé par %{count} personnes au cours de la semaine dernière | ||||||
|  |           zero: Non partagé au cours de la semaine dernière | ||||||
|         title: Liens tendances |         title: Liens tendances | ||||||
|         usage_comparison: Partagé %{today} fois aujourd'hui, comparé à %{yesterday} hier |         usage_comparison: Partagé %{today} fois aujourd'hui, comparé à %{yesterday} hier | ||||||
|       pending_review: En attente de révision |       pending_review: En attente de révision | ||||||
| @ -765,6 +798,10 @@ fr: | |||||||
|         trending_rank: 'Tendance #%{rank}' |         trending_rank: 'Tendance #%{rank}' | ||||||
|         usable: Peut être utilisé |         usable: Peut être utilisé | ||||||
|         usage_comparison: Utilisé %{today} fois aujourd'hui, comparé à %{yesterday} hier |         usage_comparison: Utilisé %{today} fois aujourd'hui, comparé à %{yesterday} hier | ||||||
|  |         used_by_over_week: | ||||||
|  |           one: Utilisé par une personne au cours de la semaine dernière | ||||||
|  |           other: Utilisé par %{count} personnes au cours de la semaine dernière | ||||||
|  |           zero: Non utilisé au cours de la semaine dernière | ||||||
|       title: Tendances |       title: Tendances | ||||||
|     warning_presets: |     warning_presets: | ||||||
|       add_new: Ajouter un nouveau |       add_new: Ajouter un nouveau | ||||||
| @ -773,6 +810,17 @@ fr: | |||||||
|       empty: Vous n'avez pas encore créé de paramètres prédéfinis pour les avertissements. |       empty: Vous n'avez pas encore créé de paramètres prédéfinis pour les avertissements. | ||||||
|       title: Gérer les avertissements prédéfinis |       title: Gérer les avertissements prédéfinis | ||||||
|   admin_mailer: |   admin_mailer: | ||||||
|  |     new_appeal: | ||||||
|  |       actions: | ||||||
|  |         delete_statuses: effacer les messages | ||||||
|  |         disable: bloquer le compte | ||||||
|  |         none: un avertissement | ||||||
|  |         sensitive: marquer le compte comme sensible | ||||||
|  |         silence: limiter le compte | ||||||
|  |         suspend: suspendre le compte | ||||||
|  |       body: "%{target} fait appel de la décision de modération émise par %{action_taken_by} le %{date} et qui était : %{type}. Cette personne a écrit :" | ||||||
|  |       next_steps: Vous pouvez approuver l'appel pour annuler la décision de modération, ou l'ignorer. | ||||||
|  |       subject: "%{username} fait appel d'une décision de modération sur %{instance}" | ||||||
|     new_pending_account: |     new_pending_account: | ||||||
|       body: Les détails du nouveau compte se trouvent ci-dessous. Vous pouvez approuver ou rejeter cette demande. |       body: Les détails du nouveau compte se trouvent ci-dessous. Vous pouvez approuver ou rejeter cette demande. | ||||||
|       subject: Nouveau compte à examiner sur %{instance} (%{username}) |       subject: Nouveau compte à examiner sur %{instance} (%{username}) | ||||||
| @ -928,6 +976,31 @@ fr: | |||||||
|     directory: Annuaire des profils |     directory: Annuaire des profils | ||||||
|     explanation: Découvrir des utilisateur·rice·s en fonction de leurs centres d’intérêt |     explanation: Découvrir des utilisateur·rice·s en fonction de leurs centres d’intérêt | ||||||
|     explore_mastodon: Explorer %{title} |     explore_mastodon: Explorer %{title} | ||||||
|  |   disputes: | ||||||
|  |     strikes: | ||||||
|  |       action_taken: Mesure prise | ||||||
|  |       appeal_approved: Cette sanction a été annulée en appel et n'est plus valide | ||||||
|  |       appeal_rejected: L'appel a été rejeté | ||||||
|  |       appeal_submitted_at: Appel soumis le | ||||||
|  |       appealed_msg: Votre demande d'appel a été soumise. Si elle est approuvée, vous en serez informé·e. | ||||||
|  |       appeals: | ||||||
|  |         submit: Faire appel | ||||||
|  |       associated_report: Rapport associé | ||||||
|  |       created_at: En date du | ||||||
|  |       recipient: Adressé à | ||||||
|  |       status: 'Message #%{id}' | ||||||
|  |       status_removed: Message déjà supprimé du système | ||||||
|  |       title: "%{action} du %{date}" | ||||||
|  |       title_actions: | ||||||
|  |         delete_statuses: Suppression de message | ||||||
|  |         disable: Suspension de compte | ||||||
|  |         none: Avertissement | ||||||
|  |         sensitive: Marquage d'un compte comme sensible | ||||||
|  |         silence: Limitation du compte | ||||||
|  |         suspend: Suspension de compte | ||||||
|  |       your_appeal_approved: Votre appel a été approuvé | ||||||
|  |       your_appeal_pending: Vous avez soumis un appel | ||||||
|  |       your_appeal_rejected: Votre appel a été rejeté | ||||||
|   domain_validator: |   domain_validator: | ||||||
|     invalid_domain: n’est pas un nom de domaine valide |     invalid_domain: n’est pas un nom de domaine valide | ||||||
|   errors: |   errors: | ||||||
| @ -1222,6 +1295,9 @@ fr: | |||||||
|     reply: |     reply: | ||||||
|       proceed: Confirmer la réponse |       proceed: Confirmer la réponse | ||||||
|       prompt: 'Vous souhaitez répondre à ce message :' |       prompt: 'Vous souhaitez répondre à ce message :' | ||||||
|  |   reports: | ||||||
|  |     errors: | ||||||
|  |       invalid_rules: ne fait pas référence à des règles valides | ||||||
|   scheduled_statuses: |   scheduled_statuses: | ||||||
|     over_daily_limit: Vous avez dépassé la limite de %{limit} messages planifiés par jour |     over_daily_limit: Vous avez dépassé la limite de %{limit} messages planifiés par jour | ||||||
|     over_total_limit: Vous avez dépassé la limite de %{limit} messages planifiés |     over_total_limit: Vous avez dépassé la limite de %{limit} messages planifiés | ||||||
| @ -1488,6 +1564,15 @@ fr: | |||||||
|     recovery_instructions_html: Si vous perdez l’accès à votre téléphone, vous pouvez utiliser un des codes de récupération ci-dessous pour retrouver l’accès à votre compte. <strong>Conservez les codes de récupération en sécurité</strong>. Par exemple, en les imprimant et en les stockant avec vos autres documents importants. |     recovery_instructions_html: Si vous perdez l’accès à votre téléphone, vous pouvez utiliser un des codes de récupération ci-dessous pour retrouver l’accès à votre compte. <strong>Conservez les codes de récupération en sécurité</strong>. Par exemple, en les imprimant et en les stockant avec vos autres documents importants. | ||||||
|     webauthn: Clés de sécurité |     webauthn: Clés de sécurité | ||||||
|   user_mailer: |   user_mailer: | ||||||
|  |     appeal_approved: | ||||||
|  |       action: Aller à votre compte | ||||||
|  |       explanation: L'appel de la sanction contre votre compte mise en place le %{strike_date} que vous avez soumis le %{appeal_date} a été approuvé. Votre compte est de nouveau en règle. | ||||||
|  |       subject: Votre appel du %{date} a été approuvé | ||||||
|  |       title: Appel approuvé | ||||||
|  |     appeal_rejected: | ||||||
|  |       explanation: L'appel de la sanction contre votre compte mise en place le %{strike_date} que vous avez soumis le %{appeal_date} a été rejeté. | ||||||
|  |       subject: Votre appel du %{date} a été rejeté | ||||||
|  |       title: Appel rejeté | ||||||
|     backup_ready: |     backup_ready: | ||||||
|       explanation: Vous avez demandé une sauvegarde complète de votre compte Mastodon. Elle est maintenant prête à être téléchargée ! |       explanation: Vous avez demandé une sauvegarde complète de votre compte Mastodon. Elle est maintenant prête à être téléchargée ! | ||||||
|       subject: Votre archive est prête à être téléchargée |       subject: Votre archive est prête à être téléchargée | ||||||
| @ -1499,6 +1584,8 @@ fr: | |||||||
|       subject: Veuillez confirmer la tentative de connexion |       subject: Veuillez confirmer la tentative de connexion | ||||||
|       title: Tentative de connexion |       title: Tentative de connexion | ||||||
|     warning: |     warning: | ||||||
|  |       appeal: Faire appel | ||||||
|  |       appeal_description: Si vous pensez qu'il s'agit d'une erreur, vous pouvez faire appel auprès de l'équipe de %{instance}. | ||||||
|       categories: |       categories: | ||||||
|         spam: Indésirable |         spam: Indésirable | ||||||
|         violation: Le contenu viole les directives de la communauté suivantes |         violation: Le contenu viole les directives de la communauté suivantes | ||||||
|  | |||||||
| @ -120,6 +120,10 @@ he: | |||||||
|       reject_media: חסימת קבצי מדיה |       reject_media: חסימת קבצי מדיה | ||||||
|       reject_media_hint: מסירה קבצי מדיה השמורים מקומית ומונעת מהורדת קבצים נוספים בעתיד. לא רלוונטי להשעיות |       reject_media_hint: מסירה קבצי מדיה השמורים מקומית ומונעת מהורדת קבצים נוספים בעתיד. לא רלוונטי להשעיות | ||||||
|       show: |       show: | ||||||
|  |         affected_accounts: | ||||||
|  |           one: חשבון אחד במסד נתונים מושפע | ||||||
|  |           other: "%{count} חשבונות במסד נתונים מושפעים" | ||||||
|  |           zero: אף חשבון במסד נתונים מושפע | ||||||
|         retroactive: |         retroactive: | ||||||
|           silence: הסרת השתקה מכל החשבונות על שרת זה |           silence: הסרת השתקה מכל החשבונות על שרת זה | ||||||
|           suspend: הסרת השעייה מכל החשבונות על שרת זה |           suspend: הסרת השעייה מכל החשבונות על שרת זה | ||||||
| @ -175,6 +179,17 @@ he: | |||||||
|         remove_from_report: הסרה מהדיווח |         remove_from_report: הסרה מהדיווח | ||||||
|         report: דווח |         report: דווח | ||||||
|     title: ניהול |     title: ניהול | ||||||
|  |     trends: | ||||||
|  |       links: | ||||||
|  |         shared_by_over_week: | ||||||
|  |           one: שותף ע"י משתמש\ת אחד\ת בשבוע האחרון | ||||||
|  |           other: שותף ע"י %{count} משתמשים בשבוע האחרון | ||||||
|  |           zero: לא שותף בכלל בשבוע האחרון | ||||||
|  |       tags: | ||||||
|  |         used_by_over_week: | ||||||
|  |           one: היה בשימוש משתמש\ת אחד\ת בשבוע האחרון | ||||||
|  |           other: היה בשימוש ע"י %{count} משתמשים בשבוע האחרון | ||||||
|  |           zero: לא היה בשימוש בכלל בשבוע האחרון | ||||||
|   application_mailer: |   application_mailer: | ||||||
|     settings: 'שינוי הגדרות דוא"ל: %{link}' |     settings: 'שינוי הגדרות דוא"ל: %{link}' | ||||||
|     view: 'תצוגה:' |     view: 'תצוגה:' | ||||||
|  | |||||||
| @ -786,6 +786,10 @@ id: | |||||||
|         trending_rank: 'Sedang tren #%{rank}' |         trending_rank: 'Sedang tren #%{rank}' | ||||||
|         usable: Dapat digunakan |         usable: Dapat digunakan | ||||||
|         usage_comparison: Digunakan %{today} kali hari ini, dibandingkan %{yesterday} kemarin |         usage_comparison: Digunakan %{today} kali hari ini, dibandingkan %{yesterday} kemarin | ||||||
|  |         used_by_over_week: | ||||||
|  |           one: Dipakai oleh satu orang lebih dari seminggu lalu | ||||||
|  |           other: Dipakai oleh %{count} orang selama seminggu terakhir | ||||||
|  |           zero: Tidak dipakai siapapun lebih dari seminggu lalu | ||||||
|       title: Tren |       title: Tren | ||||||
|     warning_presets: |     warning_presets: | ||||||
|       add_new: Tambah baru |       add_new: Tambah baru | ||||||
| @ -980,6 +984,12 @@ id: | |||||||
|         delete_statuses: Penghapusan kiriman |         delete_statuses: Penghapusan kiriman | ||||||
|         disable: Pembekuan akun |         disable: Pembekuan akun | ||||||
|         none: Peringatan |         none: Peringatan | ||||||
|  |         sensitive: Tandai akun sebagai sensitif | ||||||
|  |         silence: Pembatasan akun | ||||||
|  |         suspend: Penangguhan akun | ||||||
|  |       your_appeal_approved: Banding Anda disetujui | ||||||
|  |       your_appeal_pending: Anda telah mengirim banding | ||||||
|  |       your_appeal_rejected: Banding Anda ditolak | ||||||
|   domain_validator: |   domain_validator: | ||||||
|     invalid_domain: bukan nama domain yang valid |     invalid_domain: bukan nama domain yang valid | ||||||
|   errors: |   errors: | ||||||
| @ -1533,6 +1543,15 @@ id: | |||||||
|     recovery_instructions_html: Jika anda kehilangan akses pada handphone anda, anda bisa menggunakan kode pemulihan dibawah ini untuk mendapatkan kembali akses pada akun anda. Simpan kode pemulihan anda baik-baik, misalnya dengan mencetaknya atau menyimpannya bersama dokumen penting lainnya. |     recovery_instructions_html: Jika anda kehilangan akses pada handphone anda, anda bisa menggunakan kode pemulihan dibawah ini untuk mendapatkan kembali akses pada akun anda. Simpan kode pemulihan anda baik-baik, misalnya dengan mencetaknya atau menyimpannya bersama dokumen penting lainnya. | ||||||
|     webauthn: Kunci keamanan |     webauthn: Kunci keamanan | ||||||
|   user_mailer: |   user_mailer: | ||||||
|  |     appeal_approved: | ||||||
|  |       action: Ke akun Anda | ||||||
|  |       explanation: Banding peringatan terhadap akun Anda pada %{strike_date} yang Anda kirim pada %{appeal_date} telah disetujui. Akun Anda akan kembali ditandai sebagai akun bagus. | ||||||
|  |       subject: Banding Anda dari %{date} telah disetujui | ||||||
|  |       title: Banding disetujui | ||||||
|  |     appeal_rejected: | ||||||
|  |       explanation: Banding terhadap akun Anda pada %{strike_date} yang Anda ajukan %{appeal_date} telah ditolak. | ||||||
|  |       subject: Banding Anda dari %{date} telah ditolak | ||||||
|  |       title: Banding ditolak | ||||||
|     backup_ready: |     backup_ready: | ||||||
|       explanation: Cadangan penuh akun Mastodon Anda sudah dapat diunduh! |       explanation: Cadangan penuh akun Mastodon Anda sudah dapat diunduh! | ||||||
|       subject: Arsip Anda sudah siap diunduh |       subject: Arsip Anda sudah siap diunduh | ||||||
| @ -1544,6 +1563,8 @@ id: | |||||||
|       subject: Harap konfirmasi usaha masuk akun |       subject: Harap konfirmasi usaha masuk akun | ||||||
|       title: Usaha masuk akun |       title: Usaha masuk akun | ||||||
|     warning: |     warning: | ||||||
|  |       appeal: Ajukan banding | ||||||
|  |       appeal_description: Jika Anda yakin ini galat, Anda dapat mengajukan banding ke staf %{instance}. | ||||||
|       categories: |       categories: | ||||||
|         spam: Spam |         spam: Spam | ||||||
|         violation: Konten melanggar panduan komunitas berikut |         violation: Konten melanggar panduan komunitas berikut | ||||||
|  | |||||||
| @ -198,6 +198,7 @@ ja: | |||||||
|       silenced: サイレンス済み |       silenced: サイレンス済み | ||||||
|       statuses: 投稿数 |       statuses: 投稿数 | ||||||
|       subscribe: 購読する |       subscribe: 購読する | ||||||
|  |       suspend: サスペンド | ||||||
|       suspended: 停止済み |       suspended: 停止済み | ||||||
|       suspension_irreversible: このアカウントのデータは削除され元に戻せなくなります。後日アカウントの凍結を解除することはできますがデータは元に戻せません。 |       suspension_irreversible: このアカウントのデータは削除され元に戻せなくなります。後日アカウントの凍結を解除することはできますがデータは元に戻せません。 | ||||||
|       suspension_reversible_hint_html: アカウントは停止されており、データは %{date} に完全に削除されます。それまではアカウントを元に戻すことができます。今すぐ完全に削除したい場合は以下から行うことができます。 |       suspension_reversible_hint_html: アカウントは停止されており、データは %{date} に完全に削除されます。それまではアカウントを元に戻すことができます。今すぐ完全に削除したい場合は以下から行うことができます。 | ||||||
| @ -218,6 +219,7 @@ ja: | |||||||
|       whitelisted: 連合許可済み |       whitelisted: 連合許可済み | ||||||
|     action_logs: |     action_logs: | ||||||
|       action_types: |       action_types: | ||||||
|  |         approve_appeal: 抗議を承認 | ||||||
|         approve_user: ユーザーの承認 |         approve_user: ユーザーの承認 | ||||||
|         assigned_to_self_report: 通報の担当者に設定 |         assigned_to_self_report: 通報の担当者に設定 | ||||||
|         change_email_user: ユーザーのメールアドレスを変更 |         change_email_user: ユーザーのメールアドレスを変更 | ||||||
| @ -249,6 +251,7 @@ ja: | |||||||
|         enable_user: ユーザーを有効化 |         enable_user: ユーザーを有効化 | ||||||
|         memorialize_account: 追悼アカウント化 |         memorialize_account: 追悼アカウント化 | ||||||
|         promote_user: ユーザーを昇格 |         promote_user: ユーザーを昇格 | ||||||
|  |         reject_appeal: 抗議を却下 | ||||||
|         reject_user: ユーザーを拒否 |         reject_user: ユーザーを拒否 | ||||||
|         remove_avatar_user: アイコンを削除 |         remove_avatar_user: アイコンを削除 | ||||||
|         reopen_report: 未解決に戻す |         reopen_report: 未解決に戻す | ||||||
| @ -267,6 +270,7 @@ ja: | |||||||
|         update_domain_block: ドメインブロックを更新 |         update_domain_block: ドメインブロックを更新 | ||||||
|         update_status: 投稿を更新 |         update_status: 投稿を更新 | ||||||
|       actions: |       actions: | ||||||
|  |         approve_appeal_html: "%{name} さんが %{target} からの抗議を承認しました" | ||||||
|         approve_user_html: "%{target} から登録された %{name} さんを承認しました" |         approve_user_html: "%{target} から登録された %{name} さんを承認しました" | ||||||
|         assigned_to_self_report_html: "%{name} さんが通報 %{target} を自身の担当に割り当てました" |         assigned_to_self_report_html: "%{name} さんが通報 %{target} を自身の担当に割り当てました" | ||||||
|         change_email_user_html: "%{name} さんが %{target} さんのメールアドレスを変更しました" |         change_email_user_html: "%{name} さんが %{target} さんのメールアドレスを変更しました" | ||||||
| @ -298,6 +302,7 @@ ja: | |||||||
|         enable_user_html: "%{name} さんが %{target} さんのログインを有効化しました" |         enable_user_html: "%{name} さんが %{target} さんのログインを有効化しました" | ||||||
|         memorialize_account_html: "%{name} さんが %{target} さんを追悼アカウントページに登録しました" |         memorialize_account_html: "%{name} さんが %{target} さんを追悼アカウントページに登録しました" | ||||||
|         promote_user_html: "%{name} さんが %{target} さんを昇格しました" |         promote_user_html: "%{name} さんが %{target} さんを昇格しました" | ||||||
|  |         reject_appeal_html: "%{name} さんが %{target} からの抗議を却下しました" | ||||||
|         reject_user_html: "%{target} から登録された %{name} さんを拒否しました" |         reject_user_html: "%{target} から登録された %{name} さんを拒否しました" | ||||||
|         remove_avatar_user_html: "%{name} さんが %{target} さんのアイコンを削除しました" |         remove_avatar_user_html: "%{name} さんが %{target} さんのアイコンを削除しました" | ||||||
|         reopen_report_html: "%{name} さんが通報 %{target} を未解決に戻しました" |         reopen_report_html: "%{name} さんが通報 %{target} を未解決に戻しました" | ||||||
| @ -376,6 +381,14 @@ ja: | |||||||
|       media_storage: メディアストレージ |       media_storage: メディアストレージ | ||||||
|       new_users: 新規ユーザー |       new_users: 新規ユーザー | ||||||
|       opened_reports: 新規通報 |       opened_reports: 新規通報 | ||||||
|  |       pending_appeals_html: | ||||||
|  |         other: 保留中の抗議 <strong>%{count}</strong> 件 | ||||||
|  |       pending_reports_html: | ||||||
|  |         other: 保留中の通報 <strong>%{count}</strong> 件 | ||||||
|  |       pending_tags_html: | ||||||
|  |         other: 保留中のハッシュタグ <strong>%{count}</strong> 件 | ||||||
|  |       pending_users_html: | ||||||
|  |         other: 保留中のユーザー <strong>%{count}</strong> 件 | ||||||
|       resolved_reports: 解決済みの通報 |       resolved_reports: 解決済みの通報 | ||||||
|       software: ソフトウェア |       software: ソフトウェア | ||||||
|       sources: サインアップソース |       sources: サインアップソース | ||||||
| @ -384,6 +397,10 @@ ja: | |||||||
|       top_languages: トップのアクティブ言語 |       top_languages: トップのアクティブ言語 | ||||||
|       top_servers: トップアクティブサーバー |       top_servers: トップアクティブサーバー | ||||||
|       website: ウェブサイト |       website: ウェブサイト | ||||||
|  |     disputes: | ||||||
|  |       appeals: | ||||||
|  |         empty: 抗議はありません。 | ||||||
|  |         title: 抗議 | ||||||
|     domain_allows: |     domain_allows: | ||||||
|       add_new: 連合を許可 |       add_new: 連合を許可 | ||||||
|       created_msg: 連合を許可しました |       created_msg: 連合を許可しました | ||||||
| @ -893,6 +910,9 @@ ja: | |||||||
|     directory: ディレクトリ |     directory: ディレクトリ | ||||||
|     explanation: 関心を軸にユーザーを発見しよう |     explanation: 関心を軸にユーザーを発見しよう | ||||||
|     explore_mastodon: "%{title}を探索" |     explore_mastodon: "%{title}を探索" | ||||||
|  |   disputes: | ||||||
|  |     strikes: | ||||||
|  |       appeal: 抗議 | ||||||
|   domain_validator: |   domain_validator: | ||||||
|     invalid_domain: は無効なドメイン名です |     invalid_domain: は無効なドメイン名です | ||||||
|   errors: |   errors: | ||||||
| @ -1300,8 +1320,8 @@ ja: | |||||||
|     enabled_hint: 設定した期間を過ぎた投稿は、以下の例外に該当しない限り、自動的に削除されます |     enabled_hint: 設定した期間を過ぎた投稿は、以下の例外に該当しない限り、自動的に削除されます | ||||||
|     exceptions: 例外 |     exceptions: 例外 | ||||||
|     explanation: 投稿の削除はサーバーに負荷がかかるため、サーバーが混み合っていないときに時間をかけて行われます。 |     explanation: 投稿の削除はサーバーに負荷がかかるため、サーバーが混み合っていないときに時間をかけて行われます。 | ||||||
|     ignore_favs: お気に入りされた数を無視 |     ignore_favs: 設定しない | ||||||
|     ignore_reblogs: ブーストされた数を無視 |     ignore_reblogs: 設定しない | ||||||
|     interaction_exceptions: インタラクションに基づく例外 |     interaction_exceptions: インタラクションに基づく例外 | ||||||
|     interaction_exceptions_explanation: お気に入りやブーストの基準値を一度超えてしまった投稿は、基準値を下回った後であっても、削除される保証はありません。 |     interaction_exceptions_explanation: お気に入りやブーストの基準値を一度超えてしまった投稿は、基準値を下回った後であっても、削除される保証はありません。 | ||||||
|     keep_direct: ダイレクトメッセージを保持 |     keep_direct: ダイレクトメッセージを保持 | ||||||
| @ -1325,10 +1345,10 @@ ja: | |||||||
|       '63113904': 2年 |       '63113904': 2年 | ||||||
|       '7889238': 3ヶ月 |       '7889238': 3ヶ月 | ||||||
|     min_age_label: 投稿を保持する期間 |     min_age_label: 投稿を保持する期間 | ||||||
|     min_favs: これ以上お気に入りに登録された投稿を無視する |     min_favs: お気に入りの基準値 | ||||||
|     min_favs_hint: この数以上、お気に入りに登録された投稿を削除しません。空白にしておくと、お気に入りに登録された数に関わらず投稿を削除します。 |     min_favs_hint: この数以上、お気に入りされた投稿を削除せずに残します。空白にしておくと、お気に入りに登録された数に関わらず投稿を削除します。 | ||||||
|     min_reblogs: これ以上ブーストされた投稿を無視する |     min_reblogs: ブーストの基準値 | ||||||
|     min_reblogs_hint: この数以上、ブーストされた投稿を削除しません。空白にしておくと、ブーストされた数に関わらず投稿を削除します。 |     min_reblogs_hint: この数以上、ブーストされた投稿を削除せずに残します。空白にしておくと、ブーストされた数に関わらず投稿を削除します。 | ||||||
|   stream_entries: |   stream_entries: | ||||||
|     pinned: 固定された投稿 |     pinned: 固定された投稿 | ||||||
|     reblogged: さんがブースト |     reblogged: さんがブースト | ||||||
|  | |||||||
| @ -929,7 +929,12 @@ ru: | |||||||
|     explore_mastodon: Изучайте %{title} |     explore_mastodon: Изучайте %{title} | ||||||
|   disputes: |   disputes: | ||||||
|     strikes: |     strikes: | ||||||
|  |       action_taken: Предпринятые меры | ||||||
|       appeal_approved: Это замечание было успешно обжаловано и более не действительно |       appeal_approved: Это замечание было успешно обжаловано и более не действительно | ||||||
|  |       appeals: | ||||||
|  |         submit: Подать обжалование | ||||||
|  |       created_at: Дата | ||||||
|  |       recipient: Адресовано | ||||||
|       status: 'Пост #%{id}' |       status: 'Пост #%{id}' | ||||||
|       title: "%{action} от %{date}" |       title: "%{action} от %{date}" | ||||||
|       your_appeal_approved: Ваша апелляция одобрена |       your_appeal_approved: Ваша апелляция одобрена | ||||||
| @ -1293,7 +1298,7 @@ ru: | |||||||
|     authorized_apps: Приложения |     authorized_apps: Приложения | ||||||
|     back: Назад в Mastodon |     back: Назад в Mastodon | ||||||
|     delete: Удаление учётной записи |     delete: Удаление учётной записи | ||||||
|     development: Разработка |     development: Разработчикам | ||||||
|     edit_profile: Изменить профиль |     edit_profile: Изменить профиль | ||||||
|     export: Экспорт данных |     export: Экспорт данных | ||||||
|     featured_tags: Особенные хэштеги |     featured_tags: Особенные хэштеги | ||||||
| @ -1514,6 +1519,7 @@ ru: | |||||||
|     webauthn: Ключи безопасности |     webauthn: Ключи безопасности | ||||||
|   user_mailer: |   user_mailer: | ||||||
|     appeal_approved: |     appeal_approved: | ||||||
|  |       action: Перейти к своему профилю | ||||||
|       subject: Ваша апелляция от %{date} была одобрена |       subject: Ваша апелляция от %{date} была одобрена | ||||||
|       title: Апелляция одобрена |       title: Апелляция одобрена | ||||||
|     appeal_rejected: |     appeal_rejected: | ||||||
|  | |||||||
| @ -77,16 +77,35 @@ fi: | |||||||
|       ip_block: |       ip_block: | ||||||
|         comment: Valinnainen. Muista miksi lisäsit tämän säännön. |         comment: Valinnainen. Muista miksi lisäsit tämän säännön. | ||||||
|         expires_in: IP-osoitteet ovat rajallinen resurssi, joskus niitä jaetaan ja vaihtavat usein omistajaa. Tästä syystä epämääräisiä IP-lohkoja ei suositella. |         expires_in: IP-osoitteet ovat rajallinen resurssi, joskus niitä jaetaan ja vaihtavat usein omistajaa. Tästä syystä epämääräisiä IP-lohkoja ei suositella. | ||||||
|  |         ip: Kirjoita IPv4- tai IPv6-osoite. Voit estää kokonaisia alueita käyttämällä CIDR-syntaksia. Varo, että et lukitse itseäsi! | ||||||
|  |         severities: | ||||||
|  |           no_access: Estä pääsy kaikkiin resursseihin | ||||||
|  |           sign_up_requires_approval: Uudet rekisteröitymiset edellyttävät hyväksyntääsi | ||||||
|  |         severity: Valitse, mitä tapahtuu tämän IP-osoitteen pyynnöille | ||||||
|  |       rule: | ||||||
|  |         text: Kuvaile sääntöä tai vaatimusta tämän palvelimen käyttäjille. Yritä pitää se lyhyenä ja yksinkertaisena | ||||||
|       sessions: |       sessions: | ||||||
|         otp: Syötä puhelimeen saamasi kaksivaiheisen tunnistautumisen koodi tai käytä palautuskoodia. |         otp: Syötä puhelimeen saamasi kaksivaiheisen tunnistautumisen koodi tai käytä palautuskoodia. | ||||||
|  |         webauthn: Jos kyseessä on USB-avain, muista laittaa se paikalleen ja tarvittaessa napauttaa sitä. | ||||||
|  |       tag: | ||||||
|  |         name: Voit muuttaa esimerkiksi kirjaimia paremmin luettavaksi | ||||||
|  |       user: | ||||||
|  |         chosen_languages: Kun valittu, vain valituilla kielillä julkaistut viestit näkyvät julkisilla aikajanoilla | ||||||
|     labels: |     labels: | ||||||
|       account: |       account: | ||||||
|         fields: |         fields: | ||||||
|           name: Nimike |           name: Nimike | ||||||
|           value: Sisältö |           value: Sisältö | ||||||
|  |       account_alias: | ||||||
|  |         acct: Vanhan tilin käsittely | ||||||
|  |       account_migration: | ||||||
|  |         acct: Uuden tilin käsittely | ||||||
|       account_warning_preset: |       account_warning_preset: | ||||||
|  |         text: Esiasetettu teksti | ||||||
|         title: Otsikko |         title: Otsikko | ||||||
|       admin_account_action: |       admin_account_action: | ||||||
|  |         include_statuses: Sisällytä raportoidut viestit sähköpostiin | ||||||
|  |         send_email_notification: Ilmoita käyttäjälle sähköpostitse | ||||||
|         text: Mukautettu varoitus |         text: Mukautettu varoitus | ||||||
|         type: Toimenpide |         type: Toimenpide | ||||||
|         types: |         types: | ||||||
| @ -99,8 +118,11 @@ fi: | |||||||
|       announcement: |       announcement: | ||||||
|         all_day: Koko päivän kestävä tapahtuma |         all_day: Koko päivän kestävä tapahtuma | ||||||
|         ends_at: Tapahtuman loppu |         ends_at: Tapahtuman loppu | ||||||
|  |         scheduled_at: Ajasta julkaisu | ||||||
|         starts_at: Tapahtuman alku |         starts_at: Tapahtuman alku | ||||||
|         text: Ilmoitus |         text: Ilmoitus | ||||||
|  |       appeal: | ||||||
|  |         text: Perustele, miksi tämä päätös olisi kumottava | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: Kutsu seuraamaan tiliäsi |         autofollow: Kutsu seuraamaan tiliäsi | ||||||
|         avatar: Profiilikuva |         avatar: Profiilikuva | ||||||
| @ -117,6 +139,9 @@ fi: | |||||||
|         expires_in: Vanhenee |         expires_in: Vanhenee | ||||||
|         fields: Profiilin metadata |         fields: Profiilin metadata | ||||||
|         header: Otsakekuva |         header: Otsakekuva | ||||||
|  |         honeypot: "%{label} (älä täytä)" | ||||||
|  |         inbox_url: Välityspostilaatikon URL-osoite | ||||||
|  |         irreversible: Pudota piilottamisen sijaan | ||||||
|         locale: Kieli |         locale: Kieli | ||||||
|         locked: Lukitse tili |         locked: Lukitse tili | ||||||
|         max_uses: Käyttökertoja enintään |         max_uses: Käyttökertoja enintään | ||||||
| @ -134,10 +159,12 @@ fi: | |||||||
|         setting_default_privacy: Julkaisun näkyvyys |         setting_default_privacy: Julkaisun näkyvyys | ||||||
|         setting_default_sensitive: Merkitse media aina arkaluontoiseksi |         setting_default_sensitive: Merkitse media aina arkaluontoiseksi | ||||||
|         setting_delete_modal: Kysy vahvistusta ennen viestin poistamista |         setting_delete_modal: Kysy vahvistusta ennen viestin poistamista | ||||||
|  |         setting_disable_swiping: Poista pyyhkäisyt käytöstä | ||||||
|         setting_display_media: Median näyttäminen |         setting_display_media: Median näyttäminen | ||||||
|         setting_display_media_default: Oletus |         setting_display_media_default: Oletus | ||||||
|         setting_display_media_hide_all: Piilota kaikki |         setting_display_media_hide_all: Piilota kaikki | ||||||
|         setting_display_media_show_all: Näytä kaikki |         setting_display_media_show_all: Näytä kaikki | ||||||
|  |         setting_expand_spoilers: Laajenna aina sisältövaroituksilla merkityt viestit | ||||||
|         setting_hide_network: Piilota verkkosi |         setting_hide_network: Piilota verkkosi | ||||||
|         setting_noindex: Jättäydy pois hakukoneindeksoinnista |         setting_noindex: Jättäydy pois hakukoneindeksoinnista | ||||||
|         setting_reduce_motion: Vähennä animaatioiden liikettä |         setting_reduce_motion: Vähennä animaatioiden liikettä | ||||||
| @ -146,6 +173,7 @@ fi: | |||||||
|         setting_theme: Sivuston teema |         setting_theme: Sivuston teema | ||||||
|         setting_trends: Näytä päivän trendit |         setting_trends: Näytä päivän trendit | ||||||
|         setting_unfollow_modal: Kysy vahvistusta, ennen kuin lopetat seuraamisen |         setting_unfollow_modal: Kysy vahvistusta, ennen kuin lopetat seuraamisen | ||||||
|  |         setting_use_blurhash: Näytä värikkäät liukuvärit piilotetulle medialle | ||||||
|         setting_use_pending_items: Hidastila |         setting_use_pending_items: Hidastila | ||||||
|         severity: Vakavuus |         severity: Vakavuus | ||||||
|         sign_in_token_attempt: Turvakoodi |         sign_in_token_attempt: Turvakoodi | ||||||
| @ -166,12 +194,14 @@ fi: | |||||||
|       invite_request: |       invite_request: | ||||||
|         text: Miksi haluat liittyä? |         text: Miksi haluat liittyä? | ||||||
|       ip_block: |       ip_block: | ||||||
|  |         comment: Kommentti | ||||||
|         ip: IP |         ip: IP | ||||||
|         severities: |         severities: | ||||||
|           no_access: Estä pääsy |           no_access: Estä pääsy | ||||||
|           sign_up_requires_approval: Rajoita rekisteröitymisiä |           sign_up_requires_approval: Rajoita rekisteröitymisiä | ||||||
|         severity: Sääntö |         severity: Sääntö | ||||||
|       notification_emails: |       notification_emails: | ||||||
|  |         appeal: Joku valittaa valvojan päätöksestä | ||||||
|         digest: Lähetä koosteviestejä sähköpostitse |         digest: Lähetä koosteviestejä sähköpostitse | ||||||
|         favourite: Lähetä sähköposti, kun joku tykkää tilastasi |         favourite: Lähetä sähköposti, kun joku tykkää tilastasi | ||||||
|         follow: Lähetä sähköposti, kun joku seuraa sinua |         follow: Lähetä sähköposti, kun joku seuraa sinua | ||||||
| @ -179,14 +209,21 @@ fi: | |||||||
|         mention: Lähetä sähköposti, kun sinut mainitaan |         mention: Lähetä sähköposti, kun sinut mainitaan | ||||||
|         pending_account: Uusi tili tarvitsee tarkastusta |         pending_account: Uusi tili tarvitsee tarkastusta | ||||||
|         reblog: Lähetä sähköposti, kun joku buustaa julkaisusi |         reblog: Lähetä sähköposti, kun joku buustaa julkaisusi | ||||||
|  |         report: Uusi raportti on lähetetty | ||||||
|  |         trending_tag: Uusi trendi vaatii tarkastelua | ||||||
|       rule: |       rule: | ||||||
|         text: Sääntö |         text: Sääntö | ||||||
|       tag: |       tag: | ||||||
|  |         listable: Salli tämän hashtagin näkyä hauissa ja ehdotuksissa | ||||||
|         name: Aihetunniste |         name: Aihetunniste | ||||||
|         trendable: Salli tämän aihetunnisteen näkyä trendeissä |         trendable: Salli tämän aihetunnisteen näkyä trendeissä | ||||||
|         usable: Salli postauksien käyttää tätä aihetunnistetta |         usable: Salli postauksien käyttää tätä aihetunnistetta | ||||||
|     'no': Ei |     'no': Ei | ||||||
|     recommended: Suositeltu |     recommended: Suositeltu | ||||||
|     required: |     required: | ||||||
|  |       mark: "*" | ||||||
|       text: pakollinen tieto |       text: pakollinen tieto | ||||||
|  |     title: | ||||||
|  |       sessions: | ||||||
|  |         webauthn: Käytä jotakin suojausavainta kirjautuaksesi sisään | ||||||
|     'yes': Kyllä |     'yes': Kyllä | ||||||
|  | |||||||
| @ -27,6 +27,8 @@ fr: | |||||||
|         scheduled_at: Laisser vide pour publier l’annonce immédiatement |         scheduled_at: Laisser vide pour publier l’annonce immédiatement | ||||||
|         starts_at: Optionnel. Si votre annonce est liée à une période spécifique |         starts_at: Optionnel. Si votre annonce est liée à une période spécifique | ||||||
|         text: Vous pouvez utiliser la syntaxe des messages. Veuillez prendre en compte l’espace que l'annonce prendra sur l’écran de l'utilisateur·rice |         text: Vous pouvez utiliser la syntaxe des messages. Veuillez prendre en compte l’espace que l'annonce prendra sur l’écran de l'utilisateur·rice | ||||||
|  |       appeal: | ||||||
|  |         text: Vous ne pouvez faire appel d'une sanction qu'une seule fois | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: Les personnes qui s’inscrivent grâce à l’invitation vous suivront automatiquement |         autofollow: Les personnes qui s’inscrivent grâce à l’invitation vous suivront automatiquement | ||||||
|         avatar: Au format PNG, GIF ou JPG. %{size} maximum. Sera réduit à %{dimensions}px |         avatar: Au format PNG, GIF ou JPG. %{size} maximum. Sera réduit à %{dimensions}px | ||||||
| @ -119,6 +121,8 @@ fr: | |||||||
|         scheduled_at: Planifier la publication |         scheduled_at: Planifier la publication | ||||||
|         starts_at: Début de l’événement |         starts_at: Début de l’événement | ||||||
|         text: Annonce |         text: Annonce | ||||||
|  |       appeal: | ||||||
|  |         text: Expliquez pourquoi cette décision devrait être annulée | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: Invitation à suivre votre compte |         autofollow: Invitation à suivre votre compte | ||||||
|         avatar: Image de profil |         avatar: Image de profil | ||||||
| @ -197,6 +201,7 @@ fr: | |||||||
|           sign_up_requires_approval: Limite des inscriptions |           sign_up_requires_approval: Limite des inscriptions | ||||||
|         severity: Règle |         severity: Règle | ||||||
|       notification_emails: |       notification_emails: | ||||||
|  |         appeal: Une personne fait appel d'une décision des modérateur·rice·s | ||||||
|         digest: Envoyer des courriels récapitulatifs |         digest: Envoyer des courriels récapitulatifs | ||||||
|         favourite: Quelqu’un a ajouté mon message à ses favoris |         favourite: Quelqu’un a ajouté mon message à ses favoris | ||||||
|         follow: Quelqu’un vient de me suivre |         follow: Quelqu’un vient de me suivre | ||||||
| @ -204,6 +209,8 @@ fr: | |||||||
|         mention: Quelqu’un me mentionne |         mention: Quelqu’un me mentionne | ||||||
|         pending_account: Nouveau compte en attente d’approbation |         pending_account: Nouveau compte en attente d’approbation | ||||||
|         reblog: Quelqu’un a partagé mon message |         reblog: Quelqu’un a partagé mon message | ||||||
|  |         report: Nouveau signalement soumis | ||||||
|  |         trending_tag: Nouvelle tendance nécessitant supervision | ||||||
|       rule: |       rule: | ||||||
|         text: Règle |         text: Règle | ||||||
|       tag: |       tag: | ||||||
|  | |||||||
| @ -141,7 +141,7 @@ gl: | |||||||
|         header: Cabeceira |         header: Cabeceira | ||||||
|         honeypot: "%{label} (non completar)" |         honeypot: "%{label} (non completar)" | ||||||
|         inbox_url: URL da caixa de entrada do repetidor |         inbox_url: URL da caixa de entrada do repetidor | ||||||
|         irreversible: Soltar en lugar de agochar |         irreversible: Desbotar en lugar de agochar | ||||||
|         locale: Idioma da interface |         locale: Idioma da interface | ||||||
|         locked: Requerir aprobar seguimento |         locked: Requerir aprobar seguimento | ||||||
|         max_uses: Número máximo de usos |         max_uses: Número máximo de usos | ||||||
|  | |||||||
| @ -27,6 +27,8 @@ id: | |||||||
|         scheduled_at: Biarkan kosong jika ingin menerbitkan pengumuman secara langsung |         scheduled_at: Biarkan kosong jika ingin menerbitkan pengumuman secara langsung | ||||||
|         starts_at: Opsional. Persiapan jika pengumuman Anda terikat pada rentang waktu tertentu |         starts_at: Opsional. Persiapan jika pengumuman Anda terikat pada rentang waktu tertentu | ||||||
|         text: Anda dapat menggunakan sintaks toot. Mohon perhatikan ruang pengumuman yang mungkin akan memenuhi layar pengguna |         text: Anda dapat menggunakan sintaks toot. Mohon perhatikan ruang pengumuman yang mungkin akan memenuhi layar pengguna | ||||||
|  |       appeal: | ||||||
|  |         text: Anda hanya dapat mengajukan banding peringatan sekali | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: Orang yang ingin mendaftar lewat undangan, otomatis mengikuti Anda |         autofollow: Orang yang ingin mendaftar lewat undangan, otomatis mengikuti Anda | ||||||
|         avatar: PNG, GIF atau JPG. Maksimal %{size}. Ukuran dikecilkan menjadi %{dimensions}px |         avatar: PNG, GIF atau JPG. Maksimal %{size}. Ukuran dikecilkan menjadi %{dimensions}px | ||||||
| @ -119,6 +121,8 @@ id: | |||||||
|         scheduled_at: Jadwal publikasi |         scheduled_at: Jadwal publikasi | ||||||
|         starts_at: Awal mulai event |         starts_at: Awal mulai event | ||||||
|         text: Pengumuman |         text: Pengumuman | ||||||
|  |       appeal: | ||||||
|  |         text: Jelaskan mengapa keputusan ini perlu dibatalkan | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: Undang untuk mengikuti Anda |         autofollow: Undang untuk mengikuti Anda | ||||||
|         avatar: Avatar |         avatar: Avatar | ||||||
| @ -197,6 +201,7 @@ id: | |||||||
|           sign_up_requires_approval: Batasi pendaftaran |           sign_up_requires_approval: Batasi pendaftaran | ||||||
|         severity: Aturan |         severity: Aturan | ||||||
|       notification_emails: |       notification_emails: | ||||||
|  |         appeal: Seseorang mengajukan banding tehadap keputusan moderator | ||||||
|         digest: Kirim email berisi rangkuman |         digest: Kirim email berisi rangkuman | ||||||
|         favourite: Kirim email saat seseorang menyukai status anda |         favourite: Kirim email saat seseorang menyukai status anda | ||||||
|         follow: Kirim email saat seseorang mengikuti anda |         follow: Kirim email saat seseorang mengikuti anda | ||||||
| @ -204,6 +209,8 @@ id: | |||||||
|         mention: Kirim email saat seseorang menyebut anda |         mention: Kirim email saat seseorang menyebut anda | ||||||
|         pending_account: Kirim email ketika akun baru perlu ditinjau |         pending_account: Kirim email ketika akun baru perlu ditinjau | ||||||
|         reblog: Kirim email saat seseorang mem-boost status anda |         reblog: Kirim email saat seseorang mem-boost status anda | ||||||
|  |         report: Laporan baru dikirim | ||||||
|  |         trending_tag: Tren baru harus ditinjau | ||||||
|       rule: |       rule: | ||||||
|         text: Aturan |         text: Aturan | ||||||
|       tag: |       tag: | ||||||
|  | |||||||
| @ -27,6 +27,8 @@ ru: | |||||||
|         scheduled_at: Оставьте поля незаполненными, чтобы опубликовать объявление сразу |         scheduled_at: Оставьте поля незаполненными, чтобы опубликовать объявление сразу | ||||||
|         starts_at: Необязательно. На случай, если ваше объявление привязано к какому-то временному интервалу |         starts_at: Необязательно. На случай, если ваше объявление привязано к какому-то временному интервалу | ||||||
|         text: Вы можете использовать тот же синтаксис, что и в постах. Будьте предусмотрительны насчёт места, которое займёт объявление на экране пользователей |         text: Вы можете использовать тот же синтаксис, что и в постах. Будьте предусмотрительны насчёт места, которое займёт объявление на экране пользователей | ||||||
|  |       appeal: | ||||||
|  |         text: Вы можете обжаловать замечание только один раз | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: Люди, пришедшие по этому приглашению, автоматически будут подписаны на вас. |         autofollow: Люди, пришедшие по этому приглашению, автоматически будут подписаны на вас. | ||||||
|         avatar: Поддерживается PNG, GIF и JPG. Максимальный размер — %{size}. Будет уменьшен до %{dimensions}px. |         avatar: Поддерживается PNG, GIF и JPG. Максимальный размер — %{size}. Будет уменьшен до %{dimensions}px. | ||||||
|  | |||||||
| @ -27,6 +27,8 @@ th: | |||||||
|         scheduled_at: เว้นว่างไว้เพื่อเผยแพร่ประกาศทันที |         scheduled_at: เว้นว่างไว้เพื่อเผยแพร่ประกาศทันที | ||||||
|         starts_at: ไม่จำเป็น ในกรณีที่ประกาศของคุณผูกไว้กับช่วงเวลาที่เฉพาะเจาะจง |         starts_at: ไม่จำเป็น ในกรณีที่ประกาศของคุณผูกไว้กับช่วงเวลาที่เฉพาะเจาะจง | ||||||
|         text: คุณสามารถใช้ไวยากรณ์โพสต์ โปรดระวังพื้นที่ที่ประกาศจะใช้ในหน้าจอของผู้ใช้ |         text: คุณสามารถใช้ไวยากรณ์โพสต์ โปรดระวังพื้นที่ที่ประกาศจะใช้ในหน้าจอของผู้ใช้ | ||||||
|  |       appeal: | ||||||
|  |         text: คุณสามารถอุทธรณ์การลงโทษได้เพียงครั้งเดียวเท่านั้น | ||||||
|       defaults: |       defaults: | ||||||
|         autofollow: ผู้คนที่ลงทะเบียนผ่านคำเชิญจะติดตามคุณโดยอัตโนมัติ |         autofollow: ผู้คนที่ลงทะเบียนผ่านคำเชิญจะติดตามคุณโดยอัตโนมัติ | ||||||
|         avatar: PNG, GIF หรือ JPG สูงสุด %{size} จะถูกย่อขนาดเป็น %{dimensions}px |         avatar: PNG, GIF หรือ JPG สูงสุด %{size} จะถูกย่อขนาดเป็น %{dimensions}px | ||||||
|  | |||||||
| @ -150,6 +150,10 @@ th: | |||||||
|       not_subscribed: ไม่ได้บอกรับ |       not_subscribed: ไม่ได้บอกรับ | ||||||
|       pending: การตรวจทานที่รอดำเนินการ |       pending: การตรวจทานที่รอดำเนินการ | ||||||
|       perform_full_suspension: ระงับ |       perform_full_suspension: ระงับ | ||||||
|  |       previous_strikes: การลงโทษก่อนหน้านี้ | ||||||
|  |       previous_strikes_description_html: | ||||||
|  |         one: บัญชีนี้มี <strong>หนึ่ง</strong> การลงโทษ | ||||||
|  |         other: บัญชีนี้มี <strong>%{count}</strong> การลงโทษ | ||||||
|       promote: เลื่อนขั้น |       promote: เลื่อนขั้น | ||||||
|       protocol: โปรโตคอล |       protocol: โปรโตคอล | ||||||
|       public: สาธารณะ |       public: สาธารณะ | ||||||
| @ -190,6 +194,7 @@ th: | |||||||
|       silence: จำกัด |       silence: จำกัด | ||||||
|       silenced: จำกัดอยู่ |       silenced: จำกัดอยู่ | ||||||
|       statuses: โพสต์ |       statuses: โพสต์ | ||||||
|  |       strikes: การลงโทษก่อนหน้านี้ | ||||||
|       subscribe: บอกรับ |       subscribe: บอกรับ | ||||||
|       suspend: ระงับ |       suspend: ระงับ | ||||||
|       suspended: ระงับอยู่ |       suspended: ระงับอยู่ | ||||||
| @ -369,6 +374,14 @@ th: | |||||||
|       media_storage: ที่เก็บข้อมูลสื่อ |       media_storage: ที่เก็บข้อมูลสื่อ | ||||||
|       new_users: ผู้ใช้ใหม่ |       new_users: ผู้ใช้ใหม่ | ||||||
|       opened_reports: รายงานที่เปิด |       opened_reports: รายงานที่เปิด | ||||||
|  |       pending_appeals_html: | ||||||
|  |         other: "<strong>%{count}</strong> การอุทธรณ์ที่รอดำเนินการ" | ||||||
|  |       pending_reports_html: | ||||||
|  |         other: "<strong>%{count}</strong> รายงานที่รอดำเนินการ" | ||||||
|  |       pending_tags_html: | ||||||
|  |         other: "<strong>%{count}</strong> แฮชแท็กที่รอดำเนินการ" | ||||||
|  |       pending_users_html: | ||||||
|  |         other: "<strong>%{count}</strong> ผู้ใช้ที่รอดำเนินการ" | ||||||
|       resolved_reports: รายงานที่แก้ปัญหาแล้ว |       resolved_reports: รายงานที่แก้ปัญหาแล้ว | ||||||
|       software: ซอฟต์แวร์ |       software: ซอฟต์แวร์ | ||||||
|       sources: แหล่งที่มาการลงทะเบียน |       sources: แหล่งที่มาการลงทะเบียน | ||||||
| @ -413,6 +426,10 @@ th: | |||||||
|         silence: จำกัดอยู่ |         silence: จำกัดอยู่ | ||||||
|         suspend: ระงับอยู่ |         suspend: ระงับอยู่ | ||||||
|       show: |       show: | ||||||
|  |         affected_accounts: | ||||||
|  |           one: หนึ่งบัญชีในฐานข้อมูลที่ได้รับผลกระทบ | ||||||
|  |           other: "%{count} บัญชีในฐานข้อมูลที่ได้รับผลกระทบ" | ||||||
|  |           zero: ไม่มีบัญชีในฐานข้อมูลที่ได้รับผลกระทบ | ||||||
|         retroactive: |         retroactive: | ||||||
|           silence: เลิกทำการจำกัดบัญชีที่มีผลที่มีอยู่จากโดเมนนี้ |           silence: เลิกทำการจำกัดบัญชีที่มีผลที่มีอยู่จากโดเมนนี้ | ||||||
|           suspend: เลิกระงับบัญชีที่มีผลที่มีอยู่จากโดเมนนี้ |           suspend: เลิกระงับบัญชีที่มีผลที่มีอยู่จากโดเมนนี้ | ||||||
| @ -457,6 +474,10 @@ th: | |||||||
|       delivery_available: มีการจัดส่ง |       delivery_available: มีการจัดส่ง | ||||||
|       delivery_error_days: วันที่มีข้อผิดพลาดการจัดส่ง |       delivery_error_days: วันที่มีข้อผิดพลาดการจัดส่ง | ||||||
|       empty: ไม่พบโดเมน |       empty: ไม่พบโดเมน | ||||||
|  |       known_accounts: | ||||||
|  |         one: "%{count} บัญชีที่รู้จัก" | ||||||
|  |         other: "%{count} บัญชีที่รู้จัก" | ||||||
|  |         zero: ไม่มีบัญชีที่รู้จัก | ||||||
|       moderation: |       moderation: | ||||||
|         all: ทั้งหมด |         all: ทั้งหมด | ||||||
|         limited: จำกัดอยู่ |         limited: จำกัดอยู่ | ||||||
| @ -518,6 +539,7 @@ th: | |||||||
|         notes: |         notes: | ||||||
|           other: "%{count} หมายเหตุ" |           other: "%{count} หมายเหตุ" | ||||||
|       action_log: รายการบันทึกการตรวจสอบ |       action_log: รายการบันทึกการตรวจสอบ | ||||||
|  |       action_taken_by: ใช้การกระทำโดย | ||||||
|       are_you_sure: คุณแน่ใจหรือไม่? |       are_you_sure: คุณแน่ใจหรือไม่? | ||||||
|       assign_to_self: มอบหมายให้ฉัน |       assign_to_self: มอบหมายให้ฉัน | ||||||
|       assigned: ผู้ควบคุมที่ได้รับมอบหมาย |       assigned: ผู้ควบคุมที่ได้รับมอบหมาย | ||||||
| @ -691,6 +713,10 @@ th: | |||||||
|         allow_provider: อนุญาตผู้เผยแพร่ |         allow_provider: อนุญาตผู้เผยแพร่ | ||||||
|         disallow: ไม่อนุญาตลิงก์ |         disallow: ไม่อนุญาตลิงก์ | ||||||
|         disallow_provider: ไม่อนุญาตผู้เผยแพร่ |         disallow_provider: ไม่อนุญาตผู้เผยแพร่ | ||||||
|  |         shared_by_over_week: | ||||||
|  |           one: แบ่งปันโดยหนึ่งคนในช่วงสัปดาห์ที่ผ่านมา | ||||||
|  |           other: แบ่งปันโดย %{count} คนในช่วงสัปดาห์ที่ผ่านมา | ||||||
|  |           zero: ไม่มีใครแบ่งปันในช่วงสัปดาห์ที่ผ่านมา | ||||||
|         title: ลิงก์ที่กำลังนิยม |         title: ลิงก์ที่กำลังนิยม | ||||||
|         usage_comparison: แบ่งปัน %{today} ครั้งวันนี้ เทียบกับ %{yesterday} เมื่อวานนี้ |         usage_comparison: แบ่งปัน %{today} ครั้งวันนี้ เทียบกับ %{yesterday} เมื่อวานนี้ | ||||||
|       pending_review: การตรวจทานที่รอดำเนินการ |       pending_review: การตรวจทานที่รอดำเนินการ | ||||||
| @ -717,6 +743,10 @@ th: | |||||||
|         trending_rank: 'กำลังนิยม #%{rank}' |         trending_rank: 'กำลังนิยม #%{rank}' | ||||||
|         usable: สามารถใช้ |         usable: สามารถใช้ | ||||||
|         usage_comparison: ใช้ %{today} ครั้งวันนี้ เทียบกับ %{yesterday} เมื่อวานนี้ |         usage_comparison: ใช้ %{today} ครั้งวันนี้ เทียบกับ %{yesterday} เมื่อวานนี้ | ||||||
|  |         used_by_over_week: | ||||||
|  |           one: ใช้โดยหนึ่งคนในช่วงสัปดาห์ที่ผ่านมา | ||||||
|  |           other: ใช้โดย %{count} คนในช่วงสัปดาห์ที่ผ่านมา | ||||||
|  |           zero: ไม่มีใครใช้ในช่วงสัปดาห์ที่ผ่านมา | ||||||
|       title: แนวโน้ม |       title: แนวโน้ม | ||||||
|     warning_presets: |     warning_presets: | ||||||
|       add_new: เพิ่มใหม่ |       add_new: เพิ่มใหม่ | ||||||
| @ -878,10 +908,13 @@ th: | |||||||
|     explore_mastodon: สำรวจ %{title} |     explore_mastodon: สำรวจ %{title} | ||||||
|   disputes: |   disputes: | ||||||
|     strikes: |     strikes: | ||||||
|  |       action_taken: การกระทำที่ใช้ | ||||||
|       appeal_submitted_at: ส่งการอุทธรณ์แล้ว |       appeal_submitted_at: ส่งการอุทธรณ์แล้ว | ||||||
|       appeals: |       appeals: | ||||||
|         submit: ส่งการอุทธรณ์ |         submit: ส่งการอุทธรณ์ | ||||||
|       associated_report: รายงานที่เกี่ยวข้อง |       associated_report: รายงานที่เกี่ยวข้อง | ||||||
|  |       created_at: ลงวันที่ | ||||||
|  |       recipient: ส่งถึง | ||||||
|       status: 'โพสต์ #%{id}' |       status: 'โพสต์ #%{id}' | ||||||
|       title_actions: |       title_actions: | ||||||
|         delete_statuses: การเอาโพสต์ออก |         delete_statuses: การเอาโพสต์ออก | ||||||
| @ -1039,7 +1072,7 @@ th: | |||||||
|   move_handler: |   move_handler: | ||||||
|     carry_blocks_over_text: ผู้ใช้นี้ได้ย้ายจาก %{acct} ซึ่งคุณได้ปิดกั้น |     carry_blocks_over_text: ผู้ใช้นี้ได้ย้ายจาก %{acct} ซึ่งคุณได้ปิดกั้น | ||||||
|     carry_mutes_over_text: ผู้ใช้นี้ได้ย้ายจาก %{acct} ซึ่งคุณได้ซ่อน |     carry_mutes_over_text: ผู้ใช้นี้ได้ย้ายจาก %{acct} ซึ่งคุณได้ซ่อน | ||||||
|     copy_account_note_text: 'ผู้ใช้นี้ได้ย้ายจาก %{acct} นี่คือหมายเหตุก่อนหน้าของคุณเกี่ยวกับผู้ใช้:' |     copy_account_note_text: 'ผู้ใช้นี้ได้ย้ายจาก %{acct} นี่คือหมายเหตุก่อนหน้านี้ของคุณเกี่ยวกับผู้ใช้:' | ||||||
|   notification_mailer: |   notification_mailer: | ||||||
|     digest: |     digest: | ||||||
|       action: ดูการแจ้งเตือนทั้งหมด |       action: ดูการแจ้งเตือนทั้งหมด | ||||||
| @ -1292,7 +1325,7 @@ th: | |||||||
|     reblogged: ดันแล้ว |     reblogged: ดันแล้ว | ||||||
|     sensitive_content: เนื้อหาที่ละเอียดอ่อน |     sensitive_content: เนื้อหาที่ละเอียดอ่อน | ||||||
|   tags: |   tags: | ||||||
|     does_not_match_previous_name: ไม่ตรงกับชื่อก่อนหน้า |     does_not_match_previous_name: ไม่ตรงกับชื่อก่อนหน้านี้ | ||||||
|   terms: |   terms: | ||||||
|     title: เงื่อนไขการให้บริการและนโยบายความเป็นส่วนตัวของ %{instance} |     title: เงื่อนไขการให้บริการและนโยบายความเป็นส่วนตัวของ %{instance} | ||||||
|   themes: |   themes: | ||||||
|  | |||||||
| @ -15,7 +15,7 @@ class FixReblogsInFeeds < ActiveRecord::Migration[5.1] | |||||||
|     # feed, with an entry in a reblog tracking zset (where the score |     # feed, with an entry in a reblog tracking zset (where the score | ||||||
|     # is once again set to the reblogging status' ID, and the value |     # is once again set to the reblogging status' ID, and the value | ||||||
|     # is set to the reblogged status' ID). This is safe for Redis' |     # is set to the reblogged status' ID). This is safe for Redis' | ||||||
|     # float coersion because in this reblog tracking zset, we only |     # float conversion because in this reblog tracking zset, we only | ||||||
|     # need the rebloggging status' ID to be able to stop tracking |     # need the rebloggging status' ID to be able to stop tracking | ||||||
|     # entries after they have gotten too far down the feed, which |     # entries after they have gotten too far down the feed, which | ||||||
|     # does not require an exact value. |     # does not require an exact value. | ||||||
|  | |||||||
| @ -54,7 +54,7 @@ module Mastodon | |||||||
| 
 | 
 | ||||||
|       ActiveRecord::Base.connection.add_index(:media_attachments, :remote_url, name: :index_media_attachments_remote_url, where: 'remote_url is not null', algorithm: :concurrently, if_not_exists: true) |       ActiveRecord::Base.connection.add_index(:media_attachments, :remote_url, name: :index_media_attachments_remote_url, where: 'remote_url is not null', algorithm: :concurrently, if_not_exists: true) | ||||||
| 
 | 
 | ||||||
|       max_id   = Mastodon::Snowflake.id_at(options[:days].days.ago) |       max_id   = Mastodon::Snowflake.id_at(options[:days].days.ago, with_random: false) | ||||||
|       start_at = Time.now.to_f |       start_at = Time.now.to_f | ||||||
| 
 | 
 | ||||||
|       unless options[:continue] && ActiveRecord::Base.connection.table_exists?('statuses_to_be_deleted') |       unless options[:continue] && ActiveRecord::Base.connection.table_exists?('statuses_to_be_deleted') | ||||||
|  | |||||||
| @ -18,7 +18,7 @@ describe Settings::TwoFactorAuthentication::OtpAuthenticationController do | |||||||
|           user.update(otp_required_for_login: true) |           user.update(otp_required_for_login: true) | ||||||
|         end |         end | ||||||
| 
 | 
 | ||||||
|         it 'redirects to two factor authentciation methods list page' do |         it 'redirects to two factor authentication methods list page' do | ||||||
|           get :show |           get :show | ||||||
| 
 | 
 | ||||||
|           expect(response).to redirect_to settings_two_factor_authentication_methods_path |           expect(response).to redirect_to settings_two_factor_authentication_methods_path | ||||||
|  | |||||||
| @ -29,7 +29,7 @@ RSpec.describe Web::PushSubscription, type: :model do | |||||||
|       context "when notification is a #{type}" do |       context "when notification is a #{type}" do | ||||||
|         let(:notification_type) { type } |         let(:notification_type) { type } | ||||||
| 
 | 
 | ||||||
|         it "returns boolean corresonding to alert setting" do |         it "returns boolean corresponding to alert setting" do | ||||||
|           expect(subject.pushable?(notification)).to eq data[:alerts][type] |           expect(subject.pushable?(notification)).to eq data[:alerts][type] | ||||||
|         end |         end | ||||||
|       end |       end | ||||||
|  | |||||||
| @ -66,7 +66,7 @@ RSpec.describe BlockDomainService, type: :service do | |||||||
|       expect(Account.find_remote('badguy', 'evil.org').silenced_at).to_not eq DomainBlock.find_by(domain: 'evil.org').created_at |       expect(Account.find_remote('badguy', 'evil.org').silenced_at).to_not eq DomainBlock.find_by(domain: 'evil.org').created_at | ||||||
|     end |     end | ||||||
| 
 | 
 | ||||||
|     it 'leaves the domains status and attachements, but clears media' do |     it 'leaves the domains status and attachments, but clears media' do | ||||||
|       expect { bad_status1.reload }.not_to raise_error |       expect { bad_status1.reload }.not_to raise_error | ||||||
|       expect { bad_status2.reload }.not_to raise_error |       expect { bad_status2.reload }.not_to raise_error | ||||||
|       expect { bad_attachment.reload }.not_to raise_error |       expect { bad_attachment.reload }.not_to raise_error | ||||||
|  | |||||||
| @ -13,7 +13,7 @@ RSpec.describe ClearDomainMediaService, type: :service do | |||||||
|       subject.call(DomainBlock.create!(domain: 'evil.org', severity: :silence, reject_media: true)) |       subject.call(DomainBlock.create!(domain: 'evil.org', severity: :silence, reject_media: true)) | ||||||
|     end |     end | ||||||
| 
 | 
 | ||||||
|     it 'leaves the domains status and attachements, but clears media' do |     it 'leaves the domains status and attachments, but clears media' do | ||||||
|       expect { bad_status1.reload }.not_to raise_error |       expect { bad_status1.reload }.not_to raise_error | ||||||
|       expect { bad_status2.reload }.not_to raise_error |       expect { bad_status2.reload }.not_to raise_error | ||||||
|       expect { bad_attachment.reload }.not_to raise_error |       expect { bad_attachment.reload }.not_to raise_error | ||||||
|  | |||||||
| @ -90,7 +90,7 @@ RSpec.describe DeleteAccountService, type: :service do | |||||||
|       let!(:account) { Fabricate(:account, inbox_url: 'https://bob.com/inbox', protocol: :activitypub) } |       let!(:account) { Fabricate(:account, inbox_url: 'https://bob.com/inbox', protocol: :activitypub) } | ||||||
|       let!(:local_follower) { Fabricate(:account) } |       let!(:local_follower) { Fabricate(:account) } | ||||||
| 
 | 
 | ||||||
|       it 'sends a reject follow to follwer inboxes' do |       it 'sends a reject follow to follower inboxes' do | ||||||
|         subject.call |         subject.call | ||||||
|         expect(a_request(:post, account.inbox_url)).to have_been_made.once |         expect(a_request(:post, account.inbox_url)).to have_been_made.once | ||||||
|       end |       end | ||||||
|  | |||||||
| @ -27,7 +27,7 @@ RSpec.describe UnreservedUsernameValidator, type: :validator do | |||||||
|       context 'reserved_username?' do |       context 'reserved_username?' do | ||||||
|         let(:reserved_username) { true } |         let(:reserved_username) { true } | ||||||
| 
 | 
 | ||||||
|         it 'calls erros.add' do |         it 'calls errors.add' do | ||||||
|           expect(errors).to have_received(:add).with(:username, :reserved) |           expect(errors).to have_received(:add).with(:username, :reserved) | ||||||
|         end |         end | ||||||
|       end |       end | ||||||
| @ -35,7 +35,7 @@ RSpec.describe UnreservedUsernameValidator, type: :validator do | |||||||
|       context '!reserved_username?' do |       context '!reserved_username?' do | ||||||
|         let(:reserved_username) { false } |         let(:reserved_username) { false } | ||||||
| 
 | 
 | ||||||
|         it 'not calls erros.add' do |         it 'not calls errors.add' do | ||||||
|           expect(errors).not_to have_received(:add).with(:username, any_args) |           expect(errors).not_to have_received(:add).with(:username, any_args) | ||||||
|         end |         end | ||||||
|       end |       end | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user