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:
authorMichal Čihař <mcihar@suse.cz>2012-03-14 19:36:55 +0400
committerMichal Čihař <mcihar@suse.cz>2012-03-14 19:36:55 +0400
commit5247c1060ab98f8254ca75433f3c61ab20a2037d (patch)
tree58687f203e57f3e638b66452a2e766d8c0c8c8f1 /tbl_tracking.php
parent2d354d70f1d5fa2c27f4e6a2ebdac921ddb183f6 (diff)
Use ordered format string to ease work for translators
Diffstat (limited to 'tbl_tracking.php')
-rw-r--r--tbl_tracking.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_tracking.php b/tbl_tracking.php
index 3f147451b8..1128286d14 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -430,7 +430,7 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
$str4 = '<input type="text" name="users" value="' . htmlspecialchars($_REQUEST['users']) . '" />';
$str5 = '<input type="submit" name="list_report" value="' . __('Go') . '" />';
- printf(__('Show %s with dates from %s to %s by user %s %s'), $str1, $str2, $str3, $str4, $str5);
+ printf(__('Show %1$s with dates from %2$s to %3$s by user %4$s %5$s'), $str1, $str2, $str3, $str4, $str5);
// Prepare delete link content here
$drop_image_or_text = '';
@@ -558,7 +558,7 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
</form>
<form method="post" action="tbl_tracking.php<?php echo PMA_generate_common_url($url_params + array('report' => 'true', 'version' => $_REQUEST['version'])); ?>">
<?php
- printf(__('Show %s with dates from %s to %s by user %s %s'), $str1, $str2, $str3, $str4, $str5);
+ printf(__('Show %1$s with dates from %2$s to %3$s by user %4$s %5$s'), $str1, $str2, $str3, $str4, $str5);
$str_export1 = '<select name="export_type">' .
'<option value="sqldumpfile">' . __('SQL dump (file download)') . '</option>' .