[i18n] Fix issues section name

stable
David Barragán Merino 2015-04-22 16:38:34 +02:00
parent 31590f939c
commit e7716e6dd2
3 changed files with 7 additions and 3 deletions

View File

@ -51,12 +51,14 @@ class IssuesController extends mixOf(taiga.Controller, taiga.PageMixin, taiga.Fi
"$tgNavUrls",
"$tgEvents",
"$tgAnalytics",
"tgLoader"
"tgLoader",
"$translate"
]
constructor: (@scope, @rootscope, @repo, @confirm, @rs, @urls, @params, @q, @location, @appTitle,
@navUrls, @events, @analytics, tgLoader) ->
@scope.sectionName = "Issues"
@navUrls, @events, @analytics, tgLoader, @translate) ->
@scope.sectionName = @translate.instant("ISSUES.LIST_SECTION_NAME")
@scope.filters = {}
if _.isEmpty(@location.search())

View File

@ -700,6 +700,7 @@
"LINK_LOGIN": "Are you already registered? Log in"
},
"ISSUES": {
"LIST_SECTION_NAME": "Issues",
"SECTION_NAME": "Issue Details",
"ACTION_NEW_ISSUE": "+ NEW ISSUE",
"ACTION_PROMOTE_TO_US": "Promote to User Story",

View File

@ -697,6 +697,7 @@
"LINK_LOGIN": "¿Ya te has registrado? Inicia sesión"
},
"ISSUES": {
"LIST_SECTION_NAME": "Peticiones",
"SECTION_NAME": "Detalles de la petición",
"ACTION_NEW_ISSUE": "+ NUEVA PETICIÓN",
"ACTION_PROMOTE_TO_US": "Promover a Historia de Usuario",