Kintaro
Well-known member
If GetText support is not on the roadmap...
In admin.php?phrases/ once clicked on a phrase the content of the textarea with must be on focus and selected, so you can write right away without losing time clicking.
Solution:
Add autofocus and onfocus="this.focus();this.select()" to the textarea tag of the phrase
(and an option to enable/disable this behavior)
Now you've to:
With autofocus and autoselect translating a phrase become:
In admin.php?phrases/ once clicked on a phrase the content of the textarea with must be on focus and selected, so you can write right away without losing time clicking.
Solution:
Add autofocus and onfocus="this.focus();this.select()" to the textarea tag of the phrase
(and an option to enable/disable this behavior)
Now you've to:
- Click on a phrase
- Click on the textarea
- Select the text
- Write the translated phrase
- Press TAB => Return
With autofocus and autoselect translating a phrase become:
- Click on the phrase
- Write the translated phrase
- Press TAB => RETURN
Last edited:
Upvote
2