Simple Machines Community Forum

Customizing SMF => SMF Coding Discussion => Topic started by: Lord Northern on July 02, 2009, 02:29:12 PM

Title: I'd like to change "Modify" post to "Edit"
Post by: Lord Northern on July 02, 2009, 02:29:12 PM
Hi.
I want to change where it says on the post "modify" where the user is able to modify his post to say "edit" instead. Just like it better.
Is there an easy way to change it?

Thanks.
Title: Re: I'd like to change "Modify" post to "Edit"
Post by: kat on July 02, 2009, 02:58:38 PM
Inside the default theme's "languages" directory, you'll fine index.english.php.

Find:

$txt[17] = 'Modify';

and change it to:

$txt[17] = 'Edit';
Title: Re: I'd like to change "Modify" post to "Edit"
Post by: Lord Northern on July 02, 2009, 03:12:51 PM
Cool, thanks
Title: Re: I'd like to change "Modify" post to "Edit"
Post by: kat on July 02, 2009, 04:09:20 PM
Pleasure!

Marked as "Solved". :)