Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shrpne committed May 14, 2019
1 parent 7795652 commit a975f5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/img/icon-feature-broadcast.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lang/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
'auth-sign-up-seed-result': 'Сгенерированная seed‑фраза',
'auth-sign-up-seed-address': 'Сгенерированный адрес',
'auth-sign-up-seed-copy': 'Копировать seed‑фразу',
'auth-sign-up-seed-offline': 'Сгенерировать оффлайн (Github)',
'auth-sign-up-seed-offline': 'Сгенерировать локально (Github)',
'auth-error-username-required': 'Введите имя пользователя',
'auth-error-username-min': 'Имя пользователя слишком короткое',
'auth-error-username-max': 'Имя пользователя слишком длинное',
Expand Down
2 changes: 1 addition & 1 deletion layouts/_footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
computed: {
locale() {
return this.$i18n.locale || 'en';
return (this.$i18n && this.$i18n.locale) || 'en';
},
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
</div>
<AuthAdvancedGenerate/>
<div class="panel__section">
<a class="link--default" href="https://github.com/MinterTeam/minter-console-web/releases" target="_blank">{{ $td('Generate offline (Github)', 'index.auth-sign-up-seed-offline') }}</a>
<a class="link--default" href="https://github.com/MinterTeam/minter-console-web/releases" target="_blank">{{ $td('Generate locally (Github)', 'index.auth-sign-up-seed-offline') }}</a>
</div>
</div>

Expand Down

0 comments on commit a975f5b

Please sign in to comment.