23 lines
868 B
PHP
23 lines
868 B
PHP
<?php
|
|
/**
|
|
* MyBB 1.8
|
|
* Copyright 2014 MyBB Group, All Rights Reserved
|
|
*
|
|
* Website: http://www.mybb.com
|
|
* License: http://www.mybb.com/about/license
|
|
*
|
|
*/
|
|
|
|
$l['hello_desc'] = 'A sample plugin that allows you to create messages on the index page and appends them to each post.';
|
|
|
|
$l['setting_group_hello'] = 'Hello World!';
|
|
$l['setting_group_hello_desc'] = 'Settings for Hello World! Plugin.';
|
|
|
|
$l['setting_hello_display1'] = 'Display Message Index';
|
|
$l['setting_hello_display1_desc'] = 'Set to no if you do not want to display the messages on index.';
|
|
|
|
$l['setting_hello_display2'] = 'Display Message Postbit';
|
|
$l['setting_hello_display2_desc'] = 'Set to no if you do not want to display the messages below every post.';
|
|
|
|
$l['hello_uninstall'] = 'Hello World! Uninstallation';
|
|
$l['hello_uninstall_message'] = 'Do you wish to drop all messages from the database?'; |