mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-01-09 06:01:53 +01:00
Fixed a few typo mistakes in the HTML output of the format module.
This commit is contained in:
parent
211060c20e
commit
949a301698
1 changed files with 3 additions and 3 deletions
|
@ -86,7 +86,7 @@ def output_header(repos):
|
||||||
else:
|
else:
|
||||||
jquery_js = " src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js\">"
|
jquery_js = " src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js\">"
|
||||||
|
|
||||||
print(html_header.format(title=_("Repository statistics for '{0}'").format(repo_string),
|
print(html_header.format(title=_("Repository statistics for '{0}'").format(repos_string),
|
||||||
jquery=jquery_js,
|
jquery=jquery_js,
|
||||||
jquery_tablesorter=tablesorter_js,
|
jquery_tablesorter=tablesorter_js,
|
||||||
jquery_flot=flot_js,
|
jquery_flot=flot_js,
|
||||||
|
@ -97,7 +97,7 @@ def output_header(repos):
|
||||||
" for git repositories.").format(
|
" for git repositories.").format(
|
||||||
"<a href=\"https://github.com/ejwa/gitinspector\">gitinspector</a>",
|
"<a href=\"https://github.com/ejwa/gitinspector\">gitinspector</a>",
|
||||||
version.__version__),
|
version.__version__),
|
||||||
repos_text=_(INFO_ONE_REPOSITORY if len(repos) <= 1 else INFO_MANY_REPOSITORIES).format(
|
repo_text=_(INFO_ONE_REPOSITORY if len(repos) <= 1 else INFO_MANY_REPOSITORIES).format(
|
||||||
repos_string, localization.get_date()),
|
repos_string, localization.get_date()),
|
||||||
show_minor_authors=_("Show minor authors"),
|
show_minor_authors=_("Show minor authors"),
|
||||||
hide_minor_authors=_("Hide minor authors"),
|
hide_minor_authors=_("Hide minor authors"),
|
||||||
|
|
Loading…
Reference in a new issue