Skip to content

Commit 9bf60df

Browse files
committed
Fix display of queue categories
1 parent d326d80 commit 9bf60df

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

controller/manage/queue/queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function list_queues()
123123
{
124124
$this->template->assign_block_vars('categories', array(
125125
'U_VIEW_CATEGORY' => $this->get_queue_url($queue_type),
126-
'CATEGORY_NAME' => $this->types->get($queue_type)->lang,
126+
'CATEGORY_NAME' => $this->types->get($queue_type)->lang['langs'],
127127
'CATEGORY_CONTRIBS' => $counts[$queue_type],
128128
));
129129
}

language/en/types/translation.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
'TRANSLATION_VALIDATION_TESTS' => 'Please review the results of the automatic translation validation before proceeding.',
5252

5353
'TRANSLATION' => 'Language Pack',
54+
'TRANSLATIONS' => 'Language Packs',
5455
'TRANSLATION_CONTRIB_CLEANED' => 'Cleaned',
5556
'TRANSLATION_CONTRIB_DISABLED' => 'Hidden + Disabled',
5657
'TRANSLATION_CONTRIB_HIDDEN' => 'Hidden',

0 commit comments

Comments
 (0)