]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-7858 Textarea field of database activity needs two translation strings.
authorskodak <skodak>
Mon, 11 Dec 2006 09:03:35 +0000 (09:03 +0000)
committerskodak <skodak>
Mon, 11 Dec 2006 09:03:35 +0000 (09:03 +0000)
lang/en_utf8/data.php
mod/data/field/textarea/mod.html

index 13b869b9d4811034e956158a22a7eb307db5c314..69ab29fcca6dd157c2d71346ba5dd90307418e84 100644 (file)
@@ -24,6 +24,7 @@ $string['bynameondate'] = 'by $a->name - $a->date';
 $string['cancel'] = 'Cancel';
 $string['checkbox'] = 'Checkbox';
 $string['chooseorupload'] = 'Choose file';
+$string['columns'] = 'columns';
 $string['commentdeleted'] = 'Comment deleted';
 $string['commentempty'] = 'Comment was empty';
 $string['comments'] = 'Comments';
@@ -184,6 +185,7 @@ $string['requiredentries'] = 'Required entries';
 $string['requiredentriestoview'] = 'Entries required before viewing';
 $string['resettemplate'] = 'Reset template';
 $string['resizingimages'] = 'Resizing image thumbnails...';
+$string['rows'] = 'rows';
 $string['rssglobaldisabled'] = 'Disabled. See site configuration variables.';
 $string['rsshowmany'] = '(number of latest entries to show, 0 to disable RSS)';
 $string['rsstemplate'] = 'RSS template';
index 5073c097f1769a58a6dead3899d0e075e5f36d19..2b8c5f777600760a1f1aacab0507fd402e3341df 100755 (executable)
@@ -22,7 +22,7 @@
                 } else {
                     echo('"' . $this->field->param2 . '"');
                 }
-            ?> /> columns
+            ?> /> <?php echo get_string('columns', 'data'); ?>
         </td>
     </tr>
     <tr>
@@ -37,7 +37,7 @@
                 } else {
                     echo('"' . $this->field->param3 . '"');
                 }
-            ?> /> rows
+            ?> /> <?php echo get_string('rows', 'data'); ?>
         </td>
     </tr>
 </table>