1<?php 2 3// Message texts for the dynamically loaded code snippets according to the state of the build task 4$lang['js']['msg_scheduled'] = 'The doxygen build has been scheduled. This state automatically updates!'; 5$lang['js']['msg_running'] = 'The doxygen build is currently running. The snippet will automatically load after finishing!'; 6$lang['js']['msg_not_existent'] = 'The doxygen build is not existent. Try to reload the page!'; 7$lang['js']['msg_error'] = 'The doxygen build failed!'; 8 9// text for the doxycode tag selector in the edit toolbar 10$lang['js']['tag_selector_title'] = 'Doxycode Tag Selector'; 11$lang['js']['tag_selector_name'] = 'Name'; 12$lang['js']['tag_selector_description'] = 'Description'; 13$lang['js']['tag_selector_search'] = 'Search for tags:'; 14$lang['js']['tag_selector_btn_insert'] = 'Insert'; 15$lang['js']['tag_selector_btn_update'] = 'Update'; 16 17// static message texts for build tasks 18$lang['msg_scheduled'] = 'The doxygen build has been scheduled. Please reload the page later!'; 19$lang['msg_running'] = 'The doxygen build is currently running. Please reload the page later!'; 20$lang['msg_not_existent'] = 'The doxygen build is not existent. Try to reload the page!'; 21$lang['msg_error'] = 'The doxygen build failed!'; 22 23// error messages 24$lang['error_language_missing'] = 'No language extension (e.g. language="c", "php", ...) was given!'; 25$lang['error_cache_not_readable'] = 'DoxyCode: cached HTML was not readable!'; 26 27// taglist 28$lang['tag_conf_enabled'] = 'Enabled'; 29$lang['tag_conf_local_name'] = 'Local Name'; 30$lang['tag_conf_docu_url'] = 'Documentation URL'; 31$lang['tag_conf_remote_url'] = 'Remote URL'; 32 33// admin page msg strings 34$lang['admin_err_no_xml_file'] = '\'%s\s is not a xml file'; 35$lang['admin_err_upload'] = 'error during upload'; 36$lang['admin_info_upload_success'] = '\'%s\s has been successfully uploaded'; 37$lang['admin_info_new_tag_config'] = 'Added tag configuration \'%s\''; 38$lang['admin_info_tag_deleted'] = 'Tagfile \'%s\' was deleted.'; 39 40// admin page 41$lang['admin_upload'] = 'Add a new tag file:'; 42$lang['admin_new_entry'] = 'Add new entry:'; 43 44// some values on the admin page are repeated from the taglist for shorter versions due to limited width 45$lang['admin_conf_delete'] = 'Del'; 46$lang['admin_conf_enabled'] = 'Enable'; 47$lang['admin_conf_force_runner'] = 'Force Runner'; 48$lang['admin_conf_local_name'] = 'Local Name'; 49$lang['admin_conf_mtime'] = 'File mtime'; 50$lang['admin_conf_docu_url'] = 'Documentation URL'; 51$lang['admin_conf_remote_url'] = 'Remote URL'; 52$lang['admin_conf_update_period'] = 'Update Period'; 53$lang['admin_conf_description'] = 'Description';