Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken translations #2

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Resources/translations/validators.en.xlf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="validators.en.xlf">
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file source-language="en" target-language="en" datatype="plaintext" original="validators.xlf">
<body>
<trans-unit id="1">
<source>This value is not a registrable domain name.</source>
<target>This value is not a registrable domain name.</target>
</trans-unit>
<trans-unit id="2">
<source>This value exceeds the "{registrable}" part of the domain-name.</source>
<target>This value exceeds the "{registrable}" part of the domain-name.</target>
<source>This value exceeds the registrable "{{ registrable }}" part of the domain-name.</source>
<target>This value exceeds the registrable "{{ registrable }}" part of the domain-name.</target>
</trans-unit>
<trans-unit id="3">
<source>This value contains a domain-name suffix that is not publicly registrable.</source>
Expand Down
10 changes: 5 additions & 5 deletions Resources/translations/validators.nl.xlf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="validators.en.xlf">
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file source-language="en" target-language="nl" datatype="plaintext" original="validators.xlf">
<body>
<trans-unit id="1">
<source>This value is not a registrable domain name.</source>
<target>Deze waarde is geen registeerbare domainnaam.</target>
</trans-unit>
<trans-unit id="2">
<source>This value exceeds the registrable "{{ registrable }}" part of the domain-name.</source>
<target>Deze waarde overschrijdt het registreerbare "{registrable}" gedeelte van de domainnaam.</target>
<target>Deze waarde overschrijdt het registreerbare "{{ registrable }}" gedeelte van de domainnaam.</target>
</trans-unit>
<trans-unit id="3">
<source>This value contains a domain-name suffix that is not publicly registrable.</source>
Expand All @@ -24,7 +24,7 @@
<target>Deze waarde bevat geen geldige domeinnaam suffix.</target>
</trans-unit>
<trans-unit id="6">
<source>This value does not contain a domeinnaam suffix that is supported by ICANN.</source>
<source>This value does not contain a domain-name suffix that is supported by ICANN.</source>
<target>Deze waarde bevat geen domeinnaam suffix welke ondersteund is door ICANN.</target>
</trans-unit>
</body>
Expand Down
Loading