From f0c00bfb7819c0350fa882f899d0c820a2aefa81 Mon Sep 17 00:00:00 2001 From: 3Dgoo <michael@3dgoo.com> Date: Tue, 13 Jun 2017 05:37:07 +0930 Subject: [PATCH] Fixing language typo in docs --- docs/en/02_Developer_Guides/13_i18n/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/02_Developer_Guides/13_i18n/index.md b/docs/en/02_Developer_Guides/13_i18n/index.md index be74b0436..e7aa52c0c 100644 --- a/docs/en/02_Developer_Guides/13_i18n/index.md +++ b/docs/en/02_Developer_Guides/13_i18n/index.md @@ -176,7 +176,7 @@ to the translator. // Simple string translation _t('LeftAndMain.FILESIMAGES','Files & Images'); - // Using the natural languate comment parameter to supply additional context information to translators + // Using the natural language comment parameter to supply additional context information to translators _t('LeftAndMain.HELLO','Site content','Menu title'); // Using injection to add variables into the translated strings. @@ -203,7 +203,7 @@ the PHP version of the function. // Simple string translation <%t Namespace.Entity "String to translate" %> - // Using the natural languate comment parameter to supply additional context information to translators + // Using the natural language comment parameter to supply additional context information to translators <%t SearchResults.NoResult "There are no results matching your query." is "A message displayed to users when the search produces no results." %> // Using injection to add variables into the translated strings (note that $Name and $Greeting must be available in the current template scope).