File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ class TabNotification extends Notification {
178
178
this . interval = window . setInterval ( ( ) => {
179
179
if ( this . unreadAmount && this . showAmount ) {
180
180
if ( this . unreadAmount < 100 ) {
181
- document . title = this . i18n . tc ( 'notifications.tabMessage.few' , this . unreadAmount )
181
+ document . title = this . i18n . t ( 'notifications.tabMessage.few' , this . unreadAmount )
182
182
} else {
183
183
document . title = this . i18n . t ( 'notifications.tabMessage.many' )
184
184
}
Original file line number Diff line number Diff line change @@ -125,13 +125,13 @@ export default {
125
125
const count = addresses .length
126
126
return addresses .includes (this .$store .state [this .crypto .toLowerCase ()].address )
127
127
? ` ${
128
- this .$tc (' transaction.me' ) +
128
+ this .$t (' transaction.me' ) +
129
129
' (' +
130
130
this .$store .state [this .cryptoModule ].address +
131
131
' ) ' +
132
- this .$tc (' transaction.addresses' , count - 1 )
132
+ this .$t (' transaction.addresses' , count - 1 )
133
133
} `
134
- : addresses[0 ] + ' ' + this .$tc (' transaction.addresses' , count - 1 )
134
+ : addresses[0 ] + ' ' + this .$t (' transaction.addresses' , count - 1 )
135
135
},
136
136
goToTransaction (transactionId ) {
137
137
this .$router .push ({
You can’t perform that action at this time.
0 commit comments