-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preserve translation ids that are numeric values
Fix #83
- Loading branch information
1 parent
0996839
commit 734a21c
Showing
5 changed files
with
61 additions
and
2 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
31 changes: 31 additions & 0 deletions
31
Tests/Fixtures/app/Resources/translations/numerics.en.xliff
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,31 @@ | ||
<?xml version="1.0"?> | ||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | ||
<file source-language="en" datatype="plaintext" original="file.ext"> | ||
<body> | ||
<trans-unit id="1"> | ||
<source>7</source> | ||
<target>Nos occasions</target> | ||
</trans-unit> | ||
<trans-unit id="2"> | ||
<source>8</source> | ||
<target>Nous contacter</target> | ||
</trans-unit> | ||
<trans-unit id="3"> | ||
<source>12</source> | ||
<target>prénom</target> | ||
</trans-unit> | ||
<trans-unit id="4"> | ||
<source>13</source> | ||
<target>nom</target> | ||
</trans-unit> | ||
<trans-unit id="5"> | ||
<source>14</source> | ||
<target>adresse</target> | ||
</trans-unit> | ||
<trans-unit id="6"> | ||
<source>15</source> | ||
<target>code postal</target> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |