Fix translate home/page/activity/activity.js
diff --git a/home/page/activity/activity.js b/home/page/activity/activity.js
index 8d45193..edfe50f 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 @@
// 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')
}