diff --git a/user_guide_src/source/outgoing/localization/015.php b/user_guide_src/source/outgoing/localization/015.php index 04e15f558f69..1c4d5918a2a1 100644 --- a/user_guide_src/source/outgoing/localization/015.php +++ b/user_guide_src/source/outgoing/localization/015.php @@ -36,5 +36,8 @@ // Displays "34 is thirty-four" echo lang('Tests.spelledOut', [34]); +// Displays "The ordinal is 1.234.567." +echo lang('Tests.ordinal', [1234567]); + // Displays "It has been 408,676:24:35" -echo lang('Tests.ordinal', [time()]); +echo lang('Tests.duration', [time()]);