Change "File Request" to "Submit Request"

Apparently the reference to "files" can be confusing.

Fixes FS#47167.

Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Eli Schwartz 2015-11-25 01:51:08 -05:00 committed by Lukas Fleischer
parent 002d348d90
commit ecb746971c
3 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ if (isset($base_id)) {
header('Location: /');
exit();
}
html_header(__("File Request"));
html_header(__("Submit Request"));
include('pkgreq_form.php');
} elseif (isset($pkgreq_id)) {
if (!has_credential(CRED_PKGREQ_CLOSE)) {

View file

@ -32,7 +32,7 @@
<?php endif; ?>
<li><span class="flagged"><?php if ($row["RequestCount"] > 0) { echo _n('%d pending request', '%d pending requests', $row["RequestCount"]); } ?></span></li>
<li><?= html_action_link($base_uri . 'request/', __('File Request')) ?></li>
<li><?= html_action_link($base_uri . 'request/', __('Submit Request')) ?></li>
<?php if (has_credential(CRED_PKGBASE_DELETE)): ?>
<li><?= html_action_link($base_uri . 'delete/', __('Delete Package')) ?></li>

View file

@ -1,5 +1,5 @@
<div class="box">
<h2><?= __('File Request: %s', htmlspecialchars($pkgbase_name)) ?></h2>
<h2><?= __('Submit Request: %s', htmlspecialchars($pkgbase_name)) ?></h2>
<p>
<?= __('Use this form to file a request against package base %s%s%s which includes the following packages:',
'<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?>
@ -58,7 +58,7 @@
<textarea name="comments" id="id_comments" rows="5" cols="50"></textarea>
</p>
<p>
<input type="submit" class="button" name="do_FileRequest" value="<?= __("File Request") ?>" />
<input type="submit" class="button" name="do_FileRequest" value="<?= __("Submit Request") ?>" />
</p>
</fieldset>
</form>