[i18n] Fix kanban section name

stable
David Barragán Merino 2015-04-22 16:45:17 +02:00
parent e7716e6dd2
commit 59f88b0411
3 changed files with 6 additions and 3 deletions

View File

@ -62,15 +62,16 @@ class KanbanController extends mixOf(taiga.Controller, taiga.PageMixin, taiga.Fi
"$tgNavUrls",
"$tgEvents",
"$tgAnalytics",
"tgLoader"
"tgLoader",
"$translate"
]
constructor: (@scope, @rootscope, @repo, @confirm, @rs, @params, @q, @location,
@appTitle, @navUrls, @events, @analytics, tgLoader) ->
@appTitle, @navUrls, @events, @analytics, tgLoader, @translate) ->
bindMethods(@)
@scope.sectionName = "Kanban"
@scope.sectionName = @translate.instant("KANBAN.SECTION_NAME")
@scope.statusViewModes = {}
@.initializeEventHandlers()

View File

@ -748,6 +748,7 @@
}
},
"KANBAN": {
"SECTION_NAME": "Kanban",
"TITLE_ACTION_FOLD": "Fold column",
"TITLE_ACTION_UNFOLD": "Unfold column",
"TITLE_ACTION_FOLD_CARDS": "Fold cards",

View File

@ -745,6 +745,7 @@
}
},
"KANBAN": {
"SECTION_NAME": "Kanban",
"TITLE_ACTION_FOLD": "Plegar columna",
"TITLE_ACTION_UNFOLD": "Desplegar columna",
"TITLE_ACTION_FOLD_CARDS": "Plegar tarjetas",