diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-06-25 16:09:16 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-06-25 16:09:22 +0200 |
commit | 7d42d3fc1c60e9354efb44a8a5a494ede8ddeadd (patch) | |
tree | 8a7d77ddbee221b694e80e680dfab38c854a8d26 | |
parent | 16674e4c9d226446a8e6f2189858ab4d3b77ece0 (diff) | |
download | aur-7d42d3fc1c60e9354efb44a8a5a494ede8ddeadd.tar.gz aur-7d42d3fc1c60e9354efb44a8a5a494ede8ddeadd.tar.xz |
Make request type hints translatable
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | web/template/pkgreq_form.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/template/pkgreq_form.php b/web/template/pkgreq_form.php index 639326eb..35dbef57 100644 --- a/web/template/pkgreq_form.php +++ b/web/template/pkgreq_form.php @@ -68,13 +68,13 @@ <textarea name="comments" id="id_comments" rows="5" cols="50"></textarea> </p> <p id="deletion_hint"> - <?= 'By submitting a deletion request, you ask a Trusted User to delete the package base. This type of request should be used for duplicates, software abandoned by upstream, as well as illegal and irreparably broken packages.' ?> + <?= __('By submitting a deletion request, you ask a Trusted User to delete the package base. This type of request should be used for duplicates, software abandoned by upstream, as well as illegal and irreparably broken packages.') ?> </p> <p id="merge_hint"> - <?= 'By submitting a merge request, you ask a Trusted User to delete the package base and transfer its votes and comments to another package base. Merging a package does not affect the corresponding Git repositories. Make sure you update the Git history of the target package yourself.' ?> + <?= __('By submitting a merge request, you ask a Trusted User to delete the package base and transfer its votes and comments to another package base. Merging a package does not affect the corresponding Git repositories. Make sure you update the Git history of the target package yourself.') ?> </p> <p id="orphan_hint"> - <?= 'By submitting an orphan request, you ask a Trusted User to disown the package base. Please only do this if the package needs maintainer action, the maintainer is MIA and you already tried to contact the maintainer previously.' ?> + <?= __('By submitting an orphan request, you ask a Trusted User to disown the package base. Please only do this if the package needs maintainer action, the maintainer is MIA and you already tried to contact the maintainer previously.') ?> </p> <p> <input type="submit" class="button" name="do_FileRequest" value="<?= __("Submit Request") ?>" /> |