Merge pull request #150 from nextcloud/untranslate-app-title

Application name should not be a transatable string.
This commit is contained in:
Julius Härtl
2017-05-23 13:47:30 +02:00
committed by GitHub

View File

@@ -89,7 +89,7 @@ class Application extends App {
'order' => 10, 'order' => 10,
'href' => $urlGenerator->linkToRoute('deck.page.index'), 'href' => $urlGenerator->linkToRoute('deck.page.index'),
'icon' => $urlGenerator->imagePath('deck', 'app.svg'), 'icon' => $urlGenerator->imagePath('deck', 'app.svg'),
'name' => $l10n->t('Deck'), 'name' => 'Deck',
]; ];
}); });
} }