> For the complete documentation index, see [llms.txt](https://android-news-app.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://android-news-app.gitbook.io/docs/admin-panel/change-text.md).

# 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.

{% code title="languages.php" %}

```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";

?>
```

{% endcode %}
