MyBB Community Forums

Full Version: Change "Wrote" to "wrote" in "cite" [Resolved, shows solution]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
G'day all,

I'll admit this is a minor issue, but it can't be hard to fix.

Currently, when quoting, you get "<Username> Wrote" and I want "<Username> wrote" (without the capital "W") because the lowercase "w" is correct English. (I'm a journalist, and it REALLY bugs me :-)

Can someone point me to the place to fix this?

Thanks.
(2012-07-25, 02:24 AM)mickeyjuice Wrote: [ -> ]G'day all,

I'll admit this is a minor issue, but it can't be hard to fix.

Currently, when quoting, you get "<Username> Wrote" and I want "<Username> wrote" (without the capital "W") because the lowercase "w" is correct English. (I'm a journalist, and it REALLY bugs me :-)

Can someone point me to the place to fix this?

Thanks.

probably you need edit global.lang.php.

Find $l['wrote'] = "Wrote:";
Change to $l['wrote'] = "wrote:";
(2012-07-25, 02:31 AM)martec Wrote: [ -> ]
(2012-07-25, 02:24 AM)mickeyjuice Wrote: [ -> ]G'day all,

I'll admit this is a minor issue, but it can't be hard to fix.

Currently, when quoting, you get "<Username> Wrote" and I want "<Username> wrote" (without the capital "W") because the lowercase "w" is correct English. (I'm a journalist, and it REALLY bugs me :-)

Can someone point me to the place to fix this?

Thanks.

probably you need edit global.lang.php.

Find $l['wrote'] = "Wrote:";
Change to $l['wrote'] = "wrote:";

Awesome! Thanks a lot, so much better.