Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2010-05-03 20:57:46 +0400
committerMarc Delisle <marc@infomarc.info>2010-05-03 20:57:46 +0400
commitf55823f47fd099cbbc3717fdbf0cfec8135927ed (patch)
treeba1f8c432878264debe7559f7efe667bf0b3e46f /view_create.php
parent86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (diff)
strings to gettext, first batch
Diffstat (limited to 'view_create.php')
-rw-r--r--view_create.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/view_create.php b/view_create.php
index 07164a52df..6797919c0c 100644
--- a/view_create.php
+++ b/view_create.php
@@ -139,13 +139,13 @@ $url_params['reload'] = 1;
</select>
</td>
</tr>
- <tr><td><?php echo $strViewName; ?></td>
+ <tr><td><?php echo __('VIEW name'); ?></td>
<td><input type="text" size="20" name="view[name]" onfocus="this.select()"
value="<?php echo htmlspecialchars($view['name']); ?>" />
</td>
</tr>
- <tr><td><?php echo $strColumnNames; ?></td>
+ <tr><td><?php echo __('Column names'); ?></td>
<td><input type="text" maxlength="100" size="50" name="view[column_names]"
onfocus="this.select()"
value="<?php echo htmlspecialchars($view['column_names']); ?>" />
@@ -179,7 +179,7 @@ $url_params['reload'] = 1;
</table>
</fieldset>
<fieldset class="tblFooters">
- <input type="submit" name="createview" value="<?php echo $strGo; ?>" />
+ <input type="submit" name="createview" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
</div>