Created
April 27, 2020 22:35
-
-
Save ashour/2fbe79c979a836c5a8efde08ca8caa6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>@Smart.Format(Resources.ReplyCount, 0)</p> | |
<!-- ☝️ outputs "لا توجد ردود" --> | |
<p>@Smart.Format(Resources.ReplyCount, 1)</p> | |
<!-- ☝️ outputs "رد واحد" --> | |
<p>@Smart.Format(Resources.ReplyCount, 2)</p> | |
<!-- ☝️ outputs "ردان" --> | |
<p>@Smart.Format(Resources.ReplyCount, 3)</p> | |
<!-- ☝️ outputs "3 ردود" --> | |
<p>@Smart.Format(Resources.ReplyCount, 11)</p> | |
<!-- ☝️ outputs "11 رد" --> | |
<p>@Smart.Format(Resources.ReplyCount, 100)</p> | |
<!-- ☝️ outputs "100 رد" --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment