# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://android-news-app.gitbook.io/docs/admin-panel/change-text.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
