This commit is contained in:
Xes
2025-08-14 22:41:49 +02:00
parent 2de81ccc46
commit 8ce45119b6
39774 changed files with 4309466 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"Entry1": {
"Array": [
"foo",
"bar"
],
"Integer": 5,
"Boolean": false,
"Float": 1.23
},
"Entry2": "String",
"Traversable": {
"Foo": "Bar"
}
}

View File

@@ -0,0 +1,17 @@
<?php
return [
'Entry1' => [
'Array' => [
0 => 'foo',
1 => 'bar',
],
'Integer' => 5,
'Boolean' => false,
'Float' => 1.23,
],
'Entry2' => 'String',
'Traversable' => [
'Foo' => 'Bar',
],
];

Binary file not shown.

View File

@@ -0,0 +1,39 @@
en{
Entry1{
Array{
"foo",
"bar",
{
Key{"value"}
},
}
Integer:int{5}
IntVector:intvector{
0,
1,
2,
3,
}
NotAnIntVector{
0:int{0}
2:int{1}
1:int{2}
3:int{3}
}
IntVectorWithStringKeys{
a:int{0}
b:int{1}
c:int{2}
}
TableWithIntKeys{
0:int{0}
1:int{1}
3:int{3}
}
FalseBoolean{"false"}
TrueBoolean{"true"}
Null{""}
Float{"1.23"}
}
Entry2{"String"}
}

View File

@@ -0,0 +1,3 @@
en_nofallback:table(nofallback){
Entry{"Value"}
}

View File

@@ -0,0 +1,4 @@
escaped{
"EntryWith:Colon"{"Value"}
"Entry With Spaces"{"Value"}
}

View File

@@ -0,0 +1,5 @@
{
"Entry": {
"NestedEntry": "Value"
}
}

View File

@@ -0,0 +1,7 @@
<?php
return [
'Entry' => [
'NestedEntry' => 'Value',
],
];

Binary file not shown.

View File

@@ -0,0 +1,5 @@
rb{
Entry{
NestedEntry{"Value"}
}
}