* Replace browserify with webpack * Add react-intl-translations-manager * Do not minify in development, add offline-plugin for ServiceWorker background cache updates * Adjust tests and dependencies * Fix production deployments * Fix tests * More optimizations * Improve travis cache for npm stuff * Re-run travis * Add back support for custom.scss as before * Remove offline-plugin and babili * Fix issue with Immutable.List().unshift(...values) not working as expected * Make travis load schema instead of running all migrations in sequence * Fix missing React import in WarningContainer. Optimize rendering performance by using ImmutablePureComponent instead of React.PureComponent. ImmutablePureComponent uses Immutable.is() to compare props. Replace dynamic callback bindings in <UI /> * Add react definitions to places that use JSX * Add Procfile.dev for running rails, webpack and streaming API at the same timetheme_witches


@ -1,7 +1,25 @@
@@ -1,7 +1,25 @@
|
||||
{ |
||||
"presets": ["es2015", "react"], |
||||
"presets": [ |
||||
"es2015", |
||||
"react", |
||||
[ |
||||
"env", |
||||
{ |
||||
"loose": true, |
||||
"modules": false |
||||
} |
||||
] |
||||
], |
||||
"plugins": [ |
||||
"transform-react-jsx-source", |
||||
"transform-react-jsx-self", |
||||
"transform-decorators-legacy", |
||||
"transform-object-rest-spread" |
||||
"transform-object-rest-spread", |
||||
[ |
||||
"react-intl", |
||||
{ |
||||
"messagesDir": "./build/messages" |
||||
} |
||||
] |
||||
] |
||||
} |
||||
|
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
plugins: |
||||
postcss-smart-import: {} |
||||
precss: {} |
||||
autoprefixer: {} |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
web: bundle exec rails s -p 3000 |
||||
stream: yarn run start |
||||
webpack: ./bin/webpack-dev-server |
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
||||
// listed below.
|
||||
//
|
||||
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
||||
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
||||
//
|
||||
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
||||
// compiled file.
|
||||
//
|
||||
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
||||
// about supported directives.
|
||||
//
|
||||
//= require jquery2
|
||||
//= require jquery_ujs
|
||||
//= require components
|
@ -1,9 +0,0 @@
@@ -1,9 +0,0 @@
|
||||
//= require jquery2
|
||||
//= require jquery_ujs
|
||||
//= require extras
|
||||
//= require best_in_place
|
||||
//= require local_time
|
||||
|
||||
$(function () { |
||||
$(".best_in_place").best_in_place(); |
||||
}); |
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
//= require_self
|
||||
//= require react_ujs
|
||||
|
||||
window.React = require('react'); |
||||
window.ReactDOM = require('react-dom'); |
||||
window.Perf = require('react-addons-perf'); |
||||
|
||||
if (!window.Intl) { |
||||
require('intl'); |
||||
require('intl/locale-data/jsonp/en.js'); |
||||
} |
||||
|
||||
//= require_tree ./components
|
||||
|
||||
window.Mastodon = require('./components/containers/mastodon'); |
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
import Avatar from '../../../components/avatar'; |
||||
import DisplayName from '../../../components/display_name'; |
||||
import ImmutablePropTypes from 'react-immutable-proptypes'; |
||||
|
||||
const AutosuggestAccount = ({ account }) => ( |
||||
<div className='autosuggest-account'> |
||||
<div className='autosuggest-account-icon'><Avatar src={account.get('avatar')} staticSrc={account.get('avatar_static')} size={18} /></div> |
||||
<DisplayName account={account} /> |
||||
</div> |
||||
); |
||||
|
||||
AutosuggestAccount.propTypes = { |
||||
account: ImmutablePropTypes.map.isRequired |
||||
}; |
||||
|
||||
export default AutosuggestAccount; |
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
import { FormattedMessage } from 'react-intl'; |
||||
import DisplayName from '../../../components/display_name'; |
||||
import ImmutablePropTypes from 'react-immutable-proptypes'; |
||||
|
||||
const AutosuggestStatus = ({ status }) => ( |
||||
<div className='autosuggest-status'> |
||||
<FormattedMessage id='search.status_by' defaultMessage='Status by {name}' values={{ name: <strong>@{status.getIn(['account', 'acct'])}</strong> }} /> |
||||
</div> |
||||
); |
||||
|
||||
AutosuggestStatus.propTypes = { |
||||
status: ImmutablePropTypes.map.isRequired |
||||
}; |
||||
|
||||
export default AutosuggestStatus; |
@ -1,44 +0,0 @@
@@ -1,44 +0,0 @@
|
||||
import PropTypes from 'prop-types'; |
||||
import ImmutablePropTypes from 'react-immutable-proptypes'; |
||||
import Permalink from '../../../components/permalink'; |
||||
import Avatar from '../../../components/avatar'; |
||||
import DisplayName from '../../../components/display_name'; |
||||
import emojify from '../../../emoji'; |
||||
import IconButton from '../../../components/icon_button'; |
||||
import { defineMessages, injectIntl } from 'react-intl'; |
||||
|
||||
const messages = defineMessages({ |
||||
authorize: { id: 'follow_request.authorize', defaultMessage: 'Authorize' }, |
||||
reject: { id: 'follow_request.reject', defaultMessage: 'Reject' } |
||||
}); |
||||
|
||||
const AccountAuthorize = ({ intl, account, onAuthorize, onReject }) => { |
||||
const content = { __html: emojify(account.get('note')) }; |
||||
|
||||
return ( |
||||
<div className='account-authorize__wrapper'> |
||||
<div className='account-authorize'> |
||||
<Permalink href={account.get('url')} to={`/accounts/${account.get('id')}`} className='detailed-status__display-name'> |
||||
<div className='account-authorize__avatar'><Avatar src={account.get('avatar')} staticSrc={account.get('avatar_static')} size={48} /></div> |
||||
<DisplayName account={account} /> |
||||
</Permalink> |
||||
|
||||
<div className='account__header__content' dangerouslySetInnerHTML={content} /> |
||||
</div> |
||||
|
||||
<div className='account--panel'> |
||||
<div className='account--panel__button'><IconButton title={intl.formatMessage(messages.authorize)} icon='check' onClick={onAuthorize} /></div> |
||||
<div className='account--panel__button'><IconButton title={intl.formatMessage(messages.reject)} icon='times' onClick={onReject} /></div> |
||||
</div> |
||||
</div> |
||||
) |
||||
}; |
||||
|
||||
AccountAuthorize.propTypes = { |
||||
account: ImmutablePropTypes.map.isRequired, |
||||
onAuthorize: PropTypes.func.isRequired, |
||||
onReject: PropTypes.func.isRequired, |
||||
intl: PropTypes.object.isRequired |
||||
}; |
||||
|
||||
export default injectIntl(AccountAuthorize); |
@ -1,66 +0,0 @@
@@ -1,66 +0,0 @@
|
||||
import Column from '../ui/components/column'; |
||||
import ColumnLink from '../ui/components/column_link'; |
||||
import ColumnSubheading from '../ui/components/column_subheading'; |
||||
import { Link } from 'react-router'; |
||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; |
||||
import { connect } from 'react-redux'; |
||||
import PropTypes from 'prop-types'; |
||||
import ImmutablePropTypes from 'react-immutable-proptypes'; |
||||
|
||||
const messages = defineMessages({ |
||||
heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' }, |
||||
public_timeline: { id: 'navigation_bar.public_timeline', defaultMessage: 'Federated timeline' }, |
||||
navigation_subheading: { id: 'column_subheading.navigation', defaultMessage: 'Navigation'}, |
||||
settings_subheading: { id: 'column_subheading.settings', defaultMessage: 'Settings'}, |
||||
community_timeline: { id: 'navigation_bar.community_timeline', defaultMessage: 'Local timeline' }, |
||||
preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' }, |
||||
follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' }, |
||||
sign_out: { id: 'navigation_bar.logout', defaultMessage: 'Logout' }, |
||||
favourites: { id: 'navigation_bar.favourites', defaultMessage: 'Favourites' }, |
||||
blocks: { id: 'navigation_bar.blocks', defaultMessage: 'Blocked users' }, |
||||
mutes: { id: 'navigation_bar.mutes', defaultMessage: 'Muted users' }, |
||||
info: { id: 'navigation_bar.info', defaultMessage: 'Extended information' } |
||||
}); |
||||
|
||||
const mapStateToProps = state => ({ |
||||
me: state.getIn(['accounts', state.getIn(['meta', 'me'])]) |
||||
}); |
||||
|
||||
const GettingStarted = ({ intl, me }) => { |
||||
let followRequests = ''; |
||||
|
||||
if (me.get('locked')) { |
||||
followRequests = <ColumnLink icon='users' text={intl.formatMessage(messages.follow_requests)} to='/follow_requests' />; |
||||
} |
||||
|
||||
return ( |
||||
<Column icon='asterisk' heading={intl.formatMessage(messages.heading)} hideHeadingOnMobile={true}> |
||||
<div className='getting-started__wrapper'> |
||||
<ColumnSubheading text={intl.formatMessage(messages.navigation_subheading)}/> |
||||
<ColumnLink icon='users' hideOnMobile={true} text={intl.formatMessage(messages.community_timeline)} to='/timelines/public/local' /> |
||||
<ColumnLink icon='globe' hideOnMobile={true} text={intl.formatMessage(messages.public_timeline)} to='/timelines/public' /> |
||||
<ColumnLink icon='star' text={intl.formatMessage(messages.favourites)} to='/favourites' /> |
||||
{followRequests} |
||||
<ColumnLink icon='volume-off' text={intl.formatMessage(messages.mutes)} to='/mutes' /> |
||||
<ColumnLink icon='ban' text={intl.formatMessage(messages.blocks)} to='/blocks' /> |
||||
<ColumnSubheading text={intl.formatMessage(messages.settings_subheading)}/> |
||||
<ColumnLink icon='book' text={intl.formatMessage(messages.info)} href='/about/more' /> |
||||
<ColumnLink icon='cog' text={intl.formatMessage(messages.preferences)} href='/settings/preferences' /> |
||||
<ColumnLink icon='sign-out' text={intl.formatMessage(messages.sign_out)} href='/auth/sign_out' method='delete' /> |
||||
</div> |
||||
|
||||
<div className='scrollable optionally-scrollable' style={{ display: 'flex', flexDirection: 'column' }}> |
||||
<div className='static-content getting-started'> |
||||
<p><FormattedMessage id='getting_started.open_source_notice' defaultMessage='Mastodon is open source software. You can contribute or report issues on GitHub at {github}. {apps}.' values={{ github: <a href="https://github.com/tootsuite/mastodon" target="_blank">tootsuite/mastodon</a>, apps: <a href="https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/Apps.md" target="_blank"><FormattedMessage id='getting_started.apps' defaultMessage='Various apps are available' /></a> }} /></p> |
||||
</div> |
||||
</div> |
||||
</Column> |
||||
); |
||||
}; |
||||
|
||||
GettingStarted.propTypes = { |
||||
intl: PropTypes.object.isRequired, |
||||
me: ImmutablePropTypes.map.isRequired |
||||
}; |
||||
|
||||
export default connect(mapStateToProps)(injectIntl(GettingStarted)); |
@ -1,68 +0,0 @@
@@ -1,68 +0,0 @@
|
||||
const bg = { |
||||
"column_back_button.label": "ะะฐะทะฐะด", |
||||
"lightbox.close": "ะะฐัะฒะพัะธ", |
||||
"loading_indicator.label": "ะะฐัะตะถะดะฐะฝะต...", |
||||
"status.mention": "ะกะฟะพะผะตะฝะฐะฒะฐะฝะต", |
||||
"status.delete": "ะะทััะธะฒะฐะฝะต", |
||||
"status.reply": "ะัะณะพะฒะพั", |
||||
"status.reblog": "ะกะฟะพะดะตะปัะฝะต", |
||||
"status.favourite": "ะัะตะดะฟะพัะธัะฐะฝะธ", |
||||
"status.reblogged_by": "{name} ัะฟะพะดะตะปะธ", |
||||
"status.sensitive_warning": "ะะตะปะธะบะฐัะฝะพ ััะดััะถะฐะฝะธะต", |
||||
"status.sensitive_toggle": "ะะพะบะฐะถะธ", |
||||
"video_player.toggle_sound": "ะะฒัะบ", |
||||
"account.mention": "ะกะฟะพะผะตะฝะฐะฒะฐะฝะต", |
||||
"account.edit_profile": "ะ ะตะดะฐะบัะธัะฐะน ะฟัะพัะธะปะฐ ัะธ", |
||||
"account.unblock": "ะะต ะฑะปะพะบะธัะฐะน", |
||||
"account.unfollow": "ะะต ัะปะตะดะฒะฐะน", |
||||
"account.block": "ะะปะพะบะธัะฐะน", |
||||
"account.follow": "ะะพัะปะตะดะฒะฐะน", |
||||
"account.posts": "ะัะฑะปะธะบะฐัะธะธ", |
||||
"account.follows": "ะกะปะตะดะฒะฐะผ", |
||||
"account.followers": "ะะพัะปะตะดะพะฒะฐัะตะปะธ", |
||||
"account.follows_you": "ะขะฒะพะน ะฟะพัะปะตะดะพะฒะฐัะตะป", |
||||
"account.requested": "ะ ะพัะฐะบะฒะฐะฝะต ะฝะฐ ะพะดะพะฑัะตะฝะธะต", |
||||
"getting_started.heading": "ะััะฒะธ ัััะฟะบะธ", |
||||
"getting_started.about_addressing": "ะะพะถะตั ะดะฐ ะฟะพัะปะตะดะฒะฐั ะฟะพััะตะฑะธัะตะป, ะฐะบะพ ะทะฝะฐะตั ะฟะพััะตะฑะธัะตะปัะบะพัะพ ะผั ะธะผะต ะธ ะดะพะผะตะนะฝะฐ, ะฝะฐ ะบะพะนัะพ ัะต ะฝะฐะผะธัะฐ, ะบะฐัะพ ะฒ ะฟะพะปะตัะพ ะทะฐ ััััะตะฝะต ะณะธ ะฒัะฒะตะดะตั ะฟะพ ัะพะทะธ ะฝะฐัะธะฝ: ะธะผะต@ะดะพะผะตะนะฝ", |
||||
"getting_started.about_shortcuts": "ะะบะพ ั ััััะตะฝะธั ะฟะพััะตะฑะธัะตะป ัะต ะฝะฐะผะธัะฐัะต ะฝะฐ ะตะดะธะฝ ะธ ััั ะดะพะผะตะนะฝ, ะดะพััะฐัััะฝะพ ะต ะดะฐ ะฒัะฒะตะดะตั ัะฐะผะพ ะธะผะตัะพ. ะกััะพัะพ ะฒะฐะถะธ ะธ ะทะฐ ัะฟะพะผะตะฝะฐะฒะฐะฝะต ะฝะฐ ั
ะพัะฐ ะฒ ะฟัะฑะปะธะบะฐัะธะธ.", |
||||
"getting_started.about_developer": "ะะพะถะตั ะดะฐ ะฟะพััััะธั ัะฐะทัะฐะฑะพััะธะบะฐ ะฝะฐ ัะพะทะธ ะฟัะพะตะบั ะบะฐัะพ: Gargron@mastodon.social", |
||||
"getting_started.open_source_notice": "Mastodon ะต ัะพัััะตั ั ะพัะฒะพัะตะฝ ะบะพะด. ะะพะถะตั ะดะฐ ะฟะพะผะพะณะฝะตั ะธะปะธ ะดะฐ ะดะพะบะปะฐะดะฒะฐั ะทะฐ ะฟัะพะฑะปะตะผะธ ะฒ Github: {github}.", |
||||
"column.home": "ะะฐัะฐะปะพ", |
||||
"column.mentions": "ะกะฟะพะผะตะฝะฐะฒะฐะฝะธั", |
||||
"column.public": "ะัะฑะปะธัะตะฝ ะบะฐะฝะฐะป", |
||||
"column.notifications": "ะะทะฒะตััะธั", |
||||
"tabs_bar.compose": "ะกัััะฐะฒัะฝะต", |
||||
"tabs_bar.home": "ะะฐัะฐะปะพ", |
||||
"tabs_bar.mentions": "ะกะฟะพะผะตะฝะฐะฒะฐะฝะธั", |
||||
"tabs_bar.public": "ะัะฑะปะธัะตะฝ ะบะฐะฝะฐะป", |
||||
"tabs_bar.notifications": "ะะทะฒะตััะธั", |
||||
"compose_form.placeholder": "ะะฐะบะฒะพ ัะธ ะผะธัะปะธั?", |
||||
"compose_form.publish": "ะ ะฐะทะดัะผะฐะน", |
||||
"compose_form.sensitive": "ะัะฑะตะปะตะถะธ ััะดััะถะฐะฝะธะตัะพ ะบะฐัะพ ะดะตะปะธะบะฐัะฝะพ", |
||||
"compose_form.spoiler": "ะกะบัะธะน ัะตะบััะฐ ะทะฐะด ะฟัะตะดัะฟัะตะถะดะตะฝะธะต", |
||||
"compose_form.private": "ะัะฑะตะปะตะถะธ ะบะฐัะพ ะฟะพะฒะตัะธัะตะปะฝะพ", |
||||
"compose_form.privacy_disclaimer": "ะะพะฒะตัะธัะตะปะฝะธ ะฟัะฑะปะธะบะฐัะธะธ ัะต ะฑัะดะฐั ะธะทะฟัะฐัะตะฝะธ ะดะพ ัะฟะพะผะตะฝะฐัะธัะต ะฟะพััะตะฑะธัะตะปะธ ะฝะฐ {domains}. ะะพะฒะตััะฒะฐั ะปะธ ัะต ะฝะฐ {domainsCount, plural, one {that server} other {those servers}}, ัะต ะฝัะผะฐ ะดะฐ ะธะทะดะฐะดะต ัะฒะพััะฐ ะฟัะฑะปะธะบะฐัะธั?", |
||||
"compose_form.unlisted": "ะะต ะฟะพะบะฐะทะฒะฐะน ะฒ ะฟัะฑะปะธัะฝะธั ะบะฐะฝะฐะป", |
||||
"navigation_bar.edit_profile": "ะ ะตะดะฐะบัะธัะฐะน ะฟัะพัะธะป", |
||||
"navigation_bar.preferences": "ะัะตะดะฟะพัะธัะฐะฝะธั", |
||||
"navigation_bar.public_timeline": "ะัะฑะปะธัะตะฝ ะบะฐะฝะฐะป", |
||||
"navigation_bar.logout": "ะะทะปะธะทะฐะฝะต", |
||||
"reply_indicator.cancel": "ะัะบะฐะท", |
||||
"search.placeholder": "ะขัััะตะฝะต", |
||||
"search.account": "ะะบะฐัะฝั", |
||||
"search.hashtag": "ะฅะฐััะฐะณ", |
||||
"upload_button.label": "ะะพะฑะฐะฒะธ ะผะตะดะธั", |
||||
"upload_form.undo": "ะัะผัะฝะฐ", |
||||
"notification.follow": "{name} ัะต ะฟะพัะปะตะดะฒะฐ", |
||||
"notification.favourite": "{name} ั
ะฐัะตัะฐ ัะฒะพััะฐ ะฟัะฑะปะธะบะฐัะธั", |
||||
"notification.reblog": "{name} ัะฟะพะดะตะปะธ ัะฒะพััะฐ ะฟัะฑะปะธะบะฐัะธั", |
||||
"notification.mention": "{name} ัะต ัะฟะพะผะตะฝะฐ", |
||||
"notifications.column_settings.alert": "ะะตัะบัะพะฟ ะธะทะฒะตััะธั", |
||||
"notifications.column_settings.show": "ะะพะบะฐะถะธ ะฒ ะบะพะปะพะฝะฐ", |
||||
"notifications.column_settings.follow": "ะะพะฒะธ ะฟะพัะปะตะดะพะฒะฐัะตะปะธ:", |
||||
"notifications.column_settings.favourite": "ะัะตะดะฟะพัะธัะฐะฝะธ:", |
||||
"notifications.column_settings.mention": "ะกะฟะพะผะตะฝะฐะฒะฐะฝะธั:", |
||||
"notifications.column_settings.reblog": "ะกะฟะพะดะตะปัะฝะธั:", |
||||
}; |
||||
|
||||
export default bg; |
@ -1,68 +0,0 @@
@@ -1,68 +0,0 @@
|
||||
const eo = { |
||||
"column_back_button.label": "Reveni", |
||||
"lightbox.close": "Fermi", |
||||
"loading_indicator.label": "ลarฤanta...", |
||||
"status.mention": "Mencii @{name}", |
||||
"status.delete": "Forigi", |
||||
"status.reply": "Respondi", |
||||
"status.reblog": "Diskonigi", |
||||
"status.favourite": "Favori", |
||||
"status.reblogged_by": "{name} diskonigita", |
||||
"status.sensitive_warning": "Tikla enhavo", |
||||
"status.sensitive_toggle": "Alklaki por vidi", |
||||
"video_player.toggle_sound": "Aktivigi sonojn", |
||||
"account.mention": "Mencii @{name}", |
||||
"account.edit_profile": "Redakti la profilon", |
||||
"account.unblock": "Malbloki @{name}", |
||||
"account.unfollow": "Malsekvi", |
||||
"account.block": "Bloki @{name}", |
||||
"account.follow": "Sekvi", |
||||
"account.posts": "Mesaฤoj", |
||||
"account.follows": "Sekvatoj", |
||||
"account.followers": "Sekvantoj", |
||||
"account.follows_you": "Sekvas vin", |
||||
"account.requested": "Atendas aprobon", |
||||
"getting_started.heading": "Por komenci", |
||||
"getting_started.about_addressing": "Vi povas sekvi homojn se vi konas la uzantnomon kaj domajnon tajpinte retpoลtecan adreson en la serฤilon.", |
||||
"getting_started.about_shortcuts": "Se la celita uzanto troviฤas en la sama domajno de vi, uzi nur la uzantnomon sufiฤos. La sama regulo validas por mencii aliajn uzantojn en mesaฤo.", |
||||
"getting_started.open_source_notice": "Mastodon estas malfermitkoda programo. Vi povas kontribui aลญ raporti problemojn en github je {github}. {apps}.", |
||||
"column.home": "Hejmo", |
||||
"column.community": "Loka tempolinio", |
||||
"column.public": "Fratara tempolinio", |
||||
"column.notifications": "Sciigoj", |
||||
"tabs_bar.compose": "Ekskribi", |
||||
"tabs_bar.home": "Hejmo", |
||||
"tabs_bar.mentions": "Sciigoj", |
||||
"tabs_bar.public": "Fratara tempolinio", |
||||
"tabs_bar.notifications": "Sciigoj", |
||||
"compose_form.placeholder": "Pri kio vi pensas?", |
||||
"compose_form.publish": "Hup", |
||||
"compose_form.sensitive": "Marki ke la enhavo estas tikla", |
||||
"compose_form.spoiler": "Kaลi la tekston malantaลญ averto", |
||||
"compose_form.private": "Marki ke la enhavo estas privata", |
||||
"compose_form.privacy_disclaimer": "Via privata mesaฤo estos sendita nur al menciitaj uzantoj en {domains}. ฤu vi fidas {domainsCount, plural, one {tiun servilon} other {tiujn servilojn}}? Mesaฤa privateco funkcias nur en aperaฤตoj de Mastodon. Se {domains} {domainsCount, plural, one {ne estas aperaฤตo de Mastodon} other {ne estas aperaฤตoj de Mastodon}}, estos neniu indiko ke via mesaฤo estas privata, kaj ฤi povus esti diskonigita aลญ videbligita al necelitaj ricevantoj.", |
||||
"compose_form.unlisted": "Ne afiลi en publikaj tempolinioj", |
||||
"navigation_bar.edit_profile": "Redakti la profilon", |
||||
"navigation_bar.preferences": "Preferoj", |
||||
"navigation_bar.community_timeline": "Loka tempolinio", |
||||
"navigation_bar.public_timeline": "Fratara tempolinio", |
||||
"navigation_bar.logout": "Elsaluti", |
||||
"reply_indicator.cancel": "Rezigni", |
||||
"search.placeholder": "Serฤi", |
||||
"search.account": "Konto", |
||||
"search.hashtag": "Kradvorto", |
||||
"upload_button.label": "Aldoni enhavaฤตon", |
||||
"upload_form.undo": "Malfari", |
||||
"notification.follow": "{name} sekvis vin", |
||||
"notification.favourite": "{name} favoris vian mesaฤon", |
||||
"notification.reblog": "{name} diskonigis vian mesaฤon", |
||||
"notification.mention": "{name} menciis vin", |
||||
"notifications.column_settings.alert": "Retumilaj atentigoj", |
||||
"notifications.column_settings.show": "Montri en kolono", |
||||
"notifications.column_settings.follow": "Novaj sekvantoj:", |
||||
"notifications.column_settings.favourite": "Favoroj:", |
||||
"notifications.column_settings.mention": "Mencioj:", |
||||
"notifications.column_settings.reblog": "Diskonigoj:", |
||||
}; |
||||
|
||||
export default eo; |
@ -1,93 +0,0 @@
@@ -1,93 +0,0 @@
|
||||
const es = { |
||||
"column_back_button.label": "Atrรกs", |
||||
"lightbox.close": "Cerrar", |
||||
"loading_indicator.label": "Cargando...", |
||||
"status.mention": "Mencionar", |
||||
"status.delete": "Borrar", |
||||
"status.reply": "Responder", |
||||
"status.reblog": "Retoot", |
||||
"status.favourite": "Favorito", |
||||
"status.reblogged_by": "Retooteado por {name}", |
||||
"status.sensitive_warning": "Contenido sensible", |
||||
"status.sensitive_toggle": "Click para ver", |
||||
"status.show_more": "Mostrar mรกs", |
||||
"status.show_less": "Mostrar menos", |
||||
"status.open": "Expandir estado", |
||||
"status.report": "Reportar", |
||||
"video_player.toggle_sound": "Act/Desac. sonido", |
||||
"account.mention": "Mencionar", |
||||
"account.edit_profile": "Editar perfil", |
||||
"account.unblock": "Desbloquear", |
||||
"account.unfollow": "Dejar de seguir", |
||||
"account.mute": "Silenciar", |
||||
"account.block": "Bloquear", |
||||
"account.follow": "Seguir", |
||||
"account.posts": "Publicaciones", |
||||
"account.follows": "Seguir", |
||||
"account.followers": "Seguidores", |
||||
"account.follows_you": "Te sigue", |
||||
"account.requested": "Esperando aprobaciรณn", |
||||
"getting_started.heading": "Primeros pasos", |
||||
"getting_started.about_addressing": "Puedes seguir a gente si conoces su nombre de usuario y el dominio en el que estรกn registrados, introduciendo algo similar a una direcciรณn de correo electrรณnico en el formulario en la parte superior de la barra lateral.", |
||||
"getting_started.about_shortcuts": "Si el usuario que buscas estรก en el mismo dominio que tรบ, simplemente funcionarรก introduciendo el nombre de usuario. La misma regla se aplica para mencionar a usuarios.", |
||||
"getting_started.open_source_notice": "Mastodon es software libre. Puedes contribuir o reportar errores en {github}. {apps}.", |
||||
"column.home": "Inicio", |
||||
"column.community": "Historia local", |
||||
"column.public": "Historia federada", |
||||
"column.notifications": "Notificaciones", |
||||
"column.blocks": "Usuarios bloqueados", |
||||
"column.favourites": "Favoritos", |
||||
"column.follow_requests": "Solicitudes para seguirte", |
||||
"column.mutes": "Usuarios silenciados", |
||||
"tabs_bar.compose": "Redactar", |
||||
"tabs_bar.home": "Inicio", |
||||
"tabs_bar.mentions": "Menciones", |
||||
"tabs_bar.public": "Pรบblico", |
||||
"tabs_bar.notifications": "Notificaciones", |
||||
"compose_form.placeholder": "ยฟEn quรฉ estรกs pensando?", |
||||
"compose_form.publish": "Tootear", |
||||
"compose_form.sensitive": "Marcar contenido como sensible", |
||||
"compose_form.spoiler": "Ocultar texto tras advertencia", |
||||
"compose_form.spoiler_placeholder": "Advertencia de contenido", |
||||
"composer_form.private": "Marcar como privado", |
||||
"composer_form.privacy_disclaimer": "Tu estado se mostrarรก a los usuarios mencionados en {domains}. Tu estado podrรก ser visto en otras instancias, quizรกs no quieras que tu estado sea visto por otros usuarios.", |
||||
"compose_form.unlisted": "No mostrar en la historia federada", |
||||
"navigation_bar.edit_profile": "Editar perfil", |
||||
"navigation_bar.preferences": "Preferencias", |
||||
"navigation_bar.community_timeline": "Historia local", |
||||
"navigation_bar.public_timeline": "Historia federada", |
||||
"navigation_bar.favourites": "Favoritos", |
||||
"navigation_bar.blocks": "Usuarios bloqueados", |
||||
"navigation_bar.info": "Informaciรณn adicional", |
||||
"navigation_bar.logout": "Cerrar sesiรณn", |
||||
"navigation_bar.follow_requests": "Solicitudes para seguirte", |
||||
"navigation_bar.mutes": "Usuarios silenciados", |
||||
"reply_indicator.cancel": "Cancelar", |
||||
"search.placeholder": "Buscar", |
||||
"search.account": "Cuenta", |
||||
"search.hashtag": "Etiqueta", |
||||
"upload_button.label": "Subir multimedia", |
||||
"upload_form.undo": "Deshacer", |
||||
"notification.follow": "{name} te empezรณ a seguir", |
||||
"notification.favourite": "{name} marcรณ tu estado como favorito", |
||||
"notification.reblog": "{name} ha retooteado tu estado", |
||||
"notification.mention": "{name} te ha mencionado", |
||||
"notifications.column_settings.alert": "Notificaciones de escritorio", |
||||
"notifications.column_settings.show": "Mostrar en columna", |
||||
"notifications.column_settings.follow": "Nuevos seguidores:", |
||||
"notifications.column_settings.favourite": "Favoritos:", |
||||
"notifications.column_settings.mention": "Menciones:", |
||||
"notifications.column_settings.reblog": "Retoots:", |
||||
"emoji_button.label": "Insertar emoji", |
||||
"privacy.public.short": "Pรบblico", |
||||
"privacy.public.long": "Mostrar en la historia federada", |
||||
"privacy.unlisted.short": "Sin federar", |
||||
"privacy.unlisted.long": "No mostrar en la historia federada", |
||||
"privacy.private.short": "Privado", |
||||
"privacy.private.long": "Sรณlo mostrar a seguidores", |
||||
"privacy.direct.short": "Directo", |
||||
"privacy.direct.long": "Sรณlo mostrar a los usuarios mencionados", |
||||
"privacy.change": "Ajustar privacidad" |
||||
}; |
||||
|
||||
export default es; |
@ -1,68 +0,0 @@
@@ -1,68 +0,0 @@
|
||||
const fi = { |
||||
"column_back_button.label": "Takaisin", |
||||
"lightbox.close": "Sulje", |
||||
"loading_indicator.label": "Ladataan...", |
||||
"status.mention": "Mainitse @{name}", |
||||
"status.delete": "Poista", |
||||
"status.reply": "Vastaa", |
||||
"status.reblog": "Buustaa", |
||||
"status.favourite": "Tykkรครค", |
||||
"status.reblogged_by": "{name} buustasi", |
||||
"status.sensitive_warning": "Arkaluontoista sisรคltรถรค", |
||||
"status.sensitive_toggle": "Klikkaa nรคhdรคksesi", |
||||
"video_player.toggle_sound": "รรคnet pรครคlle/pois", |
||||
"account.mention": "Mainitse @{name}", |
||||
"account.edit_profile": "Muokkaa", |
||||
"account.unblock": "Salli @{name}", |
||||
"account.unfollow": "Lopeta seuraaminen", |
||||
"account.block": "Estรค @{name}", |
||||
"account.follow": "Seuraa", |
||||
"account.posts": "Postit", |
||||
"account.follows": "Seuraa", |
||||
"account.followers": "Seuraajia", |
||||
"account.follows_you": "Seuraa sinua", |
||||
"account.requested": "Odottaa hyvรคksyntรครค", |
||||
"getting_started.heading": "Aloitus", |
||||
"getting_started.about_addressing": "Voit seurata ihmisiรค jos tiedรคt heidรคn kรคyttรคjรคnimensรค ja domainin missรค he ovat syรถttรคmรคllรค e-mail-esque osoitteen Etsi kenttรครคn.", |
||||
"getting_started.about_shortcuts": "Jos etsimรคsi henkilรถ on samassa domainissa kuin sinรค, pelkkรค kรคyttรคjรคnimi kelpaa. Sama pรคtee kun mainitset ihmisiรค statuksessasi", |
||||
"getting_started.open_source_notice": "Mastodon Mastodon on avoimen lรคhdekoodin ohjelma. Voit avustaa tai raportoida ongelmia GitHub palvelussa {github}. {apps}.", |
||||
"column.home": "Koti", |
||||
"column.community": "Paikallinen aikajana", |
||||
"column.public": "Yleinen aikajana", |
||||
"column.notifications": "Ilmoitukset", |
||||
"tabs_bar.compose": "Luo", |
||||
"tabs_bar.home": "Koti", |
||||
"tabs_bar.mentions": "Maininnat", |
||||
"tabs_bar.public": "Yleinen aikajana", |
||||
"tabs_bar.notifications": "Ilmoitukset", |
||||
"compose_form.placeholder": "Mitรค sinulla on mielessรค?", |
||||
"compose_form.publish": "Toot", |
||||
"compose_form.sensitive": "Merkitse media herkรคksi", |
||||
"compose_form.spoiler": "Piiloita teksti varoituksen taakse", |
||||
"compose_form.private": "Merkitse yksityiseksi", |
||||
"compose_form.privacy_disclaimer": "Sinun yksityinen status toimitetaan mainitsemallesi kรคyttรคjille domaineissa {domains}. Luotatko {domainsCount, plural, one {tรคhรคn palvelimeen} other {nรคihin palvelimiin}}? Postauksen yksityisyys toimii van Mastodon palvelimilla. Jos {domains} {domainsCount, plural, one {ei ole Mastodon palvelin} other {eivรคt ole Mastodon palvelin}}, viestiin ei tule Yksityinen-merkintรครค, ja sitรค voidaan boostata tai muuten tehdรค nรคkyvรคksi muille vastaanottajille.", |
||||
"compose_form.unlisted": "รlรค nรคytรค yleisillรค aikajanoilla", |
||||
"navigation_bar.edit_profile": "Muokkaa profiilia", |
||||
"navigation_bar.preferences": "Ominaisuudet", |
||||
"navigation_bar.community_timeline": "Paikallinen aikajana", |
||||
"navigation_bar.public_timeline": "Yleinen aikajana", |
||||
"navigation_bar.logout": "Kirjaudu ulos", |
||||
"reply_indicator.cancel": "Peruuta", |
||||
"search.placeholder": "Hae", |
||||
"search.account": "Tili", |
||||
"search.hashtag": "Hashtag", |
||||
"upload_button.label": "Lisรครค mediaa", |
||||
"upload_form.undo": "Peru", |
||||
"notification.follow": "{name} seurasi sinua", |
||||
"notification.favourite": "{name} tykkรคsi statuksestasi", |
||||
"notification.reblog": "{name} buustasi statustasi", |
||||
"notification.mention": "{name} mainitsi sinut", |
||||
"notifications.column_settings.alert": "Tyรถpรถytรค ilmoitukset", |
||||
"notifications.column_settings.show": "Nรคytรค sarakkeessa", |
||||
"notifications.column_settings.follow": "Uusia seuraajia:", |
||||
"notifications.column_settings.favourite": "Tykkรคyksiรค:", |
||||
"notifications.column_settings.mention": "Mainintoja:", |
||||
"notifications.column_settings.reblog": "Buusteja:", |
||||
}; |
||||
|
||||
export default fi; |
@ -1,57 +0,0 @@
@@ -1,57 +0,0 @@
|
||||
const hu = { |
||||
"column_back_button.label": "Vissza", |
||||
"lightbox.close": "Bezรกrรกs", |
||||
"loading_indicator.label": "Betรถltรฉs...", |
||||
"status.mention": "Emlรญtรฉs", |
||||
"status.delete": "Tรถrlรฉs", |
||||
"status.reply": "Vรกlasz", |
||||
"status.reblog": "Reblog", |
||||
"status.favourite": "Kedvenc", |
||||
"status.reblogged_by": "{name} reblogolta", |
||||
"status.sensitive_warning": "รrzรฉkeny tartalom", |
||||
"status.sensitive_toggle": "Katt a megtekintรฉshez", |
||||
"video_player.toggle_sound": "Hang kapcsolรกsa", |
||||
"account.mention": "Emlรญtรฉs", |
||||
"account.edit_profile": "Profil szerkesztรฉse", |
||||
"account.unblock": "Blokkolรกs levรฉtele", |
||||
"account.unfollow": "Kรถvetรฉs abbahagyรกsa", |
||||
"account.block": "Blokkolรกs", |
||||
"account.follow": "Kรถvetรฉs", |
||||
"account.posts": "Posts", |
||||
"account.follows": "Kรถvetve", |
||||
"account.followers": "Kรถvetลk", |
||||
"account.follows_you": "Kรถvetnek tรฉged", |
||||
"getting_started.heading": "Elsล lรฉpรฉsek", |
||||
"getting_started.about_addressing": "Kรถvethetsz embereket felhasznรกlรณnevรผk รฉs a domรฉnjรผk ismeretรฉben, amennyiben megadod ezt az e-mail-szerลฑ cรญmet az oldalsรกv tetejรฉn lรฉvล rubrikรกban.", |
||||
"getting_started.about_shortcuts": "Ha a cรฉlzott szemรฉly azonos domรฉnen tartรณzkodik, a felhasznรกlรณnรฉv elegendล. Ugyanez รฉrvรฉnyes mikor szemรฉlyeket emlรญtesz az รกllapotokban.", |
||||
"getting_started.about_developer": "A projekt fejlesztลje kรถvethetล, mint Gargron@mastodon.social", |
||||
"column.home": "Kezdลlap", |
||||
"column.mentions": "Emlรญtรฉsek", |
||||
"column.public": "Nyilvรกnos", |
||||
"column.notifications": "รrtesรญtรฉsek", |
||||
"tabs_bar.compose": "รsszeรกllรญtรกs", |
||||
"tabs_bar.home": "Kezdลlap", |
||||
"tabs_bar.mentions": "Emlรญtรฉsek", |
||||
"tabs_bar.public": "Nyilvรกnos", |
||||
"tabs_bar.notifications": "Notifications", |
||||
"compose_form.placeholder": "Mire gondolsz?", |
||||
"compose_form.publish": "Tรผlk!", |
||||
"compose_form.sensitive": "Tartalom รฉrzรฉkenynek jelรถlรฉse", |
||||
"compose_form.unlisted": "Listรกzatlan mรณd", |
||||
"navigation_bar.edit_profile": "Profil szerkesztรฉse", |
||||
"navigation_bar.preferences": "Beรกllรญtรกsok", |
||||
"navigation_bar.public_timeline": "Nyilvรกnos idลfolyam", |
||||
"navigation_bar.logout": "Kijelentkezรฉs", |
||||
"reply_indicator.cancel": "Mรฉgsem", |
||||
"search.placeholder": "Keresรฉs", |
||||
"search.account": "Fiรณk", |
||||
"search.hashtag": "Hashtag", |
||||
"upload_button.label": "Mรฉdia hozzรกadรกsa", |
||||
"upload_form.undo": "Mรฉgsem", |
||||
"notification.follow": "{name} kรถvet tรฉged", |
||||
"notification.favourite": "{name} kedvencnek jelรถlte az รกllapotod", |
||||
"notification.reblog": "{name} reblogolta az รกllapotod", |
||||
"notification.mention": "{name} megemlรญtett" |
||||
}; |
||||
|
||||
export default hu; |
@ -1,57 +0,0 @@
@@ -1,57 +0,0 @@
|
||||
import ar from './ar'; |
||||
import en from './en'; |
||||
import de from './de'; |
||||
import es from './es'; |
||||
import fa from './fa'; |
||||
import he from './he'; |
||||
import hr from './hr'; |
||||
import hu from './hu'; |
||||
import io from './io'; |
||||
import it from './it'; |
||||
import fr from './fr'; |
||||
import nl from './nl'; |
||||
import no from './no'; |
||||
import oc from './oc'; |
||||
import pt from './pt'; |
||||
import pt_br from './pt-br'; |
||||
import uk from './uk'; |
||||
import fi from './fi'; |
||||
import eo from './eo'; |
||||
import ru from './ru'; |
||||
import ja from './ja'; |
||||
import zh_hk from './zh-hk'; |
||||
import zh_cn from './zh-cn'; |
||||
import bg from './bg'; |
||||
import id from './id'; |
||||
|
||||
const locales = { |
||||
ar, |
||||
en, |
||||
de, |
||||
es, |
||||
fa, |
||||
he, |
||||
hr, |
||||
hu, |
||||
io, |
||||
it, |
||||
fr, |
||||
nl, |
||||
no, |
||||
oc, |
||||
pt, |
||||
'pt-BR': pt_br, |
||||
uk, |
||||
fi, |
||||
eo, |
||||
ru, |
||||
ja, |
||||
'zh-HK': zh_hk, |
||||
'zh-CN': zh_cn, |
||||
bg, |
||||
id, |
||||
}; |
||||
|
||||
export default function getMessagesForLocale (locale) { |
||||
return locales[locale]; |
||||
}; |
@ -1,57 +0,0 @@
@@ -1,57 +0,0 @@
|
||||
const uk = { |
||||
"column_back_button.label": "ะะฐะทะฐะด", |
||||
"lightbox.close": "ะะฐะบัะธัะธ", |
||||
"loading_indicator.label": "ะะฐะฒะฐะฝัะฐะถะตะฝะฝั...", |
||||
"status.mention": "ะะณะฐะดะฐัะธ", |
||||
"status.delete": "ะะธะดะฐะปะธัะธ", |
||||
"status.reply": "ะัะดะฟะพะฒัััะธ", |
||||
"status.reblog": "ะะตัะตะดะผัั
ะฝััะธ", |
||||
"status.favourite": "ะะพะดะพะฑะฐััััั", |
||||
"status.reblogged_by": "{name} ะฟะตัะตะดะผัั
ะฝัะฒ(-ะปะฐ)", |
||||
"status.sensitive_warning": "ะะตะฟัะธััะพะนะฝะธะน ะทะผััั", |
||||
"status.sensitive_toggle": "ะะฐัะธัะฝััั, ัะพะฑ ะฟะพะดะธะฒะธัะธัั", |
||||
"video_player.toggle_sound": "ะฃะฒัะผะบะฝััะธ/ะฒะธะผะบะฝััะธ ะทะฒัะบ", |
||||
"account.mention": "ะะณะฐะดะฐัะธ", |
||||
"account.edit_profile": "ะะฐะปะฐัััะฒะฐะฝะฝั ะฟัะพััะปั", |
||||
"account.unblock": "ะ ะพะทะฑะปะพะบัะฒะฐัะธ", |
||||
"account.unfollow": "ะัะดะฟะธัะฐัะธัั", |
||||
"account.block": "ะะฐะฑะปะพะบัะฒะฐัะธ", |
||||
"account.follow": "ะัะดะฟะธัะฐัะธัั", |
||||
"account.posts": "ะะพััะธ", |
||||
"account.follows": "ะัะดะฟะธัะบะธ", |
||||
"account.followers": "ะัะดะฟะธัะฝะธะบะธ", |
||||
"account.follows_you": "ะัะดะฟะธัะฐะฝะธะน", |
||||
"getting_started.heading": "ะะฐัะบะฐะฒะพ ะฟัะพัะธะผะพ", |
||||
"getting_started.about_addressing": "ะะธ ะผะพะถะตัะต ะฟัะดะฟะธััะฒะฐัะธัั ะฝะฐ ะปัะดะตะน, ัะบัะพ ะฒะธ ะทะฝะฐััะต ัั
ัะผ'ั ะบะพัะธัััะฒะฐัะฐ ัะธ ะดะพะผะตะฝ, ัะปัั
ะพะผ ะฒะฒะตะดะตะฝะฝั email-ะฟะพะดัะฑะฝะพั ะฐะดัะตัะธ ั ะฒะตัั
ะฝัะพะผั ััะดะบั ะฑะพะบะพะฒะพั ะฟะฐะฝะตะปั.", |
||||
"getting_started.about_shortcuts": "ะฏะบัะพ ะบะพัะธัััะฒะฐั, ัะบะพะณะพ ะฒะธ ััะบะฐััะต, ะทะฝะฐั
ะพะดะธัััั ะฝะฐ ัะพะผั ะถ ะดะพะผะตะฝั, ัะพ ะน ะฒะธ, ะผะพะถะฝะฐ ะฟัะพััะพ ะฒะฒะตััะธ ัะผ'ั ะบะพัะธัััะฒะฐัะฐ. ะฆะต ะฟัะฐะฒะธะปะพ ััะพััััััั ะน ะทะณะฐะดัะฒะฐะฝะฝั ะปัะดะตะน ั ััะฐัััะฐั
.", |
||||
"getting_started.about_developer": "ะ ะพะทัะพะฑะฝะธะบ ะฟัะพะตะบัั ะทะฝะฐั
ะพะดะธัััั ะทะฐ ะฐะดัะตัะพั Gargron@mastodon.social", |
||||
"column.home": "ะะพะปะพะฒะฝะฐ", |
||||
"column.mentions": "ะะณะฐะดัะฒะฐะฝะฝั", |
||||
"column.public": "ะกััะฝะฐ", |
||||
"column.notifications": "ะกะฟะพะฒััะตะฝะฝั", |
||||
"tabs_bar.compose": "ะะฐะฟะธัะฐัะธ", |
||||
"tabs_bar.home": "ะะพะปะพะฒะฝะฐ", |
||||
"tabs_bar.mentions": "ะะณะฐะดัะฒะฐะฝะฝั", |
||||
"tabs_bar.public": "ะกััะฝะฐ", |
||||
"tabs_bar.notifications": "ะกะฟะพะฒััะตะฝะฝั", |
||||
"compose_form.placeholder": "ะฉะพ ั ะะฐั ะฝะฐ ะดัะผัั?", |
||||
"compose_form.publish": "ะะผัั
ะฝััะธ", |
||||
"compose_form.sensitive": "ะะตะฟัะธััะพะนะฝะธะน ะทะผััั", |
||||
"compose_form.unlisted": "ะขะฐัะผะฝะธะน ัะตะถะธะผ", |
||||
"navigation_bar.edit_profile": "ะ ะตะดะฐะณัะฒะฐัะธ ะฟัะพััะปั", |
||||
"navigation_bar.preferences": "ะะฐะปะฐัััะฒะฐะฝะฝั", |
||||
"navigation_bar.public_timeline": "ะัะฑะปััะฝะฐ ัััะฝะฐ", |
||||
"navigation_bar.logout": "ะะธะนัะธ", |
||||
"reply_indicator.cancel": "ะัะดะผัะฝะธัะธ", |
||||
"search.placeholder": "ะะพััะบ", |
||||
"search.account": "ะะบะบะฐัะฝั", |
||||
"search.hashtag": "ะฅะตััะตา", |
||||
"upload_button.label": "ะะพะดะฐัะธ ะผะตะดัะฐ", |
||||
"upload_form.undo": "ะัะดะผัะฝะธัะธ", |
||||
"notification.follow": "{name} ะฟัะดะฟะธัะฐะฒัั(-ะปะฐัั) ะฝะฐ ะะฐั", |
||||
"notification.favourite": "{name} ัะฟะพะดะพะฑะฐะฒัั ะฒะฐั ะดะพะฟะธั", |
||||
"notification.reblog": "{name} ะฟะตัะตะดะผัั
ะฝัะฒ(-ะปะฐ) ะะฐั ััะฐััั", |
||||
"notification.mention": "{name} ะทะณะฐะดะฐะฒ(-ะปะฐ) ะะฐั" |
||||
}; |
||||
|
||||
export default uk; |
@ -1,11 +0,0 @@
@@ -1,11 +0,0 @@
|
||||
@font-face { |
||||
font-family: 'Montserrat'; |
||||
src: local('Montserrat'); |
||||
src: font-url('montserrat/Montserrat-Regular.eot'); |
||||
src: font-url('montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), |
||||
font-url('montserrat/Montserrat-Regular.woff2') format('woff2'), |
||||
font-url('montserrat/Montserrat-Regular.woff') format('woff'), |
||||
font-url('montserrat/Montserrat-Regular.ttf') format('truetype'); |
||||
font-weight: 400; |
||||
font-style: normal; |
||||
} |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
@font-face { |
||||
font-family: 'Roboto Mono'; |
||||
src: local('Roboto Mono'); |
||||
src: font-url('roboto-mono/robotomono-regular-webfont.eot'); |
||||
src: font-url('roboto-mono/robotomono-regular-webfont.eot?#iefix') format('embedded-opentype'), |
||||
font-url('roboto-mono/robotomono-regular-webfont.woff2') format('woff2'), |
||||
font-url('roboto-mono/robotomono-regular-webfont.woff') format('woff'), |
||||
font-url('roboto-mono/robotomono-regular-webfont.ttf') format('truetype'), |
||||
font-url('roboto-mono/robotomono-regular-webfont.svg#roboto_monoregular') format('svg'); |
||||
font-weight: 400; |
||||
font-style: normal; |
||||
} |
@ -1,52 +0,0 @@
@@ -1,52 +0,0 @@
|
||||
@font-face { |
||||
font-family: 'Roboto'; |
||||
src: local('Roboto'); |
||||
src: font-url('roboto/roboto-italic-webfont.eot'); |
||||
src: font-url('roboto/roboto-italic-webfont.eot?#iefix') format('embedded-opentype'), |
||||
font-url('roboto/roboto-italic-webfont.woff2') format('woff2'), |
||||
font-url('roboto/roboto-italic-webfont.woff') format('woff'), |
||||
font-url('roboto/roboto-italic-webfont.ttf') format('truetype'), |
||||
font-url('roboto/roboto-italic-webfont.svg#roboto-italic-webfont') format('svg'); |
||||
font-weight: normal; |
||||
font-style: italic; |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'Roboto'; |
||||
src: local('Roboto'); |
||||
src: font-url('roboto/roboto-bold-webfont.eot'); |
||||
src: local('Roboto bold'), local('roboto-bold'), |
||||
font-url('roboto/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'), |
||||
font-url('roboto/roboto-bold-webfont.woff2') format('woff2'), |
||||
font-url('roboto/roboto-bold-webfont.woff') format('woff'), |
||||
font-url('roboto/roboto-bold-webfont.ttf') format('truetype'), |
||||
font-url('roboto/roboto-bold-webfont.svg#roboto-bold-webfont') format('svg'); |
||||
font-weight: bold; |
||||
font-style: normal; |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'Roboto'; |
||||
src: local('Roboto'); |
||||
src: font-url('roboto/roboto-medium-webfont.eot'); |
||||
src: font-url('roboto/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'), |
||||
font-url('roboto/roboto-medium-webfont.woff2') format('woff2'), |
||||
font-url('roboto/roboto-medium-webfont.woff') format('woff'), |
||||
font-url('roboto/roboto-medium-webfont.ttf') format('truetype'), |
||||
font-url('roboto/roboto-medium-webfont.svg#roboto-medium-webfont') format('svg'); |
||||
font-weight: 500; |
||||
font-style: normal; |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'Roboto'; |
||||
src: local('Roboto'); |
||||
src: font-url('roboto/roboto-regular-webfont.eot'); |
||||
src: font-url('roboto/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'), |
||||
font-url('roboto/roboto-regular-webfont.woff2') format('woff2'), |
||||
font-url('roboto/roboto-regular-webfont.woff') format('woff'), |
||||
font-url('roboto/roboto-regular-webfont.ttf') format('truetype'), |
||||
font-url('roboto/roboto-regular-webfont.svg#roboto-regular-webfont') format('svg'); |
||||
font-weight: normal; |
||||
font-style: normal; |
||||
} |
Before Width: | Height: | Size: 339 KiB After Width: | Height: | Size: 339 KiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 258 KiB After Width: | Height: | Size: 258 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 59 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 131 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |