to the URL & repalce with a 2 digit ISO 639-1 language code. // / If a user attempts a language that is not available --Default Language-- will be used instead. // / Valid options are TRUE or FALSE. // / Default is TRUE. $AllowUserSelectableLanguage = TRUE; // / --User Shareable File Links-- // / Allow users to generate shareable URLs for the files they upload or convert. // / If set to TRUE the user will be provided with buttons to create URLs to files that can be copied & pasted elsewhere. // / If set to FALSE the user will not be provided with the buttons to create URLs to files. // / Files with active links will be removed after the --File Deletion Age Threshold-- is met. // / Active file links will break after the --File Deletion Age Theshold-- is met. // / Valid options are TRUE or FALSE. // / Default is TRUE. $AllowUserShare = TRUE; // / --Allow Stream Formats as Input-- // / If set to TRUE, stream formats will be supported as input, which contain URLs to external sources. // / If set to FALSE, stream formats will not be supported as input. // / Valid options are TRUE or FALSE. // / Default is TRUE. $AllowStreams = TRUE; // / --File Deletion Age Theshold-- // / Age in minutes of files to be deleted. // / Set to 0 to keep files indefinately. // / Default is 30. $DeleteThreshold = 30; // / --Enhanced Logging Verbosity-- // / Enable verbose logging. // / If set to TRUE all core events will be logged. // / If set to FALSE only errors & certain core events will be logged. // / Valid options are TRUE or FALSE. // / Default is TRUE. $Verbose = TRUE; // / --Maximum Log File Size-- // / Set the number of bytes to store in each logfile before splitting to a new one. // / Default is 1048576. $MaxLogSize = 1048576; // / --UI Element Font-- // / Set the default font to use throughout HRConvert2 GUI elements. // / The selected font must be installed on the client's machine. // / If the font is not available the client default will be used. // / Default is Arial. $Font = 'Arial'; // / --Button Color-- // / Set the default color scheme to use for buttons. // / Valid options are 'RED', 'GREEN', 'BLUE' or 'GREY'. // / Default is BLUE. $ButtonStyle = 'BLUE'; // / --Spinner Style-- // / Set the default spinner to use as a loading indicator while operations are being processed. // / Valid options are 0, 1, 2, 3, 4, 5 or 6. // / Default is 6. $SpinnerStyle = 6; // / --Spinner Color-- // / Set the default color to use for the loading spinner. // / If you would like the spinner to automatically match the rest of the color scheme, set this to $ButtonStyle. // / Valid options are 'RED', 'GREEN', 'BLUE', 'GREY' or '$ButtonStyle'. // / Default is $ButtonStyle. $SpinnerColor = $ButtonStyle; // / --Show Full GUI-- // / Set whether or not to display a full GUI by default. // / If this is set to TRUE a full GUI with text will be displayed. // / If this is set to FALSE a minimal GUI with only required elements will be displayed. // / Valid options are TRUE or FALSE. // / Default is TRUE. $ShowGUI = TRUE; // / --Show Fine Print-- // / Set whether or not to display the Terms of Service & Privacy Policy links. // / If set to TRUE links to the --Terms of Service URL-- and --Privacy Policy URL-- will display at the bottom of the page. // / If set to FALSE links to the --Terms of Service URL-- and --Privacy Policy URL-- will be hidden. // / Valid options are TRUE or FALSE. // / Default is TRUE. $ShowFinePrint = TRUE; // / --Terms of Service URL-- // / The URL to use for the Terms of Service link at te bottom of the GUI. // / Only takes effect if --Show Fine Print-- is set to TRUE. $TOSURL = 'https://www.honestrepair.net/index.php/terms-of-service/'; // / --Privacy Policy URL-- // / The URL to use for the Privacy Policy link at te bottom of the GUI. // / Only takes effect if --Show Fine Print-- is set to TRUE. $PPURL = 'https://www.honestrepair.net/index.php/privacy-policy/'; // / ------------------------------