Skip to content

Commit c0c4b6b

Browse files
fix: Change "Apps" to "Website Generator" and other improvements (#5792)
1 parent e8e1d7d commit c0c4b6b

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed
Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
<div class="content">
2-
<div class="header">{{t 'Apps'}}</div>
2+
<div class="header">{{t 'Website Generator'}}</div>
33
</div>
44
<div class="content ui stackable grid">
5-
<div class="row">
6-
<div class="column eight wide center aligned">
7-
<button class="ui button">{{t 'Generate Android App'}}</button>
8-
</div>
9-
<div class="column eight wide center aligned">
10-
<a href="{{this.webAppGeneratorUrl}}" target="_blank" class="ui button" rel="noopener noreferrer">{{t 'Generate Web App'}}</a>
11-
</div>
5+
<div class="row pt-0">
6+
{{t 'You would like to have a dedicated event website with all details, sponsors listing, speakers and sessions and the entire schedule?'}}
7+
{{t 'Simply use the website generator.'}}
8+
{{t 'It transfers the data of the event via an API to our website tool and creates a website for you.'}}
9+
{{t 'You can download the entire site as a zip file and upload it to your own web hosting service.'}}
10+
{{t 'No database set up or framework required.'}}
11+
{{t 'This feature is still in Alpha stage, but is already used actively by a number of events.'}}
12+
{{t 'If you press the below button a tab will open where your website is generated.'}}
13+
</div>
14+
<div class="row p-0">
15+
<a href="{{this.webAppGeneratorUrl}}" target="_blank" class="ui labeled icon button" rel="noopener noreferrer"><i class="cogs icon"></i>{{t 'Create Website'}}</a>
1216
</div>
1317
</div>

app/templates/components/events/view/overview/event-sponsors.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="content d-flex" style="align-items: center;">
2-
<div class="header">{{t 'Event sponsors'}}</div>
2+
<div class="header">{{t 'Sponsors'}}</div>
33
<LinkTo
44
@route="events.view.edit.sponsors"
55
@tagName="button" class="ui right floated blue button item ml-auto">

tests/integration/components/events/view/overview/event-apps-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ module('Integration | Component | events/view/overview/event apps', function(hoo
1313
this.set('authManager', authManager);
1414
this.set('eventId', 'e123');
1515
await render(hbs`{{events/view/overview/event-apps authManager=authManager eventId=eventId}}`);
16-
assert.ok(this.element.innerHTML.trim().includes('Apps'));
16+
assert.ok(this.element.innerHTML.trim().includes('Website'));
1717
});
1818
});

0 commit comments

Comments
 (0)