-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #61 Updates gohugoio/hugo#3200 Updates gohugoio/hugo#2577
- Loading branch information
1 parent
be79775
commit fed5740
Showing
10 changed files
with
140 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[program_greeting] | ||
other = "Hello world" | ||
|
||
[person_greeting] | ||
other = "Hello {{.Person}}" | ||
|
||
[my_height_in_meters] | ||
one = "I am {{.Count}} meter tall." | ||
other = "I am {{.Count}} meters tall." | ||
|
||
[your_unread_email_count] | ||
one = "You have {{.Count}} unread email." | ||
other = "You have {{.Count}} unread emails." | ||
|
||
[person_unread_email_count] | ||
one = "{{.Person}} has {{.Count}} unread email." | ||
other = "{{.Person}} has {{.Count}} unread emails." | ||
|
||
[person_unread_email_count_timeframe] | ||
one = "{{.Person}} has {{.Count}} unread email in the past {{.Timeframe}}." | ||
other = "{{.Person}} has {{.Count}} unread emails in the past {{.Timeframe}}." | ||
|
||
[d_days] | ||
one = "{{.Count}} day" | ||
other = "{{.Count}} days" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[d_days] | ||
few = "arabic few translation of d_days" | ||
many = "arabic many translation of d_days" | ||
one = "" | ||
other = "" | ||
two = "" | ||
zero = "" | ||
|
||
[person_greeting] | ||
other = "arabic translation of person_greeting" | ||
|
||
[person_unread_email_count] | ||
few = "arabic few translation of person_unread_email_count" | ||
many = "arabic many translation of person_unread_email_count" | ||
one = "arabic one translation of person_unread_email_count" | ||
other = "" | ||
two = "" | ||
zero = "" | ||
|
||
[person_unread_email_count_timeframe] | ||
few = "" | ||
many = "" | ||
one = "" | ||
other = "" | ||
two = "" | ||
zero = "" | ||
|
||
[program_greeting] | ||
other = "" | ||
|
||
[your_unread_email_count] | ||
few = "" | ||
many = "" | ||
one = "" | ||
other = "" | ||
two = "" | ||
zero = "" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
program_greeting: | ||
other: "Hello world" | ||
|
||
your_unread_email_count: | ||
one: "You have {{.Count}} unread email." | ||
other: "You have {{.Count}} unread emails." | ||
|
||
my_height_in_meters: | ||
one: "I am {{.Count}} meter tall." | ||
other: "I am {{.Count}} meters tall." | ||
|
||
person_unread_email_count_timeframe: | ||
other: "{{.Person}} has {{.Count}} unread email in the past {{.Timeframe}}." | ||
|
||
d_days: | ||
other: "this should get overwritten" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters