Skip to content
Extraits de code Groupes Projets
Valider 0c02f7d0 rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

make sure to create a submenu chooser when there are more than 5 entries of...

make sure to create a submenu chooser when there are more than 5 entries of the same type such as goals or dashboards
parent 7b8da6e7
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -257,6 +257,7 @@ class CoreHome extends \Piwik\Plugin ...@@ -257,6 +257,7 @@ class CoreHome extends \Piwik\Plugin
$translationKeys[] = 'Intl_Year_Short'; $translationKeys[] = 'Intl_Year_Short';
$translationKeys[] = 'General_MultiSitesSummary'; $translationKeys[] = 'General_MultiSitesSummary';
$translationKeys[] = 'General_SearchNoResults'; $translationKeys[] = 'General_SearchNoResults';
$translationKeys[] = 'CoreHome_ChooseX';
$translationKeys[] = 'CoreHome_YouAreUsingTheLatestVersion'; $translationKeys[] = 'CoreHome_YouAreUsingTheLatestVersion';
$translationKeys[] = 'CoreHome_IncludeRowsWithLowPopulation'; $translationKeys[] = 'CoreHome_IncludeRowsWithLowPopulation';
$translationKeys[] = 'CoreHome_ExcludeRowsWithLowPopulation'; $translationKeys[] = 'CoreHome_ExcludeRowsWithLowPopulation';
......
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
category.subcategories = []; category.subcategories = [];
var goalsGroup = false; var categoryGroups = false;
angular.forEach(pages, function (page, key) { angular.forEach(pages, function (page, key) {
if (page.category.id === categoryId) { if (page.category.id === categoryId) {
...@@ -92,25 +92,25 @@ ...@@ -92,25 +92,25 @@
subcategory.active = true; subcategory.active = true;
} }
if (page.widgets && page.widgets[0] && page.category.id === 'Goals_Goals' && isNumeric(page.subcategory.id)) { if (page.widgets && page.widgets[0] && isNumeric(page.subcategory.id)) {
// we handle a goal // we handle a goal
if (!goalsGroup) { if (!categoryGroups) {
goalsGroup = angular.copy(subcategory); categoryGroups = angular.copy(subcategory);
goalsGroup.name = $filter('translate')('Goals_ChooseGoal'); categoryGroups.name = $filter('translate')('CoreHome_ChooseX', [category.name]);
goalsGroup.isGroup = true; categoryGroups.isGroup = true;
goalsGroup.subcategories = []; categoryGroups.subcategories = [];
goalsGroup.order = 10; categoryGroups.order = 10;
} }
if (subcategory.active) { if (subcategory.active) {
goalsGroup.name = subcategory.name; categoryGroups.name = subcategory.name;
goalsGroup.active = true; categoryGroups.active = true;
} }
var goalId = page.subcategory.id; var goalId = page.subcategory.id;
subcategory.tooltip = subcategory.name + ' (id = ' + goalId + ' )'; subcategory.tooltip = subcategory.name + ' (id = ' + goalId + ' )';
goalsGroup.subcategories.push(subcategory); categoryGroups.subcategories.push(subcategory);
return; return;
} }
...@@ -118,12 +118,12 @@ ...@@ -118,12 +118,12 @@
} }
}); });
if (goalsGroup && goalsGroup.subcategories && goalsGroup.subcategories.length <= 3) { if (categoryGroups && categoryGroups.subcategories && categoryGroups.subcategories.length <= 5) {
angular.forEach(goalsGroup.subcategories, function (subcategory) { angular.forEach(categoryGroups.subcategories, function (subcategory) {
category.subcategories.push(subcategory); category.subcategories.push(subcategory);
}); });
} else if(goalsGroup) { } else if(categoryGroups) {
category.subcategories.push(goalsGroup); category.subcategories.push(categoryGroups);
} }
category.subcategories = sortMenuItems(category.subcategories); category.subcategories = sortMenuItems(category.subcategories);
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
"ClickToEditX": "Click to edit %s", "ClickToEditX": "Click to edit %s",
"CloseSearch": "Close search", "CloseSearch": "Close search",
"CloseWidgetDirections": "You can close this widget by clicking on the 'X' icon at the top of the widget.", "CloseWidgetDirections": "You can close this widget by clicking on the 'X' icon at the top of the widget.",
"ChooseX": "Choose %1$s",
"DataForThisReportHasBeenPurged": "The data for this report is more than %s months old and has been purged.", "DataForThisReportHasBeenPurged": "The data for this report is more than %s months old and has been purged.",
"DataTableExcludeAggregateRows": "Aggregate rows are shown %s Hide them", "DataTableExcludeAggregateRows": "Aggregate rows are shown %s Hide them",
"DataTableIncludeAggregateRows": "Aggregate rows are hidden %s Show them", "DataTableIncludeAggregateRows": "Aggregate rows are hidden %s Show them",
......
...@@ -272,6 +272,5 @@ class Goals extends \Piwik\Plugin ...@@ -272,6 +272,5 @@ class Goals extends \Piwik\Plugin
$translationKeys[] = 'Goals_DeleteGoalConfirm'; $translationKeys[] = 'Goals_DeleteGoalConfirm';
$translationKeys[] = 'Goals_Ecommerce'; $translationKeys[] = 'Goals_Ecommerce';
$translationKeys[] = 'Goals_Optional'; $translationKeys[] = 'Goals_Optional';
$translationKeys[] = 'Goals_ChooseGoal';
} }
} }
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
"CategoryTextVisitsSummary_VisitsSummary": "User attribute", "CategoryTextVisitsSummary_VisitsSummary": "User attribute",
"CategoryTextDevicesDetection_DevicesDetection": "Devices", "CategoryTextDevicesDetection_DevicesDetection": "Devices",
"CategoryTextGeneral_Visit": "engagement", "CategoryTextGeneral_Visit": "engagement",
"ChooseGoal": "Choose Goal",
"ClickOutlink": "Click on a Link to an external website", "ClickOutlink": "Click on a Link to an external website",
"SendEvent": "Send an event", "SendEvent": "Send an event",
"ColumnAverageOrderRevenueDocumentation": "Average Order Value (AOV) is the total revenue from all Ecommerce Orders divided by the number of orders.", "ColumnAverageOrderRevenueDocumentation": "Average Order Value (AOV) is the total revenue from all Ecommerce Orders divided by the number of orders.",
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter