Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ac89878f
Commit
ac89878f
authored
Apr 13, 2021
by
Tom Quirk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Address frontend maintainer feedback
- Move all translated strings into i18n object.
parent
1c786a5b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
app/assets/javascripts/integrations/index/components/integrations_list.vue
...ripts/integrations/index/components/integrations_list.vue
+4
-2
app/assets/javascripts/integrations/index/components/integrations_table.vue
...ipts/integrations/index/components/integrations_table.vue
+1
-1
No files found.
app/assets/javascripts/integrations/index/components/integrations_list.vue
View file @
ac89878f
...
...
@@ -32,13 +32,15 @@ export default {
i18n
:
{
activeTableEmptyText
:
s__
(
"
Integrations|You haven't activated any integrations yet.
"
),
inactiveTableEmptyText
:
s__
(
"
Integrations|You've activated every integration 🎉
"
),
activeIntegrationsHeading
:
s__
(
'
Integrations|Active integrations
'
),
inactiveIntegrationsHeading
:
s__
(
'
Integrations|Add an integration
'
),
},
};
</
script
>
<
template
>
<div>
<h4>
{{
s__
(
'
Integrations|Active integrations
'
)
}}
</h4>
<h4>
{{
$options
.
i18n
.
activeIntegrationsHeading
}}
</h4>
<integrations-table
class=
"gl-mb-7!"
:integrations=
"integrationsGrouped.active"
...
...
@@ -47,7 +49,7 @@ export default {
data-testid=
"active-integrations-table"
/>
<h4>
{{
s__
(
'
Integrations|Add an integration
'
)
}}
</h4>
<h4>
{{
$options
.
i18n
.
inactiveIntegrationsHeading
}}
</h4>
<integrations-table
:integrations=
"integrationsGrouped.inactive"
:empty-text=
"$options.i18n.inactiveTableEmptyText"
...
...
app/assets/javascripts/integrations/index/components/integrations_table.vue
View file @
ac89878f
...
...
@@ -74,7 +74,7 @@ export default {
v-gl-tooltip
name=
"check"
class=
"gl-text-green-500"
:title=
"getStatusTooltipTitle(i
ntegration
)"
:title=
"getStatusTooltipTitle(i
tem
)"
/>
</
template
>
...
...
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