Skip to content

Commit c8bef1f

Browse files
authored
8880 sponsors to supporters (#8935)
* Add Paragraph field, text area * Change labels from 'Sponsor(s)' to 'Supporter(s)'
1 parent e887c9b commit c8bef1f

File tree

29 files changed

+119
-119
lines changed

29 files changed

+119
-119
lines changed

app/mixins/event-wizard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export default Mixin.create(MutableArray, CustomFormMixin, {
3232
route : 'events.view.edit.attendee'
3333
},
3434
{
35-
title : this.l10n.t('Sponsors'),
36-
description : this.l10n.t('Advertise your sponsors'),
35+
title : this.l10n.t('Supporters'),
36+
description : this.l10n.t('Advertise your supporters'),
3737
icon : 'dollar icon',
3838
route : 'events.view.edit.sponsors'
3939
},

app/templates/components/events/view/export/api-response.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<UiCheckbox @class="toggle" @label={{t "Speakers"}} @checked={{this.toggleSwitches.speakers}} @onChange={{action "checkboxChange" "speakers"}} />
2323
</div>
2424
<div class="field">
25-
<UiCheckbox @class="toggle" @label={{t "Sponsors"}} @checked={{this.toggleSwitches.sponsors}} @onChange={{action "checkboxChange" "sponsors"}} />
25+
<UiCheckbox @class="toggle" @label={{t "Supporters"}} @checked={{this.toggleSwitches.sponsors}} @onChange={{action "checkboxChange" "sponsors"}} />
2626
</div>
2727
<div class="field">
2828
<UiCheckbox @class="toggle" @label={{t "Tickets"}} @checked={{this.toggleSwitches.tickets}} @onChange={{action "checkboxChange" "tickets"}} />

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</div>
44
<div class="content ui grid">
55
<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?'}}
6+
{{t 'You would like to have a dedicated event website with all details, supporters listing, speakers and sessions and the entire schedule?'}}
77
{{t 'Simply use the website generator.'}}
88
{{t 'It transfers the data of the event via an API to our website tool and creates a website for you.'}}
99
{{t 'You can download the entire site as a Zip file and upload it to your own web hosting service.'}}

app/templates/components/events/view/overview/event-setup-checklist.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
</div>
5656
<div class="column fifteen wide">
5757
<h4 class="ui header">
58-
{{t 'Sponsors'}}
58+
{{t 'Supporters'}}
5959
<div class="sub header">
60-
{{t 'Details and logos of sponsors'}}
60+
{{t 'Details and logos of supporters'}}
6161
</div>
6262
</h4>
6363
</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 'Sponsors'}}</div>
2+
<div class="header">{{t 'Supporters'}}</div>
33
<LinkTo
44
@route="events.view.edit.sponsors"
55
@tagName="button" class="ui right floated blue button item ml-auto">

app/templates/components/events/view/overview/general-info.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
</td>
6262
</tr>
6363
<tr>
64-
<td><strong>{{t 'No. of Sponsors'}}</strong></td>
64+
<td><strong>{{t 'No. of Supporters'}}</strong></td>
6565
<td>{{if this.data.event.isSponsorsEnabled this.data.statistics.sponsors (t 'No Sponsor added yet.')}}</td>
6666
</tr>
6767
</tbody>

app/templates/components/forms/wizard/sponsors-step.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@onChange={{action "toggleSponsors"}} />
1313
<label class="weight-300" style="font-size: large">
1414
{{if this.data.sponsors.length (t 'Turn off') (t 'Turn on')}}
15-
{{t 'Sponsors'}}
15+
{{t 'Supporters'}}
1616
</label>
1717
</div>
1818
</div>
@@ -24,7 +24,7 @@
2424
{{#if this.data.sponsors.length}}
2525
{{#each this.sponsors as |sponsor index|}}
2626
<h4>
27-
{{t 'Sponsor'}} #{{inc index}}
27+
{{t 'Supporter'}} #{{inc index}}
2828
{{#if this.sponsors.length}}
2929
<button type="button" class="ui mini red button right floated" {{action 'removeSponsor' sponsor}}>
3030
<i class="trash icon"></i>

app/templates/components/public/side-menu.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
{{#if (and this.event.isSponsorsEnabled this.event.sponsors)}}
3939
{{#if (eq this.session.currentRouteName 'public.index')}}
4040
<a href='#sponsor' {{action "scrollToTarget" 'sponsor' }} class='item scroll'>
41-
<div><i class="mr-4 {{unless this.device.isMobile 'hidden-item'}} dollar icon"></i>{{t 'Sponsors'}}</div>
41+
<div><i class="mr-4 {{unless this.device.isMobile 'hidden-item'}} dollar icon"></i>{{t 'Supporters'}}</div>
4242
</a>
4343
{{else}}
4444
<LinkTo class="item" @route="public.index" {{action 'goToSection' 'sponsor' }}>
45-
<div><i class="mr-4 {{unless this.device.isMobile 'hidden-item'}} dollar icon"></i>{{t 'Sponsors'}}</div>
45+
<div><i class="mr-4 {{unless this.device.isMobile 'hidden-item'}} dollar icon"></i>{{t 'Supporters'}}</div>
4646
</LinkTo>
4747
{{/if}}
4848
{{/if}}

translations/ar.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3591,11 +3591,11 @@ msgstr "اعرف جمهورك"
35913591
#: app/templates/components/forms/wizard/sponsors-step.hbs:15:16
35923592
#: app/templates/components/public/side-menu.hbs:41:87
35933593
#: app/templates/components/public/side-menu.hbs:45:89
3594-
msgid "Sponsors"
3594+
msgid "Supporters"
35953595
msgstr "الرعاة"
35963596

35973597
#: app/mixins/event-wizard.js:36:22
3598-
msgid "Advertise your sponsors"
3598+
msgid "Advertise your Supporters"
35993599
msgstr "أعلن الرعاة"
36003600

36013601
#: app/mixins/event-wizard.js:41:22
@@ -5737,7 +5737,7 @@ msgstr "مولد الموقع"
57375737

57385738
#: app/templates/components/events/view/overview/event-apps.hbs:6:4
57395739
msgid ""
5740-
"You would like to have a dedicated event website with all details, sponsors "
5740+
"You would like to have a dedicated event website with all details, supporters "
57415741
"listing, speakers and sessions and the entire schedule?"
57425742
msgstr ""
57435743
"هل ترغب في الحصول على موقع ويب مخصص للأحداث يحتوي على جميع التفاصيل وقائمة "
@@ -5804,7 +5804,7 @@ msgid "Information to be collected from attendees"
58045804
msgstr "المعلومات التي سيتم جمعها من الحاضرين"
58055805

58065806
#: app/templates/components/events/view/overview/event-setup-checklist.hbs:60:14
5807-
msgid "Details and logos of sponsors"
5807+
msgid "Details and logos of supporters"
58085808
msgstr "تفاصيل وشعارات الرعاة"
58095809

58105810
#: app/templates/components/events/view/overview/event-setup-checklist.hbs:73:12
@@ -5915,7 +5915,7 @@ msgid "Click here to add"
59155915
msgstr "انقر هنا للإضافة"
59165916

59175917
#: app/templates/components/events/view/overview/general-info.hbs:64:20
5918-
msgid "No. of Sponsors"
5918+
msgid "No. of Supporters"
59195919
msgstr "عدد الرعاة"
59205920

59215921
#: app/templates/components/events/view/overview/general-info.hbs:65:81

translations/bn.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3457,11 +3457,11 @@ msgstr ""
34573457
#: app/templates/components/forms/wizard/sponsors-step.hbs:15:16
34583458
#: app/templates/components/public/side-menu.hbs:41:87
34593459
#: app/templates/components/public/side-menu.hbs:45:89
3460-
msgid "Sponsors"
3460+
msgid "Supporters"
34613461
msgstr ""
34623462

34633463
#: app/mixins/event-wizard.js:36:22
3464-
msgid "Advertise your sponsors"
3464+
msgid "Advertise your supporters"
34653465
msgstr ""
34663466

34673467
#: app/mixins/event-wizard.js:41:22
@@ -5524,7 +5524,7 @@ msgid "Website Generator"
55245524
msgstr ""
55255525

55265526
#: app/templates/components/events/view/overview/event-apps.hbs:6:4
5527-
msgid "You would like to have a dedicated event website with all details, sponsors listing, speakers and sessions and the entire schedule?"
5527+
msgid "You would like to have a dedicated event website with all details, supporters listing, speakers and sessions and the entire schedule?"
55285528
msgstr ""
55295529

55305530
#: app/templates/components/events/view/overview/event-apps.hbs:7:4
@@ -5572,7 +5572,7 @@ msgid "Information to be collected from attendees"
55725572
msgstr ""
55735573

55745574
#: app/templates/components/events/view/overview/event-setup-checklist.hbs:60:14
5575-
msgid "Details and logos of sponsors"
5575+
msgid "Details and logos of supporters"
55765576
msgstr ""
55775577

55785578
#: app/templates/components/events/view/overview/event-setup-checklist.hbs:73:12
@@ -5683,7 +5683,7 @@ msgid "Click here to add"
56835683
msgstr ""
56845684

56855685
#: app/templates/components/events/view/overview/general-info.hbs:64:20
5686-
msgid "No. of Sponsors"
5686+
msgid "No. of Supporters"
56875687
msgstr ""
56885688

56895689
#: app/templates/components/events/view/overview/general-info.hbs:65:81

0 commit comments

Comments
 (0)