lasse48 Posted November 29, 2010 Share Posted November 29, 2010 hello i have been trying to find a guide on how to make a script that outputs arrays on a webpage, in a textbox or something , so you just can copy it and paste it in google translater, after that paste the translated words into the text box and save it. is there a way to do that? Link to comment https://forums.phpfreaks.com/topic/220134-php-script-arrays-with-forms/ Share on other sites More sharing options...
Pikachu2000 Posted November 29, 2010 Share Posted November 29, 2010 You should provide an example of the data, its format, and how it should be displayed. The reason for this might also be helpful; someone may know of an easier way to accomplish the goal. Link to comment https://forums.phpfreaks.com/topic/220134-php-script-arrays-with-forms/#findComment-1140895 Share on other sites More sharing options...
lasse48 Posted November 29, 2010 Author Share Posted November 29, 2010 yes of course, good idea Thanks mate Sample code: <?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); global $VM_LANG; $langvars = array ( 'CHARSET' => 'ISO-8859-1', 'PHPSHOP_ERROR' => 'Fejl', 'PHPSHOP_CATEGORY' => 'Kategori', 'PHPSHOP_CATEGORIES' => 'Kategorier', 'PHPSHOP_ADMIN' => 'Administration', 'PHPSHOP_PRODUCT' => 'Produkt', 'PHPSHOP_LIST' => 'Vis', 'PHPSHOP_ALL' => 'Alle', 'PHPSHOP_DOWNLOADS_REMAINING' => '{count} downloads remaining', 'PHPSHOP_DOWNLOAD_VALID_UNTIL' => ' until {date}', 'USER_REGISTRATION_DISABLED' => 'User registration is disabled, it must be enabled in order to proceed.' ); $VM_LANG->initModule( 'common', $langvars ); ?> my conclusion of this , it will take many many hours to translate using a notepad Link to comment https://forums.phpfreaks.com/topic/220134-php-script-arrays-with-forms/#findComment-1140898 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.