From 350088cbd4c8dd3ecfe8adb1427e3f27c4db8a73 Mon Sep 17 00:00:00 2001 From: Costantino Perciante Date: Tue, 30 Aug 2016 14:47:43 +0000 Subject: [PATCH] ShowUserStatisticsAction human friendly messages changed git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@131043 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../databook/shared/ShowUserStatisticAction.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/gcube/portal/databook/shared/ShowUserStatisticAction.java b/src/main/java/org/gcube/portal/databook/shared/ShowUserStatisticAction.java index c90d951..dbd2a06 100644 --- a/src/main/java/org/gcube/portal/databook/shared/ShowUserStatisticAction.java +++ b/src/main/java/org/gcube/portal/databook/shared/ShowUserStatisticAction.java @@ -7,11 +7,11 @@ package org.gcube.portal.databook.shared; */ public enum ShowUserStatisticAction { - POSTS_MADE_BY_USER("Recent Posts"), - LIKES_MADE_BY_USER("Recent Likes Made"), - COMMENTS_MADE_BY_USER("Recent Comments Made"), - LIKES_GOT_BY_USER("Recent Likes Got"), - COMMENTS_GOT_BY_USER("Recent Comments Got"); + POSTS_MADE_BY_USER("Your recent posts"), + LIKES_MADE_BY_USER("Your recent likes done"), + COMMENTS_MADE_BY_USER("Your recent replies done"), + LIKES_GOT_BY_USER("Your recent likes got"), + COMMENTS_GOT_BY_USER("Your recent replies got"); private final String actionHumanFriendly;