diff --git a/src/views/appstore.js b/src/views/appstore.js index f7941e077..11ae167c9 100644 --- a/src/views/appstore.js +++ b/src/views/appstore.js @@ -46,22 +46,22 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$tran { id: 'analytics', icon: 'fa fa-chart-line', label: 'Analytics'}, { id: 'blog', icon: 'fa fa-font', label: 'Blog'}, { id: 'chat', icon: 'fa fa-comments', label: 'Chat'}, - { id: 'git', icon: 'fa fa-code-branch', label: 'Code Hosting'}, { id: 'crm', icon: 'fab fa-connectdevelop', label: 'CRM'}, { id: 'document', icon: 'fa fa-file-word', label: 'Documents'}, { id: 'email', icon: 'fa fa-envelope', label: 'Email'}, { id: 'federated', icon: 'fa fa-project-diagram', label: 'Federated'}, - { id: 'sync', icon: 'fa fa-sync-alt', label: 'File Sync'}, { id: 'finance', icon: 'fa fa-hand-holding-usd', label: 'Finance'}, { id: 'forum', icon: 'fa fa-users', label: 'Forum'}, { id: 'gallery', icon: 'fa fa-images', label: 'Gallery'}, { id: 'game', icon: 'fa fa-gamepad', label: 'Games'}, + { id: 'git', icon: 'fa fa-code-branch', label: 'Code Hosting'}, + { id: 'hosting', icon: 'fa fa-server', label: 'Web Hosting'}, { id: 'learning', icon: 'fas fa-graduation-cap', label: 'Learning'}, { id: 'media', icon: 'fas fa-photo-video', label: 'Media'}, { id: 'notes', icon: 'fa fa-sticky-note', label: 'Notes'}, { id: 'project', icon: 'fas fa-project-diagram', label: 'Project Management'}, + { id: 'sync', icon: 'fa fa-sync-alt', label: 'File Sync'}, { id: 'vpn', icon: 'fa fa-user-secret', label: 'VPN'}, - { id: 'hosting', icon: 'fa fa-server', label: 'Web Hosting'}, { id: 'wiki', icon: 'fab fa-wikipedia-w', label: 'Wiki'}, ]; @@ -76,7 +76,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$tran }); $scope.categoryButtonLabel = function (category) { - var categoryLabel = $translate.instant('appstore.categoryLabel') + var categoryLabel = $translate.instant('appstore.categoryLabel'); if (category === 'new') return categoryLabel; if (category === 'recent') return categoryLabel;