mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
c212c56806
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@573 0fc631ac-6414-0410-93d0-97cfa31319b6
17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
Function: english_plural
|
|
|
|
--Usage--
|
|
> english_plural(some_word)
|
|
> english_singular(some_word)
|
|
|
|
Convert a word to the plural or singular form.
|
|
|
|
--Parameters--
|
|
! Parameter Type Description
|
|
| @input@ [[type:string]] String to convert
|
|
|
|
--Examples--
|
|
> english_plural("apple") == "apples"
|
|
> english_plural("berry") == "berries"
|
|
> english_singular("Red Horses") == "Red Horse"
|