mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-21694 moving filters strings to correct plugin location
This commit is contained in:
parent
4d84db2725
commit
a845d68b9f
9 changed files with 4 additions and 4 deletions
|
@ -0,0 +1,7 @@
|
|||
<?PHP // $Id$
|
||||
// activitynames.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['filtername'] = 'Activity Names Auto-linking';
|
||||
|
||||
?>
|
7
filter/algebra/lang/en_utf8/filter_algebra.php
Normal file
7
filter/algebra/lang/en_utf8/filter_algebra.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?PHP // $Id$
|
||||
// algebra.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['filtername'] = 'Algebra Notation';
|
||||
|
||||
?>
|
|
@ -33,7 +33,7 @@ class censor_filter extends moodle_text_filter {
|
|||
if (empty($words)) {
|
||||
$words = array();
|
||||
if (empty($CFG->filter_censor_badwords)) {
|
||||
$badwords = explode(',',get_string('badwords','censor'));
|
||||
$badwords = explode(',',get_string('badwords', 'filter_censor'));
|
||||
}
|
||||
else {
|
||||
$badwords = explode(',', $CFG->filter_censor_badwords);
|
||||
|
|
8
filter/censor/lang/en_utf8/filter_censor.php
Normal file
8
filter/censor/lang/en_utf8/filter_censor.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?PHP // $Id$
|
||||
// censor.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['badwords'] = 'shit,fucked,fucker,fuck,dickhead, dick,cockhead,cock,cunt,asshole,arsehole,prick,bitch, jism,whore,slut,wanker, wank,bastard,dildo,masturbate, orgasm,penis,nigger, pussy,vagina';
|
||||
$string['filtername'] = 'Word Censorship';
|
||||
|
||||
?>
|
7
filter/emailprotect/lang/en_utf8/filter_emailprotect.php
Normal file
7
filter/emailprotect/lang/en_utf8/filter_emailprotect.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?PHP // $Id$
|
||||
// emailprotect.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['filtername'] = 'Email Protection';
|
||||
|
||||
?>
|
|
@ -150,7 +150,7 @@ function mediaplugin_filter_mp3_callback($link) {
|
|||
|
||||
$jsoutput = create_ufo_inline($id, $args);
|
||||
|
||||
$output = $link[0].'<span class="mediaplugin mediaplugin_mp3" id="'.$id.'">('.get_string('mp3audio', 'mediaplugin').')</span>'.$jsoutput;
|
||||
$output = $link[0].'<span class="mediaplugin mediaplugin_mp3" id="'.$id.'">('.get_string('mp3audio', 'filter_mediaplugin').')</span>'.$jsoutput;
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
@ -176,7 +176,7 @@ function mediaplugin_filter_swf_callback($link) {
|
|||
|
||||
$jsoutput = create_ufo_inline($id, $args);
|
||||
|
||||
$output = $link[0].'<span class="mediaplugin mediaplugin_swf" id="'.$id.'">('.get_string('flashanimation', 'mediaplugin').')</span>'.$jsoutput;
|
||||
$output = $link[0].'<span class="mediaplugin mediaplugin_swf" id="'.$id.'">('.get_string('flashanimation', 'filter_mediaplugin').')</span>'.$jsoutput;
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
@ -203,7 +203,7 @@ function mediaplugin_filter_flv_callback($link) {
|
|||
$args['allowfullscreen'] = 'true';
|
||||
$jsoutput = create_ufo_inline($id, $args);
|
||||
|
||||
$output = $link[0].'<span class="mediaplugin mediaplugin_flv" id="'.$id.'">('.get_string('flashvideo', 'mediaplugin').')</span>'.$jsoutput;
|
||||
$output = $link[0].'<span class="mediaplugin mediaplugin_flv" id="'.$id.'">('.get_string('flashvideo', 'filter_mediaplugin').')</span>'.$jsoutput;
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
|
11
filter/mediaplugin/lang/en_utf8/filter_mediaplugin.php
Normal file
11
filter/mediaplugin/lang/en_utf8/filter_mediaplugin.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?PHP // $Id$
|
||||
// mediaplugin.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['filtername'] = 'Multimedia Plugins';
|
||||
|
||||
$string['flashanimation'] = 'Flash animation';
|
||||
$string['flashvideo'] = 'Flash video';
|
||||
$string['mp3audio'] = 'MP3 audio';
|
||||
|
||||
?>
|
7
filter/multilang/lang/en_utf8/filter_multilang.php
Normal file
7
filter/multilang/lang/en_utf8/filter_multilang.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?PHP // $Id$
|
||||
// multilang.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['filtername'] = 'Multi-Language Content';
|
||||
|
||||
?>
|
7
filter/tex/lang/en_utf8/filter_tex.php
Normal file
7
filter/tex/lang/en_utf8/filter_tex.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?PHP // $Id$
|
||||
// tex.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
|
||||
$string['filtername'] = 'TeX Notation';
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue