mirror of
https://github.com/godotengine/godot-question2answer.git
synced 2026-01-01 01:48:37 +03:00
This project lived only on the server without version control. This is now the starting point for the repository.
17 lines
382 B
PHP
17 lines
382 B
PHP
<?php
|
|
|
|
|
|
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
|
|
header('Location: ../../');
|
|
exit;
|
|
}
|
|
|
|
return array(
|
|
/*languages for admin panel*/
|
|
'enable' => 'Enable the Google Code Prettifier Plugin' ,
|
|
'select_a_theme' => 'Select a prettifier theme ' ,
|
|
);
|
|
|
|
/*
|
|
Omit PHP closing tag to help avoid accidental output
|
|
*/ |