From 45ecf4011b505c38f55dedb0b55743d514124c5e Mon Sep 17 00:00:00 2001 From: svincent Date: Sat, 9 Apr 2016 11:45:16 +0400 Subject: [PATCH] Fixed wording Removed a duplicate "then" --- localization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localization.md b/localization.md index d3f12b0daa8..0ab232f5e3a 100644 --- a/localization.md +++ b/localization.md @@ -83,7 +83,7 @@ Pluralization is a complex problem, as different languages have a variety of com 'apples' => 'There is one apple|There are many apples', -Then, you may then use the `trans_choice` function to retrieve the line for a given "count". In this example, since the count is greater than one, the plural form of the language line is returned: +Then, you may use the `trans_choice` function to retrieve the line for a given "count". In this example, since the count is greater than one, the plural form of the language line is returned: echo trans_choice('messages.apples', 10);