Skip to content

Commit e94ad11

Browse files
fix: update the reservation email templates for various languages
Update all the reservation email templates for the various languages. The translations were machine generated.
1 parent 0f1071e commit e94ad11

38 files changed

+1115
-311
lines changed

lang/bg_bg/ReservationCreated.tpl

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,40 @@
44

55
Начало: {formatdate date=$StartDate key=reservation_email}<br/>
66
Край: {formatdate date=$EndDate key=reservation_email}<br/>
7-
{if $ResourceNames|default:array()|count > 1}
8-
Ресурси:<br/>
9-
{foreach from=$ResourceNames item=resourceName}
10-
{$resourceName}<br/>
11-
{/foreach}
12-
{else}
13-
ресурс: {$ResourceName}<br/>
14-
{/if}
157

16-
{if $ResourceImage}
17-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
8+
{if $Resources|default:array()|count > 1}
9+
<strong>Ресурси ({$Resources|default:array()|count}):</strong> <br />
10+
{else}
11+
<strong>Ресурс:</strong><br/>
1812
{/if}
13+
{foreach from=$Resources item=resource name=resourceLoop}
14+
<strong>{$resource.name|escape}</strong><br/>
15+
{if $resource.scheduleName}<strong>График:</strong> {$resource.scheduleName|escape}<br/>{/if}
16+
<strong>Идентификатор на ресурс:</strong> {$resource.id}<br/>
17+
{if $resource.location}<strong>Местоположение:</strong> {$resource.location|escape}<br/>{/if}
18+
{if $resource.contact}<strong>Контакт:</strong> {$resource.contact|escape}<br/>{/if}
19+
{if $resource.description}<strong>Описание:</strong> {$resource.description|escape|nl2br}<br/>{/if}
20+
{if $resource.notes}<strong>Бележки:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
21+
{if $resource.resourceAdministrator}<strong>Администратор на ресурса:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
22+
23+
{if $resource.attributeRows|default:array()|count > 0}
24+
<strong>Детайли за ресурса:</strong><br/>
25+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
26+
{foreach from=$resource.attributeRows item=row}
27+
<tr>
28+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
29+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
30+
</tr>
31+
{/foreach}
32+
</table>
33+
{/if}
34+
35+
{if $resource.image}
36+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
37+
{/if}
38+
39+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
40+
{/foreach}
1941

2042
Заглавие: {$Title}<br/>
2143
Описание: {$Description|nl2br}<br/>

lang/bg_bg/ReservationCreatedAdmin.tpl

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,40 @@
55
Потребител: {$UserName}
66
Начало: {formatdate date=$StartDate key=reservation_email}<br/>
77
Край: {formatdate date=$EndDate key=reservation_email}<br/>
8-
{if $ResourceNames|default:array()|count > 1}
9-
Ресурси:<br/>
10-
{foreach from=$ResourceNames item=resourceName}
11-
{$resourceName}<br/>
12-
{/foreach}
13-
{else}
14-
Ресурс: {$ResourceName}<br/>
15-
{/if}
168

17-
{if $ResourceImage}
18-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
19-
{/if}
9+
{if $Resources|default:array()|count > 1}
10+
<strong>Ресурси ({$Resources|default:array()|count}):</strong> <br />
11+
{else}
12+
<strong>Ресурс:</strong><br/>
13+
{/if}
14+
{foreach from=$Resources item=resource name=resourceLoop}
15+
<strong>{$resource.name|escape}</strong><br/>
16+
{if $resource.scheduleName}<strong>График:</strong> {$resource.scheduleName|escape}<br/>{/if}
17+
<strong>Идентификатор на ресурс:</strong> {$resource.id}<br/>
18+
{if $resource.location}<strong>Местоположение:</strong> {$resource.location|escape}<br/>{/if}
19+
{if $resource.contact}<strong>Контакт:</strong> {$resource.contact|escape}<br/>{/if}
20+
{if $resource.description}<strong>Описание:</strong> {$resource.description|escape|nl2br}<br/>{/if}
21+
{if $resource.notes}<strong>Бележки:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
22+
{if $resource.resourceAdministrator}<strong>Администратор на ресурса:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
23+
24+
{if $resource.attributeRows|default:array()|count > 0}
25+
<strong>Детайли за ресурса:</strong><br/>
26+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
27+
{foreach from=$resource.attributeRows item=row}
28+
<tr>
29+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
30+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
31+
</tr>
32+
{/foreach}
33+
</table>
34+
{/if}
35+
36+
{if $resource.image}
37+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
38+
{/if}
39+
40+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
41+
{/foreach}
2042

2143
Заглавие: {$Title}<br/>
2244
Описание: {$Description}<br/>

lang/cz/ReservationCreated.tpl

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,40 @@
44

55
Začátek: {formatdate date=$StartDate key=reservation_email}<br/>
66
Konec: {formatdate date=$EndDate key=reservation_email}<br/>
7-
{if $ResourceNames|default:array()|count > 1}
8-
Zdroje:<br/>
9-
{foreach from=$ResourceNames item=resourceName}
10-
{$resourceName}<br/>
11-
{/foreach}
12-
{else}
13-
Zdroj: {$ResourceName}<br/>
14-
{/if}
157

16-
{if $ResourceImage}
17-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
8+
{if $Resources|default:array()|count > 1}
9+
<strong>Zdroje ({$Resources|default:array()|count}):</strong> <br />
10+
{else}
11+
<strong>Zdroj:</strong><br/>
1812
{/if}
13+
{foreach from=$Resources item=resource name=resourceLoop}
14+
<strong>{$resource.name|escape}</strong><br/>
15+
{if $resource.scheduleName}<strong>Rozvrh:</strong> {$resource.scheduleName|escape}<br/>{/if}
16+
<strong>ID zdroje:</strong> {$resource.id}<br/>
17+
{if $resource.location}<strong>Umístění:</strong> {$resource.location|escape}<br/>{/if}
18+
{if $resource.contact}<strong>Kontakt:</strong> {$resource.contact|escape}<br/>{/if}
19+
{if $resource.description}<strong>Popis:</strong> {$resource.description|escape|nl2br}<br/>{/if}
20+
{if $resource.notes}<strong>Poznámky:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
21+
{if $resource.resourceAdministrator}<strong>Správce zdroje:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
22+
23+
{if $resource.attributeRows|default:array()|count > 0}
24+
<strong>Detaily zdroje:</strong><br/>
25+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
26+
{foreach from=$resource.attributeRows item=row}
27+
<tr>
28+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
29+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
30+
</tr>
31+
{/foreach}
32+
</table>
33+
{/if}
34+
35+
{if $resource.image}
36+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
37+
{/if}
38+
39+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
40+
{/foreach}
1941

2042
Nadpis: {$Title}<br/>
2143
Popis: {$Description|nl2br}<br/>

lang/cz/ReservationCreatedAdmin.tpl

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,40 @@
55
Uživatel: {$UserName}<br/>
66
Začátek: {formatdate date=$StartDate key=reservation_email}<br/>
77
Konec: {formatdate date=$EndDate key=reservation_email}<br/>
8-
{if $ResourceNames|default:array()|count > 1}
9-
Zdroje:<br/>
10-
{foreach from=$ResourceNames item=resourceName}
11-
{$resourceName}<br/>
12-
{/foreach}
13-
{else}
14-
Zdroj: {$ResourceName}<br/>
15-
{/if}
168

17-
{if $ResourceImage}
18-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
9+
{if $Resources|default:array()|count > 1}
10+
<strong>Zdroje ({$Resources|default:array()|count}):</strong> <br />
11+
{else}
12+
<strong>Zdroj:</strong><br/>
1913
{/if}
14+
{foreach from=$Resources item=resource name=resourceLoop}
15+
<strong>{$resource.name|escape}</strong><br/>
16+
{if $resource.scheduleName}<strong>Rozvrh:</strong> {$resource.scheduleName|escape}<br/>{/if}
17+
<strong>ID zdroje:</strong> {$resource.id}<br/>
18+
{if $resource.location}<strong>Umístění:</strong> {$resource.location|escape}<br/>{/if}
19+
{if $resource.contact}<strong>Kontakt:</strong> {$resource.contact|escape}<br/>{/if}
20+
{if $resource.description}<strong>Popis:</strong> {$resource.description|escape|nl2br}<br/>{/if}
21+
{if $resource.notes}<strong>Poznámky:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
22+
{if $resource.resourceAdministrator}<strong>Správce zdroje:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
23+
24+
{if $resource.attributeRows|default:array()|count > 0}
25+
<strong>Detaily zdroje:</strong><br/>
26+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
27+
{foreach from=$resource.attributeRows item=row}
28+
<tr>
29+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
30+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
31+
</tr>
32+
{/foreach}
33+
</table>
34+
{/if}
35+
36+
{if $resource.image}
37+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
38+
{/if}
39+
40+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
41+
{/foreach}
2042

2143
Nadpis: {$Title}<br/>
2244
Popis: {$Description}<br/>

lang/de_de/ReservationCreated.tpl

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,40 @@
44

55
Beginn: {formatdate date=$StartDate key=reservation_email}<br/>
66
Ende: {formatdate date=$EndDate key=reservation_email}<br/>
7-
{if $ResourceNames|default:array()|count > 1}
8-
Ressourcen:<br/>
9-
{foreach from=$ResourceNames item=resourceName}
10-
{$resourceName}<br/>
11-
{/foreach}
12-
{else}
13-
Ressource: {$ResourceName}<br/>
14-
{/if}
157

16-
{if $ResourceImage}
17-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
8+
{if $Resources|default:array()|count > 1}
9+
<strong>Ressourcen ({$Resources|default:array()|count}):</strong> <br />
10+
{else}
11+
<strong>Ressource:</strong><br/>
1812
{/if}
13+
{foreach from=$Resources item=resource name=resourceLoop}
14+
<strong>{$resource.name|escape}</strong><br/>
15+
{if $resource.scheduleName}<strong>Zeitplan:</strong> {$resource.scheduleName|escape}<br/>{/if}
16+
<strong>Ressourcen-ID:</strong> {$resource.id}<br/>
17+
{if $resource.location}<strong>Standort:</strong> {$resource.location|escape}<br/>{/if}
18+
{if $resource.contact}<strong>Kontakt:</strong> {$resource.contact|escape}<br/>{/if}
19+
{if $resource.description}<strong>Beschreibung:</strong> {$resource.description|escape|nl2br}<br/>{/if}
20+
{if $resource.notes}<strong>Notizen:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
21+
{if $resource.resourceAdministrator}<strong>Ressourcenadministrator:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
22+
23+
{if $resource.attributeRows|default:array()|count > 0}
24+
<strong>Ressourcendetails:</strong><br/>
25+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
26+
{foreach from=$resource.attributeRows item=row}
27+
<tr>
28+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
29+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
30+
</tr>
31+
{/foreach}
32+
</table>
33+
{/if}
34+
35+
{if $resource.image}
36+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
37+
{/if}
38+
39+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
40+
{/foreach}
1941

2042
Titel: {$Title}<br/>
2143
Beschreibung: {$Description|nl2br}<br/>

lang/de_de/ReservationCreatedAdmin.tpl

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,40 @@
55
Benutzer: {$UserName}<br/>
66
Beginn: {formatdate date=$StartDate key=reservation_email}<br/>
77
Ende: {formatdate date=$EndDate key=reservation_email}<br/>
8-
{if $ResourceNames|default:array()|count > 1}
9-
Ressourcen:<br/>
10-
{foreach from=$ResourceNames item=resourceName}
11-
{$resourceName}<br/>
12-
{/foreach}
13-
{else}
14-
Ressource: {$ResourceName}<br/>
15-
{/if}
168

17-
{if $ResourceImage}
18-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
9+
{if $Resources|default:array()|count > 1}
10+
<strong>Ressourcen ({$Resources|default:array()|count}):</strong> <br />
11+
{else}
12+
<strong>Ressource:</strong><br/>
1913
{/if}
14+
{foreach from=$Resources item=resource name=resourceLoop}
15+
<strong>{$resource.name|escape}</strong><br/>
16+
{if $resource.scheduleName}<strong>Zeitplan:</strong> {$resource.scheduleName|escape}<br/>{/if}
17+
<strong>Ressourcen-ID:</strong> {$resource.id}<br/>
18+
{if $resource.location}<strong>Standort:</strong> {$resource.location|escape}<br/>{/if}
19+
{if $resource.contact}<strong>Kontakt:</strong> {$resource.contact|escape}<br/>{/if}
20+
{if $resource.description}<strong>Beschreibung:</strong> {$resource.description|escape|nl2br}<br/>{/if}
21+
{if $resource.notes}<strong>Notizen:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
22+
{if $resource.resourceAdministrator}<strong>Ressourcenadministrator:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
23+
24+
{if $resource.attributeRows|default:array()|count > 0}
25+
<strong>Ressourcendetails:</strong><br/>
26+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
27+
{foreach from=$resource.attributeRows item=row}
28+
<tr>
29+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
30+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
31+
</tr>
32+
{/foreach}
33+
</table>
34+
{/if}
35+
36+
{if $resource.image}
37+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
38+
{/if}
39+
40+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
41+
{/foreach}
2042

2143
Titel: {$Title}<br/>
2244
Beschreibung: {$Description}<br/>

lang/du_nl/ReservationCreated.tpl

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,40 @@
44

55
Start: {formatdate date=$StartDate key=reservation_email}<br/>
66
Eindigd: {formatdate date=$EndDate key=reservation_email}<br/>
7-
{if $ResourceNames|default:array()|count > 1}
8-
Bronnen:<br/>
9-
{foreach from=$ResourceNames item=resourceName}
10-
{$resourceName}<br/>
11-
{/foreach}
12-
{else}
13-
Bron: {$ResourceName}<br/>
14-
{/if}
157

16-
{if $ResourceImage}
17-
<div class="resource-image"><img src="{$ScriptUrl}/{$ResourceImage}"/></div>
8+
{if $Resources|default:array()|count > 1}
9+
<strong>Bronnen ({$Resources|default:array()|count}):</strong> <br />
10+
{else}
11+
<strong>Bron:</strong><br/>
1812
{/if}
13+
{foreach from=$Resources item=resource name=resourceLoop}
14+
<strong>{$resource.name|escape}</strong><br/>
15+
{if $resource.scheduleName}<strong>Schema:</strong> {$resource.scheduleName|escape}<br/>{/if}
16+
<strong>Resource-ID:</strong> {$resource.id}<br/>
17+
{if $resource.location}<strong>Locatie:</strong> {$resource.location|escape}<br/>{/if}
18+
{if $resource.contact}<strong>Contactpersoon:</strong> {$resource.contact|escape}<br/>{/if}
19+
{if $resource.description}<strong>Beschrijving:</strong> {$resource.description|escape|nl2br}<br/>{/if}
20+
{if $resource.notes}<strong>Notities:</strong> {$resource.notes|escape|nl2br}<br/>{/if}
21+
{if $resource.resourceAdministrator}<strong>Resourcebeheerder:</strong> {$resource.resourceAdministrator|escape}<br/>{/if}
22+
23+
{if $resource.attributeRows|default:array()|count > 0}
24+
<strong>Resourcedetails:</strong><br/>
25+
<table cellpadding="4" cellspacing="0" border="1" style="border-collapse: collapse; margin-top: 4px;">
26+
{foreach from=$resource.attributeRows item=row}
27+
<tr>
28+
<th scope="row" valign="top" style="text-align: left;"><strong>{$row.label|escape}</strong></th>
29+
<td valign="top">{$row.displayValue|escape|nl2br}</td>
30+
</tr>
31+
{/foreach}
32+
</table>
33+
{/if}
34+
35+
{if $resource.image}
36+
<div class="resource-image"><img alt="{$resource.name|escape}" src="{$ScriptUrl}/{$resource.image|escape}"/></div>
37+
{/if}
38+
39+
{if !$smarty.foreach.resourceLoop.last}<br/>{/if}
40+
{/foreach}
1941

2042
Titel: {$Title}<br/>
2143
Beschrijving: {$Description|nl2br}<br/>

0 commit comments

Comments
 (0)