Actions
Fehler #195
openmissing localization on login screen
Status:
Neu
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
eXtplorer Version:
2.1.4
Joomla! Version:
none
Description
When you login the please wait text is not localized:
the fix is really simple
open include/authentication/extplorer.php find Ext.get( "statusBar").update( "Please wait..." ); replace with Ext.get( "statusBar").update( "<?php echo ext_Lang::msg( 'please_wait', true ) ?>" ); and add this string on all lanaguage file //missing localization added by selven "please_wait" => "Please wait..."
Updated by emanuele liparesi about 9 years ago
same problem on other files, here the complete list:
eXtplorer_2.1.8\include\admin.php (3 hits) Line 109: statusBarMessage( "Please wait...", true ); Line 250: statusBarMessage( "Please wait...", true ); Line 535: statusBarMessage( 'Please wait...', true ); eXtplorer_2.1.8\include\authentication\extplorer.php (1 hit) Line 83: Ext.get( "statusBar").update( "Please wait..." ); Line 156: Ext.get( "statusBar").update( "Please wait..." ); eXtplorer_2.1.8\include\copy_move.php (1 hit) Line 177: statusBarMessage( 'Please wait...', true ); eXtplorer_2.1.8\include\diff.php (1 hit) Line 133: statusBarMessage( 'Please wait...', true ); eXtplorer_2.1.8\include\mkitem.php (1 hit) Line 131: statusBarMessage( "Please wait...", true ); eXtplorer_2.1.8\include\rename.php (1 hit) Line 117: statusBarMessage( 'Please wait...', true ); similar on eXtplorer_2.1.8\include\edit.php (2 hits) Line 198: waitMsg: 'Saving the File, please wait...', Line 228: waitMsg: 'Processing Data, please wait...', to be replaced with Line 198: waitMsg: <?php echo ext_Lang::msg( 'saving_please_wait', true ) ?> Line 228: waitMsg: <?php echo ext_Lang::msg( 'processing_please_wait', true ) ?> and add this string on all lanaguage file //missing localization added by selven "please_wait" => "Please wait...", "saving_please_wait" => "Saving the File, please wait...", "processing_please_wait" => "Processing Data, please wait..."
Actions