Skip to content

Commit

Permalink
Fix for language string issue
Browse files Browse the repository at this point in the history
Moodle language customization had issues. This was due to having $string['am'] and $string['AM']. Replaced $string['AM'] to $string['AM1'] same for $string['PM']
  • Loading branch information
Patrick Thibaudeau committed Nov 5, 2012
1 parent efeafdf commit f299ddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang/fr/block_tts.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@
$string['norecords'] = 'Pas d\\\'enregistrement';
$string['model'] = 'Longeur de colNames <> colModelLength!';
$string['am'] = 'am';
$string['AM'] = 'AM';
$string['AM1'] = 'AM';
$string['pm'] = 'pm';
$string['PM'] = 'PM';
$string['PM1'] = 'PM';
$string["Sun"] = "Dim";
$string["Mon"] = 'Lun';
$string["Tue"] = "Mar";
Expand Down

0 comments on commit f299ddc

Please sign in to comment.