mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-22 16:46:28 +01:00
Fix potential bug in importing shortcuts
The `text` variable wasn't passing through Lingui, despite being a `msg`.
This commit is contained in:
parent
299bcf9e91
commit
369935f3e5
1 changed files with 1 additions and 1 deletions
|
@ -939,7 +939,7 @@ function ImportExport({ shortcuts, onClose }) {
|
|||
shortcut[name] ? (
|
||||
<>
|
||||
<span class="tag collapsed insignificant">
|
||||
{text}:{' '}
|
||||
{_(text)}:{' '}
|
||||
{type === 'checkbox'
|
||||
? shortcut[name] === 'on'
|
||||
? '✅'
|
||||
|
|
Loading…
Reference in a new issue