Fix English spelling of "Alignment"

This commit is contained in:
Jonathan ES Lin 2018-01-28 18:34:40 +08:00
parent 535ed84b17
commit 2ff2e7441e
7 changed files with 12 additions and 12 deletions

View File

@ -188,7 +188,7 @@ The following will inject the table into the e-mail:
{{ with $width }}
width="{{ . }}"
{{ end }}
{{ $align := index .CustomAlignement $entry.Key }}
{{ $align := index .CustomAlignment $entry.Key }}
{{ with $align }}
style="text-align:{{ . }}"
{{ end }}
@ -203,7 +203,7 @@ The following will inject the table into the e-mail:
{{ range $cell := $row }}
<td
{{ with $columns }}
{{ $align := index .CustomAlignement $cell.Key }}
{{ $align := index .CustomAlignment $cell.Key }}
{{ with $align }}
style="text-align:{{ . }}"
{{ end }}

View File

@ -262,7 +262,7 @@ email := hermes.Email{
"Item": "20%",
"Price": "15%",
},
CustomAlignement: map[string]string{
CustomAlignment: map[string]string{
"Price": "right",
},
},

View File

@ -325,7 +325,7 @@ func (dt *Default) HTMLTemplate() string {
{{ with $width }}
width="{{ . }}"
{{ end }}
{{ $align := index .CustomAlignement $entry.Key }}
{{ $align := index .CustomAlignment $entry.Key }}
{{ with $align }}
style="text-align:{{ . }}"
{{ end }}
@ -340,7 +340,7 @@ func (dt *Default) HTMLTemplate() string {
{{ range $cell := $row }}
<td
{{ with $columns }}
{{ $align := index .CustomAlignement $cell.Key }}
{{ $align := index .CustomAlignment $cell.Key }}
{{ with $align }}
style="text-align:{{ . }}"
{{ end }}

View File

@ -36,7 +36,7 @@ func (r *receipt) Email() hermes.Email {
"Item": "20%",
"Price": "15%",
},
CustomAlignement: map[string]string{
CustomAlignment: map[string]string{
"Price": "right",
},
},

View File

@ -325,7 +325,7 @@ func (dt *Flat) HTMLTemplate() string {
{{ with $width }}
width="{{ . }}"
{{ end }}
{{ $align := index .CustomAlignement $entry.Key }}
{{ $align := index .CustomAlignment $entry.Key }}
{{ with $align }}
style="text-align:{{ . }}"
{{ end }}
@ -340,7 +340,7 @@ func (dt *Flat) HTMLTemplate() string {
{{ range $cell := $row }}
<td
{{ with $columns }}
{{ $align := index .CustomAlignement $cell.Key }}
{{ $align := index .CustomAlignment $cell.Key }}
{{ with $align }}
style="text-align:{{ . }}"
{{ end }}

View File

@ -92,8 +92,8 @@ type Table struct {
// Columns contains meta-data for the different columns
type Columns struct {
CustomWidth map[string]string
CustomAlignement map[string]string
CustomWidth map[string]string
CustomAlignment map[string]string
}
// Action is an action the user can do on the email (click on a button)

View File

@ -73,7 +73,7 @@ func (ed *SimpleExample) getExample() (Hermes, Email) {
"Item": "20%",
"Price": "15%",
},
CustomAlignement: map[string]string{
CustomAlignment: map[string]string{
"Price": "right",
},
},
@ -457,7 +457,7 @@ func TestHermes_Default(t *testing.T) {
assert.Empty(t, email.Body.Outros)
assert.Empty(t, email.Body.Table.Data)
assert.Empty(t, email.Body.Table.Columns.CustomWidth)
assert.Empty(t, email.Body.Table.Columns.CustomAlignement)
assert.Empty(t, email.Body.Table.Columns.CustomAlignment)
assert.Empty(t, string(email.Body.FreeMarkdown))
assert.Equal(t, email.Body.Greeting, "Hi")