mirror of
https://github.com/godotengine/godot-question2answer.git
synced 2026-01-06 06:10:21 +03:00
This project lived only on the server without version control. This is now the starting point for the repository.
18 lines
559 B
PHP
18 lines
559 B
PHP
<?php
|
|
/*
|
|
Question2Answer Edit History plugin
|
|
License: http://www.gnu.org/licenses/gpl.html
|
|
*/
|
|
|
|
return array(
|
|
'plugin_title' => 'Markdown',
|
|
'preview' => 'Preview',
|
|
|
|
'admin_hidecss' => 'Don\'t add CSS inline',
|
|
'admin_hidecss_note' => 'Tick if you added the CSS to your own stylesheet (more efficient).',
|
|
'admin_comments' => 'Plaintext comments',
|
|
'admin_comments_note' => 'Sets a post as plaintext when converting answers to comments.',
|
|
'admin_syntax' => 'Use syntax highlighting',
|
|
'admin_syntax_note' => 'Integrates highlight.js for code blocks.',
|
|
);
|