aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/golang.org/x/text/cmd/gotext/examples
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-07-06 21:18:14 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-07-06 21:18:14 -0700
commit459bb4531f92f8663afb6f36aa9be5b789bd591f (patch)
treef14e6c06b8e5c63612d1ff36f8cab40ae8a99d20 /vendor/golang.org/x/text/cmd/gotext/examples
parent34a3fe426b33a63f2d8e02d4a70c88f137fa5410 (diff)
Update vendor dependencies
Diffstat (limited to 'vendor/golang.org/x/text/cmd/gotext/examples')
-rw-r--r--vendor/golang.org/x/text/cmd/gotext/examples/extract/catalog.go28
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/messages.gotext.json34
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/out.gotext.json30
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/messages.gotext.json32
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/out.gotext.json30
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/extracted.gotext.json206
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/messages.gotext.json20
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/out.gotext.json30
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/de/out.gotext.json8
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/en-US/out.gotext.json8
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/extracted.gotext.json39
-rwxr-xr-xvendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/zh/out.gotext.json8
12 files changed, 358 insertions, 115 deletions
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/catalog.go b/vendor/golang.org/x/text/cmd/gotext/examples/extract/catalog.go
index 1a0d6d0..4c2303f 100644
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/catalog.go
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/catalog.go
@@ -47,26 +47,24 @@ var messageKeyToIndex = map[string]int{
}
var deIndex = []uint32{ // 8 elements
- 0x00000000, 0x00000011, 0x00000023, 0x0000003d,
- 0x00000057, 0x00000076, 0x00000076, 0x00000076,
+ 0x00000000, 0x0000000d, 0x0000001b, 0x00000031,
+ 0x00000047, 0x00000066, 0x00000066, 0x00000066,
} // Size: 56 bytes
-const deData string = "" + // Size: 118 bytes
- "\x04\x00\x01\x0a\x0c\x02Hallo Welt!\x04\x00\x01\x0a\x0d\x02Hallo %[1]s!" +
- "\x04\x00\x01\x0a\x15\x02%[1]s besucht %[2]s!\x04\x00\x01\x0a\x15\x02%[1]" +
- "s besucht %[3]s!\x02Noch %[1]d Bestände zu gehen!"
+const deData string = "" + // Size: 102 bytes
+ "\x02Hallo Welt!\x0a\x02Hallo %[1]s!\x0a\x02%[1]s besucht %[2]s!\x0a\x02%" +
+ "[1]s besucht %[3]s!\x0a\x02Noch %[1]d Bestände zu gehen!"
var en_USIndex = []uint32{ // 8 elements
- 0x00000000, 0x00000012, 0x00000024, 0x00000042,
- 0x00000060, 0x000000a3, 0x000000ba, 0x000000d9,
+ 0x00000000, 0x0000000e, 0x0000001c, 0x00000036,
+ 0x00000050, 0x00000093, 0x000000aa, 0x000000c9,
} // Size: 56 bytes
-const en_USData string = "" + // Size: 217 bytes
- "\x04\x00\x01\x0a\x0d\x02Hello world!\x04\x00\x01\x0a\x0d\x02Hello %[1]s!" +
- "\x04\x00\x01\x0a\x19\x02%[1]s is visiting %[2]s!\x04\x00\x01\x0a\x19\x02" +
- "%[1]s is visiting %[3]s!\x14\x01\x81\x01\x00\x02\x14\x02One file remaini" +
- "ng!\x00&\x02There are %[1]d more files remaining!\x02%[1]s is out of ord" +
- "er!\x02%.2[1]f miles traveled (%[1]f)"
+const en_USData string = "" + // Size: 201 bytes
+ "\x02Hello world!\x0a\x02Hello %[1]s!\x0a\x02%[1]s is visiting %[2]s!\x0a" +
+ "\x02%[1]s is visiting %[3]s!\x0a\x04\x01\x81\x01\x00\x02\x14\x02One file" +
+ " remaining!\x00&\x02There are %[1]d more files remaining!\x02%[1]s is ou" +
+ "t of order!\x02%.2[1]f miles traveled (%[1]f)"
var zhIndex = []uint32{ // 8 elements
0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -75,4 +73,4 @@ var zhIndex = []uint32{ // 8 elements
const zhData string = ""
-// Total table size 503 bytes (0KiB); checksum: A968BD6
+// Total table size 471 bytes (0KiB); checksum: 7746955
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/messages.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/messages.gotext.json
index 5e1d3b3..221990f 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/messages.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/messages.gotext.json
@@ -2,17 +2,17 @@
"language": "de",
"messages": [
{
- "id": "Hello world!",
+ "id": "Hello world!\n",
"key": "Hello world!\n",
- "message": "Hello world!",
- "translation": "Hallo Welt!",
+ "message": "Hello world!\n",
+ "translation": "Hallo Welt!\n",
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:27:10"
},
{
- "id": "Hello {City}!",
+ "id": "Hello {City}!\n",
"key": "Hello %s!\n",
- "message": "Hello {City}!",
- "translation": "Hallo {City}!",
+ "message": "Hello {City}!\n",
+ "translation": "Hallo {City}!\n",
"placeholders": [
{
"id": "City",
@@ -26,10 +26,10 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:31:10"
},
{
- "id": "Hello {Town}!",
+ "id": "Hello {Town}!\n",
"key": "Hello %s!\n",
- "message": "Hello {Town}!",
- "translation": "Hallo {Town}!",
+ "message": "Hello {Town}!\n",
+ "translation": "Hallo {Town}!\n",
"placeholders": [
{
"id": "Town",
@@ -44,10 +44,10 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:35:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%s is visiting %s!\n",
- "message": "{Person} is visiting {Place}!",
- "translation": "{Person} besucht {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
+ "translation": "{Person} besucht {Place}!\n",
"placeholders": [
{
"id": "Person",
@@ -71,10 +71,10 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:40:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%[1]s is visiting %[3]s!\n",
- "message": "{Person} is visiting {Place}!",
- "translation": "{Person} besucht {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
+ "translation": "{Person} besucht {Place}!\n",
"comment": "Person visiting a place.",
"placeholders": [
{
@@ -123,9 +123,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:67:10"
},
{
- "id": "Use the following code for your discount: {ReferralCode}",
+ "id": "Use the following code for your discount: {ReferralCode}\n",
"key": "Use the following code for your discount: %d\n",
- "message": "Use the following code for your discount: {ReferralCode}",
+ "message": "Use the following code for your discount: {ReferralCode}\n",
"translation": "",
"placeholders": [
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/out.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/out.gotext.json
index 05b9330..354e8e6 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/out.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/de/out.gotext.json
@@ -2,16 +2,16 @@
"language": "de",
"messages": [
{
- "id": "Hello world!",
+ "id": "Hello world!\n",
"key": "Hello world!\n",
- "message": "Hello world!",
+ "message": "Hello world!\n",
"translation": "",
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:28:10"
},
{
- "id": "Hello {City}!",
+ "id": "Hello {City}!\n",
"key": "Hello %s!\n",
- "message": "Hello {City}!",
+ "message": "Hello {City}!\n",
"translation": "",
"placeholders": [
{
@@ -26,9 +26,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:32:10"
},
{
- "id": "Hello {Town}!",
+ "id": "Hello {Town}!\n",
"key": "Hello %s!\n",
- "message": "Hello {Town}!",
+ "message": "Hello {Town}!\n",
"translation": "",
"placeholders": [
{
@@ -44,9 +44,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:36:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%s is visiting %s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"placeholders": [
{
@@ -71,9 +71,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:41:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%[1]s is visiting %[3]s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"comment": "Person visiting a place.",
"placeholders": [
@@ -106,13 +106,13 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:56:10"
},
{
- "id": "{2} files remaining!",
+ "id": "{} files remaining!",
"key": "%d files remaining!",
- "message": "{2} files remaining!",
+ "message": "{} files remaining!",
"translation": "",
"placeholders": [
{
- "id": "2",
+ "id": "",
"string": "%[1]d",
"type": "int",
"underlyingType": "int",
@@ -140,9 +140,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:68:10"
},
{
- "id": "Use the following code for your discount: {ReferralCode}",
+ "id": "Use the following code for your discount: {ReferralCode}\n",
"key": "Use the following code for your discount: %d\n",
- "message": "Use the following code for your discount: {ReferralCode}",
+ "message": "Use the following code for your discount: {ReferralCode}\n",
"translation": "",
"placeholders": [
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/messages.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/messages.gotext.json
index 5f6f8b0..37d691b 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/messages.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/messages.gotext.json
@@ -2,23 +2,23 @@
"language": "en-US",
"messages": [
{
- "id": "Hello world!",
+"id": "Hello world!\n",
"key": "Hello world!\n",
- "message": "Hello world!",
- "translation": "Hello world!",
+ "message": "Hello world!\n",
+ "translation": "Hello world!\n",
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:27:10"
},
{
- "id": "Hello {City}!",
+ "id": "Hello {City}!\n",
"key": "Hello %s!\n",
- "message": "Hello {City}!",
- "translation": "Hello {City}n"
+ "message": "Hello {City}!\n",
+ "translation": "Hello {City}!\n"
},
{
- "id": "Hello {Town}!",
+ "id": "Hello {Town}!\n",
"key": "Hello %s!\n",
- "message": "Hello {Town}!",
- "translation": "Hello {Town}!",
+ "message": "Hello {Town}!\n",
+ "translation": "Hello {Town}!\n",
"placeholders": [
{
"id": "Town",
@@ -32,16 +32,16 @@
]
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%s is visiting %s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "{Person} is visiting {Place}!\n"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%[1]s is visiting %[3]s!\n",
- "message": "{Person} is visiting {Place}!",
- "translation": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
+ "translation": "{Person} is visiting {Place}!\n",
"comment": "Person visiting a place."
},
{
@@ -60,9 +60,9 @@
}
},
{
- "id": "Use the following code for your discount: {ReferralCode}",
+ "id": "Use the following code for your discount: {ReferralCode}\n",
"key": "Use the following code for your discount: %d\n",
- "message": "Use the following code for your discount: {ReferralCode}",
+ "message": "Use the following code for your discount: {ReferralCode}\n",
"translation": ""
},
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/out.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/out.gotext.json
index 69e8157..fea86e5 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/out.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/en-US/out.gotext.json
@@ -2,16 +2,16 @@
"language": "en-US",
"messages": [
{
- "id": "Hello world!",
+ "id": "Hello world!\n",
"key": "Hello world!\n",
- "message": "Hello world!",
+ "message": "Hello world!\n",
"translation": "",
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:28:10"
},
{
- "id": "Hello {City}!",
+ "id": "Hello {City}!\n",
"key": "Hello %s!\n",
- "message": "Hello {City}!",
+ "message": "Hello {City}!\n",
"translation": "",
"placeholders": [
{
@@ -26,9 +26,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:32:10"
},
{
- "id": "Hello {Town}!",
+ "id": "Hello {Town}!\n",
"key": "Hello %s!\n",
- "message": "Hello {Town}!",
+ "message": "Hello {Town}!\n",
"translation": "",
"placeholders": [
{
@@ -44,9 +44,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:36:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%s is visiting %s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"placeholders": [
{
@@ -71,9 +71,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:41:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%[1]s is visiting %[3]s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"comment": "Person visiting a place.",
"placeholders": [
@@ -106,13 +106,13 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:56:10"
},
{
- "id": "{2} files remaining!",
+ "id": "{} files remaining!",
"key": "%d files remaining!",
- "message": "{2} files remaining!",
+ "message": "{} files remaining!",
"translation": "",
"placeholders": [
{
- "id": "2",
+ "id": "",
"string": "%[1]d",
"type": "int",
"underlyingType": "int",
@@ -140,9 +140,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:68:10"
},
{
- "id": "Use the following code for your discount: {ReferralCode}",
+ "id": "Use the following code for your discount: {ReferralCode}\n",
"key": "Use the following code for your discount: %d\n",
- "message": "Use the following code for your discount: {ReferralCode}",
+ "message": "Use the following code for your discount: {ReferralCode}\n",
"translation": "",
"placeholders": [
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/extracted.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/extracted.gotext.json
new file mode 100755
index 0000000..fea86e5
--- /dev/null
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/extracted.gotext.json
@@ -0,0 +1,206 @@
+{
+ "language": "en-US",
+ "messages": [
+ {
+ "id": "Hello world!\n",
+ "key": "Hello world!\n",
+ "message": "Hello world!\n",
+ "translation": "",
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:28:10"
+ },
+ {
+ "id": "Hello {City}!\n",
+ "key": "Hello %s!\n",
+ "message": "Hello {City}!\n",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "City",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "city"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:32:10"
+ },
+ {
+ "id": "Hello {Town}!\n",
+ "key": "Hello %s!\n",
+ "message": "Hello {Town}!\n",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "Town",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "town",
+ "comment": "Town"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:36:10"
+ },
+ {
+ "id": "{Person} is visiting {Place}!\n",
+ "key": "%s is visiting %s!\n",
+ "message": "{Person} is visiting {Place}!\n",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "Person",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "person",
+ "comment": "The person of matter."
+ },
+ {
+ "id": "Place",
+ "string": "%[2]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 2,
+ "expr": "place",
+ "comment": "Place the person is visiting."
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:41:10"
+ },
+ {
+ "id": "{Person} is visiting {Place}!\n",
+ "key": "%[1]s is visiting %[3]s!\n",
+ "message": "{Person} is visiting {Place}!\n",
+ "translation": "",
+ "comment": "Person visiting a place.",
+ "placeholders": [
+ {
+ "id": "Person",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "pp.Person"
+ },
+ {
+ "id": "Place",
+ "string": "%[3]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 3,
+ "expr": "pp.Place",
+ "comment": "Place the person is visiting."
+ },
+ {
+ "id": "Extra",
+ "string": "%[2]v",
+ "type": "int",
+ "underlyingType": "int",
+ "argNum": 2,
+ "expr": "pp.extra"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:56:10"
+ },
+ {
+ "id": "{} files remaining!",
+ "key": "%d files remaining!",
+ "message": "{} files remaining!",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "",
+ "string": "%[1]d",
+ "type": "int",
+ "underlyingType": "int",
+ "argNum": 1,
+ "expr": "2"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:63:10"
+ },
+ {
+ "id": "{N} more files remaining!",
+ "key": "%d more files remaining!",
+ "message": "{N} more files remaining!",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "N",
+ "string": "%[1]d",
+ "type": "int",
+ "underlyingType": "int",
+ "argNum": 1,
+ "expr": "n"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:68:10"
+ },
+ {
+ "id": "Use the following code for your discount: {ReferralCode}\n",
+ "key": "Use the following code for your discount: %d\n",
+ "message": "Use the following code for your discount: {ReferralCode}\n",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "ReferralCode",
+ "string": "%[1]d",
+ "type": "golang.org/x/text/cmd/gotext/examples/extract.referralCode",
+ "underlyingType": "int",
+ "argNum": 1,
+ "expr": "c"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:74:10"
+ },
+ {
+ "id": [
+ "msgOutOfOrder",
+ "{Device} is out of order!"
+ ],
+ "key": "%s is out of order!",
+ "message": "{Device} is out of order!",
+ "translation": "",
+ "comment": "FOO\n",
+ "placeholders": [
+ {
+ "id": "Device",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "device"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:82:10"
+ },
+ {
+ "id": "{Miles} miles traveled ({Miles_1})",
+ "key": "%.2[1]f miles traveled (%[1]f)",
+ "message": "{Miles} miles traveled ({Miles_1})",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "Miles",
+ "string": "%.2[1]f",
+ "type": "float64",
+ "underlyingType": "float64",
+ "argNum": 1,
+ "expr": "miles"
+ },
+ {
+ "id": "Miles_1",
+ "string": "%[1]f",
+ "type": "float64",
+ "underlyingType": "float64",
+ "argNum": 1,
+ "expr": "miles"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:86:10"
+ }
+ ]
+} \ No newline at end of file
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/messages.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/messages.gotext.json
index 9913f83..8530740 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/messages.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/messages.gotext.json
@@ -2,16 +2,16 @@
"language": "zh",
"messages": [
{
- "id": "Hello world!",
+"id": "Hello world!\n",
"key": "Hello world!\n",
- "message": "Hello world!",
+ "message": "Hello world!\n",
"translation": "",
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:27:10"
},
{
- "id": "Hello {City}!",
+ "id": "Hello {City}!\n",
"key": "Hello %s!\n",
- "message": "Hello {City}!",
+ "message": "Hello {City}!\n",
"translation": "",
"placeholders": [
{
@@ -26,9 +26,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:31:10"
},
{
- "id": "Hello {Town}!",
+ "id": "Hello {Town}!\n",
"key": "Hello %s!\n",
- "message": "Hello {Town}!",
+ "message": "Hello {Town}!\n",
"translation": "",
"placeholders": [
{
@@ -44,9 +44,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:35:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%s is visiting %s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"placeholders": [
{
@@ -71,9 +71,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:40:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%[1]s is visiting %[3]s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"comment": "Person visiting a place.",
"placeholders": [
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/out.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/out.gotext.json
index 6b53a34..88739a3 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/out.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract/locales/zh/out.gotext.json
@@ -2,16 +2,16 @@
"language": "zh",
"messages": [
{
- "id": "Hello world!",
+ "id": "Hello world!\n",
"key": "Hello world!\n",
- "message": "Hello world!",
+ "message": "Hello world!\n",
"translation": "",
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:28:10"
},
{
- "id": "Hello {City}!",
+ "id": "Hello {City}!\n",
"key": "Hello %s!\n",
- "message": "Hello {City}!",
+ "message": "Hello {City}!\n",
"translation": "",
"placeholders": [
{
@@ -26,9 +26,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:32:10"
},
{
- "id": "Hello {Town}!",
+ "id": "Hello {Town}!\n",
"key": "Hello %s!\n",
- "message": "Hello {Town}!",
+ "message": "Hello {Town}!\n",
"translation": "",
"placeholders": [
{
@@ -44,9 +44,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:36:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%s is visiting %s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"placeholders": [
{
@@ -71,9 +71,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:41:10"
},
{
- "id": "{Person} is visiting {Place}!",
+ "id": "{Person} is visiting {Place}!\n",
"key": "%[1]s is visiting %[3]s!\n",
- "message": "{Person} is visiting {Place}!",
+ "message": "{Person} is visiting {Place}!\n",
"translation": "",
"comment": "Person visiting a place.",
"placeholders": [
@@ -106,13 +106,13 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:56:10"
},
{
- "id": "{2} files remaining!",
+ "id": "{} files remaining!",
"key": "%d files remaining!",
- "message": "{2} files remaining!",
+ "message": "{} files remaining!",
"translation": "",
"placeholders": [
{
- "id": "2",
+ "id": "",
"string": "%[1]d",
"type": "int",
"underlyingType": "int",
@@ -140,9 +140,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract/main.go:68:10"
},
{
- "id": "Use the following code for your discount: {ReferralCode}",
+ "id": "Use the following code for your discount: {ReferralCode}\n",
"key": "Use the following code for your discount: %d\n",
- "message": "Use the following code for your discount: {ReferralCode}",
+ "message": "Use the following code for your discount: {ReferralCode}\n",
"translation": "",
"placeholders": [
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/de/out.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/de/out.gotext.json
index d8437c0..bd71590 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/de/out.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/de/out.gotext.json
@@ -2,9 +2,9 @@
"language": "de",
"messages": [
{
- "id": "Hello {From}!",
+ "id": "Hello {From}!\n",
"key": "Hello %s!\n",
- "message": "Hello {From}!",
+ "message": "Hello {From}!\n",
"translation": "",
"placeholders": [
{
@@ -19,9 +19,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract_http/pkg/pkg.go:22:11"
},
{
- "id": "Do you like your browser ({User_Agent})?",
+ "id": "Do you like your browser ({User_Agent})?\n",
"key": "Do you like your browser (%s)?\n",
- "message": "Do you like your browser ({User_Agent})?",
+ "message": "Do you like your browser ({User_Agent})?\n",
"translation": "",
"placeholders": [
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/en-US/out.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/en-US/out.gotext.json
index de59eca..d0c4684 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/en-US/out.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/en-US/out.gotext.json
@@ -2,9 +2,9 @@
"language": "en-US",
"messages": [
{
- "id": "Hello {From}!",
+ "id": "Hello {From}!\n",
"key": "Hello %s!\n",
- "message": "Hello {From}!",
+ "message": "Hello {From}!\n",
"translation": "",
"placeholders": [
{
@@ -19,9 +19,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract_http/pkg/pkg.go:22:11"
},
{
- "id": "Do you like your browser ({User_Agent})?",
+ "id": "Do you like your browser ({User_Agent})?\n",
"key": "Do you like your browser (%s)?\n",
- "message": "Do you like your browser ({User_Agent})?",
+ "message": "Do you like your browser ({User_Agent})?\n",
"translation": "",
"placeholders": [
{
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/extracted.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/extracted.gotext.json
new file mode 100755
index 0000000..d0c4684
--- /dev/null
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/extracted.gotext.json
@@ -0,0 +1,39 @@
+{
+ "language": "en-US",
+ "messages": [
+ {
+ "id": "Hello {From}!\n",
+ "key": "Hello %s!\n",
+ "message": "Hello {From}!\n",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "From",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "r.Header.Get(\"From\")"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract_http/pkg/pkg.go:22:11"
+ },
+ {
+ "id": "Do you like your browser ({User_Agent})?\n",
+ "key": "Do you like your browser (%s)?\n",
+ "message": "Do you like your browser ({User_Agent})?\n",
+ "translation": "",
+ "placeholders": [
+ {
+ "id": "User_Agent",
+ "string": "%[1]s",
+ "type": "string",
+ "underlyingType": "string",
+ "argNum": 1,
+ "expr": "r.Header.Get(\"User-Agent\")"
+ }
+ ],
+ "position": "golang.org/x/text/cmd/gotext/examples/extract_http/pkg/pkg.go:24:11"
+ }
+ ]
+} \ No newline at end of file
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/zh/out.gotext.json b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/zh/out.gotext.json
index 0bab4a7..cad0ff0 100755
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/zh/out.gotext.json
+++ b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/locales/zh/out.gotext.json
@@ -2,9 +2,9 @@
"language": "zh",
"messages": [
{
- "id": "Hello {From}!",
+ "id": "Hello {From}!\n",
"key": "Hello %s!\n",
- "message": "Hello {From}!",
+ "message": "Hello {From}!\n",
"translation": "",
"placeholders": [
{
@@ -19,9 +19,9 @@
"position": "golang.org/x/text/cmd/gotext/examples/extract_http/pkg/pkg.go:22:11"
},
{
- "id": "Do you like your browser ({User_Agent})?",
+ "id": "Do you like your browser ({User_Agent})?\n",
"key": "Do you like your browser (%s)?\n",
- "message": "Do you like your browser ({User_Agent})?",
+ "message": "Do you like your browser ({User_Agent})?\n",
"translation": "",
"placeholders": [
{