[i18n] Fix issues section name
parent
31590f939c
commit
e7716e6dd2
|
@ -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())
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue