diff options
author | eric <eric> | 2004-06-19 16:36:22 +0200 |
---|---|---|
committer | eric <eric> | 2004-06-19 16:36:22 +0200 |
commit | 22e8556691d134c4bf778837d4a0c24e4504b8cf (patch) | |
tree | 6cbeaebbcf2ea34ceff74539b48f2fb1d3fb5edc /web/html/pkgsubmit.php | |
parent | 74594e516d699a3a95a4e8112c914b9225853de7 (diff) | |
download | aur-22e8556691d134c4bf778837d4a0c24e4504b8cf.tar.gz aur-22e8556691d134c4bf778837d4a0c24e4504b8cf.tar.xz |
finished tweaking language selection
Diffstat (limited to 'web/html/pkgsubmit.php')
-rw-r--r-- | web/html/pkgsubmit.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php new file mode 100644 index 00000000..fc36da5d --- /dev/null +++ b/web/html/pkgsubmit.php @@ -0,0 +1,17 @@ +<? +include("aur.inc"); # access AUR common functions +include("submit_po.inc"); # use some form of this for i18n support +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> |