I have tried to make this theme work with the language files.
Therefor you must edit the language file(s) of your choice as shown below.
You don't have to add the //GFY if you don't want... It is just a flag to 
remind me that this is something I added or chagned.

All below, but the last one, are added to the english.php

Add the following line(s) to the $lang_main_menu array

  'sub_album_lnk' => 'Albums!',					//GFY
  'sub_album_title' => 'Direct access to various Albums!',	//GFY
  'sys_user_lnk' => 'Users',					//GFY
  'sys_user_title' => 'Various user functions',			//GFY

Add the following line(s) to the $lang_gallery_admin_menu array

  'pluginmgr_lnk' => 'Plugin Manager', 			//GFY
  'pluginmgr_title' => 'Plugin Manager',		//GFY
  'bridgemgr_title' => 'Bridge Manager', 		//GFY
  'bridgemgr_lnk' => 'Bridge Manager', 			//GFY
  'phpinfo_title' => 'Php info', 			//GFY
  'phpinfo_lnk' => 'Php info', 				//GFY
  'update_database_title' => 'Update database', 	//GFY
  'update_database_lnk' => 'Update Database', 		//GFY
  'view_log_files_title' => 'View log files', 		//GFY
  'view_log_files_lnk' => 'View log files', 		//GFY
  'check_versions_title' => 'Check versions', 		//GFY
  'check_versions_lnk' => 'Check versions', 		//GFY
  'overall_stats_title' => 'Overall stats', 		//GFY
  'overall_stats_lnk' => 'Overall stats', 		//GFY
  'keywordmgr_title' => 'Keyword Manager', 		//GFY
  'keywordmgr_lnk' => 'Keyword Manager', 		//GFY
  'exifmgr_title' => 'exif Manager', 			//GFY
  'exifmgr_lnk' => 'exif Manager', 			//GFY
  'shownews_title' => 'Show News', 			//GFY
  'shownews_lnk' => 'Show News', 			//GFY
  'export_title' => 'Export', 				//GFY
  'export_lnk' => 'Export', 				//GFY
  'adm_config_lnk'=> 'Configuration',				//GFY
  'adm_config_title'=> 'Various configuration commands',	//GFY
  'adm_gallery_lnk'=> 'Album & Gallery',			//GFY
  'adm_gallery_title'=> 'Album & Gallery commands',		//GFY
  'adm_group_lnk'=> 'Users & Groups',				//GFY
  'adm_group_title'=> 'Various User and Group commands',	//GFY
  'adm_media_lnk'=> 'Media & Files',				//GFY
  'adm_media_title'=> 'Various Media and File commands',	//GFY
 

Add the following line(s) to the $lang_thumb_view array

  'sort_by' => 'How to sort thumbnails?',		//GFY


Add the following line(s) to the $lang_create_tabs array

  'jump' => 'Jump to page:', 				//GFY

Add the following line(s) to the $lang_album_admin_menu array  

  'album_config' => 'Album Configuration', 		//GFY


Add the following line(s) to the $lang_user_admin_menu array

  'user_tools_lnk' => 'User Tools',				//gfy
  'user_tools_title' => 'Tools to edit user settings & files',	//gfy

==========================End of edits to the language file==============================

In the index.php function html_albummenu($id) add the line with //GFY

        $params = array('{CONFIRM_DELETE}' => $lang_album_admin_menu['confirm_delete'],
            '{DELETE}' => $lang_album_admin_menu['delete'],
            '{MODIFY}' => $lang_album_admin_menu['modify'],
            '{EDIT_PICS}' => $lang_album_admin_menu['edit_pics'],
            '{ALBUM_CONFIG}' => $lang_album_admin_menu['album_config'],  //GFY
            );
Note this last one is the only one requiring modification of code other than the language file.
And note also that adding it will(should) not affect other themes.






