Skip to content

Commit

Permalink
Distributed under the Apache License message
Browse files Browse the repository at this point in the history
- small wording improvement in the copyright message
  ("distributed under the Apache License" instead of "distributed under Apache License")
  • Loading branch information
tomas-muller committed Feb 26, 2015
1 parent b39462c commit a74aadd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public interface GwtMessages extends Messages {
@DefaultMessage("Version {0} built on {1}")
String pageVersion(String version, String buildDate);

@DefaultMessage("&copy; 2008 - 2015 The Apereo Foundation,<br>distributed under Apache License, Version 2.")
@DefaultMessage("&copy; 2008 - 2015 The Apereo Foundation,<br>distributed under the Apache License, Version 2.")
String pageCopyright();

@DefaultMessage("UniTime {0}, \u00A9 2008 - 2015 The Apereo Foundation, distributed under Apache License.")
@DefaultMessage("UniTime {0}, \u00A9 2008 - 2015 The Apereo Foundation, distributed under the Apache License.")
String pdfCopyright(String version);

@DefaultMessage("Oooops, the loading is taking too much time... Something probably went wrong. You may need to reload this page.")
Expand Down
2 changes: 1 addition & 1 deletion JavaSource/org/unitime/timetable/tags/Copyright.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public int doEndTag() throws JspException {
String body =
"<a class='unitime-FooterLink' href='http://www.unitime.org' tabIndex='-1'>&copy;&nbsp;2008&nbsp;-&nbsp;2015&nbsp;The&nbsp;Apereo&nbsp;Foundation</a>," +
(isBr() ? "<br>" : " ") +
"<a class='unitime-FooterLink' href='http://www.unitime.org/uct_license.php' tabIndex='-1'>distributed&nbsp;under&nbsp;Apache&nbsp;License,&nbsp;Version&nbsp;2.</a>";
"<a class='unitime-FooterLink' href='http://www.unitime.org/uct_license.php' tabIndex='-1'>distributed&nbsp;under&nbsp;the&nbsp;Apache&nbsp;License,&nbsp;Version&nbsp;2.</a>";
try {
pageContext.getOut().print(body);
}
Expand Down

0 comments on commit a74aadd

Please sign in to comment.