Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created December 14, 2018 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/761354df5235f5586e54711ead5e6b6b to your computer and use it in GitHub Desktop.
Save codingwithsara/761354df5235f5586e54711ead5e6b6b to your computer and use it in GitHub Desktop.
WordPress Quiz Cat のカスタマイズと日本語化
//FILTERABLE FRONT-END STRINGS
$global_quiz_text_strings = array (
'no_quiz_found' => __('No Quiz found', 'quiz-cat'),
'correct' => __('Correct!', 'quiz-cat'),
'wrong' => __('Wrong!', 'quiz-cat'),
'your_answer' => __('Your answer:', 'quiz-cat'),
'correct_answer' => __('Correct answer:', 'quiz-cat'),
'question' => __('Question', 'quiz-cat'),
'next' => __('Next', 'quiz-cat'),
'you_got' => __('You got', 'quiz-cat'),
'out_of' => __('out of', 'quiz-cat'),
'your_answers' => __('Your Answers', 'quiz-cat'),
'start_quiz' => __('Start Quiz', 'quiz-cat'),
'retake_quiz' => __('Retake Quiz', 'quiz-cat'),
'share_results' => __('SHARE YOUR RESULTS', 'quiz-cat'),
'i_got' => __('I got', 'quiz-cat'),
'skip_this_step' => __('Skip this step', 'quiz-cat'),
'your_name' => __('Your Name', 'quiz-cat'),
'your_email' => __('Your Email', 'quiz-cat'),
'share' => __('Share', 'quiz-cat'),
'tweet' => __('Tweet', 'quiz-cat'),
'pin' => __('Pin', 'quiz-cat'),
'email' => __('Email', 'quiz-cat')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment