Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
234b0498d858
Commit
e7baab18
authored
Oct 30, 2018
by
Filipa Lacerda
Browse files
Adds missing i18n to pipelines table
parent
3032cdcf252d
Changes
7
Hide whitespace changes
Inline
Side-by-side
app/assets/javascripts/pipelines/components/pipelines_actions.vue
View file @
234b0498
<
script
>
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
eventHub
from
'
../event_hub
'
;
import
i
con
from
'
../../vue_shared/components/icon.vue
'
;
import
I
con
from
'
../../vue_shared/components/icon.vue
'
;
import
tooltip
from
'
../../vue_shared/directives/tooltip
'
;
import
GlCountdown
from
'
~/vue_shared/components/gl_countdown.vue
'
;
...
...
@@ -10,7 +10,7 @@ export default {
tooltip
,
},
components
:
{
i
con
,
I
con
,
GlCountdown
,
},
props
:
{
...
...
app/assets/javascripts/pipelines/components/pipelines_artifacts.vue
View file @
234b0498
<
script
>
import
tooltip
from
'
../../vue_shared/directives/tooltip
'
;
import
i
con
from
'
../../vue_shared/components/icon.vue
'
;
import
I
con
from
'
../../vue_shared/components/icon.vue
'
;
export
default
{
directives
:
{
tooltip
,
},
components
:
{
i
con
,
I
con
,
},
props
:
{
artifacts
:
{
...
...
app/assets/javascripts/pipelines/components/pipelines_table.vue
View file @
234b0498
...
...
@@ -88,25 +88,25 @@ export default {
class=
"table-section section-10 js-pipeline-status pipeline-status"
role=
"rowheader"
>
Status
{{
s__
(
'
Pipeline|
Status
'
)
}}
</div>
<div
class=
"table-section section-15 js-pipeline-info pipeline-info"
role=
"rowheader"
>
Pipeline
{{
s__
(
'
Pipeline|Pipeline
'
)
}}
</div>
<div
class=
"table-section section-20 js-pipeline-commit pipeline-commit"
role=
"rowheader"
>
Commit
{{
s__
(
'
Pipeline|
Commit
'
)
}}
</div>
<div
class=
"table-section section-20 js-pipeline-stages pipeline-stages"
role=
"rowheader"
>
Stages
{{
s__
(
'
Pipeline|
Stages
'
)
}}
</div>
</div>
<pipelines-table-row-component
...
...
app/assets/javascripts/pipelines/components/pipelines_table_row.vue
View file @
234b0498
...
...
@@ -261,7 +261,7 @@ export default {
class=
"table-mobile-header"
role=
"rowheader"
>
Status
{{
s__
(
'
Pipeline|
Status
'
)
}}
</div>
<div
class=
"table-mobile-content"
>
<ci-badge
...
...
@@ -279,8 +279,9 @@ export default {
<div
class=
"table-section section-20"
>
<div
class=
"table-mobile-header"
role=
"rowheader"
>
Commit
role=
"rowheader"
>
{{
s__
(
'
Pipeline|Commit
'
)
}}
</div>
<div
class=
"table-mobile-content"
>
<commit-component
...
...
@@ -298,8 +299,9 @@ export default {
<div
class=
"table-section section-wrap section-20 stage-cell"
>
<div
class=
"table-mobile-header"
role=
"rowheader"
>
Stages
role=
"rowheader"
>
{{
s__
(
'
Pipeline|Stages
'
)
}}
</div>
<div
class=
"table-mobile-content"
>
<template
v-if=
"pipeline.details.stages.length > 0"
>
...
...
app/assets/javascripts/pipelines/components/time_ago.vue
View file @
234b0498
...
...
@@ -60,7 +60,7 @@ export default {
class=
"table-mobile-header"
role=
"rowheader"
>
Duration
{{
s__
(
'
Pipeline|
Duration
'
)
}}
</div>
<div
class=
"table-mobile-content"
>
<p
...
...
@@ -87,7 +87,8 @@ export default {
v-tooltip
:title=
"tooltipTitle(finishedTime)"
data-placement=
"top"
data-container=
"body"
>
data-container=
"body"
>
{{
timeFormated
(
finishedTime
)
}}
</time>
</p>
...
...
changelogs/unreleased/fl-missing-i18n.yml
0 → 100644
View file @
234b0498
---
title
:
Adds missing i18n to pipelines table
merge_request
:
author
:
type
:
other
locale/gitlab.pot
View file @
234b0498
...
...
@@ -4488,15 +4488,24 @@ msgstr ""
msgid "Pipelines|This project is not currently set up to run pipelines."
msgstr ""
msgid "Pipeline|Commit"
msgstr ""
msgid "Pipeline|Create for"
msgstr ""
msgid "Pipeline|Create pipeline"
msgstr ""
msgid "Pipeline|Duration"
msgstr ""
msgid "Pipeline|Existing branch name or tag"
msgstr ""
msgid "Pipeline|Pipeline"
msgstr ""
msgid "Pipeline|Run Pipeline"
msgstr ""
...
...
@@ -4506,6 +4515,12 @@ msgstr ""
msgid "Pipeline|Specify variable values to be used in this run. The values specified in %{settings_link} will be used by default."
msgstr ""
msgid "Pipeline|Stages"
msgstr ""
msgid "Pipeline|Status"
msgstr ""
msgid "Pipeline|Stop pipeline"
msgstr ""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment