Skip to content

Commit

Permalink
chore: check tolge pull
Browse files Browse the repository at this point in the history
translations was updated in tolgee webapp
  • Loading branch information
olegshilov committed Nov 6, 2024
1 parent 3d007ec commit 6ed9ce2
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 6 deletions.
2 changes: 2 additions & 0 deletions apps/shell/messages/authz/ru.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"access-you-granted" : "Доступ, который вы предоставили",
"five-years" : "5 лет",
"hundred-years" : "100 лет",
"one-month" : "1 месяц",
"one-week" : "1 неделя",
"one-year" : "1 год",
"revoke-button" : "Отозвать",
Expand Down
10 changes: 9 additions & 1 deletion apps/shell/messages/common/ru.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"address" : "Адрес",
"click-to-copy-value" : "Нажмите, чтобы скопировать {value}",
"connect-wallet-button" : "Подключить кошелек"
"connect-wallet-button" : "Подключить кошелек",
"my-balance" : "Мой баланс",
"my-delegations" : "Мои делегации",
"nothing-found" : "Ничего не найдено",
"page-not-found" : "Страница не найдена",
"rewards" : "Награды",
"send-button" : "Отправить",
"status" : "Статус",
"try-again" : "Попробуйте еще раз"
}
4 changes: 4 additions & 0 deletions apps/shell/messages/faucet/ru.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"login-github" : "Войти через github",
"switch-chain" : "Переключиться на {chain}"
}
2 changes: 1 addition & 1 deletion apps/shell/messages/governance/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"vote-option-no" : "No",
"vote-option-veto" : "Veto",
"vote-option-yes" : "Yes",
"vote-start" : "Vote start (gmt)",
"vote-start" : "Vote start (GMT)",
"vote-will-count" : "Your vote will be counted!!!",
"voting-end" : "Voting end",
"your-balance" : "Your balance: {balance} {symbol}"
Expand Down
5 changes: 5 additions & 0 deletions apps/shell/messages/governance/ru.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"vote-option-no" : "Нет",
"vote-option-veto" : "Вето",
"vote-option-yes" : "Да"
}
4 changes: 2 additions & 2 deletions apps/shell/messages/main/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"latest-proposals" : "Latest proposals",
"link-to-governance" : "Go to Governance",
"link-to-staking" : "Go to Staking",
"liquid-staked" : "Liquid STAKED",
"liquid-staked" : "Liquid staked",
"locked" : "Locked: {amount}",
"no-delegations" : "You don't have any active delegations",
"regular-staked" : "Regular STAKED",
"regular-staked" : "Regular staked",
"shell-title" : "Shell",
"staking-balance-popup-message" : "In regular staking you can use coins in liquid staking",
"total-staked" : "Total staked",
Expand Down
5 changes: 5 additions & 0 deletions apps/shell/messages/staking/ru.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"validator" : "Валидатор",
"validator-info-loading" : "Получение информации о валидаторе",
"validators" : "Валидаторы"
}
4 changes: 2 additions & 2 deletions libs/main/src/lib/components/my-account-block.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,15 +280,15 @@ function MyAccountConnected({
</div>
</div>
<MyAccountAmountBlock
title={t('regular-staked', 'Regular STAKED', { ns: 'main' })}
title={t('regular-staked', 'Regular staked', { ns: 'main' })}
value={`${formatNumber(balances.staked)} ${symbol.toLocaleUpperCase()}`}
/>
<MyAccountAmountBlock
title={t('rewards', 'Rewards', { ns: 'common' })}
value={`${formatNumber(rewards)} ${symbol.toLocaleUpperCase()}`}
/>
<MyAccountAmountBlock
title={t('liquid-staked', 'Liquid STAKED', { ns: 'main' })}
title={t('liquid-staked', 'Liquid staked', { ns: 'main' })}
value={`${formatNumber(stIslmBalance)} stISLM`}
subValue={`≈${formatNumber(islmAmountFromStIslm)} ISLM`}
/>
Expand Down

0 comments on commit 6ed9ce2

Please sign in to comment.