Skip to content

Commit a1a8ca9

Browse files
committed
[FIX] howtos/translations: fix typo in "wainting"
closes #14635 Signed-off-by: Antoine Vandevenne (anv) <[email protected]>
1 parent 13db6e9 commit a1a8ca9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/developer/howtos/translations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ Blocks
144144
**Do** keep in one block, giving the full context to translators::
145145

146146
# good, allow to change position of the number in the translation
147-
_("You have %s invoices wainting") % len(invoices)
148-
_.str.sprintf(_t("You have %s invoices wainting"), invoices.length);
147+
_("You have %s invoices waiting") % len(invoices)
148+
_.str.sprintf(_t("You have %s invoices waiting"), invoices.length);
149149

150150
# good, full sentence is understandable
151151
_("Reference of the document that generated " + \

0 commit comments

Comments
 (0)