Skip to content

Commit

Permalink
feat(translations-ru): translation to russian (part 1)
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed May 18, 2018
1 parent 8f76005 commit 09688e6
Show file tree
Hide file tree
Showing 6 changed files with 92 additions and 40 deletions.
6 changes: 3 additions & 3 deletions src/app/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class Header extends React.Component {
transition: '1s'
}}>
<RaisedButton
label="Search"
label={__('Search')}
onClick={() => {
window.router('/')
}}
Expand Down Expand Up @@ -200,7 +200,7 @@ class Header extends React.Component {
}
/>
<RaisedButton
label="Downloads"
label={__('Downloads')}
onClick={() => {
window.router('/downloads')
}}
Expand All @@ -224,7 +224,7 @@ class Header extends React.Component {
}
/>
<RaisedButton
label="Top"
label={__('Top')}
onClick={() => {
window.router('/top')
}}
Expand Down
14 changes: 7 additions & 7 deletions src/app/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Search extends Component {

this.state = {
searchingIndicator: false,
safeSearchText: 'safe search enabled',
safeSearchText: __('safe search enabled'),
safeSearchColor: 'rgb(0, 188, 212)',
moreTorrentsIndicator: false,
moreFilesIndicator: false,
Expand Down Expand Up @@ -239,11 +239,11 @@ class Search extends Component {
this.notSafeSearch = ch;
if(ch)
{
return {safeSearchText: 'safe search disabled', safeSearchColor: '#EC407A'}
return {safeSearchText: __('safe search disabled'), safeSearchColor: '#EC407A'}
}
else
{
return {safeSearchText: 'safe search enabled', safeSearchColor: 'rgb(0, 188, 212)'}
return {safeSearchText: __('safe search enabled'), safeSearchColor: 'rgb(0, 188, 212)'}
}
}
render() {
Expand All @@ -259,8 +259,8 @@ class Search extends Component {
<div className='row inline w100p pad0-75 search-row' style={{minWidth: '35em', backgroundColor: 'white', paddingTop: 0, paddingBottom: this.searchError ? 17 : 0, margin: 5, borderRadius: 3}}>
<TextField
style={{marginTop: -12}}
hintText="Search torrent or file"
floatingLabelText="What to search?"
hintText={__('Search torrent or file')}
floatingLabelText={__('What to search?')}
fullWidth={true}
ref='searchInput'
defaultValue={this.searchValue}
Expand All @@ -273,7 +273,7 @@ class Search extends Component {
onChange={e => {
this.searchValue = e.target.value
if(this.searchValue.length < 3 && this.searchValue.length > 0)
this.searchError = 'too short string for search';
this.searchError = __('too short string for search');
else
this.searchError = undefined;
this.forceUpdate()
Expand Down Expand Up @@ -307,7 +307,7 @@ class Search extends Component {
/>
</div>

<RaisedButton style={{marginLeft: '10px'}} label="Search" primary={true} onClick={() =>{
<RaisedButton style={{marginLeft: '10px'}} label={__('Search')} primary={true} onClick={() =>{
this.search()
}} />
</div>
Expand Down
40 changes: 20 additions & 20 deletions src/app/torrent-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ const TorrentFiles = (props) => {
filesList.length > 0
?
<div className='w100p'>
<Subheader inset={true}>Content of the torrent:</Subheader>
<Subheader inset={true}>{__('Content of the torrent')}:</Subheader>
{treeToTorrentFiles(tree)}
</div>
:
<div className='column center'>
<span className='pad0-75'>Processing files...</span>
<span className='pad0-75'>{__('Processing files')}...</span>
<LinearProgress mode="indeterminate" />
</div>
}
Expand All @@ -89,23 +89,23 @@ const TorrentInformation = (props) => {
let torrent = props.torrent;
return (
<List className='w100p'>
<Subheader inset={true}>Information about torrent</Subheader>
<Subheader inset={true}>{__('Information about torrent')}</Subheader>
<ListItem
//leftAvatar={<Avatar icon={<ActionAssignment />} backgroundColor={blue500} />}
rightIcon={<ActionInfo />}
primaryText="Torrent Name"
primaryText={__('Torrent Name')}
secondaryText={<span className='break-word' style={{whiteSpace: 'normal'}}>{torrent.name}</span>}
/>
<ListItem
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
rightIcon={<ActionInfo />}
primaryText="Torrent Size"
primaryText={__('Torrent Size')}
secondaryText={formatBytes(torrent.size)}
/>
<ListItem
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
rightIcon={<ActionInfo />}
primaryText="Torrent contains files"
primaryText={__('Torrent contains files')}
secondaryText={torrent.files}
onClick={() => {
if(!props.parent)
Expand All @@ -119,19 +119,19 @@ const TorrentInformation = (props) => {
<ListItem
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
rightIcon={<ActionInfo />}
primaryText="Indexed/Added torrent date"
primaryText={__('Indexed/Added torrent date')}
secondaryText={moment(torrent.added * 1000).format('MMMM Do YYYY, hh:mm')}
/>
<ListItem
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
rightIcon={<ActionInfo />}
primaryText="Content type"
primaryText={__('Content type')}
secondaryText={torrent.contentType || 'unknown'}
/>
<ListItem
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
rightIcon={<ActionInfo />}
primaryText="Category"
primaryText={__('Category')}
secondaryText={torrent.contentCategory || 'unknown'}
/>
</List>
Expand Down Expand Up @@ -337,8 +337,8 @@ export default class TorrentPage extends Page {
value={this.state.value}
onChange={this.handleChange}
>
<Tab label="Back to main" value="main" />
<Tab label="Information" value="info" >
<Tab label={__('Back to main')} value="main" />
<Tab label={__('Information')} value="info" >
<div className='column w100p'>
<div className='row w100p torrent-information-row'>
<div className='info-table'>
Expand All @@ -363,7 +363,7 @@ export default class TorrentPage extends Page {
<RaisedButton
href={`magnet:?xt=urn:btih:${this.torrent.hash}`}
target="_self"
label="Download"
label={__('Download')}
backgroundColor='#00C853'
labelColor='white'
style={{marginTop: 8}}
Expand Down Expand Up @@ -399,7 +399,7 @@ export default class TorrentPage extends Page {
this.state.downloading
&&
<div className='column center pad0-75' style={{width: '300px'}}>
<div className='fs0-75' style={{color: 'rgb(0, 188, 212)'}}>downloading {this.state.downloadProgress && (this.state.downloadProgress.progress * 100).toFixed(1)}%</div>
<div className='fs0-75' style={{color: 'rgb(0, 188, 212)'}}>{__('downloading')} {this.state.downloadProgress && (this.state.downloadProgress.progress * 100).toFixed(1)}%</div>
<LinearProgress
style={{marginTop: 3}}
mode="determinate"
Expand All @@ -420,9 +420,9 @@ export default class TorrentPage extends Page {
this.torrent.seeders || this.torrent.leechers || this.torrent.completed
?
<div className='fs0-85 pad0-75 center column'>
<div className='pad0-25' style={{color: '#00C853'}}>seeders: {this.torrent.seeders}</div>
<div className='pad0-25' style={{color: '#AA00FF'}}>leechers: {this.torrent.leechers}</div>
<div className='pad0-25' style={{color: '#FF6D00'}}>completed: {this.torrent.completed}</div>
<div className='pad0-25' style={{color: '#00C853'}}>{__('seeders')}: {this.torrent.seeders}</div>
<div className='pad0-25' style={{color: '#AA00FF'}}>{__('leechers')}: {this.torrent.leechers}</div>
<div className='pad0-25' style={{color: '#FF6D00'}}>{__('completed')}: {this.torrent.completed}</div>
</div>
:
null
Expand All @@ -432,7 +432,7 @@ export default class TorrentPage extends Page {
?
<div className='row pad0-25'>
<RaisedButton
label={`Good (${this.torrent.good})`}
label={__('Good') + ` (${this.torrent.good})`}
labelColor="white"
backgroundColor="#00C853"
icon={
Expand All @@ -451,7 +451,7 @@ export default class TorrentPage extends Page {
/>
<RaisedButton
style={{marginLeft: '9px'}}
label={`Bad (${this.torrent.bad})`}
label={__('Bad') + ` (${this.torrent.bad})`}
labelColor="white"
backgroundColor="#D50000"
icon={
Expand Down Expand Up @@ -487,7 +487,7 @@ export default class TorrentPage extends Page {
height: '5px',
}}
/>
<div className='row center pad0-75 fs0-85' style={{color: torrentRating >= 50 ? '#00E676' : '#FF3D00'}}>Torrent rating: {torrentRating}%</div>
<div className='row center pad0-75 fs0-85' style={{color: torrentRating >= 50 ? '#00E676' : '#FF3D00'}}>{__('Torrent rating')}: {torrentRating}%</div>
</div>
:
null
Expand All @@ -496,7 +496,7 @@ export default class TorrentPage extends Page {
</div>
</div>
</Tab>
<Tab label="Files" value="files" >
<Tab label={__('Files')} value="files" >
<TorrentFiles torrent={this.torrent} />
</Tab>
</Tabs>
Expand Down
16 changes: 8 additions & 8 deletions src/app/torrent-statistic.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export default class TorrentsStatistic extends Component {
c0.4-0.112,0.79-0.227,1.168-0.346c0.004-0.001,0.009-0.003,0.013-0.004c2.961-0.936,5.22-2.099,6.693-3.427v8.346
C57.986,45.747,57.976,45.792,57.968,45.838z"/>
</svg>
<div style={{marginLeft: '5px'}}>{ formatBytes(this.stats.size, 1) } data</div>
<div style={{marginLeft: '5px'}}>{ formatBytes(this.stats.size, 1) } {__('data')}</div>
</div>

<div className='row inline' style={{color: '#f48641', fontSize: '1.15em', fill: '#f48641', marginLeft: '20px'}}>
Expand All @@ -149,7 +149,7 @@ export default class TorrentsStatistic extends Component {
<path d="M38,46h-1c-0.552,0-1,0.447-1,1s0.448,1,1,1h1c0.552,0,1-0.447,1-1S38.552,46,38,46z"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>{this.stats.torrents} torrents</div>
<div style={{marginLeft: '5px'}}>{this.stats.torrents} {__('torrents')}</div>
</div>

<div className='row inline' style={{color: '#f441e2', fontSize: '1.15em', fill: '#f441e2', marginLeft: '20px'}}>
Expand All @@ -163,7 +163,7 @@ export default class TorrentsStatistic extends Component {
<path d="M38.914,0H6.5v60h47V14.586L38.914,0z M39.5,3.414L50.086,14H39.5V3.414z M8.5,58V2h29v14h14v42H8.5z"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>{this.stats.files} files</div>
<div style={{marginLeft: '5px'}}>{this.stats.files} {__('files')}</div>
</div>
</div>

Expand All @@ -188,7 +188,7 @@ export default class TorrentsStatistic extends Component {
<circle cx="23.83" cy="23.323" r="7.271"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>{window.peers} peers</div>
<div style={{marginLeft: '5px'}}>{window.peers} {__('peers')}</div>
</div>

<div className='row inline' style={{color: window.peersTorrents > 0 ? '#19c687' : 'white', fontSize: '1.15em', fill: window.peersTorrents > 0 ? '#19c687' : 'white', marginLeft: '20px'}}>
Expand All @@ -203,7 +203,7 @@ export default class TorrentsStatistic extends Component {
c-32.6,0-59.1-26.5-59.1-59.1c0-32.6,26.5-59.1,59.1-59.1s59.1,26.5,59.1,59.1C440.7,428,414.2,454.5,381.6,454.5z"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>{window.peersTorrents} remote torrents</div>
<div style={{marginLeft: '5px'}}>{window.peersTorrents} {__('remote torrents')}</div>
</div>

<div className='row inline' style={{color: window.p2pStatus == 2 ? '#78c619' : (window.p2pStatus == 1 ? '#c68319' : '#c6194a'), fontSize: '1.15em', fill: window.p2pStatus == 2 ? '#78c619' : (window.p2pStatus == 1 ? '#c68319' : '#c6194a'), marginLeft: '20px'}}>
Expand All @@ -227,7 +227,7 @@ export default class TorrentsStatistic extends Component {
S29.964,45.019,27.454,45.019z"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>not available</div>
<div style={{marginLeft: '5px'}}>{__('not available')}</div>
</div>
}
{
Expand All @@ -251,7 +251,7 @@ export default class TorrentsStatistic extends Component {
C402.324,327.846,355.546,305.994,305.994,305.994z"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>redirect</div>
<div style={{marginLeft: '5px'}}>{__('redirect')}</div>
</div>
}
{
Expand All @@ -275,7 +275,7 @@ export default class TorrentsStatistic extends Component {
C402.324,327.846,355.546,305.994,305.994,305.994z"/>
</g>
</svg>
<div style={{marginLeft: '5px'}}>direct</div>
<div style={{marginLeft: '5px'}}>{__('direct')}</div>
</div>
}
</div>
Expand Down
28 changes: 27 additions & 1 deletion translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,32 @@
"Donate": "Donate",
"Help (Documentation)": "Help (Documentation)",
"Support (Discussion)": "Support (Discussion)",
"About (GitHub)": "About (GitHub)"
"About (GitHub)": "About (GitHub)",
"Information about torrent": "Information about torrent",
"Torrent Name": "Torrent Name",
"Torrent Size": "Torrent Size",
"Torrent contains files": "Torrent contains files",
"Indexed/Added torrent date": "Indexed/Added torrent date",
"Content type": "Content type",
"Category": "Category",
"Content of the torrent": "Content of the torrent",
"Back to main": "Back to main",
"Information": "Information",
"Download": "Download",
"seeders": "seeders",
"leechers": "leechers",
"completed": "completed",
"Files": "Files",
"Good": "Good",
"Bad": "Bad",
"data": "data",
"torrents": "torrents",
"files": "files",
"peers": "peers",
"remote torrents": "remote torrents",
"redirect": "redirect",
"safe search enabled": "safe search enabled",
"Search torrent or file": "Search torrent or file",
"What to search?": "What to search?"
}
}
28 changes: 27 additions & 1 deletion translations/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,32 @@
"Donate": "Пожертвовать на развитие",
"Help (Documentation)": "Помощь (Документация)",
"Support (Discussion)": "Помощь (Обсуждение)",
"About (GitHub)": "О программе (на GitHub)"
"About (GitHub)": "О программе (на GitHub)",
"Information about torrent": "Информация о торренты",
"Torrent Name": "Название торрента",
"Torrent Size": "Размер торрента",
"Torrent contains files": "Торрент состоит из файлов",
"Indexed/Added torrent date": "Время индексирования/добавления",
"Content type": "Тип контента",
"Category": "Категория",
"Content of the torrent": "Содержимое торрента",
"Back to main": "Вернуться на главную",
"Information": "Информация",
"Download": "Скачать",
"seeders": "сидеров",
"leechers": "личеров",
"completed": "завершено",
"Files": "Файлы",
"Good": "Хороший",
"Bad": "Плохой",
"data": "данных",
"torrents": "торрентов",
"files": "файлов",
"peers": "пиров",
"remote torrents": "удаленных торрентов",
"redirect": "переадресация",
"safe search enabled": "безопасный поиск включен",
"Search torrent or file": "Искать торрент или файл",
"What to search?": "Что искать?"
}
}

0 comments on commit 09688e6

Please sign in to comment.