BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
3c03388b
Commit
3c03388b
authored
Nov 02, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'winh-i18n-contributors-page' into 'master'
Make contributors page translatable Closes #38592 See merge request gitlab-org/gitlab-ce!14915
parents
8e263c98
dad38b27
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
+14
-8
stat_graph_contributors.js
app/assets/javascripts/graphs/stat_graph_contributors.js
+2
-1
show.html.haml
app/views/projects/graphs/show.html.haml
+7
-7
winh-i18n-contributors-page.yml
changelogs/unreleased/winh-i18n-contributors-page.yml
+5
-0
No files found.
app/assets/javascripts/graphs/stat_graph_contributors.js
View file @
3c03388b
...
...
@@ -4,6 +4,7 @@ import _ from 'underscore';
import
d3
from
'd3'
;
import
{
ContributorsGraph
,
ContributorsAuthorGraph
,
ContributorsMasterGraph
}
from
'./stat_graph_contributors_graph'
;
import
ContributorsStatGraphUtil
from
'./stat_graph_contributors_util'
;
import
{
n__
}
from
'../locale'
;
export
default
(
function
()
{
function
ContributorsStatGraph
()
{}
...
...
@@ -44,7 +45,7 @@ export default (function() {
commits
=
$
(
'<span/>'
,
{
"class"
:
'graph-author-commits-count'
});
commits
.
text
(
author
.
commits
+
" commits"
);
commits
.
text
(
n__
(
'%d commit'
,
'%d commits'
,
author
.
commits
)
);
return
$
(
'<span/>'
).
append
(
commits
);
};
...
...
app/views/projects/graphs/show.html.haml
View file @
3c03388b
-
@no_container
=
true
-
page_title
"Contributors"
-
page_title
_
(
'Contributors'
)
-
content_for
:page_specific_javascripts
do
=
webpack_bundle_tag
(
'common_d3'
)
=
webpack_bundle_tag
(
'graphs'
)
...
...
@@ -7,23 +7,23 @@
.js-graphs-show
{
class:
container_class
,
'data-project-graph-path'
:
project_graph_path
(
@project
,
current_ref
,
format: :json
)
}
.sub-header-block
.tree-ref-holder
.tree-ref-holder
.inline.vertical-align-middle
=
render
'shared/ref_switcher'
,
destination:
'graphs'
%ul
.breadcrumb.repo-breadcrumb
=
commits_breadcrumbs
=
link_to
s_
(
'Commits|History'
),
project_commits_path
(
@project
,
current_ref
),
class:
'btn'
.loading-graph
.center
%h3
.page-title
%i
.fa.fa-spinner.fa-spin
Building repository graph.
%p
.slead
Please wait a moment, this page will automatically refresh when ready.
=
s_
(
'ContributorsPage|Building repository graph.'
)
%p
.slead
=
s_
(
'ContributorsPage|Please wait a moment, this page will automatically refresh when ready.'
)
.stat-graph.hide
.header.clearfix
%h3
#date_header
.page-title
%p
.light
Commits to
#{
@ref
}
, excluding merge commits. Limited to 6,000 commits.
=
s_
(
'ContributorsPage|Commits to %{branch_name}, excluding merge commits. Limited to 6,000 commits.'
)
%
{
branch_name:
@ref
}
%input
#brush_change
{
:type
=>
"hidden"
}
.graphs.row
#contributors-master
...
...
changelogs/unreleased/winh-i18n-contributors-page.yml
0 → 100644
View file @
3c03388b
---
title
:
Make contributors page translatable
merge_request
:
14915
author
:
type
:
other
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