From f6a6399763dd3a9892783ced2a8b29ddbdf54a3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1rbara=20Perretti?= Date: Mon, 7 Oct 2013 14:06:23 -0300 Subject: [PATCH] Fix translate home/page/activity/activity.js --- home/page/activity/activity.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/page/activity/activity.js b/home/page/activity/activity.js index 8d451939cc..edfe50f363 100644 --- a/home/page/activity/activity.js +++ b/home/page/activity/activity.js @@ -4,7 +4,7 @@ wn.pages['activity'].onload = function(wrapper) { wn.ui.make_app_page({ parent: wrapper, - title: "Activity", + title: wn._("Activity"), single_column: true }) wrapper.appframe.add_module_icon("Activity"); @@ -21,7 +21,7 @@ wn.pages['activity'].onload = function(wrapper) { // Build Report Button if(wn.boot.profile.can_get_report.indexOf("Feed")!=-1) { - wrapper.appframe.add_button('Build Report', function() { + wrapper.appframe.add_button(wn._('Build Report'), function() { wn.set_route('Report', "Feed"); }, 'icon-th') }