| @@ -1,7 +1,8 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * Class LP_Strings |
| 4 | + * @deprecated | |
| 4 | 5 | */ |
| 5 | 6 | class LP_Strings { |
| 6 | 7 | |
| 7 | 8 | /** |
| @@ -18,14 +19,14 @@ | ||
| 18 | 19 | public static function load() { |
| 19 | 20 | $strings = apply_filters( |
| 20 | 21 | 'learnpress/strings', |
| 21 | 22 | array( |
| 22 | - 'you_have_completed_quiz' => __( 'You\'ve already completed quiz.', 'learnpress' ), | |
| 23 | - 'confirm-redo-quiz' => __( 'Do you want to redo quiz "%s"?', 'learnpress' ), | |
| 24 | - 'confirm-complete-quiz' => __( 'Do you want to complete quiz "%s"?', 'learnpress' ), | |
| 25 | - 'confirm-complete-lesson' => __( 'Do you want to complete lesson "%s"?', 'learnpress' ), | |
| 26 | - 'confirm-finish-course' => __( 'Do you want to finish course "%s"?', 'learnpress' ), | |
| 27 | - 'confirm-retake-course' => __( 'Do you want to retake course "%s"?', 'learnpress' ), | |
| 23 | + 'you_have_completed_quiz' => __( 'You\'ve already completed the quiz.', 'learnpress' ), | |
| 24 | + 'confirm-redo-quiz' => __( 'Do you want to redo the quiz "%s"?', 'learnpress' ), | |
| 25 | + 'confirm-complete-quiz' => __( 'Do you want to complete the quiz "%s"?', 'learnpress' ), | |
| 26 | + 'confirm-complete-lesson' => __( 'Do you want to complete the lesson "%s"?', 'learnpress' ), | |
| 27 | + 'confirm-finish-course' => __( 'Do you want to finish the course "%s"?', 'learnpress' ), | |
| 28 | + 'confirm-retake-course' => __( 'Do you want to retake the course "%s"?', 'learnpress' ), | |
| 28 | 29 | ) |
| 29 | 30 | ); |
| 30 | 31 | |
| 31 | 32 | self::$strings = $strings; |