Adds missing i18n to pipelines table
This commit is contained in:
parent
e10ca5eb84
commit
c2d379b35d
7 changed files with 38 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
|||
<script>
|
||||
import { s__, sprintf } from '~/locale';
|
||||
import eventHub from '../event_hub';
|
||||
import icon from '../../vue_shared/components/icon.vue';
|
||||
import Icon 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: {
|
||||
icon,
|
||||
Icon,
|
||||
GlCountdown,
|
||||
},
|
||||
props: {
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
<script>
|
||||
import tooltip from '../../vue_shared/directives/tooltip';
|
||||
import icon from '../../vue_shared/components/icon.vue';
|
||||
import Icon from '../../vue_shared/components/icon.vue';
|
||||
|
||||
export default {
|
||||
directives: {
|
||||
tooltip,
|
||||
},
|
||||
components: {
|
||||
icon,
|
||||
Icon,
|
||||
},
|
||||
props: {
|
||||
artifacts: {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
5
changelogs/unreleased/fl-missing-i18n.yml
Normal file
5
changelogs/unreleased/fl-missing-i18n.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Adds missing i18n to pipelines table
|
||||
merge_request:
|
||||
author:
|
||||
type: other
|
|
@ -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 ""
|
||||
|
||||
|
|
Loading…
Reference in a new issue