Skip to content

Commit

Permalink
bug #19 Fix translation placeholder mistakes (stof)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.0-dev branch.

Discussion
----------

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT

The last translations I contributed from our contractor were containing a few mistakes regarding placeholders, altering them compared to the original ones (and so failing to be replaced). This fixes them.

Commits
-------

a621b78 Fix translation placeholder mistakes
  • Loading branch information
sstok authored Mar 20, 2018
2 parents 79a9df4 + a621b78 commit 80b0578
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Resources/translations/validators.bg.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</trans-unit>
<trans-unit id="6">
<source>password_too_weak</source>
<target>Паролата трябва да е поне на ниво "{{min_strength}}", текущото ниво е "{{current_strength}}", опитайте това: {{strength_tips}}.</target>
<target>Паролата трябва да е поне на ниво "{{ min_strength }}", текущото ниво е "{{ current_strength }}", опитайте това: {{ strength_tips }}.</target>
</trans-unit>

<!-- Strength levels -->
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/translations/validators.pt_BR.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<body>
<trans-unit id="1">
<source>Your password must be at least {{length}} characters long.</source>
<target>A senha deve ter pelo menos {{comprimento}} caracteres de comprimento.</target>
<target>A senha deve ter pelo menos {{length}} caracteres de comprimento.</target>
</trans-unit>
<trans-unit id="2">
<source>Your password must include at least one letter.</source>
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/translations/validators.ru.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</trans-unit>
<trans-unit id="6">
<source>password_too_weak</source>
<target>Пароль должен быть как минимум "{{ min_strength }}" уровня сложности, текущий уровень сложности "{{ current_strength }}", обратите внимание на эти советы: {{strong_tips}}.</target>
<target>Пароль должен быть как минимум "{{ min_strength }}" уровня сложности, текущий уровень сложности "{{ current_strength }}", обратите внимание на эти советы: {{ strong_tips }}.</target>
</trans-unit>

<!-- Strength levels -->
Expand Down

0 comments on commit 80b0578

Please sign in to comment.