Skip to content

Commit

Permalink
Maintenance: Improve translatable source string.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed May 12, 2022
1 parent a5a1e75 commit 4b4fdf7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Expand Up @@ -173,7 +173,7 @@ App.Config.set(
{
key: 'tab'
hotkeys: true
description: __('Next in tab')
description: __('Show next tab')
globalEvent: 'next-in-tab'
callback: ->
App.Event.trigger('keyboard_shortcuts_close')
Expand All @@ -196,7 +196,7 @@ App.Config.set(
{
key: 'shift+tab'
hotkeys: true
description: __('Previous tab')
description: __('Show previous tab')
globalEvent: 'previous-in-tab'
callback: ->
App.Event.trigger('keyboard_shortcuts_close')
Expand Down
16 changes: 8 additions & 8 deletions i18n/zammad.pot
Expand Up @@ -6411,10 +6411,6 @@ msgstr ""
msgid "Next in overview"
msgstr ""

#: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
msgid "Next in tab"
msgstr ""

#: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
msgid "No"
msgstr ""
Expand Down Expand Up @@ -7359,10 +7355,6 @@ msgstr ""
msgid "Previous in overview"
msgstr ""

#: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
msgid "Previous tab"
msgstr ""

#: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
msgid "Previously owned tickets (%s in total)"
msgstr ""
Expand Down Expand Up @@ -8371,6 +8363,14 @@ msgstr ""
msgid "Show less"
msgstr ""

#: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
msgid "Show next tab"
msgstr ""

#: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
msgid "Show previous tab"
msgstr ""

#: app/assets/javascripts/app/controllers/_channel/chat.coffee
msgid "Show the chat when ready."
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion spec/system/keyboard_shortcuts_spec.rb
Expand Up @@ -139,7 +139,7 @@
end
end

context 'for Next in tab' do
context 'shows the next tab' do
let(:tab) { [:tab] }

it 'show the next tab' do
Expand Down

0 comments on commit 4b4fdf7

Please sign in to comment.