Change Text

The text asset consists of the application name and another text component inside the admin panel, to change it :

  1. You can see on the includes/languages.php

  2. Change value name in each variable according your needs.

languages.php
<?php

	//app info
	$app_name = "Android News App";
	$app_version = "Version 4.3.0";
	$app_copyright = "Copyright © 2021 <a href='https://solodroid.co.id' target='_blank'>Solodroid Developer</a>";

	//sidebar menu name
	$sb_dashboard = "Dashboard";
	$sb_category = "Manage Category";
	$sb_news = "Manage News";
	$sb_notification = "Notifications";
	$sb_ads = "Manage Ads";
	$sb_comment = "Comments";
	$sb_user = "Registered Users";
	$sb_admin = "Administrators";
	$sb_settings = "Settings";
	$sb_license = "License";
	$sb_logout = "Logout";

?>

Last updated