Android News App
  • Welcome
  • Android Studio
    • Getting Started
    • Import Project
    • Generate google-services.json
    • Push Notification
    • Package Name
    • Server Connection
    • Ad Network
    • Legacy GDPR
    • Funding Choices
    • App Configuration
    • Get YouTube API Key
    • Change App Logo
    • Change App Color
    • Text Assets
    • Image Assets
    • App Font
  • Admin Panel
    • Getting Started
    • Database Configuration
    • Related Video Tutorial
    • SMTP Config
    • Change Color
    • Change Text
  • Publish the App
    • Release Version
    • Generate Signed Bundle / APK
  • Migrate from Older Version
    • v4.2.1 to v4.3.0
    • v4.2.0 to v4.2.1
    • v4.0.0 to v4.2.0
    • v3.4.x to v4.0.0
  • Rating and Support
  • Changelog
  • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Admin Panel

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

?>
PreviousChange ColorNextPublish the App

Last updated 3 years ago

Was this helpful?