Skip to content

Commit 051d0d9

Browse files
committed
change 'All Time' to 'All-Time' for consistency
1 parent 315a002 commit 051d0d9

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

app/controllers/category/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default Controller.extend(PaginationMixin, {
1616

1717
currentSortBy: computed('sort', function() {
1818
if (this.get('sort') === 'downloads') {
19-
return 'All Time Downloads';
19+
return 'All-Time Downloads';
2020
} else if (this.get('sort') === 'recent-downloads') {
2121
return 'Recent Downloads';
2222
} else if (this.get('sort') === 'alpha') {

app/controllers/keyword/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default Controller.extend(PaginationMixin, {
1313

1414
currentSortBy: computed('sort', function() {
1515
if (this.get('sort') === 'downloads') {
16-
return 'All Time Downloads';
16+
return 'All-Time Downloads';
1717
} else if (this.get('sort') === 'recent-downloads') {
1818
return 'Recent Downloads';
1919
} else if (this.get('sort') === 'alpha') {

app/controllers/team.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default Controller.extend(PaginationMixin, {
1313

1414
currentSortBy: computed('sort', function() {
1515
if (this.get('sort') === 'downloads') {
16-
return 'All Time Downloads';
16+
return 'All-Time Downloads';
1717
} else if (this.get('sort') === 'recent-downloads') {
1818
return 'Recent Downloads';
1919
} else {

app/controllers/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default Controller.extend(PaginationMixin, {
1414

1515
currentSortBy: computed('sort', function() {
1616
if (this.get('sort') === 'downloads') {
17-
return 'All Time Downloads';
17+
return 'All-Time Downloads';
1818
} else if (this.get('sort') === 'recent-downloads') {
1919
return 'Recent Downloads';
2020
} else {

app/templates/category/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
</li>
6262
<li>
6363
{{#link-to (query-params sort="downloads")}}
64-
All Time Downloads
64+
All-Time Downloads
6565
{{/link-to}}
6666
</li>
6767
<li>

app/templates/keyword/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</li>
3333
<li>
3434
{{#link-to (query-params sort="downloads")}}
35-
All Time Downloads
35+
All-Time Downloads
3636
{{/link-to}}
3737
</li>
3838
<li>

app/templates/team.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</li>
4848
<li>
4949
{{#link-to (query-params sort="downloads")}}
50-
All Time Downloads
50+
All-Time Downloads
5151
{{/link-to}}
5252
</li>
5353
<li>

app/templates/user.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</li>
3939
<li>
4040
{{#link-to (query-params sort="downloads")}}
41-
All Time Downloads
41+
All-Time Downloads
4242
{{/link-to}}
4343
</li>
4444
<li>

0 commit comments

Comments
 (0)