-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ffc187
commit dcdf23d
Showing
24 changed files
with
221 additions
and
46 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
i18nilize/tests/resources/diffing_algorithm/all_tests/all_added/expected_output.json
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,40 @@ | ||
{ | ||
"italian": { | ||
"type": "created", | ||
"created": { | ||
"hello": "bonjourno", | ||
"thanks": "grazie", | ||
"welcome": "benvenuto" | ||
}, | ||
"modified": {}, | ||
"deleted": {} | ||
}, | ||
"spanish": { | ||
"type": "created", | ||
"created": { | ||
"hello": "hola", | ||
"thanks": "gracias" | ||
}, | ||
"modified": {}, | ||
"deleted": {} | ||
}, | ||
"french": { | ||
"type": "created", | ||
"created": { | ||
"hello": "bonjour", | ||
"thanks": "merci" | ||
}, | ||
"modified": {}, | ||
"deleted": {} | ||
}, | ||
"portugese": { | ||
"type": "created", | ||
"created": { | ||
"hello": "ola", | ||
"thanks": "obrigado", | ||
"welcome": "Bem-vindo" | ||
}, | ||
"modified": {}, | ||
"deleted": {} | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
...e/tests/resources/diffing_algorithm/all_tests/all_added/modified_translations/french.json
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,4 @@ | ||
{ | ||
"hello": "bonjour", | ||
"thanks": "merci" | ||
} |
5 changes: 5 additions & 0 deletions
5
.../tests/resources/diffing_algorithm/all_tests/all_added/modified_translations/italian.json
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,5 @@ | ||
{ | ||
"hello": "bonjourno", | ||
"thanks": "grazie", | ||
"welcome": "benvenuto" | ||
} |
5 changes: 5 additions & 0 deletions
5
...ests/resources/diffing_algorithm/all_tests/all_added/modified_translations/portugese.json
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,5 @@ | ||
{ | ||
"hello": "ola", | ||
"thanks": "obrigado", | ||
"welcome": "Bem-vindo" | ||
} |
4 changes: 4 additions & 0 deletions
4
.../tests/resources/diffing_algorithm/all_tests/all_added/modified_translations/spanish.json
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,4 @@ | ||
{ | ||
"hello": "hola", | ||
"thanks": "gracias" | ||
} |
26 changes: 26 additions & 0 deletions
26
i18nilize/tests/resources/diffing_algorithm/all_tests/all_removed/expected_output.json
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,26 @@ | ||
{ | ||
"italian": { | ||
"type": "deleted", | ||
"created": {}, | ||
"modified": {}, | ||
"deleted": {} | ||
}, | ||
"spanish": { | ||
"type": "deleted", | ||
"created": {}, | ||
"modified": {}, | ||
"deleted": {} | ||
}, | ||
"french": { | ||
"type": "deleted", | ||
"created": {}, | ||
"modified": {}, | ||
"deleted": {} | ||
}, | ||
"portugese": { | ||
"type": "deleted", | ||
"created": {}, | ||
"modified": {}, | ||
"deleted": {} | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
.../tests/resources/diffing_algorithm/all_tests/all_removed/initial_translations/french.json
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,4 @@ | ||
{ | ||
"hello": "bonjour", | ||
"thanks": "merci" | ||
} |
5 changes: 5 additions & 0 deletions
5
...tests/resources/diffing_algorithm/all_tests/all_removed/initial_translations/italian.json
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,5 @@ | ||
{ | ||
"hello": "bonjourno", | ||
"thanks": "grazie", | ||
"welcome": "benvenuto" | ||
} |
5 changes: 5 additions & 0 deletions
5
...sts/resources/diffing_algorithm/all_tests/all_removed/initial_translations/portugese.json
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,5 @@ | ||
{ | ||
"hello": "ola", | ||
"thanks": "obrigado", | ||
"welcome": "Bem-vindo" | ||
} |
4 changes: 4 additions & 0 deletions
4
...tests/resources/diffing_algorithm/all_tests/all_removed/initial_translations/spanish.json
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,4 @@ | ||
{ | ||
"hello": "hola", | ||
"thanks": "gracias" | ||
} |
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions
1
i18nilize/tests/resources/diffing_algorithm/all_tests/unchanged/expected_output.json
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 @@ | ||
{} |
4 changes: 4 additions & 0 deletions
4
...ze/tests/resources/diffing_algorithm/all_tests/unchanged/initial_translations/french.json
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,4 @@ | ||
{ | ||
"hello": "bonjour", | ||
"thanks": "merci" | ||
} |
5 changes: 5 additions & 0 deletions
5
...e/tests/resources/diffing_algorithm/all_tests/unchanged/initial_translations/italian.json
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,5 @@ | ||
{ | ||
"hello": "bonjourno", | ||
"thanks": "grazie", | ||
"welcome": "benvenuto" | ||
} |
5 changes: 5 additions & 0 deletions
5
...tests/resources/diffing_algorithm/all_tests/unchanged/initial_translations/portugese.json
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,5 @@ | ||
{ | ||
"hello": "ola", | ||
"thanks": "obrigado", | ||
"welcome": "Bem-vindo" | ||
} |
4 changes: 4 additions & 0 deletions
4
...e/tests/resources/diffing_algorithm/all_tests/unchanged/initial_translations/spanish.json
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,4 @@ | ||
{ | ||
"hello": "hola", | ||
"thanks": "gracias" | ||
} |
4 changes: 4 additions & 0 deletions
4
...e/tests/resources/diffing_algorithm/all_tests/unchanged/modified_translations/french.json
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,4 @@ | ||
{ | ||
"hello": "bonjour", | ||
"thanks": "merci" | ||
} |
5 changes: 5 additions & 0 deletions
5
.../tests/resources/diffing_algorithm/all_tests/unchanged/modified_translations/italian.json
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,5 @@ | ||
{ | ||
"hello": "bonjourno", | ||
"thanks": "grazie", | ||
"welcome": "benvenuto" | ||
} |
5 changes: 5 additions & 0 deletions
5
...ests/resources/diffing_algorithm/all_tests/unchanged/modified_translations/portugese.json
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,5 @@ | ||
{ | ||
"hello": "ola", | ||
"thanks": "obrigado", | ||
"welcome": "Bem-vindo" | ||
} |
4 changes: 4 additions & 0 deletions
4
.../tests/resources/diffing_algorithm/all_tests/unchanged/modified_translations/spanish.json
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,4 @@ | ||
{ | ||
"hello": "hola", | ||
"thanks": "gracias" | ||
} |
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