summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-05-12 23:56:07 -0400
committerChristopher Speller <crspeller@gmail.com>2016-05-12 23:56:07 -0400
commit38ee83e45b4de7edf89bf9f0ef629eb4c6ad0fa8 (patch)
treea4fde09672192b97d453ad605b030bd5a10c5a45 /vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go
parent84d2482ddbff9564c9ad75b2d30af66e3ddfd44d (diff)
downloadchat-38ee83e45b4de7edf89bf9f0ef629eb4c6ad0fa8.tar.gz
chat-38ee83e45b4de7edf89bf9f0ef629eb4c6ad0fa8.tar.bz2
chat-38ee83e45b4de7edf89bf9f0ef629eb4c6ad0fa8.zip
Moving to glide
Diffstat (limited to 'vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go')
-rw-r--r--vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go62
1 files changed, 62 insertions, 0 deletions
diff --git a/vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go b/vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go
new file mode 100644
index 000000000..b2e7bdcfe
--- /dev/null
+++ b/vendor/github.com/nicksnyder/go-i18n/i18n/exampleyaml_test.go
@@ -0,0 +1,62 @@
+package i18n_test
+
+import (
+ "fmt"
+ "github.com/nicksnyder/go-i18n/i18n"
+)
+
+func ExampleYAML() {
+ i18n.MustLoadTranslationFile("../goi18n/testdata/en-us.yaml")
+
+ T, _ := i18n.Tfunc("en-US")
+
+ bobMap := map[string]interface{}{"Person": "Bob"}
+ bobStruct := struct{ Person string }{Person: "Bob"}
+
+ fmt.Println(T("program_greeting"))
+ fmt.Println(T("person_greeting", bobMap))
+ fmt.Println(T("person_greeting", bobStruct))
+
+ fmt.Println(T("your_unread_email_count", 0))
+ fmt.Println(T("your_unread_email_count", 1))
+ fmt.Println(T("your_unread_email_count", 2))
+ fmt.Println(T("my_height_in_meters", "1.7"))
+
+ fmt.Println(T("person_unread_email_count", 0, bobMap))
+ fmt.Println(T("person_unread_email_count", 1, bobMap))
+ fmt.Println(T("person_unread_email_count", 2, bobMap))
+ fmt.Println(T("person_unread_email_count", 0, bobStruct))
+ fmt.Println(T("person_unread_email_count", 1, bobStruct))
+ fmt.Println(T("person_unread_email_count", 2, bobStruct))
+
+ fmt.Println(T("person_unread_email_count_timeframe", 3, map[string]interface{}{
+ "Person": "Bob",
+ "Timeframe": T("d_days", 0),
+ }))
+ fmt.Println(T("person_unread_email_count_timeframe", 3, map[string]interface{}{
+ "Person": "Bob",
+ "Timeframe": T("d_days", 1),
+ }))
+ fmt.Println(T("person_unread_email_count_timeframe", 3, map[string]interface{}{
+ "Person": "Bob",
+ "Timeframe": T("d_days", 2),
+ }))
+
+ // Output:
+ // Hello world
+ // Hello Bob
+ // Hello Bob
+ // You have 0 unread emails.
+ // You have 1 unread email.
+ // You have 2 unread emails.
+ // I am 1.7 meters tall.
+ // Bob has 0 unread emails.
+ // Bob has 1 unread email.
+ // Bob has 2 unread emails.
+ // Bob has 0 unread emails.
+ // Bob has 1 unread email.
+ // Bob has 2 unread emails.
+ // Bob has 3 unread emails in the past 0 days.
+ // Bob has 3 unread emails in the past 1 day.
+ // Bob has 3 unread emails in the past 2 days.
+}