summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-11-22 23:58:00 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-11-22 23:58:00 -0500
commit08b0bbd0587b891ca9a4c8fa3a22cf7524c36265 (patch)
tree9acb330c10ed60d6559f7fbe3420460894bd925e
parent38b1bbe78df3a518f0688e50f1d6361221b95ea1 (diff)
these changes were sitting herepurweb/master0
-rw-r--r--INSTALL10
-rw-r--r--Makefile29
-rw-r--r--README2
-rw-r--r--TRANSLATING33
-rwxr-xr-xgit-interface/git-serve.py3
-rw-r--r--po/Makefile38
-rw-r--r--po/ar.po560
-rw-r--r--po/ast.po482
-rw-r--r--po/aur.pot529
-rw-r--r--po/ca.po487
-rw-r--r--po/cs.po483
-rw-r--r--po/da.po444
-rw-r--r--po/de.po499
-rw-r--r--po/el.po487
-rw-r--r--po/es.po504
-rw-r--r--po/es_419.po504
-rw-r--r--po/fi.po487
-rw-r--r--po/fr.po499
-rw-r--r--po/he.po448
-rw-r--r--po/hr.po458
-rw-r--r--po/hu.po501
-rw-r--r--po/it.po507
-rw-r--r--po/ja.po495
-rw-r--r--po/nb.po497
-rw-r--r--po/nl.po487
-rw-r--r--po/pl.po499
-rw-r--r--po/pt_BR.po505
-rw-r--r--po/pt_PT.po495
-rw-r--r--po/ro.po507
-rw-r--r--po/ru.po509
-rw-r--r--po/sk.po505
-rw-r--r--po/sr.po512
-rw-r--r--po/tr.po510
-rw-r--r--po/uk.po512
-rw-r--r--po/zh_CN.po483
-rw-r--r--po/zh_TW.po488
-rwxr-xr-xschema/gendummydata.py4
-rwxr-xr-xscripts/mkpkglists.py7
-rw-r--r--web/html/account.php2
l---------[-rw-r--r--]web/html/css/archnavbar/archlogo.pngbin4192 -> 64 bytes
l---------[-rw-r--r--]web/html/css/archnavbar/archnavbar.css26
-rw-r--r--web/html/css/archnavbar/aurlogo.pngbin5997 -> 5423 bytes
l---------[-rw-r--r--]web/html/css/archweb.css1114
l---------[-rw-r--r--]web/html/css/cgit.css867
-rw-r--r--web/html/home.php28
l---------[-rw-r--r--]web/html/images/favicon.icobin575 -> 52 bytes
l---------[-rw-r--r--]web/html/images/feed-icon-14x14.pngbin689 -> 72 bytes
l---------[-rw-r--r--]web/html/images/new.pngbin378 -> 48 bytes
-rw-r--r--web/html/index.php9
l---------[-rw-r--r--]web/html/js/bootstrap-typeahead.min.js2
-rw-r--r--web/html/login.php4
-rw-r--r--web/html/logout.php4
-rw-r--r--web/html/packages.php2
-rw-r--r--web/html/passreset.php4
-rw-r--r--web/html/pkgdel.php4
-rw-r--r--web/html/register.php2
-rw-r--r--web/html/rss.php8
-rw-r--r--web/lib/DB.class.php2
-rw-r--r--web/lib/acctfuncs.inc.php12
-rw-r--r--web/lib/aur.inc.php14
-rw-r--r--web/lib/aurjson.class.php2
-rw-r--r--web/lib/pkgbasefuncs.inc.php28
-rw-r--r--web/lib/pkgreqfuncs.inc.php17
-rw-r--r--web/lib/stats.inc.php2
-rw-r--r--web/template/account_delete.php3
-rw-r--r--web/template/account_edit_form.php2
-rw-r--r--web/template/header.php8
-rw-r--r--web/template/stats/updates_table.php2
-rw-r--r--web/template/template.phps2
69 files changed, 8190 insertions, 8989 deletions
diff --git a/INSTALL b/INSTALL
index d68fa26..dce7b12 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,7 +1,7 @@
Setup on Arch Linux
===================
-1) Clone the AUR project:
+1) Clone the aurweb project:
$ cd /srv/http/
$ git clone git://projects.archlinux.org/aurweb.git
@@ -33,13 +33,13 @@ Setup on Arch Linux
3) Copy conf/config.proto to conf/config and adjust the configuration (pay
attention to disable_http_login, enable_maintenance and aur_location).
-4) Create a new MySQL database and a user and import the AUR SQL schema:
+4) Create a new MySQL database and a user and import the aurweb SQL schema:
- $ mysql -uaur -p AUR </srv/http/aurweb/schema/aur-schema.sql
+ $ mysql -uaur -p </srv/http/aurweb/schema/aur-schema.sql
5) Create a new user:
- # useradd -U -d /srv/http/aurweb -c 'AUR user' aur
+ # useradd -U -d /srv/http/aurweb -c 'aurweb user' aur
6) Initialize the Git repository:
@@ -54,7 +54,7 @@ Setup on Arch Linux
# cd /srv/http/aurweb/git-interface/
# make && make install
-8) Configure sshd(8) for the AUR. Add the following lines at the end of your
+8) Configure sshd(8) for aurweb. Add the following lines at the end of your
sshd_config(5) and restart the sshd. Note that OpenSSH 6.9 or newer is
needed!
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..004ebc5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+# Where are we?
+topdir := $(dir $(lastword $(MAKEFILE_LIST)))
+web-cache = $(topdir)/web-cache
+www = $(web-cache)/www
+artwork = $(web-cache)/artwork
+branding = $(artwork)/official-2013/optimized-text
+
+targets = web/html/images/feed-icon-14x14.png
+
+all: $(targets)
+clean:
+ rm -f -- $(targets)
+.PHONY: all clean
+
+$(www)/http/%:
+ mkdir -p '$(@D)'
+ wget 'http://$*' -O '$@'
+ touch '$@'
+
+$(www)/https/%:
+ mkdir -p '$(@D)'
+ wget 'https://$*' -O '$@'
+ touch '$@'
+
+web/html/images/feed-icon-14x14.png: $(www)/http/www.feedicons.com/images/feed-icon-14x14.png
+ ln -srf $< $@
+
+.DELETE_ON_ERROR:
+.SECONDARY:
diff --git a/README b/README
index 228358a..2d57ead 100644
--- a/README
+++ b/README
@@ -30,7 +30,7 @@ po::
scripts::
aurblup package blacklist tool. Scripts for AUR maintenance.
-support::
+schema::
Schema for SQL database. Script for dummy data generation.
web::
diff --git a/TRANSLATING b/TRANSLATING
index e450640..510cf08 100644
--- a/TRANSLATING
+++ b/TRANSLATING
@@ -4,21 +4,15 @@ aurweb Translation
This document describes how to create and maintain aurweb translations. It was
originally derived from https://wiki.archlinux.org/index.php/aurweb_Translation
-Creating an aurweb translation requires a Transifex (http://www.transifex.com/)
-account. You will need to register with a translation team on the aurweb
-project page (http://www.transifex.com/projects/p/aurweb/).
-
-
Creating a New Translation
--------------------------
-Before beginning, please sign up for an Transifex account and request the
-addition of a new translation team for the aurweb project. Also, please do not
-translate if you are unwilling to maintain or find someone to maintain the
-translation. This is due to the fact that aurweb is a rapidly evolving project
-and there are constantly new strings to be translated. If the translations get
-too out of sync with the released versions, there will be too many untranslated
-strings for the translation to be usable, and it may have to be disabled.
+Please do not translate if you are unwilling to maintain or find someone to
+maintain the translation. This is due to the fact that aurweb is a rapidly
+evolving project and there are constantly new strings to be translated. If the
+translations get too out of sync with the released versions, there will be too
+many untranslated strings for the translation to be usable, and it may have to
+be disabled.
1. Check out the aurweb source using git:
@@ -40,23 +34,20 @@ $ poedit <locale>.po
5. If you have a working aurweb setup, add a line for the new translation in
"web/lib/config.inc.php.proto" and test if everything looks right.
-6. Upload the newly created ".po" file to Transifex. If you don't like the web
- interface, you can also use transifex-client to do that (see below).
+6. Upload the newly created ".po" file to git. If you don't have git access,
+ send us a patch on the dev@lists.parabola.nu mailing list.
Updating an Existing Translation
--------------------------------
-1. Download current translation files from Transifex. You can also do this
- using transifex-client which is available through the AUR:
+1. Check out the aurweb source using git:
-$ tx pull -a
+$ git clone git://projects.archlinux.org/aurweb.git aurweb-git
2. Update the existing translation file using an editor or a tool like poedit:
$ poedit po/<locale>.po
-3. Push the updated translation file back to Transifex. Using transifex-client,
- this works as follows:
-
-$ tx push -r aur.aurpot -t -l <locale>
+3. Push the updated translation file back to git. If you don't have git access,
+ send us a patch on the dev@lists.parabola.nu mailing list.
diff --git a/git-interface/git-serve.py b/git-interface/git-serve.py
index 8316cf7..0798b74 100755
--- a/git-interface/git-serve.py
+++ b/git-interface/git-serve.py
@@ -23,6 +23,7 @@ ssh_cmdline = config.get('serve', 'ssh-cmdline')
enable_maintenance = config.getboolean('options', 'enable-maintenance')
maintenance_exc = config.get('options', 'maintenance-exceptions').split()
+branding_name = config.get('options', 'branding_shortname')
def pkgbase_exists(pkgbase):
db = mysql.connector.connect(host=aur_db_host, user=aur_db_user,
@@ -115,7 +116,7 @@ action = cmdargv[0]
if enable_maintenance:
remote_addr = os.environ["SSH_CLIENT"].split(" ")[0]
if not remote_addr in maintenance_exc:
- die("The AUR is down due to maintenance. We will be back soon.")
+ die("The %s is down due to maintenance. We will be back soon." % branding_name)
if action == 'git-upload-pack' or action == 'git-receive-pack':
if len(cmdargv) < 2:
diff --git a/po/Makefile b/po/Makefile
index d0ed741..9d54777 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -1,36 +1,7 @@
DESTDIR = ..
PREFIX = /web/locale
-POFILES = \
- ar.po \
- ast.po \
- ca.po \
- cs.po \
- da.po \
- de.po \
- el.po \
- es.po \
- es_419.po \
- fi.po \
- fr.po \
- he.po \
- hr.po \
- hu.po \
- it.po \
- ja.po \
- nb.po \
- nl.po \
- pl.po \
- pt_BR.po \
- pt_PT.po \
- ro.po \
- ru.po \
- sk.po \
- sr.po \
- tr.po \
- uk.po \
- zh_CN.po \
- zh_TW.po
+POFILES = $(wildcard *.po)
MOFILES = ${POFILES:.po=.mo}
LOCALES = ${MOFILES:.mo=}
@@ -48,7 +19,7 @@ all: ${MOFILES}
lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
msgmerge -U --no-location --lang="$$lang" $< aur.pot
-POTFILES:
+POTFILES: FORCE
find ../web -type f -name '*.php' -printf '%P\n' | sort >POTFILES
update-pot: POTFILES
@@ -60,8 +31,7 @@ update-pot: POTFILES
--msgid-bugs-address='${MSGID_BUGS_ADDRESS}' \
--directory ../web --files-from POTFILES -o aur.pot
-update-po:
- ${MAKE} ${UPDATEPOFILES}
+update-po: ${UPDATEPOFILES}
clean:
rm -f *.mo *.po\~ POTFILES
@@ -73,4 +43,4 @@ install: all
uninstall:
for l in ${LOCALES}; do rm -rf ${DESTDIR}${PREFIX}/$$l/LC_MESSAGES/; done
-.PHONY: all update-pot update-po clean install uninstall POTFILES
+.PHONY: all update-pot update-po clean install uninstall FORCE
diff --git a/po/ar.po b/po/ar.po
index 82f321d..fdede17 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,22 +1,24 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# صفا الفليج <safaalfulaij@hotmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-18 10:15+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-24 20:42+0000\n"
"Last-Translator: صفا الفليج <safaalfulaij@hotmail.com>\n"
-"Language-Team: Arabic (http://www.transifex.com/projects/p/aur/language/ar/)\n"
+"Language-Team: Arabic (http://www.transifex.com/projects/p/aur/language/"
+"ar/)\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
msgid "Page Not Found"
msgstr "لم يُعثر على الصّفحة"
@@ -52,9 +54,6 @@ msgstr "استخدم هذه الاستمارة للبحث عن الحسابات
msgid "You must log in to view user information."
msgstr "عليك الولوج لعرض معلومات المستخدمين."
-msgid "Use this form to create an account."
-msgstr "استخدم هذه الاستمارة لإنشاء حساب."
-
msgid "Add Proposal"
msgstr ""
@@ -113,17 +112,21 @@ msgstr ""
msgid "Home"
msgstr "الرّئيسيّة"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
-msgstr "مرحبًا بك في م‌م‌آ! فضلًا اقرأ %sإرشادات مستخدمي م‌م‌آ%s و%sإرشادات مستخدمي م‌م‌آ الموثوقين (م‌م)%s لمعلومات أكثر."
+msgstr ""
+"مرحبًا بك في م‌م‌آ! فضلًا اقرأ %sإرشادات مستخدمي م‌م‌آ%s و%sإرشادات مستخدمي م‌م‌آ "
+"الموثوقين (م‌م)%s لمعلومات أكثر."
#, php-format
msgid ""
"Contributed PKGBUILDs %smust%s conform to the %sArch Packaging Standards%s "
"otherwise they will be deleted!"
-msgstr "ملفّات PKGBUILD المساعم بها %sيجب%s أن تتبع %sمعايير التّحزيم في آرتش%s وإلا ستُحذف!"
+msgstr ""
+"ملفّات PKGBUILD المساعم بها %sيجب%s أن تتبع %sمعايير التّحزيم في آرتش%s وإلا "
+"ستُحذف!"
msgid "Remember to vote for your favourite packages!"
msgstr "تذكّر أن تصوّت لحزمك المفضّلة!"
@@ -137,7 +140,9 @@ msgstr "إخلاء مسؤوليّة"
msgid ""
"Unsupported packages are user produced content. Any use of the provided "
"files is at your own risk."
-msgstr "الحزم غير المدعومة محتوًى قدّمه المستخدمون. أيّ استخدام للملفّات الموفّرة هي على مسؤوليّتك الخاصّة."
+msgstr ""
+"الحزم غير المدعومة محتوًى قدّمه المستخدمون. أيّ استخدام للملفّات الموفّرة هي على "
+"مسؤوليّتك الخاصّة."
msgid "Learn more..."
msgstr "تعلّم أكثر..."
@@ -150,9 +155,11 @@ msgstr "طلبات الحزم"
#, php-format
msgid ""
-"There are three types of requests that can be filed in the %sPackage "
-"Actions%s box on the package details page:"
-msgstr "هناك ثلاث أنواع من الحزم التي يمكن ملؤها في مربّع %sإجراءات الحزم%s في صفحة تفاصيل الحزمة:"
+"There are three types of requests that can be filed in the %sPackage Actions"
+"%s box on the package details page:"
+msgstr ""
+"هناك ثلاث أنواع من الحزم التي يمكن ملؤها في مربّع %sإجراءات الحزم%s في صفحة "
+"تفاصيل الحزمة:"
msgid "Orphan Request"
msgstr "طلب \"يتيمة\""
@@ -160,16 +167,22 @@ msgstr "طلب \"يتيمة\""
msgid ""
"Request a package to be disowned, e.g. when the maintainer is inactive and "
"the package has been flagged out-of-date for a long time."
-msgstr "اطلب أن يُتبرّأ من الحزمة، مثلًا عندما يكون مصينها غير نشط وقد عُلّمت الحزمة كقديمة لوقت طويل."
+msgstr ""
+"اطلب أن يُتبرّأ من الحزمة، مثلًا عندما يكون مصينها غير نشط وقد عُلّمت الحزمة "
+"كقديمة لوقت طويل."
msgid "Deletion Request"
msgstr "طلب الحذف"
+#, fuzzy, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not"
-" use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
-msgstr "اطلب أن تُزال الحزمة من مستودع مستخدمي آرتش. فضلًا لا تستخدم هذه إن كانت الحزمة معطوبة ويمكن إصلاحها بسهولة. بدل ذلك تواصل مع مصين الحزمة وأبلغ عن طلب \"يتيمة\" إن تطلّب الأمر."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
+msgstr ""
+"اطلب أن تُزال الحزمة من مستودع مستخدمي آرتش. فضلًا لا تستخدم هذه إن كانت "
+"الحزمة معطوبة ويمكن إصلاحها بسهولة. بدل ذلك تواصل مع مصين الحزمة وأبلغ عن "
+"طلب \"يتيمة\" إن تطلّب الأمر."
msgid "Merge Request"
msgstr "طلب الدّمج"
@@ -177,47 +190,60 @@ msgstr "طلب الدّمج"
msgid ""
"Request a package to be merged into another one. Can be used when a package "
"needs to be renamed or replaced by a split package."
-msgstr "اطل دمج حزمة مع أخرى. يمكن استخدامه عندما تحتاج حزمة ما إعادة تسمية أو استبدال بحزمة تقسيميّة."
+msgstr ""
+"اطل دمج حزمة مع أخرى. يمكن استخدامه عندما تحتاج حزمة ما إعادة تسمية أو "
+"استبدال بحزمة تقسيميّة."
#, php-format
msgid ""
"If you want to discuss a request, you can use the %saur-requests%s mailing "
"list. However, please do not use that list to file requests."
-msgstr "إن أردت النّقاش حول طلب ما، يمكنك استخدام قائمة %saur-requests%s البريديّة. لكن فضلًا لا تستخدمها للإبلاغ عن الطلبات."
+msgstr ""
+"إن أردت النّقاش حول طلب ما، يمكنك استخدام قائمة %saur-requests%s البريديّة. "
+"لكن فضلًا لا تستخدمها للإبلاغ عن الطلبات."
msgid "Submitting Packages"
msgstr "تقديم الحزم"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Git over SSH is now used to submit packages to the AUR. See the %sSubmitting"
-" packages%s section of the Arch User Repository ArchWiki page for more "
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
"details."
-msgstr "غِت Git عبر SSH يُستخدم الآن لتقديم الحزم إلى مستودع مستخدمي آرتش (م‌م‌آ). طالع قسم %sتقديم الحزم%s في صفحة مستودع مستخدمي آرتش في ويكي آرتش لتفاصيل أكثر."
+msgstr ""
+"غِت Git عبر SSH يُستخدم الآن لتقديم الحزم إلى مستودع مستخدمي آرتش (م‌م‌آ). طالع "
+"قسم %sتقديم الحزم%s في صفحة مستودع مستخدمي آرتش في ويكي آرتش لتفاصيل أكثر."
-msgid "The following SSH fingerprints are used for the AUR:"
+#, fuzzy, php-format
+msgid "The following SSH fingerprints are used for the %s:"
msgstr "بصمات SSH الآتية مستخدمة في م‌م‌آ:"
msgid "Discussion"
msgstr "النّقاش"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User"
-" structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
-msgstr "النّقاشات العاّمة حول مستودع مستخدمي آرتش (م‌م‌آ) وبنية المستخدمين الموثوقين تكون في %saur-general%s. للنّقاشات المتعلّقة لتطوير واجهة وِب م‌م‌آ، استخدم قائمة %saur-dev%s البريديّة."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
+msgstr ""
+"النّقاشات العاّمة حول مستودع مستخدمي آرتش (م‌م‌آ) وبنية المستخدمين الموثوقين "
+"تكون في %saur-general%s. للنّقاشات المتعلّقة لتطوير واجهة وِب م‌م‌آ، استخدم "
+"قائمة %saur-dev%s البريديّة."
msgid "Bug Reporting"
msgstr "الإبلاغ عن العلل"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
-msgstr "إن وجدت علّة في واجهة وِب م‌م‌آ، فضلًا املأ تقريرًا بها في %sمتعقّب العلل%s. استخدم المتعقّب للإبلاغ عن العلل في م‌م‌آ %sفقط%s. للإبلاغ عن علل الحزم راسل مديرها أو اترك تعليقًا في صفحة الحزمة المناسبة."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
+msgstr ""
+"إن وجدت علّة في واجهة وِب م‌م‌آ، فضلًا املأ تقريرًا بها في %sمتعقّب العلل%s. استخدم "
+"المتعقّب للإبلاغ عن العلل في م‌م‌آ %sفقط%s. للإبلاغ عن علل الحزم راسل مديرها أو "
+"اترك تعليقًا في صفحة الحزمة المناسبة."
msgid "Package Search"
msgstr "ابحث عن حزمة"
@@ -295,12 +321,18 @@ msgstr "يجب أن تكون كلمة مرورك بطول %s محارف على
msgid "Invalid e-mail."
msgstr "بريد إلكترونيّ غير صالح."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "صفّر كلمة المرور"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
"your e-mail address. If you wish to reset your password follow the link "
"below, otherwise ignore this message and nothing will happen."
-msgstr "قُدّم طلب تصفير كلمة مرور الحساب %s المرتبط بعنوان بريدك الإلكتروني. إن رغبت بتصغير كلمة مرورك اتبع الوصلة أدناه، وإلّا تجاهل هذه الرّسالة ولن يحدث شيء."
+msgstr ""
+"قُدّم طلب تصفير كلمة مرور الحساب %s المرتبط بعنوان بريدك الإلكتروني. إن رغبت "
+"بتصغير كلمة مرورك اتبع الوصلة أدناه، وإلّا تجاهل هذه الرّسالة ولن يحدث شيء."
msgid "Password Reset"
msgstr "صفّر كلمة المرور"
@@ -325,9 +357,11 @@ msgstr "تابع"
#, php-format
msgid ""
-"If you have forgotten the e-mail address you used to register, please send a"
-" message to the %saur-general%s mailing list."
-msgstr "إن نسيت عنوان البريد الإلكترونيّ الذي استخدمته للتّسجيل، فضلًا أرسل رسالة إلى قائمة %saur-general%s البريديّة."
+"If you have forgotten the e-mail address you used to register, please send a "
+"message to the %saur-general%s mailing list."
+msgstr ""
+"إن نسيت عنوان البريد الإلكترونيّ الذي استخدمته للتّسجيل، فضلًا أرسل رسالة إلى "
+"قائمة %saur-general%s البريديّة."
msgid "Enter your e-mail address:"
msgstr "أدخل عنوان بريدك الإلكترونيّ:"
@@ -344,8 +378,7 @@ msgid "Cannot merge a package base with itself."
msgstr "لا يمكن الدّمج بلا أساس الحزمة نفسه."
msgid ""
-"The selected packages have not been deleted, check the confirmation "
-"checkbox."
+"The selected packages have not been deleted, check the confirmation checkbox."
msgstr ""
msgid "Package Deletion"
@@ -355,10 +388,10 @@ msgstr "احذف حزمة"
msgid "Delete Package: %s"
msgstr "احذف الحزمة: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr "استخدم هذه الاستمارة لحذف أساس الحزمة %s%s%s والحزم الآتية من م‌م‌آ:"
msgid "Deletion of a package is permanent. "
@@ -385,9 +418,10 @@ msgstr "تنازل عن الحزمة: %s"
#, php-format
msgid ""
-"Use this form to disown the package base %s%s%s which includes the following"
-" packages: "
-msgstr "استخدم هذه الاستمارة للتّنازل عن أساس الحزمة %s%s%s المتضمّنة الحزم الآتية:"
+"Use this form to disown the package base %s%s%s which includes the following "
+"packages: "
+msgstr ""
+"استخدم هذه الاستمارة للتّنازل عن أساس الحزمة %s%s%s المتضمّنة الحزم الآتية:"
#, php-format
msgid ""
@@ -461,6 +495,12 @@ msgstr "الأخيرة"
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr "سجّل"
+
+msgid "Use this form to create an account."
+msgstr "استخدم هذه الاستمارة لإنشاء حساب."
+
msgid "Trusted User"
msgstr "مستخدم موثوق"
@@ -494,7 +534,9 @@ msgstr "المصوّتون"
msgid ""
"Account registration has been disabled for your IP address, probably due to "
"sustained spam attacks. Sorry for the inconvenience."
-msgstr "تسجيل الحسابات معطّل حاليًّا لعنوان IP خاصّتك، لربمّا بسبب هجماتك السّخاميّة المتكرّرة. آسفون لإزاعجك"
+msgstr ""
+"تسجيل الحسابات معطّل حاليًّا لعنوان IP خاصّتك، لربمّا بسبب هجماتك السّخاميّة "
+"المتكرّرة. آسفون لإزاعجك"
msgid "Missing User ID"
msgstr "معرّف المستخدم ناقص"
@@ -551,11 +593,17 @@ msgid "Click on the Login link above to use your account."
msgstr "انقر وصلة الولوج أعلاه لاستخدام حسابك."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
"pasting it into your browser."
-msgstr "مرحبًا بك في %s! لتعيين كلمة مرور أوليّة لحسابك الجديد، فضلًأ انقر الوصلة أدناه. إن لم تعمل الوصلة جرّب النّسخ واللصق في متصفّحك."
+msgstr ""
+"مرحبًا بك في %s! لتعيين كلمة مرور أوليّة لحسابك الجديد، فضلًأ انقر الوصلة "
+"أدناه. إن لم تعمل الوصلة جرّب النّسخ واللصق في متصفّحك."
msgid "A password reset key has been sent to your e-mail address."
msgstr "مفتاح تصفير كلمة المرور أُرسل إلى عنوان بريدك الإلكترونيّ."
@@ -571,7 +619,9 @@ msgstr "عُدّل الحساب %s%s%s بنجاح."
msgid ""
"The login form is currently disabled for your IP address, probably due to "
"sustained spam attacks. Sorry for the inconvenience."
-msgstr "استمارة الولوج معطّلة حاليًّا لعنوان IP خاصّتك، لربمّا بسبب هجماتك السّخاميّة المتكرّرة. آسفون لإزاعجك."
+msgstr ""
+"استمارة الولوج معطّلة حاليًّا لعنوان IP خاصّتك، لربمّا بسبب هجماتك السّخاميّة "
+"المتكرّرة. آسفون لإزاعجك."
msgid "Account suspended"
msgstr "عُلّق الحساب"
@@ -581,7 +631,10 @@ msgid ""
"Your password has been reset. If you just created a new account, please use "
"the link from the confirmation email to set an initial password. Otherwise, "
"please request a reset key on the %sPassword Reset%s page."
-msgstr "لقد صُفّرت كلمة مرورك. إن أنشئت حسابًا جديدًا للتّوّ، فضلًا استخدم الوصلة من الريد الإلكتروني التّأكيديّ لتعيين كلمة مرور أوّليّة. وإلّا، فضلًا اطلب مفتاح تصفير من صفحة %sصفّر كلمة المرور%s."
+msgstr ""
+"لقد صُفّرت كلمة مرورك. إن أنشئت حسابًا جديدًا للتّوّ، فضلًا استخدم الوصلة من الريد "
+"الإلكتروني التّأكيديّ لتعيين كلمة مرور أوّليّة. وإلّا، فضلًا اطلب مفتاح تصفير من "
+"صفحة %sصفّر كلمة المرور%s."
msgid "Bad username or password."
msgstr "اسم مستخدم أو كلمة مرور سيئّة."
@@ -731,8 +784,8 @@ msgstr "يمكن فقط للمستخدمين الموثوقين والمطوّر
msgid "Request closed successfully."
msgstr "ُأُغلق الطّلب بنجاح."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "يمكنك استخدام هذه الاستمارة لحذف حساب م‌م‌آ هذا %s نهائيًّا."
#, php-format
@@ -812,9 +865,10 @@ msgstr "أعد كتابة كلمة المرور"
msgid "Language"
msgstr "اللغة"
+#, fuzzy, php-format
msgid ""
-"The following information is only required if you want to submit packages to"
-" the Arch User Repository."
+"The following information is only required if you want to submit packages to "
+"the %s."
msgstr "المعلومات الآتية مطلوبة فقط إن أردت تقديم حزم إلى مستودع مستخدمي آرتش."
msgid "SSH Public Key"
@@ -871,100 +925,6 @@ msgstr "حزمي"
msgid " My Account"
msgstr "حسابي"
-msgid "Register"
-msgstr "سجّل"
-
-msgid "unknown"
-msgstr ""
-
-msgid "Package Base Details"
-msgstr "تفاصيل أساس الحزمة"
-
-msgid "Package Actions"
-msgstr "إجراءات الحزمة"
-
-msgid "View PKGBUILD"
-msgstr "اعرض PKGBUILD"
-
-msgid "View Changes"
-msgstr "اعرض التّغييرات"
-
-msgid "Download snapshot"
-msgstr "نزّل لقطة شاشة"
-
-msgid "Search wiki"
-msgstr "ابحث في الويكي"
-
-msgid "Flagged out-of-date"
-msgstr "معلّمة كقديمة"
-
-msgid "Flag package out-of-date"
-msgstr "علّم الحزمة كقديمة"
-
-msgid "Unflag package"
-msgstr "أزل تعليم الحزمة"
-
-msgid "Remove vote"
-msgstr ""
-
-msgid "Vote for this package"
-msgstr "صوّت لهذه الحزمة"
-
-msgid "Disable notifications"
-msgstr "عطّل الإخطارات"
-
-msgid "Notify of new comments"
-msgstr "أخطرني بالتّعليقات الجديدة"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-msgid "Delete Package"
-msgstr "احذف الحزمة"
-
-msgid "Merge Package"
-msgstr "ادمج الحزم"
-
-msgid "Adopt Package"
-msgstr "تبنّ الحزمة"
-
-msgid "Git Clone URL"
-msgstr "عنوان غِت للاستنساخ"
-
-msgid "read-only"
-msgstr ""
-
-msgid "Keywords"
-msgstr "الكلمات المفتاحيّة"
-
-msgid "Submitter"
-msgstr "المقدّم"
-
-msgid "Maintainer"
-msgstr "المصين"
-
-msgid "Last Packager"
-msgstr "آخر محزّم"
-
-msgid "Votes"
-msgstr "التّصويتات"
-
-msgid "First Submitted"
-msgstr "أول تقديم"
-
-msgid "Last Updated"
-msgstr "آخر تحديث"
-
msgid "Add Comment"
msgstr "أضف تعليقًا"
@@ -993,9 +953,18 @@ msgstr "محذوف"
msgid "All comments"
msgstr "كلّ التّعليقات"
+msgid "unknown"
+msgstr ""
+
msgid "Package Details"
msgstr "تفاصيل الحزمة"
+msgid "Git Clone URL"
+msgstr "عنوان غِت للاستنساخ"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "أساس الحزمة"
@@ -1008,6 +977,9 @@ msgstr "عنوان المنبع"
msgid "Visit the website for"
msgstr "زُر موقع وِب"
+msgid "Keywords"
+msgstr "الكلمات المفتاحيّة"
+
msgid "Licenses"
msgstr "الرّخص"
@@ -1023,116 +995,32 @@ msgstr "توفّر"
msgid "Replaces"
msgstr "تستبدل"
-msgid "Dependencies"
-msgstr "الاعتماديّات"
-
-msgid "Required by"
-msgstr "تطلبها"
-
-msgid "Sources"
-msgstr "المصادر"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "استخدم هذه الاستمارة لإغلاق طلب أساس الحزمة %s%s%s."
-
-msgid "Note"
-msgstr "ملاحظة"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr "يمكن ترك حقل التّعليقات فارغًا. مع ذلك، من المستحسن إضافة تعليق عند رفض طلب ما."
-
-msgid "Reason"
-msgstr "السّبب"
-
-msgid "Accepted"
-msgstr "مقبول"
-
-msgid "Rejected"
-msgstr "مرفوض"
-
-msgid "Comments"
-msgstr "التّعليقات"
-
-#, php-format
-msgid "File Request: %s"
-msgstr ""
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-msgid "Request type"
-msgstr "نوع الطّلب"
-
-msgid "Deletion"
-msgstr "حذف"
-
-msgid "Orphan"
-msgstr "يتيمة"
-
-msgid "Merge into"
-msgstr "ادمج مع"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "الصّفحة %d من %d."
-
-msgid "Package"
-msgstr "الحزم"
-
-msgid "Filed by"
-msgstr ""
+msgid "Submitter"
+msgstr "المقدّم"
-msgid "Date"
-msgstr "التّاريخ"
+msgid "Maintainer"
+msgstr "المصين"
-#, php-format
-msgid "~%d days left"
-msgstr ""
+msgid "Last Packager"
+msgstr "آخر محزّم"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+msgid "Votes"
+msgstr "التّصويتات"
-msgid "<1 hour left"
-msgstr "بقيت أقلّ من ساعة"
+msgid "First Submitted"
+msgstr "أول تقديم"
-msgid "Accept"
-msgstr "اقبل"
+msgid "Last Updated"
+msgstr "آخر تحديث"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "الاعتماديّات"
-msgid "Close"
-msgstr "أغلق"
+msgid "Required by"
+msgstr "تطلبها"
-msgid "Closed"
-msgstr "مغلق"
+msgid "Sources"
+msgstr "المصادر"
msgid "Name, Description"
msgstr "الاسم، الوصف"
@@ -1213,6 +1101,10 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
+#, php-format
+msgid "Page %d of %d."
+msgstr "الصّفحة %d من %d."
+
msgid "Version"
msgstr "الإصدارة"
@@ -1245,9 +1137,169 @@ msgstr "تنازل عن الحزم"
msgid "Delete Packages"
msgstr "احذف الحزم"
+msgid "Merge into"
+msgstr "ادمج مع"
+
msgid "Confirm"
msgstr "أكّد"
+msgid "Package Actions"
+msgstr "إجراءات الحزمة"
+
+msgid "View PKGBUILD"
+msgstr "اعرض PKGBUILD"
+
+msgid "View Changes"
+msgstr "اعرض التّغييرات"
+
+msgid "Download snapshot"
+msgstr "نزّل لقطة شاشة"
+
+msgid "Search wiki"
+msgstr "ابحث في الويكي"
+
+msgid "Flagged out-of-date"
+msgstr "معلّمة كقديمة"
+
+msgid "Flag package out-of-date"
+msgstr "علّم الحزمة كقديمة"
+
+msgid "Unflag package"
+msgstr "أزل تعليم الحزمة"
+
+msgid "Remove vote"
+msgstr ""
+
+msgid "Vote for this package"
+msgstr "صوّت لهذه الحزمة"
+
+msgid "Disable notifications"
+msgstr "عطّل الإخطارات"
+
+msgid "Notify of new comments"
+msgstr "أخطرني بالتّعليقات الجديدة"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+msgid "Delete Package"
+msgstr "احذف الحزمة"
+
+msgid "Merge Package"
+msgstr "ادمج الحزم"
+
+msgid "Adopt Package"
+msgstr "تبنّ الحزمة"
+
+msgid "Package Base Details"
+msgstr "تفاصيل أساس الحزمة"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "استخدم هذه الاستمارة لإغلاق طلب أساس الحزمة %s%s%s."
+
+msgid "Note"
+msgstr "ملاحظة"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"يمكن ترك حقل التّعليقات فارغًا. مع ذلك، من المستحسن إضافة تعليق عند رفض طلب ما."
+
+msgid "Reason"
+msgstr "السّبب"
+
+msgid "Accepted"
+msgstr "مقبول"
+
+msgid "Rejected"
+msgstr "مرفوض"
+
+msgid "Comments"
+msgstr "التّعليقات"
+
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr "نوع الطّلب"
+
+msgid "Deletion"
+msgstr "حذف"
+
+msgid "Orphan"
+msgstr "يتيمة"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+msgid "Package"
+msgstr "الحزم"
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr "التّاريخ"
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+msgid "<1 hour left"
+msgstr "بقيت أقلّ من ساعة"
+
+msgid "Accept"
+msgstr "اقبل"
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr "أغلق"
+
+msgid "Closed"
+msgstr "مغلق"
+
msgid "Any type"
msgstr "أيّ نوع"
diff --git a/po/ast.po b/po/ast.po
index 1a5c86d..aa0258a 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Asturian (http://www.transifex.com/projects/p/aur/language/"
@@ -55,9 +55,6 @@ msgstr "Usa esti formulariu pa guetar cuentes esistentes."
msgid "You must log in to view user information."
msgstr "Tienes d'aniciar sesión pa ver la información del usuariu."
-msgid "Use this form to create an account."
-msgstr "Usa esti formulariu pa crear una cuenta."
-
msgid "Add Proposal"
msgstr "Amestar propuesta"
@@ -116,9 +113,9 @@ msgstr ""
msgid "Home"
msgstr "Aniciu"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"¡Bienllegáu al AUR! Llei la %sGuía d'usuariu del AUR%s y la %sGuía d'usuariu "
@@ -148,6 +145,9 @@ msgstr ""
"Los paquetes ensin sofitu son producíos polos usuarios. Cualesquier usu de "
"los ficheros apurríos ta sol to propiu riesgu."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -171,10 +171,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -191,14 +192,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Los mios paquetes"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discutiniu"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -206,10 +222,10 @@ msgstr "Informe de fallos"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -288,6 +304,10 @@ msgstr "La to contraseña tien de tener polo menos %s carauteres."
msgid "Invalid e-mail."
msgstr "Corréu electrónicu non válidu"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Reaniciu de contraseña"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -349,10 +369,10 @@ msgstr "Desaniciu de paquete"
msgid "Delete Package: %s"
msgstr "Desaniciar paquete: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Usa esti formulariu pa desaniciar el paquete base %s%s%s y los paquetes "
"siguientes d'AUR:"
@@ -457,6 +477,12 @@ msgstr ""
msgid "Requests"
msgstr "Solicitúes"
+msgid "Register"
+msgstr "Rexistrase"
+
+msgid "Use this form to create an account."
+msgstr "Usa esti formulariu pa crear una cuenta."
+
msgid "Trusted User"
msgstr ""
@@ -547,6 +573,10 @@ msgid "Click on the Login link above to use your account."
msgstr ""
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -591,6 +621,10 @@ msgstr ""
msgid "None"
msgstr ""
+#, php-format
+msgid "View account information for %s"
+msgstr ""
+
msgid "Error retrieving package details."
msgstr ""
@@ -680,17 +714,13 @@ msgstr "El comentariu amestóse."
msgid "You are not allowed to delete this comment."
msgstr "Nun tienes permisu pa desaniciar esti comentariu."
-msgid "Missing category ID."
-msgstr "Falta la ID de la estaya."
-
-msgid "Invalid category ID."
-msgstr "ID d'estaya non válida"
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Nun tienes permisu pa camudar la estaya d'esti paquete."
-msgid "Package category changed."
-msgstr "La estaya'l paquete camudó."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Desaniciáronse los paquetes esbillaos."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -729,8 +759,8 @@ msgstr ""
msgid "Request closed successfully."
msgstr "Solicitú zarrada con ésitu."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Pues usar esti formulariu pa desaniciar la cuenta del AUR %s dafechu."
#, php-format
@@ -810,9 +840,10 @@ msgstr "Teclexa de nueves la contraseña"
msgid "Language"
msgstr "Llingua"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"La información de darréu namái se rique si quies xubir paquetes al AUR."
@@ -870,100 +901,6 @@ msgstr "Los mios paquetes"
msgid " My Account"
msgstr "La mio cuenta"
-msgid "Register"
-msgstr "Rexistrase"
-
-msgid "unknown"
-msgstr "Desconocíu"
-
-msgid "Package Base Details"
-msgstr "Detalles del paquete base"
-
-msgid "Package Actions"
-msgstr "Aiciones de paquete"
-
-msgid "View PKGBUILD"
-msgstr "Ver PKGBUILD"
-
-msgid "View Changes"
-msgstr "Ver camudancies"
-
-msgid "Download snapshot"
-msgstr "Baxar instantánea"
-
-msgid "Search wiki"
-msgstr "Guetar na wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marcar como non actualizáu"
-
-msgid "Flag package out-of-date"
-msgstr "Marcáu como non actualizáu"
-
-msgid "Unflag package"
-msgstr "Quitar marca de non actualizáu"
-
-msgid "Remove vote"
-msgstr "Quitar votu"
-
-msgid "Vote for this package"
-msgstr "Votar pol paquete"
-
-msgid "Disable notifications"
-msgstr ""
-
-msgid "Notify of new comments"
-msgstr ""
-
-msgid "Manage Co-Maintainers"
-msgstr "Alministra comantenedores"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
-msgstr ""
-
-msgid "Merge Package"
-msgstr ""
-
-msgid "Adopt Package"
-msgstr ""
-
-msgid "Git Clone URL"
-msgstr "URL pa clonar con Git"
-
-msgid "Category"
-msgstr "Estaya"
-
-msgid "Change category"
-msgstr "Camudar estaya"
-
-msgid "Submitter"
-msgstr ""
-
-#, php-format
-msgid "View account information for %s"
-msgstr ""
-
-msgid "Maintainer"
-msgstr "Caltenedor"
-
-msgid "Last Packager"
-msgstr ""
-
-msgid "Votes"
-msgstr "Votos"
-
-msgid "First Submitted"
-msgstr ""
-
-msgid "Last Updated"
-msgstr ""
-
msgid "Add Comment"
msgstr "Amestar comentariu"
@@ -992,9 +929,18 @@ msgstr "desaniciáu"
msgid "All comments"
msgstr "Tolos comentarios"
+msgid "unknown"
+msgstr "Desconocíu"
+
msgid "Package Details"
msgstr "Detalles del paquete"
+msgid "Git Clone URL"
+msgstr "URL pa clonar con Git"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Paquete base"
@@ -1007,6 +953,9 @@ msgstr ""
msgid "Visit the website for"
msgstr ""
+msgid "Keywords"
+msgstr "Pallabres clave"
+
msgid "Licenses"
msgstr "Llicencies"
@@ -1022,110 +971,32 @@ msgstr "Apurre"
msgid "Replaces"
msgstr "Troca"
-msgid "Dependencies"
-msgstr "Dependencies"
-
-msgid "Required by"
-msgstr "Riquíu por"
-
-msgid "Sources"
-msgstr "Fontes"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Zarrar solicitú: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "Usa esti formulariu pa zarrar la solicitú pal paquete base %s%s%s."
-
-msgid "Note"
-msgstr "Nota"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
+msgid "Submitter"
msgstr ""
-"El campu de comentarios pue dexase baleru, Por embargu, encamiéntase amestar "
-"un comentariu al refugar una solicitú."
-
-msgid "Reason"
-msgstr "Razón"
-
-msgid "Accepted"
-msgstr "Aceutáu"
-msgid "Rejected"
-msgstr "Refugáu"
-
-msgid "Comments"
-msgstr "Comentarios"
-
-#, php-format
-msgid "File Request: %s"
-msgstr ""
+msgid "Maintainer"
+msgstr "Caltenedor"
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
+msgid "Last Packager"
msgstr ""
-msgid "Request type"
-msgstr "Triba de solicitú"
-
-msgid "Deletion"
-msgstr "Desaniciu"
-
-msgid "Orphan"
-msgstr "Güérfanu"
+msgid "Votes"
+msgstr "Votos"
-msgid "Merge into"
+msgid "First Submitted"
msgstr ""
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Páxina %d de %d"
-
-msgid "Package"
-msgstr "Paquete"
-
-msgid "Filed by"
+msgid "Last Updated"
msgstr ""
-msgid "Date"
-msgstr "Data"
-
-#, php-format
-msgid "~%d days left"
-msgstr "Falten ~%d díes"
-
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "Falta ~%d hora"
-msgstr[1] "Falten ~%d hores"
-
-msgid "<1 hour left"
-msgstr "Falta menos d'una hora"
-
-msgid "Accept"
-msgstr "Aceutar"
-
-msgid "Locked"
-msgstr "Bloquiáu"
+msgid "Dependencies"
+msgstr "Dependencies"
-msgid "Close"
-msgstr "Zarrar"
+msgid "Required by"
+msgstr "Riquíu por"
-msgid "Closed"
-msgstr "Zarráu"
+msgid "Sources"
+msgstr "Fontes"
msgid "Name, Description"
msgstr "Nome, descripción"
@@ -1169,15 +1040,9 @@ msgstr "Descendente"
msgid "Enter search criteria"
msgstr ""
-msgid "Any"
-msgstr ""
-
msgid "Search by"
msgstr "Guetar per"
-msgid "Keywords"
-msgstr "Pallabres clave"
-
msgid "Out of Date"
msgstr "Ensin anovar"
@@ -1208,9 +1073,18 @@ msgid_plural "%d packages found."
msgstr[0] "Alcontróse %d paquete."
msgstr[1] "Alcontráronse %d paquetes"
+#, php-format
+msgid "Page %d of %d."
+msgstr "Páxina %d de %d"
+
msgid "Version"
msgstr "Versión"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sí"
@@ -1235,9 +1109,158 @@ msgstr ""
msgid "Delete Packages"
msgstr ""
+msgid "Merge into"
+msgstr ""
+
msgid "Confirm"
msgstr ""
+msgid "Package Actions"
+msgstr "Aiciones de paquete"
+
+msgid "View PKGBUILD"
+msgstr "Ver PKGBUILD"
+
+msgid "View Changes"
+msgstr "Ver camudancies"
+
+msgid "Download snapshot"
+msgstr "Baxar instantánea"
+
+msgid "Search wiki"
+msgstr "Guetar na wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marcar como non actualizáu"
+
+msgid "Flag package out-of-date"
+msgstr "Marcáu como non actualizáu"
+
+msgid "Unflag package"
+msgstr "Quitar marca de non actualizáu"
+
+msgid "Remove vote"
+msgstr "Quitar votu"
+
+msgid "Vote for this package"
+msgstr "Votar pol paquete"
+
+msgid "Disable notifications"
+msgstr ""
+
+msgid "Notify of new comments"
+msgstr ""
+
+msgid "Manage Co-Maintainers"
+msgstr "Alministra comantenedores"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Delete Package"
+msgstr ""
+
+msgid "Merge Package"
+msgstr ""
+
+msgid "Adopt Package"
+msgstr ""
+
+msgid "Package Base Details"
+msgstr "Detalles del paquete base"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Zarrar solicitú: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "Usa esti formulariu pa zarrar la solicitú pal paquete base %s%s%s."
+
+msgid "Note"
+msgstr "Nota"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"El campu de comentarios pue dexase baleru, Por embargu, encamiéntase amestar "
+"un comentariu al refugar una solicitú."
+
+msgid "Reason"
+msgstr "Razón"
+
+msgid "Accepted"
+msgstr "Aceutáu"
+
+msgid "Rejected"
+msgstr "Refugáu"
+
+msgid "Comments"
+msgstr "Comentarios"
+
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr "Triba de solicitú"
+
+msgid "Deletion"
+msgstr "Desaniciu"
+
+msgid "Orphan"
+msgstr "Güérfanu"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Package"
+msgstr "Paquete"
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr "Falten ~%d díes"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "Falta ~%d hora"
+msgstr[1] "Falten ~%d hores"
+
+msgid "<1 hour left"
+msgstr "Falta menos d'una hora"
+
+msgid "Accept"
+msgstr "Aceutar"
+
+msgid "Locked"
+msgstr "Bloquiáu"
+
+msgid "Close"
+msgstr "Zarrar"
+
+msgid "Closed"
+msgstr "Zarráu"
+
msgid "Any type"
msgstr ""
@@ -1319,3 +1342,18 @@ msgstr ""
msgid "Back"
msgstr ""
+
+#~ msgid "Missing category ID."
+#~ msgstr "Falta la ID de la estaya."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "ID d'estaya non válida"
+
+#~ msgid "Package category changed."
+#~ msgstr "La estaya'l paquete camudó."
+
+#~ msgid "Category"
+#~ msgstr "Estaya"
+
+#~ msgid "Change category"
+#~ msgstr "Camudar estaya"
diff --git a/po/aur.pot b/po/aur.pot
index f7b9a1b..0a32762 100644
--- a/po/aur.pot
+++ b/po/aur.pot
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: AUR v4.0.0-rc5\n"
+"Project-Id-Version: AUR v4.0.0-rc6\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-28 10:09+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -144,7 +144,7 @@ msgstr ""
#: html/home.php
#, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
@@ -207,10 +207,11 @@ msgid "Deletion Request"
msgstr ""
#: html/home.php
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
#: html/home.php
@@ -237,13 +238,14 @@ msgstr ""
#: html/home.php
#, php-format
msgid ""
-"Git over SSH is now used to submit packages to the AUR. See the %sSubmitting "
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
"packages%s section of the Arch User Repository ArchWiki page for more "
"details."
msgstr ""
#: html/home.php
-msgid "The following SSH fingerprints are used for the AUR:"
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
msgstr ""
#: html/home.php
@@ -253,9 +255,9 @@ msgstr ""
#: html/home.php
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
#: html/home.php
@@ -265,10 +267,10 @@ msgstr ""
#: html/home.php
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
#: html/home.php
@@ -375,6 +377,11 @@ msgstr ""
#: html/passreset.php
#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: html/passreset.php
+#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
"your e-mail address. If you wish to reset your password follow the link "
@@ -452,7 +459,7 @@ msgstr ""
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
#: html/pkgdel.php
@@ -711,6 +718,11 @@ msgstr ""
#: lib/acctfuncs.inc.php
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#: lib/acctfuncs.inc.php
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -765,7 +777,7 @@ msgstr ""
msgid "None"
msgstr ""
-#: lib/aur.inc.php template/pkgreq_results.php template/pkg_search_results.php
+#: lib/aur.inc.php template/pkg_search_results.php template/pkgreq_results.php
#, php-format
msgid "View account information for %s"
msgstr ""
@@ -947,7 +959,7 @@ msgstr ""
#: template/account_delete.php
#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
#: template/account_delete.php
@@ -1062,17 +1074,18 @@ msgid "Language"
msgstr ""
#: template/account_edit_form.php
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
#: template/account_edit_form.php
msgid "SSH Public Key"
msgstr ""
-#: template/account_edit_form.php template/pkgbase_details.php
-#: template/pkg_details.php
+#: template/account_edit_form.php template/pkg_details.php
+#: template/pkgbase_details.php
msgid "Update"
msgstr ""
@@ -1139,126 +1152,6 @@ msgstr ""
msgid " My Account"
msgstr ""
-#: template/pkgbase_actions.php
-msgid "Package Actions"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "View PKGBUILD"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "View Changes"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Download snapshot"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Search wiki"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Flagged out-of-date"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Flag package out-of-date"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Unflag package"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Remove vote"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Vote for this package"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Disable notifications"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Notify of new comments"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#: template/pkgbase_actions.php
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-#: template/pkgbase_actions.php
-msgid "Delete Package"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Merge Package"
-msgstr ""
-
-#: template/pkgbase_actions.php
-msgid "Adopt Package"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-#: template/pkgreq_results.php template/tu_details.php
-msgid "unknown"
-msgstr ""
-
-#: template/pkgbase_details.php
-msgid "Package Base Details"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-msgid "Git Clone URL"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-msgid "read-only"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-#: template/pkg_search_form.php
-msgid "Keywords"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-#: template/pkg_search_form.php
-msgid "Submitter"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-#: template/pkg_search_form.php template/pkg_search_results.php
-msgid "Maintainer"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-msgid "Last Packager"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-#: template/pkg_search_form.php template/pkg_search_results.php
-msgid "Votes"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-msgid "First Submitted"
-msgstr ""
-
-#: template/pkgbase_details.php template/pkg_details.php
-msgid "Last Updated"
-msgstr ""
-
#: template/pkg_comment_form.php
msgid "Add Comment"
msgstr ""
@@ -1296,10 +1189,23 @@ msgstr ""
msgid "All comments"
msgstr ""
+#: template/pkg_details.php template/pkgbase_details.php
+#: template/pkgreq_results.php template/tu_details.php
+msgid "unknown"
+msgstr ""
+
#: template/pkg_details.php
msgid "Package Details"
msgstr ""
+#: template/pkg_details.php template/pkgbase_details.php
+msgid "Git Clone URL"
+msgstr ""
+
+#: template/pkg_details.php template/pkgbase_details.php
+msgid "read-only"
+msgstr ""
+
#: template/pkg_details.php template/pkg_search_form.php
msgid "Package Base"
msgstr ""
@@ -1316,6 +1222,11 @@ msgstr ""
msgid "Visit the website for"
msgstr ""
+#: template/pkg_details.php template/pkg_search_form.php
+#: template/pkgbase_details.php
+msgid "Keywords"
+msgstr ""
+
#: template/pkg_details.php
msgid "Licenses"
msgstr ""
@@ -1336,139 +1247,43 @@ msgstr ""
msgid "Replaces"
msgstr ""
-#: template/pkg_details.php
-msgid "Dependencies"
-msgstr ""
-
-#: template/pkg_details.php
-msgid "Required by"
-msgstr ""
-
-#: template/pkg_details.php
-msgid "Sources"
-msgstr ""
-
-#: template/pkgreq_close_form.php
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#: template/pkgreq_close_form.php
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-#: template/pkgreq_close_form.php
-msgid "Note"
-msgstr ""
-
-#: template/pkgreq_close_form.php
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-#: template/pkgreq_close_form.php
-msgid "Reason"
-msgstr ""
-
-#: template/pkgreq_close_form.php template/pkgreq_results.php
-#: template/tu_details.php
-msgid "Accepted"
-msgstr ""
-
-#: template/pkgreq_close_form.php template/pkgreq_results.php
-#: template/tu_details.php
-msgid "Rejected"
-msgstr ""
-
-#: template/pkgreq_close_form.php template/pkgreq_form.php
-#: template/pkgreq_results.php
-msgid "Comments"
-msgstr ""
-
-#: template/pkgreq_form.php
-#, php-format
-msgid "File Request: %s"
-msgstr ""
-
-#: template/pkgreq_form.php
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-#: template/pkgreq_form.php
-msgid "Request type"
-msgstr ""
-
-#: template/pkgreq_form.php
-msgid "Deletion"
-msgstr ""
-
-#: template/pkgreq_form.php
-msgid "Orphan"
-msgstr ""
-
-#: template/pkgreq_form.php template/pkg_search_results.php
-msgid "Merge into"
-msgstr ""
-
-#: template/pkgreq_results.php
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-
-#: template/pkgreq_results.php template/pkg_search_results.php
-#, php-format
-msgid "Page %d of %d."
-msgstr ""
-
-#: template/pkgreq_results.php
-msgid "Package"
+#: template/pkg_details.php template/pkg_search_form.php
+#: template/pkgbase_details.php
+msgid "Submitter"
msgstr ""
-#: template/pkgreq_results.php
-msgid "Filed by"
+#: template/pkg_details.php template/pkg_search_form.php
+#: template/pkg_search_results.php template/pkgbase_details.php
+msgid "Maintainer"
msgstr ""
-#: template/pkgreq_results.php
-msgid "Date"
+#: template/pkg_details.php template/pkgbase_details.php
+msgid "Last Packager"
msgstr ""
-#: template/pkgreq_results.php
-#, php-format
-msgid "~%d days left"
+#: template/pkg_details.php template/pkg_search_form.php
+#: template/pkg_search_results.php template/pkgbase_details.php
+msgid "Votes"
msgstr ""
-#: template/pkgreq_results.php
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
-
-#: template/pkgreq_results.php
-msgid "<1 hour left"
+#: template/pkg_details.php template/pkgbase_details.php
+msgid "First Submitted"
msgstr ""
-#: template/pkgreq_results.php
-msgid "Accept"
+#: template/pkg_details.php template/pkgbase_details.php
+msgid "Last Updated"
msgstr ""
-#: template/pkgreq_results.php
-msgid "Locked"
+#: template/pkg_details.php
+msgid "Dependencies"
msgstr ""
-#: template/pkgreq_results.php
-msgid "Close"
+#: template/pkg_details.php
+msgid "Required by"
msgstr ""
-#: template/pkgreq_results.php
-msgid "Closed"
+#: template/pkg_details.php
+msgid "Sources"
msgstr ""
#: template/pkg_search_form.php
@@ -1571,6 +1386,11 @@ msgid_plural "%d packages found."
msgstr[0] ""
msgstr[1] ""
+#: template/pkg_search_results.php template/pkgreq_results.php
+#, php-format
+msgid "Page %d of %d."
+msgstr ""
+
#: template/pkg_search_results.php
msgid "Version"
msgstr ""
@@ -1614,10 +1434,203 @@ msgstr ""
msgid "Delete Packages"
msgstr ""
+#: template/pkg_search_results.php template/pkgreq_form.php
+msgid "Merge into"
+msgstr ""
+
#: template/pkg_search_results.php
msgid "Confirm"
msgstr ""
+#: template/pkgbase_actions.php
+msgid "Package Actions"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "View PKGBUILD"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "View Changes"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Download snapshot"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Search wiki"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Flagged out-of-date"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Flag package out-of-date"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Unflag package"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Remove vote"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Vote for this package"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Disable notifications"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Notify of new comments"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#: template/pkgbase_actions.php
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+
+#: template/pkgbase_actions.php
+msgid "Delete Package"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Merge Package"
+msgstr ""
+
+#: template/pkgbase_actions.php
+msgid "Adopt Package"
+msgstr ""
+
+#: template/pkgbase_details.php
+msgid "Package Base Details"
+msgstr ""
+
+#: template/pkgreq_close_form.php
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#: template/pkgreq_close_form.php
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+#: template/pkgreq_close_form.php
+msgid "Note"
+msgstr ""
+
+#: template/pkgreq_close_form.php
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+#: template/pkgreq_close_form.php
+msgid "Reason"
+msgstr ""
+
+#: template/pkgreq_close_form.php template/pkgreq_results.php
+#: template/tu_details.php
+msgid "Accepted"
+msgstr ""
+
+#: template/pkgreq_close_form.php template/pkgreq_results.php
+#: template/tu_details.php
+msgid "Rejected"
+msgstr ""
+
+#: template/pkgreq_close_form.php template/pkgreq_form.php
+#: template/pkgreq_results.php
+msgid "Comments"
+msgstr ""
+
+#: template/pkgreq_form.php
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#: template/pkgreq_form.php
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+#: template/pkgreq_form.php
+msgid "Request type"
+msgstr ""
+
+#: template/pkgreq_form.php
+msgid "Deletion"
+msgstr ""
+
+#: template/pkgreq_form.php
+msgid "Orphan"
+msgstr ""
+
+#: template/pkgreq_results.php
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+
+#: template/pkgreq_results.php
+msgid "Package"
+msgstr ""
+
+#: template/pkgreq_results.php
+msgid "Filed by"
+msgstr ""
+
+#: template/pkgreq_results.php
+msgid "Date"
+msgstr ""
+
+#: template/pkgreq_results.php
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#: template/pkgreq_results.php
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+
+#: template/pkgreq_results.php
+msgid "<1 hour left"
+msgstr ""
+
+#: template/pkgreq_results.php
+msgid "Accept"
+msgstr ""
+
+#: template/pkgreq_results.php
+msgid "Locked"
+msgstr ""
+
+#: template/pkgreq_results.php
+msgid "Close"
+msgstr ""
+
+#: template/pkgreq_results.php
+msgid "Closed"
+msgstr ""
+
#: template/search_accounts_form.php
msgid "Any type"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index ed424f2..d575866 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/aur/language/"
@@ -55,9 +55,6 @@ msgstr "Utilitzeu aquest formulari per a cercar comptes existents."
msgid "You must log in to view user information."
msgstr "Heu d'identificar-vos per a veure la inforació de l'usuari."
-msgid "Use this form to create an account."
-msgstr "Utilitzeu aquest formulari per a crear un compte."
-
msgid "Add Proposal"
msgstr "Afegeix proposta"
@@ -116,9 +113,9 @@ msgstr ""
msgid "Home"
msgstr "Inici"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Benvingut a l'AUR! Si us plau, llegiu les %sdirectrius d'usuari d'AUR%s i "
@@ -148,6 +145,9 @@ msgstr ""
"Els paquets sense suport són creats per diferents usuaris. Qualsevol ús "
"d'aquests és sempre sota el seu propi risc."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -171,10 +171,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -191,14 +192,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Desapròpia els paquets"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discussió"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -206,10 +222,10 @@ msgstr "Comunicar errada"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -290,6 +306,10 @@ msgstr "La seva contrasenya ha de tenir almenys %s caràcters."
msgid "Invalid e-mail."
msgstr "Direcció de correu electrònic no vàlida."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Restablir contrasenya"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -355,7 +375,7 @@ msgstr "Esborrar Paquet: %s"
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -461,6 +481,12 @@ msgstr "Darrer"
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr "Registrar-se"
+
+msgid "Use this form to create an account."
+msgstr "Utilitzeu aquest formulari per a crear un compte."
+
msgid "Trusted User"
msgstr "Usuari de Confiança"
@@ -554,6 +580,10 @@ msgstr ""
"Feu clic a l'enllaç superior d'Inici de sessió per utilitzar el seu compte."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -609,6 +639,10 @@ msgstr ""
msgid "None"
msgstr "Res"
+#, php-format
+msgid "View account information for %s"
+msgstr "Veure l'informació del compte per %s"
+
msgid "Error retrieving package details."
msgstr "No s'han pogut obtenir els detalls del paquet."
@@ -698,17 +732,13 @@ msgstr "S'ha esborrat el comentari."
msgid "You are not allowed to delete this comment."
msgstr "No esteu autoritzat per esborrar aquest comentari."
-msgid "Missing category ID."
-msgstr "Manca la identificació de categoria."
-
-msgid "Invalid category ID."
-msgstr "L'identificador de la categoria no és vàlid."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "No esteu autoritzats a canviar la categoria del paquet."
-msgid "Package category changed."
-msgstr "Ha canviat la categoria del paquet."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Els paquets seleccionats s'han esborrat."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -747,9 +777,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Utilitzeu aquest formulari per a crear un compte."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -828,9 +858,10 @@ msgstr "Escriu altre cop la contrasenya"
msgid "Language"
msgstr "Idioma"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -887,100 +918,6 @@ msgstr "Els meus paquets"
msgid " My Account"
msgstr "El meu Compte"
-msgid "Register"
-msgstr "Registrar-se"
-
-msgid "unknown"
-msgstr "desconegut"
-
-msgid "Package Base Details"
-msgstr ""
-
-msgid "Package Actions"
-msgstr "Accions Paquet"
-
-msgid "View PKGBUILD"
-msgstr "Veure PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr ""
-
-msgid "Flagged out-of-date"
-msgstr "Marcat com a no-actualitzat"
-
-msgid "Flag package out-of-date"
-msgstr "Marcar el paquet com a no-actualitzat"
-
-msgid "Unflag package"
-msgstr "Desmarcar el paquet"
-
-msgid "Remove vote"
-msgstr "eliminar vot"
-
-msgid "Vote for this package"
-msgstr "Vota per aquest paquet"
-
-msgid "Disable notifications"
-msgstr "Deshabilitar notificacions"
-
-msgid "Notify of new comments"
-msgstr "Notificar comentaris nous"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
-msgstr "Esborrar el paquet"
-
-msgid "Merge Package"
-msgstr "Fusionar el paquet"
-
-msgid "Adopt Package"
-msgstr "Adoptar Paquet"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Categoria"
-
-msgid "Change category"
-msgstr "Canvi de categoria"
-
-msgid "Submitter"
-msgstr "Remitent"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Veure l'informació del compte per %s"
-
-msgid "Maintainer"
-msgstr "Mantenidor"
-
-msgid "Last Packager"
-msgstr ""
-
-msgid "Votes"
-msgstr "Vots"
-
-msgid "First Submitted"
-msgstr "Primer enviament"
-
-msgid "Last Updated"
-msgstr "Última actualització"
-
msgid "Add Comment"
msgstr "Afegir un comentari"
@@ -1009,9 +946,18 @@ msgstr ""
msgid "All comments"
msgstr "Tots el comentaris"
+msgid "unknown"
+msgstr "desconegut"
+
msgid "Package Details"
msgstr "Detalls del paquet"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr ""
@@ -1024,6 +970,9 @@ msgstr "Enllaç URL Upstream"
msgid "Visit the website for"
msgstr "Visiti la pàgina web per"
+msgid "Keywords"
+msgstr "Paraules Clau"
+
msgid "Licenses"
msgstr ""
@@ -1039,108 +988,32 @@ msgstr ""
msgid "Replaces"
msgstr ""
-msgid "Dependencies"
-msgstr "Dependències"
-
-msgid "Required by"
-msgstr "Requerit per"
-
-msgid "Sources"
-msgstr "Fonts"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr "Motiu"
-
-msgid "Accepted"
-msgstr "Acceptat"
-
-msgid "Rejected"
-msgstr "Rebutjat"
-
-msgid "Comments"
-msgstr "Comentaris"
-
-#, php-format
-msgid "File Request: %s"
-msgstr ""
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-msgid "Request type"
-msgstr ""
-
-msgid "Deletion"
-msgstr ""
-
-msgid "Orphan"
-msgstr ""
-
-msgid "Merge into"
-msgstr "Combinar amb"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Pàgina %d de %d."
-
-msgid "Package"
-msgstr "Paquet"
-
-msgid "Filed by"
-msgstr ""
+msgid "Submitter"
+msgstr "Remitent"
-msgid "Date"
-msgstr "Data"
+msgid "Maintainer"
+msgstr "Mantenidor"
-#, php-format
-msgid "~%d days left"
+msgid "Last Packager"
msgstr ""
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Votes"
+msgstr "Vots"
-msgid "<1 hour left"
-msgstr ""
+msgid "First Submitted"
+msgstr "Primer enviament"
-msgid "Accept"
-msgstr ""
+msgid "Last Updated"
+msgstr "Última actualització"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "Dependències"
-msgid "Close"
-msgstr ""
+msgid "Required by"
+msgstr "Requerit per"
-msgid "Closed"
-msgstr ""
+msgid "Sources"
+msgstr "Fonts"
msgid "Name, Description"
msgstr "Nom, Descripció"
@@ -1184,15 +1057,9 @@ msgstr "Descendent"
msgid "Enter search criteria"
msgstr "Introdueixi in criteri de cerca"
-msgid "Any"
-msgstr "Cap"
-
msgid "Search by"
msgstr "Cerca per"
-msgid "Keywords"
-msgstr "Paraules Clau"
-
msgid "Out of Date"
msgstr "No-Actualitzat"
@@ -1223,9 +1090,18 @@ msgid_plural "%d packages found."
msgstr[0] ""
msgstr[1] ""
+#, php-format
+msgid "Page %d of %d."
+msgstr "Pàgina %d de %d."
+
msgid "Version"
msgstr "Versió"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sí"
@@ -1250,9 +1126,156 @@ msgstr "Desapròpia els paquets"
msgid "Delete Packages"
msgstr "Esborra paquet"
+msgid "Merge into"
+msgstr "Combinar amb"
+
msgid "Confirm"
msgstr "Confirmar"
+msgid "Package Actions"
+msgstr "Accions Paquet"
+
+msgid "View PKGBUILD"
+msgstr "Veure PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr ""
+
+msgid "Flagged out-of-date"
+msgstr "Marcat com a no-actualitzat"
+
+msgid "Flag package out-of-date"
+msgstr "Marcar el paquet com a no-actualitzat"
+
+msgid "Unflag package"
+msgstr "Desmarcar el paquet"
+
+msgid "Remove vote"
+msgstr "eliminar vot"
+
+msgid "Vote for this package"
+msgstr "Vota per aquest paquet"
+
+msgid "Disable notifications"
+msgstr "Deshabilitar notificacions"
+
+msgid "Notify of new comments"
+msgstr "Notificar comentaris nous"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Delete Package"
+msgstr "Esborrar el paquet"
+
+msgid "Merge Package"
+msgstr "Fusionar el paquet"
+
+msgid "Adopt Package"
+msgstr "Adoptar Paquet"
+
+msgid "Package Base Details"
+msgstr ""
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr "Motiu"
+
+msgid "Accepted"
+msgstr "Acceptat"
+
+msgid "Rejected"
+msgstr "Rebutjat"
+
+msgid "Comments"
+msgstr "Comentaris"
+
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr ""
+
+msgid "Deletion"
+msgstr ""
+
+msgid "Orphan"
+msgstr ""
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Package"
+msgstr "Paquet"
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr ""
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Closed"
+msgstr ""
+
msgid "Any type"
msgstr "Qualsevol tipus"
@@ -1334,3 +1357,21 @@ msgstr "Inici"
msgid "Back"
msgstr "Enrere"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Manca la identificació de categoria."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "L'identificador de la categoria no és vàlid."
+
+#~ msgid "Package category changed."
+#~ msgstr "Ha canviat la categoria del paquet."
+
+#~ msgid "Category"
+#~ msgstr "Categoria"
+
+#~ msgid "Change category"
+#~ msgstr "Canvi de categoria"
+
+#~ msgid "Any"
+#~ msgstr "Cap"
diff --git a/po/cs.po b/po/cs.po
index 933bfb7..70a4b93 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/aur/language/cs/)\n"
@@ -55,9 +55,6 @@ msgstr "Pro vyhledání existujících účtů použíte tento formulář."
msgid "You must log in to view user information."
msgstr "Musíte se přihlásit, pro zobrazení informací o uživateli."
-msgid "Use this form to create an account."
-msgstr "Použíte tento formulář k založení účtu."
-
msgid "Add Proposal"
msgstr "Přidat návrh"
@@ -118,7 +115,7 @@ msgstr "Domů"
#, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
@@ -144,6 +141,9 @@ msgid ""
"files is at your own risk."
msgstr ""
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -167,10 +167,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -187,14 +188,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Odebrat vlastnictví"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Diskuze"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -202,10 +218,10 @@ msgstr "Hlášení chyb"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -284,6 +300,10 @@ msgstr "Heslo musí mít nejméně %s znaků."
msgid "Invalid e-mail."
msgstr "Neplatný e-mail."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Reset hesla"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -348,7 +368,7 @@ msgstr "Smazat balíček: %s"
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -451,6 +471,12 @@ msgstr "Poslední"
msgid "Requests"
msgstr "Požadavky"
+msgid "Register"
+msgstr "Registrovat"
+
+msgid "Use this form to create an account."
+msgstr "Použíte tento formulář k založení účtu."
+
msgid "Trusted User"
msgstr "Důvěryhodný uživatel"
@@ -541,6 +567,10 @@ msgid "Click on the Login link above to use your account."
msgstr ""
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -585,6 +615,10 @@ msgstr ""
msgid "None"
msgstr ""
+#, php-format
+msgid "View account information for %s"
+msgstr ""
+
msgid "Error retrieving package details."
msgstr "Došlo k chybě při získávání detailů o balíčku."
@@ -675,17 +709,13 @@ msgstr "Komentář byl smazán."
msgid "You are not allowed to delete this comment."
msgstr "Nemáte oprávnění pro smazání tohoto komentáře."
-msgid "Missing category ID."
-msgstr ""
-
-msgid "Invalid category ID."
-msgstr "Chybné ID kategorie."
-
-msgid "You are not allowed to change this package category."
-msgstr ""
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "Zde nemáte povolený přístup."
-msgid "Package category changed."
-msgstr ""
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Zvolené balíčky byly smazány."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -724,9 +754,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Použíte tento formulář k založení účtu."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -805,9 +835,10 @@ msgstr "Heslo znovu"
msgid "Language"
msgstr "Jazyk"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -864,101 +895,6 @@ msgstr "Moje balíčky"
msgid " My Account"
msgstr "Můj účet"
-msgid "Register"
-msgstr "Registrovat"
-
-msgid "unknown"
-msgstr "neznámý"
-
-msgid "Package Base Details"
-msgstr ""
-
-msgid "Package Actions"
-msgstr ""
-
-msgid "View PKGBUILD"
-msgstr "Zobrazit PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Prohledat wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Označeno jako zastaralé"
-
-msgid "Flag package out-of-date"
-msgstr "Označit balíček jako zastaralý"
-
-msgid "Unflag package"
-msgstr "Zrušit označení balíčku"
-
-msgid "Remove vote"
-msgstr "Vzít zpět hlas"
-
-msgid "Vote for this package"
-msgstr "Hlasovat pro tento balíček"
-
-msgid "Disable notifications"
-msgstr "Vypnout oznámení"
-
-msgid "Notify of new comments"
-msgstr "Oznamovat nové komentáře"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d čekající požadavek"
-msgstr[1] "%d čekající požadavky"
-msgstr[2] "%d čekajících požadavků"
-
-msgid "Delete Package"
-msgstr "Smazat balíček"
-
-msgid "Merge Package"
-msgstr ""
-
-msgid "Adopt Package"
-msgstr "Adoptovat balíček"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Kategorie"
-
-msgid "Change category"
-msgstr "Upravit kategorii"
-
-msgid "Submitter"
-msgstr ""
-
-#, php-format
-msgid "View account information for %s"
-msgstr ""
-
-msgid "Maintainer"
-msgstr "Správce"
-
-msgid "Last Packager"
-msgstr ""
-
-msgid "Votes"
-msgstr "Hlasy"
-
-msgid "First Submitted"
-msgstr ""
-
-msgid "Last Updated"
-msgstr "Naposledy aktualizováno"
-
msgid "Add Comment"
msgstr "Přidat komentář"
@@ -987,9 +923,18 @@ msgstr "smazáno"
msgid "All comments"
msgstr "Všechny komentáře"
+msgid "unknown"
+msgstr "neznámý"
+
msgid "Package Details"
msgstr "Detaily balíčku"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr ""
@@ -1002,6 +947,9 @@ msgstr ""
msgid "Visit the website for"
msgstr ""
+msgid "Keywords"
+msgstr "Klíčová slova"
+
msgid "Licenses"
msgstr "Licence"
@@ -1017,110 +965,32 @@ msgstr "Poskytuje"
msgid "Replaces"
msgstr "Nahrazuje"
-msgid "Dependencies"
-msgstr "Závislosti"
-
-msgid "Required by"
-msgstr "Vyžadováno"
-
-msgid "Sources"
-msgstr "Zdroje"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Zavřít požadavek: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr "Důvod"
-
-msgid "Accepted"
-msgstr "Přijato"
-
-msgid "Rejected"
-msgstr "Zamítnuto"
-
-msgid "Comments"
-msgstr "Komentáře"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Zadat požadavek: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-msgid "Request type"
-msgstr "Typ požadavku"
-
-msgid "Deletion"
-msgstr "Smazání"
-
-msgid "Orphan"
-msgstr ""
-
-msgid "Merge into"
-msgstr ""
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr ""
-
-msgid "Package"
-msgstr ""
-
-msgid "Filed by"
+msgid "Submitter"
msgstr ""
-msgid "Date"
-msgstr "Datum"
+msgid "Maintainer"
+msgstr "Správce"
-#, php-format
-msgid "~%d days left"
+msgid "Last Packager"
msgstr ""
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgid "Votes"
+msgstr "Hlasy"
-msgid "<1 hour left"
+msgid "First Submitted"
msgstr ""
-msgid "Accept"
-msgstr "Přijmout"
+msgid "Last Updated"
+msgstr "Naposledy aktualizováno"
-msgid "Locked"
-msgstr "Zamčeno"
+msgid "Dependencies"
+msgstr "Závislosti"
-msgid "Close"
-msgstr "Uzavřít"
+msgid "Required by"
+msgstr "Vyžadováno"
-msgid "Closed"
-msgstr "Uzavřeno"
+msgid "Sources"
+msgstr "Zdroje"
msgid "Name, Description"
msgstr "Jméno, popis"
@@ -1164,15 +1034,9 @@ msgstr "Sestupně"
msgid "Enter search criteria"
msgstr "Zadat kritéria vyhledávání"
-msgid "Any"
-msgstr "jakákoliv"
-
msgid "Search by"
msgstr "Vyhledat dle"
-msgid "Keywords"
-msgstr "Klíčová slova"
-
msgid "Out of Date"
msgstr "Zastaralé"
@@ -1204,9 +1068,18 @@ msgstr[0] "Nalezen %d balíček."
msgstr[1] "Nalezeny %d balíčky."
msgstr[2] "Nalezeno %d balíčků."
+#, php-format
+msgid "Page %d of %d."
+msgstr ""
+
msgid "Version"
msgstr "Verze"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Ano"
@@ -1231,9 +1104,159 @@ msgstr "Odebrat vlastnictví"
msgid "Delete Packages"
msgstr "Smazat balíčky"
+msgid "Merge into"
+msgstr ""
+
msgid "Confirm"
msgstr "Potvrdit"
+msgid "Package Actions"
+msgstr ""
+
+msgid "View PKGBUILD"
+msgstr "Zobrazit PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Prohledat wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Označeno jako zastaralé"
+
+msgid "Flag package out-of-date"
+msgstr "Označit balíček jako zastaralý"
+
+msgid "Unflag package"
+msgstr "Zrušit označení balíčku"
+
+msgid "Remove vote"
+msgstr "Vzít zpět hlas"
+
+msgid "Vote for this package"
+msgstr "Hlasovat pro tento balíček"
+
+msgid "Disable notifications"
+msgstr "Vypnout oznámení"
+
+msgid "Notify of new comments"
+msgstr "Oznamovat nové komentáře"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d čekající požadavek"
+msgstr[1] "%d čekající požadavky"
+msgstr[2] "%d čekajících požadavků"
+
+msgid "Delete Package"
+msgstr "Smazat balíček"
+
+msgid "Merge Package"
+msgstr ""
+
+msgid "Adopt Package"
+msgstr "Adoptovat balíček"
+
+msgid "Package Base Details"
+msgstr ""
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Zavřít požadavek: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr "Důvod"
+
+msgid "Accepted"
+msgstr "Přijato"
+
+msgid "Rejected"
+msgstr "Zamítnuto"
+
+msgid "Comments"
+msgstr "Komentáře"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Zadat požadavek: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr "Typ požadavku"
+
+msgid "Deletion"
+msgstr "Smazání"
+
+msgid "Orphan"
+msgstr ""
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+msgid "Package"
+msgstr ""
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr "Datum"
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr "Přijmout"
+
+msgid "Locked"
+msgstr "Zamčeno"
+
+msgid "Close"
+msgstr "Uzavřít"
+
+msgid "Closed"
+msgstr "Uzavřeno"
+
msgid "Any type"
msgstr "Jakýkoliv"
@@ -1315,3 +1338,15 @@ msgstr "Začátek"
msgid "Back"
msgstr "Zpět"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Chybné ID kategorie."
+
+#~ msgid "Category"
+#~ msgstr "Kategorie"
+
+#~ msgid "Change category"
+#~ msgstr "Upravit kategorii"
+
+#~ msgid "Any"
+#~ msgstr "jakákoliv"
diff --git a/po/da.po b/po/da.po
index b43917c..b65195a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/aur/language/"
@@ -53,9 +53,6 @@ msgstr "Brug denne formular til at søge i eksisterende konti."
msgid "You must log in to view user information."
msgstr "Du skal være logget ind for at se brugerinformation."
-msgid "Use this form to create an account."
-msgstr "Brug denne formular til at oprette en konto."
-
msgid "Add Proposal"
msgstr ""
@@ -116,7 +113,7 @@ msgstr "Hjem"
#, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
@@ -140,6 +137,9 @@ msgid ""
"files is at your own risk."
msgstr ""
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -163,10 +163,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -183,14 +184,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Fjern ejerskab for pakker"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Diskussion"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -198,10 +214,10 @@ msgstr ""
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -280,6 +296,10 @@ msgstr "Din adgangskode skal være mindst %s tegn."
msgid "Invalid e-mail."
msgstr ""
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Adgangskode"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -342,7 +362,7 @@ msgstr ""
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -445,6 +465,12 @@ msgstr ""
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr ""
+
+msgid "Use this form to create an account."
+msgstr "Brug denne formular til at oprette en konto."
+
msgid "Trusted User"
msgstr "Betroet bruger (TU)"
@@ -535,6 +561,10 @@ msgid "Click on the Login link above to use your account."
msgstr ""
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -579,6 +609,10 @@ msgstr ""
msgid "None"
msgstr ""
+#, php-format
+msgid "View account information for %s"
+msgstr ""
+
msgid "Error retrieving package details."
msgstr "Fejl ved modtagelse af pakkedetaljer."
@@ -668,17 +702,13 @@ msgstr "Kommentaren er slettet."
msgid "You are not allowed to delete this comment."
msgstr "Du har ikke rettigheder til at slette denne kommentar."
-msgid "Missing category ID."
-msgstr ""
-
-msgid "Invalid category ID."
-msgstr "Ugyldigt kategori ID."
-
-msgid "You are not allowed to change this package category."
-msgstr ""
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "Du har ikke tilladelse til dette område."
-msgid "Package category changed."
-msgstr ""
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "De valgte pakker er blevet slettet."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -717,9 +747,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Brug denne formular til at oprette en konto."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -798,9 +828,10 @@ msgstr "Bekræft adgangskode"
msgid "Language"
msgstr "Sprog"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -857,83 +888,77 @@ msgstr "Mine pakker"
msgid " My Account"
msgstr ""
-msgid "Register"
+msgid "Add Comment"
msgstr ""
-msgid "unknown"
+msgid "Comment has been added."
msgstr ""
-msgid "Package Base Details"
+msgid "View all comments"
msgstr ""
-msgid "Package Actions"
+msgid "Latest Comments"
msgstr ""
-msgid "View PKGBUILD"
-msgstr ""
+msgid "Delete comment"
+msgstr "Slet kommentar"
-msgid "View Changes"
+#, php-format
+msgid "Comment by %s"
msgstr ""
-msgid "Download snapshot"
+msgid "Anonymous comment"
msgstr ""
-msgid "Search wiki"
+msgid "deleted"
msgstr ""
-msgid "Flagged out-of-date"
+msgid "All comments"
msgstr ""
-msgid "Flag package out-of-date"
+msgid "unknown"
msgstr ""
-msgid "Unflag package"
-msgstr ""
+msgid "Package Details"
+msgstr "Detaljer om pakken"
-msgid "Remove vote"
+msgid "Git Clone URL"
msgstr ""
-msgid "Vote for this package"
+msgid "read-only"
msgstr ""
-msgid "Disable notifications"
+msgid "Package Base"
msgstr ""
-msgid "Notify of new comments"
-msgstr ""
+msgid "Description"
+msgstr "Beskrivelse"
-msgid "Manage Co-Maintainers"
+msgid "Upstream URL"
msgstr ""
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
+msgid "Visit the website for"
msgstr ""
-msgid "Merge Package"
+msgid "Keywords"
msgstr ""
-msgid "Adopt Package"
+msgid "Licenses"
msgstr ""
-msgid "Git Clone URL"
+msgid "Groups"
msgstr ""
-msgid "Category"
-msgstr "Kategori"
+msgid "Conflicts"
+msgstr ""
-msgid "Change category"
+msgid "Provides"
msgstr ""
-msgid "Submitter"
+msgid "Replaces"
msgstr ""
-#, php-format
-msgid "View account information for %s"
+msgid "Submitter"
msgstr ""
msgid "Maintainer"
@@ -951,276 +976,274 @@ msgstr ""
msgid "Last Updated"
msgstr ""
-msgid "Add Comment"
-msgstr ""
+msgid "Dependencies"
+msgstr "Afhængigheder"
-msgid "Comment has been added."
+msgid "Required by"
+msgstr "Påkrævet af"
+
+msgid "Sources"
msgstr ""
-msgid "View all comments"
+msgid "Name, Description"
msgstr ""
-msgid "Latest Comments"
+msgid "Name Only"
msgstr ""
-msgid "Delete comment"
-msgstr "Slet kommentar"
+msgid "Exact Name"
+msgstr ""
-#, php-format
-msgid "Comment by %s"
+msgid "Exact Package Base"
msgstr ""
-msgid "Anonymous comment"
+msgid "All"
msgstr ""
-msgid "deleted"
+msgid "Flagged"
msgstr ""
-msgid "All comments"
+msgid "Not Flagged"
msgstr ""
-msgid "Package Details"
-msgstr "Detaljer om pakken"
+msgid "Name"
+msgstr "Navn"
-msgid "Package Base"
+msgid "Popularity"
msgstr ""
-msgid "Description"
-msgstr "Beskrivelse"
+msgid "Voted"
+msgstr "Stemt"
-msgid "Upstream URL"
+msgid "Age"
msgstr ""
-msgid "Visit the website for"
+msgid "Ascending"
msgstr ""
-msgid "Licenses"
+msgid "Descending"
msgstr ""
-msgid "Groups"
+msgid "Enter search criteria"
msgstr ""
-msgid "Conflicts"
-msgstr ""
+msgid "Search by"
+msgstr "Søg efter"
-msgid "Provides"
+msgid "Out of Date"
msgstr ""
-msgid "Replaces"
-msgstr ""
+msgid "Sort by"
+msgstr "Sortér efter"
-msgid "Dependencies"
-msgstr "Afhængigheder"
+msgid "Sort order"
+msgstr "Sorter efter"
-msgid "Required by"
-msgstr "Påkrævet af"
+msgid "Per page"
+msgstr "Per side"
-msgid "Sources"
-msgstr ""
+msgid "Go"
+msgstr "Søg"
+
+msgid "Orphans"
+msgstr "Forladt"
+
+msgid "Error retrieving package list."
+msgstr "Fejl ved modtagelse af pakkeliste."
+
+msgid "No packages matched your search criteria."
+msgstr "Ingen pakker opfylder dine søgekriterier."
#, php-format
-msgid "Close Request: %s"
-msgstr ""
+msgid "%d package found."
+msgid_plural "%d packages found."
+msgstr[0] ""
+msgstr[1] ""
#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
+msgid "Page %d of %d."
msgstr ""
-msgid "Note"
+msgid "Version"
msgstr ""
msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
msgstr ""
-msgid "Reason"
-msgstr ""
+msgid "Yes"
+msgstr "Ja"
-msgid "Accepted"
+msgid "orphan"
+msgstr "forladt"
+
+msgid "Actions"
+msgstr "Handlinger"
+
+msgid "Flag Out-of-date"
+msgstr "Marker forældet"
+
+msgid "Unflag Out-of-date"
+msgstr "Afmarker forældet"
+
+msgid "Adopt Packages"
+msgstr "Adopter pakker"
+
+msgid "Disown Packages"
+msgstr "Fjern ejerskab for pakker"
+
+msgid "Delete Packages"
+msgstr "Slet pakker"
+
+msgid "Merge into"
msgstr ""
-msgid "Rejected"
+msgid "Confirm"
msgstr ""
-msgid "Comments"
+msgid "Package Actions"
msgstr ""
-#, php-format
-msgid "File Request: %s"
+msgid "View PKGBUILD"
msgstr ""
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
+msgid "View Changes"
msgstr ""
-msgid "Request type"
+msgid "Download snapshot"
msgstr ""
-msgid "Deletion"
+msgid "Search wiki"
msgstr ""
-msgid "Orphan"
+msgid "Flagged out-of-date"
msgstr ""
-msgid "Merge into"
+msgid "Flag package out-of-date"
msgstr ""
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
+msgid "Unflag package"
+msgstr ""
-#, php-format
-msgid "Page %d of %d."
+msgid "Remove vote"
msgstr ""
-msgid "Package"
+msgid "Vote for this package"
msgstr ""
-msgid "Filed by"
+msgid "Disable notifications"
msgstr ""
-msgid "Date"
+msgid "Notify of new comments"
msgstr ""
-#, php-format
-msgid "~%d days left"
+msgid "Manage Co-Maintainers"
msgstr ""
#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
+msgid "%d pending request"
+msgid_plural "%d pending requests"
msgstr[0] ""
msgstr[1] ""
-msgid "<1 hour left"
+msgid "Delete Package"
msgstr ""
-msgid "Accept"
+msgid "Merge Package"
msgstr ""
-msgid "Locked"
+msgid "Adopt Package"
msgstr ""
-msgid "Close"
+msgid "Package Base Details"
msgstr ""
-msgid "Closed"
+#, php-format
+msgid "Close Request: %s"
msgstr ""
-msgid "Name, Description"
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
msgstr ""
-msgid "Name Only"
+msgid "Note"
msgstr ""
-msgid "Exact Name"
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
msgstr ""
-msgid "Exact Package Base"
+msgid "Reason"
msgstr ""
-msgid "All"
+msgid "Accepted"
msgstr ""
-msgid "Flagged"
+msgid "Rejected"
msgstr ""
-msgid "Not Flagged"
+msgid "Comments"
msgstr ""
-msgid "Name"
-msgstr "Navn"
-
-msgid "Popularity"
+#, php-format
+msgid "File Request: %s"
msgstr ""
-msgid "Voted"
-msgstr "Stemt"
-
-msgid "Age"
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
msgstr ""
-msgid "Ascending"
+msgid "Request type"
msgstr ""
-msgid "Descending"
+msgid "Deletion"
msgstr ""
-msgid "Enter search criteria"
+msgid "Orphan"
msgstr ""
-msgid "Any"
-msgstr "Alle"
-
-msgid "Search by"
-msgstr "Søg efter"
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
-msgid "Keywords"
+msgid "Package"
msgstr ""
-msgid "Out of Date"
+msgid "Filed by"
msgstr ""
-msgid "Sort by"
-msgstr "Sortér efter"
-
-msgid "Sort order"
-msgstr "Sorter efter"
-
-msgid "Per page"
-msgstr "Per side"
-
-msgid "Go"
-msgstr "Søg"
-
-msgid "Orphans"
-msgstr "Forladt"
-
-msgid "Error retrieving package list."
-msgstr "Fejl ved modtagelse af pakkeliste."
+msgid "Date"
+msgstr ""
-msgid "No packages matched your search criteria."
-msgstr "Ingen pakker opfylder dine søgekriterier."
+#, php-format
+msgid "~%d days left"
+msgstr ""
#, php-format
-msgid "%d package found."
-msgid_plural "%d packages found."
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
msgstr[0] ""
msgstr[1] ""
-msgid "Version"
+msgid "<1 hour left"
msgstr ""
-msgid "Yes"
-msgstr "Ja"
-
-msgid "orphan"
-msgstr "forladt"
-
-msgid "Actions"
-msgstr "Handlinger"
-
-msgid "Flag Out-of-date"
-msgstr "Marker forældet"
-
-msgid "Unflag Out-of-date"
-msgstr "Afmarker forældet"
-
-msgid "Adopt Packages"
-msgstr "Adopter pakker"
+msgid "Accept"
+msgstr ""
-msgid "Disown Packages"
-msgstr "Fjern ejerskab for pakker"
+msgid "Locked"
+msgstr ""
-msgid "Delete Packages"
-msgstr "Slet pakker"
+msgid "Close"
+msgstr ""
-msgid "Confirm"
+msgid "Closed"
msgstr ""
msgid "Any type"
@@ -1304,3 +1327,12 @@ msgstr "Start"
msgid "Back"
msgstr "Tilbage"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Ugyldigt kategori ID."
+
+#~ msgid "Category"
+#~ msgstr "Kategori"
+
+#~ msgid "Any"
+#~ msgstr "Alle"
diff --git a/po/de.po b/po/de.po
index e7cb4c0..7dfc02c 100644
--- a/po/de.po
+++ b/po/de.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/aur/language/"
@@ -68,9 +68,6 @@ msgstr "Benutze dieses Formular, um vorhandene Konten zu suchen."
msgid "You must log in to view user information."
msgstr "Du musst Dich anmelden, um Benutzerinformationen anzusehen."
-msgid "Use this form to create an account."
-msgstr "Benutze dieses Formular, um ein Konto zu erstellen."
-
msgid "Add Proposal"
msgstr "Vorschlag hinzufügen"
@@ -129,9 +126,9 @@ msgstr "Verwalte Ko-Maintainer"
msgid "Home"
msgstr "Startseite"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Willkommen im AUR! Für weitere Informationen lies bitte die %sAUR User "
@@ -165,6 +162,9 @@ msgstr ""
"Nicht unterstützte Pakete sind von Benutzern erzeugte Inhalte. Jegliche "
"Nutzung der zur Verfügung gestellten Dateien erfolgt auf eigene Gefahr."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -188,10 +188,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -208,14 +209,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Betreuung der Pakete abgeben"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Diskussion"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -223,10 +239,10 @@ msgstr "Fehler melden"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -307,6 +323,10 @@ msgstr "Dein Passwort muss mindestens %s Zeichen lang sein."
msgid "Invalid e-mail."
msgstr "Ungültige E-Mail-Adresse."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Passwort zurücksetzen"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -379,10 +399,10 @@ msgstr "Pakete entfernen"
msgid "Delete Package: %s"
msgstr "Paket löschen: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Benutze dieses Formular um die Paketbasis %s%s%s und die folgenden Pakete "
"vom AUR zu löschen:"
@@ -496,6 +516,12 @@ msgstr "Letzte"
msgid "Requests"
msgstr "Anfragen"
+msgid "Register"
+msgstr "Registrieren"
+
+msgid "Use this form to create an account."
+msgstr "Benutze dieses Formular, um ein Konto zu erstellen."
+
msgid "Trusted User"
msgstr "Vertrauenswürdiger Benutzer (TU)"
@@ -590,6 +616,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Klicke zur Anmeldung bitte oben auf den Login-Link."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -644,6 +674,10 @@ msgstr "Ungültige Kombination aus E-Mail und Reset-Schlüssel."
msgid "None"
msgstr "Keine"
+#, php-format
+msgid "View account information for %s"
+msgstr "Konto-Informationen aufrufen für %s"
+
msgid "Error retrieving package details."
msgstr "Fehler beim Aufrufen der Paket-Details."
@@ -734,17 +768,13 @@ msgstr "Kommentar wurde gelöscht."
msgid "You are not allowed to delete this comment."
msgstr "Du darfst diesen Kommentar nicht löschen."
-msgid "Missing category ID."
-msgstr "Kategorie-ID fehlt."
-
-msgid "Invalid category ID."
-msgstr "Kategorie-ID ungültig."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Du darfst diese Paketkategorie nicht ändern."
-msgid "Package category changed."
-msgstr "Die Kategorie des Pakets wurde verändert."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Die gewählten Pakete wurden gelöscht."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -783,8 +813,8 @@ msgstr "Nur Entwicker und TUs können Anfragen schließen."
msgid "Request closed successfully."
msgstr "Anfrage erfolgreich geschlossen."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Du kannst dieses Formular verwenden, um den AUR Account unwiderruflich zu "
"entfernen %s."
@@ -867,9 +897,10 @@ msgstr "Bestätige das Passwort"
msgid "Language"
msgstr "Sprache"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"Die folgende Information wird nur benötigt, wenn du Pakete beim Arch User "
"Repository einreichen willst."
@@ -928,100 +959,6 @@ msgstr "Meine Pakete"
msgid " My Account"
msgstr "Mein Konto"
-msgid "Register"
-msgstr "Registrieren"
-
-msgid "unknown"
-msgstr "unbekannt"
-
-msgid "Package Base Details"
-msgstr "Paketbasis Details"
-
-msgid "Package Actions"
-msgstr "Paketaktionen"
-
-msgid "View PKGBUILD"
-msgstr "PKGBUILD ansehen"
-
-msgid "View Changes"
-msgstr "Änderungen betrachten"
-
-msgid "Download snapshot"
-msgstr "Schnappschuss herunterladen"
-
-msgid "Search wiki"
-msgstr "Durchsuche Wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Als \"veraltet\" markiert"
-
-msgid "Flag package out-of-date"
-msgstr "Paket als \"veraltet\" markieren"
-
-msgid "Unflag package"
-msgstr "Paketmarkierung entfernen"
-
-msgid "Remove vote"
-msgstr "Stimme entfernen"
-
-msgid "Vote for this package"
-msgstr "Für dieses Paket stimmen"
-
-msgid "Disable notifications"
-msgstr "Benachrichtigungen deaktivieren"
-
-msgid "Notify of new comments"
-msgstr "Über neue Kommentare benachrichtigen"
-
-msgid "Manage Co-Maintainers"
-msgstr "Verwalte Ko-Maintainer"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d ausstehende Anfrage"
-msgstr[1] "%d ausstehende Anfragen"
-
-msgid "Delete Package"
-msgstr "Paket löschen"
-
-msgid "Merge Package"
-msgstr "Paket verschmelzen"
-
-msgid "Adopt Package"
-msgstr "Paket übernehmen"
-
-msgid "Git Clone URL"
-msgstr "Git Clone URL"
-
-msgid "Category"
-msgstr "Kategorie"
-
-msgid "Change category"
-msgstr "Kategorie wechseln"
-
-msgid "Submitter"
-msgstr "Eingereicht von"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Konto-Informationen aufrufen für %s"
-
-msgid "Maintainer"
-msgstr "Betreuer"
-
-msgid "Last Packager"
-msgstr "Letzter Paketierer"
-
-msgid "Votes"
-msgstr "Stimmen"
-
-msgid "First Submitted"
-msgstr "Zuerst eingereicht am"
-
-msgid "Last Updated"
-msgstr "Letzte Aktualisierung"
-
msgid "Add Comment"
msgstr "Kommentar hinzufügen"
@@ -1050,9 +987,18 @@ msgstr "gelöscht"
msgid "All comments"
msgstr "Alle Kommentare"
+msgid "unknown"
+msgstr "unbekannt"
+
msgid "Package Details"
msgstr "Paket-Details"
+msgid "Git Clone URL"
+msgstr "Git Clone URL"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Paketbasis"
@@ -1065,6 +1011,9 @@ msgstr "Upstream URL"
msgid "Visit the website for"
msgstr "Besuche die Web-Seite für"
+msgid "Keywords"
+msgstr "Schlüsselwörter"
+
msgid "Licenses"
msgstr "Lizenzen"
@@ -1080,114 +1029,32 @@ msgstr "Liefert"
msgid "Replaces"
msgstr "Ersetzt"
-msgid "Dependencies"
-msgstr "Abhängigkeiten"
-
-msgid "Required by"
-msgstr "Benötigt von"
-
-msgid "Sources"
-msgstr "Quellen"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Anfrage schließen: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Benutze dieses Formular, um die Anfrage für die Paketbasis %s%s%s zu "
-"schließen."
-
-msgid "Note"
-msgstr "Anmerkung"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Das Kommentarfeld kann leer gelassen werden, es wird jedoch strengstens "
-"empfohlen, beim Ablehnen einer Anfrage einen Kommentar hinzuzufügen."
-
-msgid "Reason"
-msgstr "Grund"
-
-msgid "Accepted"
-msgstr "Akzeptiert"
-
-msgid "Rejected"
-msgstr "Zurückgewiesen"
-
-msgid "Comments"
-msgstr "Kommentare"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Dateianfrage: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Benutze dieses Formular um eine Anfrage für die Paketbasis %s%s%s "
-"einzureichen, welche die folgenden Pakete enthält:"
-
-msgid "Request type"
-msgstr "Anfragetyp"
-
-msgid "Deletion"
-msgstr "Löschung"
-
-msgid "Orphan"
-msgstr "Verwaist"
-
-msgid "Merge into"
-msgstr "Verschmelzen mit"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d Paket gefunden."
-msgstr[1] "%d Paketanfragen gefunden."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Seite %d von %d."
-
-msgid "Package"
-msgstr "Paket"
-
-msgid "Filed by"
+msgid "Submitter"
msgstr "Eingereicht von"
-msgid "Date"
-msgstr "Datum"
+msgid "Maintainer"
+msgstr "Betreuer"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d Tage verbleibend"
+msgid "Last Packager"
+msgstr "Letzter Paketierer"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d Stunde verbleibend"
-msgstr[1] "~%d Stunden verbleibend"
+msgid "Votes"
+msgstr "Stimmen"
-msgid "<1 hour left"
-msgstr "<1 Stunde verbleibend"
+msgid "First Submitted"
+msgstr "Zuerst eingereicht am"
-msgid "Accept"
-msgstr "Akzeptieren"
+msgid "Last Updated"
+msgstr "Letzte Aktualisierung"
-msgid "Locked"
-msgstr "Gesperrt"
+msgid "Dependencies"
+msgstr "Abhängigkeiten"
-msgid "Close"
-msgstr "Schließen"
+msgid "Required by"
+msgstr "Benötigt von"
-msgid "Closed"
-msgstr "Geschlossen"
+msgid "Sources"
+msgstr "Quellen"
msgid "Name, Description"
msgstr "Name, Beschreibung"
@@ -1231,15 +1098,9 @@ msgstr "Absteigend"
msgid "Enter search criteria"
msgstr "Suchkriterien eingeben"
-msgid "Any"
-msgstr "Alle"
-
msgid "Search by"
msgstr "Suche nach"
-msgid "Keywords"
-msgstr "Schlüsselwörter"
-
msgid "Out of Date"
msgstr "Veraltet"
@@ -1270,9 +1131,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d Paket gefunden."
msgstr[1] "%d Pakete gefunden."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Seite %d von %d."
+
msgid "Version"
msgstr "Version"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Ja"
@@ -1297,9 +1167,162 @@ msgstr "Betreuung der Pakete abgeben"
msgid "Delete Packages"
msgstr "Pakete löschen"
+msgid "Merge into"
+msgstr "Verschmelzen mit"
+
msgid "Confirm"
msgstr "Bestätige"
+msgid "Package Actions"
+msgstr "Paketaktionen"
+
+msgid "View PKGBUILD"
+msgstr "PKGBUILD ansehen"
+
+msgid "View Changes"
+msgstr "Änderungen betrachten"
+
+msgid "Download snapshot"
+msgstr "Schnappschuss herunterladen"
+
+msgid "Search wiki"
+msgstr "Durchsuche Wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Als \"veraltet\" markiert"
+
+msgid "Flag package out-of-date"
+msgstr "Paket als \"veraltet\" markieren"
+
+msgid "Unflag package"
+msgstr "Paketmarkierung entfernen"
+
+msgid "Remove vote"
+msgstr "Stimme entfernen"
+
+msgid "Vote for this package"
+msgstr "Für dieses Paket stimmen"
+
+msgid "Disable notifications"
+msgstr "Benachrichtigungen deaktivieren"
+
+msgid "Notify of new comments"
+msgstr "Über neue Kommentare benachrichtigen"
+
+msgid "Manage Co-Maintainers"
+msgstr "Verwalte Ko-Maintainer"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d ausstehende Anfrage"
+msgstr[1] "%d ausstehende Anfragen"
+
+msgid "Delete Package"
+msgstr "Paket löschen"
+
+msgid "Merge Package"
+msgstr "Paket verschmelzen"
+
+msgid "Adopt Package"
+msgstr "Paket übernehmen"
+
+msgid "Package Base Details"
+msgstr "Paketbasis Details"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Anfrage schließen: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Benutze dieses Formular, um die Anfrage für die Paketbasis %s%s%s zu "
+"schließen."
+
+msgid "Note"
+msgstr "Anmerkung"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Das Kommentarfeld kann leer gelassen werden, es wird jedoch strengstens "
+"empfohlen, beim Ablehnen einer Anfrage einen Kommentar hinzuzufügen."
+
+msgid "Reason"
+msgstr "Grund"
+
+msgid "Accepted"
+msgstr "Akzeptiert"
+
+msgid "Rejected"
+msgstr "Zurückgewiesen"
+
+msgid "Comments"
+msgstr "Kommentare"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Dateianfrage: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Benutze dieses Formular um eine Anfrage für die Paketbasis %s%s%s "
+"einzureichen, welche die folgenden Pakete enthält:"
+
+msgid "Request type"
+msgstr "Anfragetyp"
+
+msgid "Deletion"
+msgstr "Löschung"
+
+msgid "Orphan"
+msgstr "Verwaist"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d Paket gefunden."
+msgstr[1] "%d Paketanfragen gefunden."
+
+msgid "Package"
+msgstr "Paket"
+
+msgid "Filed by"
+msgstr "Eingereicht von"
+
+msgid "Date"
+msgstr "Datum"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d Tage verbleibend"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d Stunde verbleibend"
+msgstr[1] "~%d Stunden verbleibend"
+
+msgid "<1 hour left"
+msgstr "<1 Stunde verbleibend"
+
+msgid "Accept"
+msgstr "Akzeptieren"
+
+msgid "Locked"
+msgstr "Gesperrt"
+
+msgid "Close"
+msgstr "Schließen"
+
+msgid "Closed"
+msgstr "Geschlossen"
+
msgid "Any type"
msgstr "Beliebiger Typ"
@@ -1381,3 +1404,21 @@ msgstr "Beginn"
msgid "Back"
msgstr "Zurück"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Kategorie-ID fehlt."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Kategorie-ID ungültig."
+
+#~ msgid "Package category changed."
+#~ msgstr "Die Kategorie des Pakets wurde verändert."
+
+#~ msgid "Category"
+#~ msgstr "Kategorie"
+
+#~ msgid "Change category"
+#~ msgstr "Kategorie wechseln"
+
+#~ msgid "Any"
+#~ msgstr "Alle"
diff --git a/po/el.po b/po/el.po
index e1f8263..8828e56 100644
--- a/po/el.po
+++ b/po/el.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/aur/language/el/)\n"
@@ -59,9 +59,6 @@ msgstr ""
msgid "You must log in to view user information."
msgstr "Πρέπει να συνδεθείτε για να δείτε πληροφορίες χρήστη."
-msgid "Use this form to create an account."
-msgstr "Χρησιμοποιήστε αυτή τη φόρμα για να δημιουργήσετε λογαριασμό."
-
msgid "Add Proposal"
msgstr "Προσθέστε Πρόταση"
@@ -120,9 +117,9 @@ msgstr ""
msgid "Home"
msgstr "Αρχική"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Καλωσήρθατε στο AUR! Διαβάστε παρακαλώ τον %sOδηγό Χρηστών του AUR%s και τον "
@@ -152,6 +149,9 @@ msgstr ""
"Τα πακέτα στο \"Unsupported\" έχουν περιεχόμενο που παρέχεται απο τους "
"χρήστες. Χρησιμοποιήστε τα με δική σας ευθύνη."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -175,10 +175,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -195,14 +196,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Aποδεσμεύστε Πακέτα"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Συζήτηση"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -210,10 +226,10 @@ msgstr "Αναφορά Σφαλμάτων"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -296,6 +312,10 @@ msgstr "Ο κωδικός πρέπει να αποτελείται τουλάχ
msgid "Invalid e-mail."
msgstr "Μη έγκυρο e-mail."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Επαναφορά Κωδικού"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -363,7 +383,7 @@ msgstr "Διαγράψτε Πακέτο: %s"
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -469,6 +489,12 @@ msgstr "Τελευταίο"
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr "Εγγραφείτε"
+
+msgid "Use this form to create an account."
+msgstr "Χρησιμοποιήστε αυτή τη φόρμα για να δημιουργήσετε λογαριασμό."
+
msgid "Trusted User"
msgstr "Trusted User"
@@ -563,6 +589,10 @@ msgstr ""
"σας."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -617,6 +647,10 @@ msgstr "Μη έγκυρο e-mail και συνδυασμός κλειδιού ε
msgid "None"
msgstr "Κανένα"
+#, php-format
+msgid "View account information for %s"
+msgstr "Δείτε τις πληροφορίες λογαριασμού του %s"
+
msgid "Error retrieving package details."
msgstr "Σφάλμα κατά τη διάρκεια φόρτωσης των πληροφοριών του πακέτου."
@@ -710,17 +744,13 @@ msgstr "Το σχόλιο έχει διαγραφεί."
msgid "You are not allowed to delete this comment."
msgstr "Δεν σας επιτρέπεται να διαγράψετε αυτό το σχόλιο."
-msgid "Missing category ID."
-msgstr "Μη υπαρκτό ID κατηγορίας."
-
-msgid "Invalid category ID."
-msgstr "Μη έγκυρο ID κατηγορίας."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Δεν σας επιτρέπεται να αλλάξετε την κατηγορία αυτού του πακέτου."
-msgid "Package category changed."
-msgstr "Έγινε αλλαγή κατηγορίας πακέτου."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Tα επιλεγμένα πακέτα έχουν διαγραφεί."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -759,9 +789,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Χρησιμοποιήστε αυτή τη φόρμα για να δημιουργήσετε λογαριασμό."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -840,9 +870,10 @@ msgstr "Πληκτρολογήστε ξανά τον κωδικό σας."
msgid "Language"
msgstr "Γλώσσα"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -899,100 +930,6 @@ msgstr "Τα πακέτα μου"
msgid " My Account"
msgstr "Ο λογαριασμός μου"
-msgid "Register"
-msgstr "Εγγραφείτε"
-
-msgid "unknown"
-msgstr "άγνωστο"
-
-msgid "Package Base Details"
-msgstr ""
-
-msgid "Package Actions"
-msgstr "Ενέργειες Πακέτου"
-
-msgid "View PKGBUILD"
-msgstr "Δείτε το PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr ""
-
-msgid "Flagged out-of-date"
-msgstr "Επισημάνθηκε ως παρωχημένο"
-
-msgid "Flag package out-of-date"
-msgstr "Επισημάνετε ως παρωχημένο"
-
-msgid "Unflag package"
-msgstr "Αποχαρακτηρίστε ως παρωχημένο"
-
-msgid "Remove vote"
-msgstr "Αφαιρέστε ψήφο"
-
-msgid "Vote for this package"
-msgstr "Ψηφίστε για αυτό το πακέτο"
-
-msgid "Disable notifications"
-msgstr "Απενεργοποιήστε τις ειδοποιήσεις"
-
-msgid "Notify of new comments"
-msgstr "Ειδοποίησε για νέα σχόλια"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
-msgstr "Διαγράψτε πακέτο"
-
-msgid "Merge Package"
-msgstr "Συγχώνευση πακέτου"
-
-msgid "Adopt Package"
-msgstr "Υιοθετήστε το Πακέτο"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Κατηγορία"
-
-msgid "Change category"
-msgstr "Αλλαγή κατηγορίας"
-
-msgid "Submitter"
-msgstr "Υποβάλλων"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Δείτε τις πληροφορίες λογαριασμού του %s"
-
-msgid "Maintainer"
-msgstr "Συντηρητής"
-
-msgid "Last Packager"
-msgstr ""
-
-msgid "Votes"
-msgstr "Ψήφοι"
-
-msgid "First Submitted"
-msgstr "Πρώτη Υποβολή"
-
-msgid "Last Updated"
-msgstr "Τελευταία Ενημέρωση"
-
msgid "Add Comment"
msgstr "Προσθέστε σχόλιο"
@@ -1021,9 +958,18 @@ msgstr ""
msgid "All comments"
msgstr "Όλα τα σχόλια"
+msgid "unknown"
+msgstr "άγνωστο"
+
msgid "Package Details"
msgstr "Πληροφορίες Πακέτου"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr ""
@@ -1036,6 +982,9 @@ msgstr "Upstream URL"
msgid "Visit the website for"
msgstr "Επισκεφτείτε την ιστοσελίδα για "
+msgid "Keywords"
+msgstr "Λέξεις κλειδιά"
+
msgid "Licenses"
msgstr ""
@@ -1051,108 +1000,32 @@ msgstr ""
msgid "Replaces"
msgstr ""
-msgid "Dependencies"
-msgstr "Εξαρτήσεις"
-
-msgid "Required by"
-msgstr "Απαιτείται από"
-
-msgid "Sources"
-msgstr "Πηγές"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr ""
-
-msgid "Accepted"
-msgstr "Δεκτός"
-
-msgid "Rejected"
-msgstr "Απορριπτέος"
-
-msgid "Comments"
-msgstr ""
-
-#, php-format
-msgid "File Request: %s"
-msgstr ""
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-msgid "Request type"
-msgstr ""
-
-msgid "Deletion"
-msgstr ""
-
-msgid "Orphan"
-msgstr ""
-
-msgid "Merge into"
-msgstr "Συγχώνευση σε"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr ""
-
-msgid "Package"
-msgstr ""
-
-msgid "Filed by"
-msgstr ""
+msgid "Submitter"
+msgstr "Υποβάλλων"
-msgid "Date"
-msgstr ""
+msgid "Maintainer"
+msgstr "Συντηρητής"
-#, php-format
-msgid "~%d days left"
+msgid "Last Packager"
msgstr ""
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Votes"
+msgstr "Ψήφοι"
-msgid "<1 hour left"
-msgstr ""
+msgid "First Submitted"
+msgstr "Πρώτη Υποβολή"
-msgid "Accept"
-msgstr ""
+msgid "Last Updated"
+msgstr "Τελευταία Ενημέρωση"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "Εξαρτήσεις"
-msgid "Close"
-msgstr ""
+msgid "Required by"
+msgstr "Απαιτείται από"
-msgid "Closed"
-msgstr ""
+msgid "Sources"
+msgstr "Πηγές"
msgid "Name, Description"
msgstr "Όνομα, Περιγραφή"
@@ -1196,15 +1069,9 @@ msgstr "Φθίνουσα"
msgid "Enter search criteria"
msgstr "Εισάγετε κριτήρια αναζήτησης"
-msgid "Any"
-msgstr "Οποιαδήποτε"
-
msgid "Search by"
msgstr "Αναζήτηση κατά"
-msgid "Keywords"
-msgstr "Λέξεις κλειδιά"
-
msgid "Out of Date"
msgstr "Παρωχημένα"
@@ -1235,9 +1102,18 @@ msgid_plural "%d packages found."
msgstr[0] ""
msgstr[1] ""
+#, php-format
+msgid "Page %d of %d."
+msgstr ""
+
msgid "Version"
msgstr "Έκδοση"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Ναι"
@@ -1262,9 +1138,156 @@ msgstr "Aποδεσμεύστε Πακέτα"
msgid "Delete Packages"
msgstr "Διαγράψτε Πακέτα"
+msgid "Merge into"
+msgstr "Συγχώνευση σε"
+
msgid "Confirm"
msgstr "Επιβεβαιώστε"
+msgid "Package Actions"
+msgstr "Ενέργειες Πακέτου"
+
+msgid "View PKGBUILD"
+msgstr "Δείτε το PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr ""
+
+msgid "Flagged out-of-date"
+msgstr "Επισημάνθηκε ως παρωχημένο"
+
+msgid "Flag package out-of-date"
+msgstr "Επισημάνετε ως παρωχημένο"
+
+msgid "Unflag package"
+msgstr "Αποχαρακτηρίστε ως παρωχημένο"
+
+msgid "Remove vote"
+msgstr "Αφαιρέστε ψήφο"
+
+msgid "Vote for this package"
+msgstr "Ψηφίστε για αυτό το πακέτο"
+
+msgid "Disable notifications"
+msgstr "Απενεργοποιήστε τις ειδοποιήσεις"
+
+msgid "Notify of new comments"
+msgstr "Ειδοποίησε για νέα σχόλια"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Delete Package"
+msgstr "Διαγράψτε πακέτο"
+
+msgid "Merge Package"
+msgstr "Συγχώνευση πακέτου"
+
+msgid "Adopt Package"
+msgstr "Υιοθετήστε το Πακέτο"
+
+msgid "Package Base Details"
+msgstr ""
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr ""
+
+msgid "Accepted"
+msgstr "Δεκτός"
+
+msgid "Rejected"
+msgstr "Απορριπτέος"
+
+msgid "Comments"
+msgstr ""
+
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr ""
+
+msgid "Deletion"
+msgstr ""
+
+msgid "Orphan"
+msgstr ""
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Package"
+msgstr ""
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr ""
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr ""
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Closed"
+msgstr ""
+
msgid "Any type"
msgstr "Κάθε είδος"
@@ -1346,3 +1369,21 @@ msgstr "Ξεκινήστε"
msgid "Back"
msgstr "Πίσω"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Μη υπαρκτό ID κατηγορίας."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Μη έγκυρο ID κατηγορίας."
+
+#~ msgid "Package category changed."
+#~ msgstr "Έγινε αλλαγή κατηγορίας πακέτου."
+
+#~ msgid "Category"
+#~ msgstr "Κατηγορία"
+
+#~ msgid "Change category"
+#~ msgstr "Αλλαγή κατηγορίας"
+
+#~ msgid "Any"
+#~ msgstr "Οποιαδήποτε"
diff --git a/po/es.po b/po/es.po
index fe940e0..ed4c77d 100644
--- a/po/es.po
+++ b/po/es.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/aur/language/"
@@ -59,9 +59,6 @@ msgstr "Use este formulario para buscar cuentas existentes."
msgid "You must log in to view user information."
msgstr "Debe autentificarse para ver la información del usuario."
-msgid "Use this form to create an account."
-msgstr "Use este formulario para crear una cuenta."
-
msgid "Add Proposal"
msgstr "Añadir propuesta"
@@ -120,9 +117,9 @@ msgstr "Administrar coencargados"
msgid "Home"
msgstr "Inicio"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"¡Bienvenido al repositorio de usuarios de Arch! Lea las %sDirectrices del "
@@ -154,6 +151,9 @@ msgstr ""
"Los paquetes no soportados son producidos por los usuarios. Cualquier uso de "
"los archivos de estos es a su propio riesgo."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -177,10 +177,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -197,14 +198,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Abandonar paquetes"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Debate"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -212,10 +228,10 @@ msgstr "Informe de errores"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -296,6 +312,10 @@ msgstr "Su contraseña debe tener como mínimo %s letras."
msgid "Invalid e-mail."
msgstr "Dirección de correo no válida."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Reiniciar la contraseña"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -366,10 +386,10 @@ msgstr "Eliminación de paquetes"
msgid "Delete Package: %s"
msgstr "Eliminar paquete: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Use este formulario para eliminar el paquete base %s%s%s y los siguientes "
"paquetes en el AUR:"
@@ -484,6 +504,12 @@ msgstr "Último"
msgid "Requests"
msgstr "Solicitud"
+msgid "Register"
+msgstr "Registro"
+
+msgid "Use this form to create an account."
+msgstr "Use este formulario para crear una cuenta."
+
msgid "Trusted User"
msgstr "Usuario de confianza"
@@ -577,6 +603,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Haz clic en el enlace de autentificación para usar su cuenta."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -631,6 +661,10 @@ msgstr "Combinación de dirección de correo y clave no válida."
msgid "None"
msgstr "Nada"
+#, php-format
+msgid "View account information for %s"
+msgstr "Ver información de la cuenta para %s"
+
msgid "Error retrieving package details."
msgstr "Error al recuperar los detalles del paquete."
@@ -720,17 +754,13 @@ msgstr "Comentario eliminado."
msgid "You are not allowed to delete this comment."
msgstr "No está autorizado a eliminar este comentario."
-msgid "Missing category ID."
-msgstr "Falta el Identificador de categoría."
-
-msgid "Invalid category ID."
-msgstr "El identificador de categoría no es válido."
-
-msgid "You are not allowed to change this package category."
-msgstr "No puede cambiar la categoría de este paquete."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "No se le permite administrar los coencargados de este paquete base."
-msgid "Package category changed."
-msgstr "Categoría del paquete cambiada."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Los coencargados del paquete base han sido actualizados."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr "No se le permite administrar los coencargados de este paquete base."
@@ -771,8 +801,8 @@ msgstr ""
msgid "Request closed successfully."
msgstr "Solicitud cerrada exitosamente"
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Puede usar este formulario para eliminar la cuenta de %s en AUR "
"permanentemente."
@@ -854,9 +884,10 @@ msgstr "Reescriba la contraseña"
msgid "Language"
msgstr "Idioma"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"La siguiente información solamente es necesaria si desea subir paquetes al "
"Repositorio de Usuarios de Arch."
@@ -918,100 +949,6 @@ msgstr "Mis paquetes"
msgid " My Account"
msgstr "Mi cuenta"
-msgid "Register"
-msgstr "Registro"
-
-msgid "unknown"
-msgstr "desconocido"
-
-msgid "Package Base Details"
-msgstr "Detalles del paquete base"
-
-msgid "Package Actions"
-msgstr "Acciones del paquete"
-
-msgid "View PKGBUILD"
-msgstr "Ver PKGBUILD"
-
-msgid "View Changes"
-msgstr "Ver cambios"
-
-msgid "Download snapshot"
-msgstr "Descargar instantánea"
-
-msgid "Search wiki"
-msgstr "Buscar en la wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marcado como desactualizado"
-
-msgid "Flag package out-of-date"
-msgstr "Marcar paquete como desactualizado"
-
-msgid "Unflag package"
-msgstr "Desmarcar paquete"
-
-msgid "Remove vote"
-msgstr "Eliminar voto"
-
-msgid "Vote for this package"
-msgstr "Votar por este paquete"
-
-msgid "Disable notifications"
-msgstr "Deshabilitar notificaciones"
-
-msgid "Notify of new comments"
-msgstr "Notificación de nuevos comentarios"
-
-msgid "Manage Co-Maintainers"
-msgstr "Administrar coencargados"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "Hay %d solicitud pendiente"
-msgstr[1] "Hay %d solicitudes pendientes"
-
-msgid "Delete Package"
-msgstr "Eliminar paquete"
-
-msgid "Merge Package"
-msgstr "Unir paquete"
-
-msgid "Adopt Package"
-msgstr "Adoptar paquete"
-
-msgid "Git Clone URL"
-msgstr "Dirección URL de clonado con Git"
-
-msgid "Category"
-msgstr "Categoría"
-
-msgid "Change category"
-msgstr "Cambiar categoría"
-
-msgid "Submitter"
-msgstr "Primer encargado"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Ver información de la cuenta para %s"
-
-msgid "Maintainer"
-msgstr "Encargado"
-
-msgid "Last Packager"
-msgstr "Último encargado"
-
-msgid "Votes"
-msgstr "Votos"
-
-msgid "First Submitted"
-msgstr "Fecha de creación"
-
-msgid "Last Updated"
-msgstr "Última actualización"
-
msgid "Add Comment"
msgstr "Agregar comentario"
@@ -1040,9 +977,18 @@ msgstr "eliminado"
msgid "All comments"
msgstr "Todos los comentarios"
+msgid "unknown"
+msgstr "desconocido"
+
msgid "Package Details"
msgstr "Detalles del paquete"
+msgid "Git Clone URL"
+msgstr "Dirección URL de clonado con Git"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Paquete base"
@@ -1055,6 +1001,9 @@ msgstr "Desarrollador principal"
msgid "Visit the website for"
msgstr "Visita el sitio web de"
+msgid "Keywords"
+msgstr "Palabras claves"
+
msgid "Licenses"
msgstr "Licencias"
@@ -1070,113 +1019,32 @@ msgstr "Proveen"
msgid "Replaces"
msgstr "Remplazan"
-msgid "Dependencies"
-msgstr "Dependencias"
-
-msgid "Required by"
-msgstr "Requerido por"
-
-msgid "Sources"
-msgstr "Fuentes"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Cerrar solicitud: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Use este formulario para cerrar la solicitud para el paquete base %s%s%s."
-
-msgid "Note"
-msgstr "Nota"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"El campo de comentarios se puede dejar vacío. Sin embargo, se recomienda "
-"encarecidamente añadir un comentario al rechazar una solicitud."
-
-msgid "Reason"
-msgstr "Razón"
-
-msgid "Accepted"
-msgstr "Aceptado"
-
-msgid "Rejected"
-msgstr "Rechazado"
-
-msgid "Comments"
-msgstr "Comentario"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Solicitud para el paquete: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Use este formulario para presentar una solicitud para el paquete base %s%s%s "
-"el cual incluye los siguientes paquetes:"
-
-msgid "Request type"
-msgstr "Tipo de solicitud"
-
-msgid "Deletion"
-msgstr "Borrado"
-
-msgid "Orphan"
-msgstr "Orfandad"
-
-msgid "Merge into"
-msgstr "Unir en"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "Se encontró %d solicitud para el paquete."
-msgstr[1] "Se encontraron %d solicitudes para el paquete."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Página %d de %d."
-
-msgid "Package"
-msgstr "Paquete"
-
-msgid "Filed by"
-msgstr "Solicitado por"
+msgid "Submitter"
+msgstr "Primer encargado"
-msgid "Date"
-msgstr "Fecha"
+msgid "Maintainer"
+msgstr "Encargado"
-#, php-format
-msgid "~%d days left"
-msgstr "Aprox. %d días restantes"
+msgid "Last Packager"
+msgstr "Último encargado"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "Aprox. %d hora restante"
-msgstr[1] "Aprox. %d horas restantes"
+msgid "Votes"
+msgstr "Votos"
-msgid "<1 hour left"
-msgstr "< 1 hora restante"
+msgid "First Submitted"
+msgstr "Fecha de creación"
-msgid "Accept"
-msgstr "Aceptar"
+msgid "Last Updated"
+msgstr "Última actualización"
-msgid "Locked"
-msgstr "Bloqueada"
+msgid "Dependencies"
+msgstr "Dependencias"
-msgid "Close"
-msgstr "Cerrar"
+msgid "Required by"
+msgstr "Requerido por"
-msgid "Closed"
-msgstr "Cerrada"
+msgid "Sources"
+msgstr "Fuentes"
msgid "Name, Description"
msgstr "Nombre, descripción"
@@ -1220,15 +1088,9 @@ msgstr "Descendente"
msgid "Enter search criteria"
msgstr "Introduzca el criterio de búsqueda"
-msgid "Any"
-msgstr "Cualquiera"
-
msgid "Search by"
msgstr "Buscar por"
-msgid "Keywords"
-msgstr "Palabras claves"
-
msgid "Out of Date"
msgstr "Desactualizado"
@@ -1259,9 +1121,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d paquete fue encontrado."
msgstr[1] "%d paquetes fueron encontrados."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Página %d de %d."
+
msgid "Version"
msgstr "Versión"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sí"
@@ -1286,9 +1157,161 @@ msgstr "Abandonar paquetes"
msgid "Delete Packages"
msgstr "Eliminar paquetes"
+msgid "Merge into"
+msgstr "Unir en"
+
msgid "Confirm"
msgstr "Confirmar"
+msgid "Package Actions"
+msgstr "Acciones del paquete"
+
+msgid "View PKGBUILD"
+msgstr "Ver PKGBUILD"
+
+msgid "View Changes"
+msgstr "Ver cambios"
+
+msgid "Download snapshot"
+msgstr "Descargar instantánea"
+
+msgid "Search wiki"
+msgstr "Buscar en la wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marcado como desactualizado"
+
+msgid "Flag package out-of-date"
+msgstr "Marcar paquete como desactualizado"
+
+msgid "Unflag package"
+msgstr "Desmarcar paquete"
+
+msgid "Remove vote"
+msgstr "Eliminar voto"
+
+msgid "Vote for this package"
+msgstr "Votar por este paquete"
+
+msgid "Disable notifications"
+msgstr "Deshabilitar notificaciones"
+
+msgid "Notify of new comments"
+msgstr "Notificación de nuevos comentarios"
+
+msgid "Manage Co-Maintainers"
+msgstr "Administrar coencargados"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "Hay %d solicitud pendiente"
+msgstr[1] "Hay %d solicitudes pendientes"
+
+msgid "Delete Package"
+msgstr "Eliminar paquete"
+
+msgid "Merge Package"
+msgstr "Unir paquete"
+
+msgid "Adopt Package"
+msgstr "Adoptar paquete"
+
+msgid "Package Base Details"
+msgstr "Detalles del paquete base"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Cerrar solicitud: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Use este formulario para cerrar la solicitud para el paquete base %s%s%s."
+
+msgid "Note"
+msgstr "Nota"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"El campo de comentarios se puede dejar vacío. Sin embargo, se recomienda "
+"encarecidamente añadir un comentario al rechazar una solicitud."
+
+msgid "Reason"
+msgstr "Razón"
+
+msgid "Accepted"
+msgstr "Aceptado"
+
+msgid "Rejected"
+msgstr "Rechazado"
+
+msgid "Comments"
+msgstr "Comentario"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Solicitud para el paquete: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Use este formulario para presentar una solicitud para el paquete base %s%s%s "
+"el cual incluye los siguientes paquetes:"
+
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+msgid "Deletion"
+msgstr "Borrado"
+
+msgid "Orphan"
+msgstr "Orfandad"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "Se encontró %d solicitud para el paquete."
+msgstr[1] "Se encontraron %d solicitudes para el paquete."
+
+msgid "Package"
+msgstr "Paquete"
+
+msgid "Filed by"
+msgstr "Solicitado por"
+
+msgid "Date"
+msgstr "Fecha"
+
+#, php-format
+msgid "~%d days left"
+msgstr "Aprox. %d días restantes"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "Aprox. %d hora restante"
+msgstr[1] "Aprox. %d horas restantes"
+
+msgid "<1 hour left"
+msgstr "< 1 hora restante"
+
+msgid "Accept"
+msgstr "Aceptar"
+
+msgid "Locked"
+msgstr "Bloqueada"
+
+msgid "Close"
+msgstr "Cerrar"
+
+msgid "Closed"
+msgstr "Cerrada"
+
msgid "Any type"
msgstr "Cualquier tipo"
@@ -1370,3 +1393,24 @@ msgstr "Inicio"
msgid "Back"
msgstr "Atrás"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Falta el Identificador de categoría."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "El identificador de categoría no es válido."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "No puede cambiar la categoría de este paquete."
+
+#~ msgid "Package category changed."
+#~ msgstr "Categoría del paquete cambiada."
+
+#~ msgid "Category"
+#~ msgstr "Categoría"
+
+#~ msgid "Change category"
+#~ msgstr "Cambiar categoría"
+
+#~ msgid "Any"
+#~ msgstr "Cualquiera"
diff --git a/po/es_419.po b/po/es_419.po
index 555cd48..3edeaaf 100644
--- a/po/es_419.po
+++ b/po/es_419.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/"
@@ -58,9 +58,6 @@ msgstr "Use este formulario para buscar cuentas existentes."
msgid "You must log in to view user information."
msgstr "Debe autentificarse para ver la información del usuario."
-msgid "Use this form to create an account."
-msgstr "Use este formulario para crear una cuenta."
-
msgid "Add Proposal"
msgstr "Añadir propuesta"
@@ -119,9 +116,9 @@ msgstr "Administrar coencargados"
msgid "Home"
msgstr "Inicio"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"¡Bienvenido al repositorio de usuarios de Arch! Lea la %sGuía del usuario "
@@ -153,6 +150,9 @@ msgstr ""
"Los paquetes no soportados son producidos por los usuarios. Cualquier uso de "
"ellos o sus archivos es a su propio riesgo."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -176,10 +176,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -196,14 +197,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Abandonar paquetes"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Debate"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -211,10 +227,10 @@ msgstr "Informe de errores"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -295,6 +311,10 @@ msgstr "Su contraseña debe tener como mínimo %s letras."
msgid "Invalid e-mail."
msgstr "Dirección de correo no válida."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Reiniciar la contraseña"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -364,10 +384,10 @@ msgstr "Eliminación de paquetes"
msgid "Delete Package: %s"
msgstr "Borrar paquete: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Use este formulario para borrar el paquete base %s%s%s y los siguientes "
"paquetes en el AUR:"
@@ -483,6 +503,12 @@ msgstr "Último"
msgid "Requests"
msgstr "Solicitud"
+msgid "Register"
+msgstr "Registro"
+
+msgid "Use this form to create an account."
+msgstr "Use este formulario para crear una cuenta."
+
msgid "Trusted User"
msgstr "Usuario de Confianza"
@@ -576,6 +602,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Haz clic en el enlace de autentificación para usar su cuenta."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -630,6 +660,10 @@ msgstr "Combinación de dirección de correo y clave no válida."
msgid "None"
msgstr "Nada"
+#, php-format
+msgid "View account information for %s"
+msgstr "Ver información de la cuenta para %s"
+
msgid "Error retrieving package details."
msgstr "Error al recuperar los detalles del paquete."
@@ -719,17 +753,13 @@ msgstr "Comentario borrado."
msgid "You are not allowed to delete this comment."
msgstr "No está autorizado a borrar este comentario."
-msgid "Missing category ID."
-msgstr "Falta el Identificador de categoría."
-
-msgid "Invalid category ID."
-msgstr "El identificador de categoría no es válido."
-
-msgid "You are not allowed to change this package category."
-msgstr "No puede cambiar la categoría de este paquete."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "No tiene permitido administrar los coencargados de este paquete base."
-msgid "Package category changed."
-msgstr "Categoría del paquete cambiada."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Los coencargados del paquete base fueron actualizados."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr "No tiene permitido administrar los coencargados de este paquete base."
@@ -770,8 +800,8 @@ msgstr ""
msgid "Request closed successfully."
msgstr "Solicitud cerrada exitosamente"
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Puede usar este formulario para borrar la cuenta de %s en AUR "
"permanentemente."
@@ -853,9 +883,10 @@ msgstr "Reescriba la contraseña"
msgid "Language"
msgstr "Idioma"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"La siguiente información es necesaria solamente si quiere subir paquetes al "
"Repositorio de Usuarios de Arch."
@@ -917,100 +948,6 @@ msgstr "Mis paquetes"
msgid " My Account"
msgstr "Mi cuenta"
-msgid "Register"
-msgstr "Registro"
-
-msgid "unknown"
-msgstr "desconocido"
-
-msgid "Package Base Details"
-msgstr "Detalles del paquete base"
-
-msgid "Package Actions"
-msgstr "Acciones del paquete"
-
-msgid "View PKGBUILD"
-msgstr "Ver PKGBUILD"
-
-msgid "View Changes"
-msgstr "Ver cambios"
-
-msgid "Download snapshot"
-msgstr "Descargar instantánea"
-
-msgid "Search wiki"
-msgstr "Buscar en la wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marcado como desactualizado"
-
-msgid "Flag package out-of-date"
-msgstr "Marcar paquete como desactualizado"
-
-msgid "Unflag package"
-msgstr "Desmarcar paquete"
-
-msgid "Remove vote"
-msgstr "Eliminar voto"
-
-msgid "Vote for this package"
-msgstr "Votar por este paquete"
-
-msgid "Disable notifications"
-msgstr "Deshabilitar notificaciones"
-
-msgid "Notify of new comments"
-msgstr "Notificación de nuevos comentarios"
-
-msgid "Manage Co-Maintainers"
-msgstr "Administrar coencargados"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "Hay %d solicitud pendiente"
-msgstr[1] "Hay %d solicitudes pendientes"
-
-msgid "Delete Package"
-msgstr "Borrar paquete"
-
-msgid "Merge Package"
-msgstr "Fusionar paquete"
-
-msgid "Adopt Package"
-msgstr "Adoptar paquete"
-
-msgid "Git Clone URL"
-msgstr "URL de clonado con Git"
-
-msgid "Category"
-msgstr "Categoría"
-
-msgid "Change category"
-msgstr "Cambiar categoría"
-
-msgid "Submitter"
-msgstr "Primer encargado"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Ver información de la cuenta para %s"
-
-msgid "Maintainer"
-msgstr "Encargado"
-
-msgid "Last Packager"
-msgstr "Último encargado"
-
-msgid "Votes"
-msgstr "Votos"
-
-msgid "First Submitted"
-msgstr "Fecha de creación"
-
-msgid "Last Updated"
-msgstr "Última actualización"
-
msgid "Add Comment"
msgstr "Agregar comentario"
@@ -1039,9 +976,18 @@ msgstr "borrado"
msgid "All comments"
msgstr "Todos los comentarios"
+msgid "unknown"
+msgstr "desconocido"
+
msgid "Package Details"
msgstr "Detalles del paquete"
+msgid "Git Clone URL"
+msgstr "URL de clonado con Git"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Paquete base"
@@ -1054,6 +1000,9 @@ msgstr "Desarrollador principal"
msgid "Visit the website for"
msgstr "Visita el sitio web de"
+msgid "Keywords"
+msgstr "Palabras claves"
+
msgid "Licenses"
msgstr "Licencias"
@@ -1069,113 +1018,32 @@ msgstr "Proveen"
msgid "Replaces"
msgstr "Remplazan"
-msgid "Dependencies"
-msgstr "Dependencias"
-
-msgid "Required by"
-msgstr "Requerido por"
-
-msgid "Sources"
-msgstr "Fuentes"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Cerrar solicitud: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Use este formulario para cerrar la solicitud para el paquete base %s%s%s."
-
-msgid "Note"
-msgstr "Nota"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"El campo de comentarios se puede dejar vacío. Sin embargo, se recomienda "
-"encarecidamente añadir un comentario al rechazar una solicitud."
-
-msgid "Reason"
-msgstr "Razón"
-
-msgid "Accepted"
-msgstr "Aceptado"
-
-msgid "Rejected"
-msgstr "Rechazado"
-
-msgid "Comments"
-msgstr "Comentario"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Solicitud para el paquete: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Use este formulario para presentar una solicitud para el paquete base %s%s%s "
-"el cual incluye los siguientes paquetes:"
-
-msgid "Request type"
-msgstr "Tipo de solicitud"
-
-msgid "Deletion"
-msgstr "Borrado"
-
-msgid "Orphan"
-msgstr "Orfandad"
-
-msgid "Merge into"
-msgstr "Fusionar en"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "Se encontró %d solicitud para el paquete."
-msgstr[1] "Se encontraron %d solicitudes para el paquete."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Página %d de %d."
-
-msgid "Package"
-msgstr "Paquete"
-
-msgid "Filed by"
-msgstr "Solicitado por"
+msgid "Submitter"
+msgstr "Primer encargado"
-msgid "Date"
-msgstr "Fecha"
+msgid "Maintainer"
+msgstr "Encargado"
-#, php-format
-msgid "~%d days left"
-msgstr "Aprox. %d días restantes"
+msgid "Last Packager"
+msgstr "Último encargado"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "Aprox. %d hora restante"
-msgstr[1] "Aprox. %d horas restantes"
+msgid "Votes"
+msgstr "Votos"
-msgid "<1 hour left"
-msgstr "< 1 hora restante"
+msgid "First Submitted"
+msgstr "Fecha de creación"
-msgid "Accept"
-msgstr "Aceptar"
+msgid "Last Updated"
+msgstr "Última actualización"
-msgid "Locked"
-msgstr "Bloqueada"
+msgid "Dependencies"
+msgstr "Dependencias"
-msgid "Close"
-msgstr "Cerrar"
+msgid "Required by"
+msgstr "Requerido por"
-msgid "Closed"
-msgstr "Cerrada"
+msgid "Sources"
+msgstr "Fuentes"
msgid "Name, Description"
msgstr "Nombre, descripción"
@@ -1219,15 +1087,9 @@ msgstr "Descendente"
msgid "Enter search criteria"
msgstr "Introduzca el criterio de búsqueda"
-msgid "Any"
-msgstr "Cualquiera"
-
msgid "Search by"
msgstr "Buscar por"
-msgid "Keywords"
-msgstr "Palabras claves"
-
msgid "Out of Date"
msgstr "Desactualizado"
@@ -1258,9 +1120,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d paquete fue encontrado."
msgstr[1] "%d paquetes fueron encontrados."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Página %d de %d."
+
msgid "Version"
msgstr "Versión"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sí"
@@ -1285,9 +1156,161 @@ msgstr "Abandonar paquetes"
msgid "Delete Packages"
msgstr "Borrar paquetes"
+msgid "Merge into"
+msgstr "Fusionar en"
+
msgid "Confirm"
msgstr "Confirmar"
+msgid "Package Actions"
+msgstr "Acciones del paquete"
+
+msgid "View PKGBUILD"
+msgstr "Ver PKGBUILD"
+
+msgid "View Changes"
+msgstr "Ver cambios"
+
+msgid "Download snapshot"
+msgstr "Descargar instantánea"
+
+msgid "Search wiki"
+msgstr "Buscar en la wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marcado como desactualizado"
+
+msgid "Flag package out-of-date"
+msgstr "Marcar paquete como desactualizado"
+
+msgid "Unflag package"
+msgstr "Desmarcar paquete"
+
+msgid "Remove vote"
+msgstr "Eliminar voto"
+
+msgid "Vote for this package"
+msgstr "Votar por este paquete"
+
+msgid "Disable notifications"
+msgstr "Deshabilitar notificaciones"
+
+msgid "Notify of new comments"
+msgstr "Notificación de nuevos comentarios"
+
+msgid "Manage Co-Maintainers"
+msgstr "Administrar coencargados"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "Hay %d solicitud pendiente"
+msgstr[1] "Hay %d solicitudes pendientes"
+
+msgid "Delete Package"
+msgstr "Borrar paquete"
+
+msgid "Merge Package"
+msgstr "Fusionar paquete"
+
+msgid "Adopt Package"
+msgstr "Adoptar paquete"
+
+msgid "Package Base Details"
+msgstr "Detalles del paquete base"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Cerrar solicitud: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Use este formulario para cerrar la solicitud para el paquete base %s%s%s."
+
+msgid "Note"
+msgstr "Nota"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"El campo de comentarios se puede dejar vacío. Sin embargo, se recomienda "
+"encarecidamente añadir un comentario al rechazar una solicitud."
+
+msgid "Reason"
+msgstr "Razón"
+
+msgid "Accepted"
+msgstr "Aceptado"
+
+msgid "Rejected"
+msgstr "Rechazado"
+
+msgid "Comments"
+msgstr "Comentario"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Solicitud para el paquete: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Use este formulario para presentar una solicitud para el paquete base %s%s%s "
+"el cual incluye los siguientes paquetes:"
+
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+msgid "Deletion"
+msgstr "Borrado"
+
+msgid "Orphan"
+msgstr "Orfandad"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "Se encontró %d solicitud para el paquete."
+msgstr[1] "Se encontraron %d solicitudes para el paquete."
+
+msgid "Package"
+msgstr "Paquete"
+
+msgid "Filed by"
+msgstr "Solicitado por"
+
+msgid "Date"
+msgstr "Fecha"
+
+#, php-format
+msgid "~%d days left"
+msgstr "Aprox. %d días restantes"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "Aprox. %d hora restante"
+msgstr[1] "Aprox. %d horas restantes"
+
+msgid "<1 hour left"
+msgstr "< 1 hora restante"
+
+msgid "Accept"
+msgstr "Aceptar"
+
+msgid "Locked"
+msgstr "Bloqueada"
+
+msgid "Close"
+msgstr "Cerrar"
+
+msgid "Closed"
+msgstr "Cerrada"
+
msgid "Any type"
msgstr "Cualquier tipo"
@@ -1369,3 +1392,24 @@ msgstr "Inicio"
msgid "Back"
msgstr "Atrás"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Falta el Identificador de categoría."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "El identificador de categoría no es válido."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "No puede cambiar la categoría de este paquete."
+
+#~ msgid "Package category changed."
+#~ msgstr "Categoría del paquete cambiada."
+
+#~ msgid "Category"
+#~ msgstr "Categoría"
+
+#~ msgid "Change category"
+#~ msgstr "Cambiar categoría"
+
+#~ msgid "Any"
+#~ msgstr "Cualquiera"
diff --git a/po/fi.po b/po/fi.po
index fcd87c6..b70329b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Finnish (http://www.transifex.com/projects/p/aur/language/"
@@ -53,9 +53,6 @@ msgstr "Etsi käyttäjätilejä."
msgid "You must log in to view user information."
msgstr "Sinun pitää kirjautua sisään tarkastellaksesi käyttäjien tietoja."
-msgid "Use this form to create an account."
-msgstr "Käytä tätä lomaketta uuden käyttäjätilin luomiseen."
-
msgid "Add Proposal"
msgstr "Lisää ehdotus"
@@ -114,9 +111,9 @@ msgstr ""
msgid "Home"
msgstr "Etusivu"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Tervetuloa AURiin! Luethan %sAURin käyttäjä ohjeen%s sekä %sTU-käyttäjän "
@@ -148,6 +145,9 @@ msgstr ""
"Nämä paketit eivät ole virallisesti tuettuja. Tämän sivun paketit ovat "
"käyttäjien tuotosta. Näiden käyttäminen on omalla vastuullaasi"
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -171,10 +171,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -191,14 +192,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Hylkää paketit"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Keskustelu"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -206,10 +222,10 @@ msgstr "Virheiden raportointi"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -290,6 +306,10 @@ msgstr "Salasanan pitää olla vähintään %s merkkiä pitkä."
msgid "Invalid e-mail."
msgstr "Epäkelvollinen sähköpostiosoite."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Salasanan palautus"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -354,7 +374,7 @@ msgstr "Poista paketti: %s"
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -461,6 +481,12 @@ msgstr "Viimeinen"
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr "Rekisteröidy"
+
+msgid "Use this form to create an account."
+msgstr "Käytä tätä lomaketta uuden käyttäjätilin luomiseen."
+
msgid "Trusted User"
msgstr "Luotettu käyttäjä (TU)"
@@ -551,6 +577,10 @@ msgid "Click on the Login link above to use your account."
msgstr ""
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -595,6 +625,10 @@ msgstr "Epäkelvollinen sähköposti ja palautusavain yhdistelmä."
msgid "None"
msgstr ""
+#, php-format
+msgid "View account information for %s"
+msgstr ""
+
msgid "Error retrieving package details."
msgstr "Virhe haettaessa paketin tietoja."
@@ -684,17 +718,13 @@ msgstr "Kommentti on poistettu."
msgid "You are not allowed to delete this comment."
msgstr "Sinulla ei ole oikeuksia tämän kommentin poistamiseen."
-msgid "Missing category ID."
-msgstr "Kategorian ID puuttuu."
-
-msgid "Invalid category ID."
-msgstr "Kategorian ID ei ole kelvollinen."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Sinulla ei ole oikeuksia tämän paketin kategorian muuttamiseen."
-msgid "Package category changed."
-msgstr "Paketin kategoria vaihdettu."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Valitut paketit on nyt poistettu."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -733,9 +763,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Käytä tätä lomaketta uuden käyttäjätilin luomiseen."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -814,9 +844,10 @@ msgstr "Salasana uudelleen:"
msgid "Language"
msgstr "Kieli"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -873,100 +904,6 @@ msgstr "Omat paketit"
msgid " My Account"
msgstr "Omat tiedot"
-msgid "Register"
-msgstr "Rekisteröidy"
-
-msgid "unknown"
-msgstr "tuntematon"
-
-msgid "Package Base Details"
-msgstr ""
-
-msgid "Package Actions"
-msgstr ""
-
-msgid "View PKGBUILD"
-msgstr "Näytö PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr ""
-
-msgid "Flagged out-of-date"
-msgstr "Merkitty vanhentuneeksi"
-
-msgid "Flag package out-of-date"
-msgstr "Merkitse paketti vanhentuneeksi"
-
-msgid "Unflag package"
-msgstr ""
-
-msgid "Remove vote"
-msgstr ""
-
-msgid "Vote for this package"
-msgstr "Äännestä tätä pakettia"
-
-msgid "Disable notifications"
-msgstr ""
-
-msgid "Notify of new comments"
-msgstr "Lähetä ilmoitus uusista kommnteista"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
-msgstr "Poista paketti"
-
-msgid "Merge Package"
-msgstr ""
-
-msgid "Adopt Package"
-msgstr ""
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Kategoria"
-
-msgid "Change category"
-msgstr "Vaihda kategoriaa"
-
-msgid "Submitter"
-msgstr "Lisääjä"
-
-#, php-format
-msgid "View account information for %s"
-msgstr ""
-
-msgid "Maintainer"
-msgstr "Ylläpitäjä"
-
-msgid "Last Packager"
-msgstr ""
-
-msgid "Votes"
-msgstr "Äänet"
-
-msgid "First Submitted"
-msgstr "Lisättiin"
-
-msgid "Last Updated"
-msgstr "Päivitettiin"
-
msgid "Add Comment"
msgstr "Lisää kommentti"
@@ -995,9 +932,18 @@ msgstr ""
msgid "All comments"
msgstr "Kaikki kommentit"
+msgid "unknown"
+msgstr "tuntematon"
+
msgid "Package Details"
msgstr "Paketin tiedot"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr ""
@@ -1010,6 +956,9 @@ msgstr ""
msgid "Visit the website for"
msgstr ""
+msgid "Keywords"
+msgstr "Avainsanat"
+
msgid "Licenses"
msgstr ""
@@ -1025,108 +974,32 @@ msgstr ""
msgid "Replaces"
msgstr ""
-msgid "Dependencies"
-msgstr "Riippuvuudet"
-
-msgid "Required by"
-msgstr "Riippuvuutena paketeille"
-
-msgid "Sources"
-msgstr "Lähdetiedostot"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr ""
-
-msgid "Accepted"
-msgstr ""
-
-msgid "Rejected"
-msgstr ""
-
-msgid "Comments"
-msgstr ""
-
-#, php-format
-msgid "File Request: %s"
-msgstr ""
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-msgid "Request type"
-msgstr ""
-
-msgid "Deletion"
-msgstr ""
-
-msgid "Orphan"
-msgstr ""
-
-msgid "Merge into"
-msgstr "Yhdistä pakettiin"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr ""
-
-msgid "Package"
-msgstr ""
-
-msgid "Filed by"
-msgstr ""
+msgid "Submitter"
+msgstr "Lisääjä"
-msgid "Date"
-msgstr ""
+msgid "Maintainer"
+msgstr "Ylläpitäjä"
-#, php-format
-msgid "~%d days left"
+msgid "Last Packager"
msgstr ""
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Votes"
+msgstr "Äänet"
-msgid "<1 hour left"
-msgstr ""
+msgid "First Submitted"
+msgstr "Lisättiin"
-msgid "Accept"
-msgstr ""
+msgid "Last Updated"
+msgstr "Päivitettiin"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "Riippuvuudet"
-msgid "Close"
-msgstr ""
+msgid "Required by"
+msgstr "Riippuvuutena paketeille"
-msgid "Closed"
-msgstr ""
+msgid "Sources"
+msgstr "Lähdetiedostot"
msgid "Name, Description"
msgstr "Nimi, kuvaus"
@@ -1170,15 +1043,9 @@ msgstr "Laskeva"
msgid "Enter search criteria"
msgstr ""
-msgid "Any"
-msgstr "Mikä tahansa"
-
msgid "Search by"
msgstr "Etsintäperuste"
-msgid "Keywords"
-msgstr "Avainsanat"
-
msgid "Out of Date"
msgstr "Vanhentunut"
@@ -1209,9 +1076,18 @@ msgid_plural "%d packages found."
msgstr[0] ""
msgstr[1] ""
+#, php-format
+msgid "Page %d of %d."
+msgstr ""
+
msgid "Version"
msgstr "Versio"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Kyllä"
@@ -1236,9 +1112,156 @@ msgstr "Hylkää paketit"
msgid "Delete Packages"
msgstr "Poista paketit"
+msgid "Merge into"
+msgstr "Yhdistä pakettiin"
+
msgid "Confirm"
msgstr "Vahvista"
+msgid "Package Actions"
+msgstr ""
+
+msgid "View PKGBUILD"
+msgstr "Näytö PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr ""
+
+msgid "Flagged out-of-date"
+msgstr "Merkitty vanhentuneeksi"
+
+msgid "Flag package out-of-date"
+msgstr "Merkitse paketti vanhentuneeksi"
+
+msgid "Unflag package"
+msgstr ""
+
+msgid "Remove vote"
+msgstr ""
+
+msgid "Vote for this package"
+msgstr "Äännestä tätä pakettia"
+
+msgid "Disable notifications"
+msgstr ""
+
+msgid "Notify of new comments"
+msgstr "Lähetä ilmoitus uusista kommnteista"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Delete Package"
+msgstr "Poista paketti"
+
+msgid "Merge Package"
+msgstr ""
+
+msgid "Adopt Package"
+msgstr ""
+
+msgid "Package Base Details"
+msgstr ""
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr ""
+
+msgid "Accepted"
+msgstr ""
+
+msgid "Rejected"
+msgstr ""
+
+msgid "Comments"
+msgstr ""
+
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr ""
+
+msgid "Deletion"
+msgstr ""
+
+msgid "Orphan"
+msgstr ""
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Package"
+msgstr ""
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr ""
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr ""
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Closed"
+msgstr ""
+
msgid "Any type"
msgstr "Mikä tahansa"
@@ -1320,3 +1343,21 @@ msgstr "Alku"
msgid "Back"
msgstr "Takaisin"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Kategorian ID puuttuu."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Kategorian ID ei ole kelvollinen."
+
+#~ msgid "Package category changed."
+#~ msgstr "Paketin kategoria vaihdettu."
+
+#~ msgid "Category"
+#~ msgstr "Kategoria"
+
+#~ msgid "Change category"
+#~ msgstr "Vaihda kategoriaa"
+
+#~ msgid "Any"
+#~ msgstr "Mikä tahansa"
diff --git a/po/fr.po b/po/fr.po
index 972d954..dcd6d1d 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: French (http://www.transifex.com/projects/p/aur/language/"
@@ -60,9 +60,6 @@ msgid "You must log in to view user information."
msgstr ""
"Vous devez vous authentifier pour voir les informations de l’utilisateur."
-msgid "Use this form to create an account."
-msgstr "Utilisez ce formulaire pour créer un compte."
-
msgid "Add Proposal"
msgstr "Ajoutez une proposition"
@@ -121,9 +118,9 @@ msgstr ""
msgid "Home"
msgstr "Accueil"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Bienvenue sur AUR ! Veuillez lire les %sconsignes pour les utilisateurs d’AUR"
@@ -156,6 +153,9 @@ msgstr ""
"Les paquets non supportés sont produits par des utilisateurs. Toute "
"utilisation des fichiers fournis se fait à vos propres risques."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -179,10 +179,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -199,14 +200,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Abandonner les paquets"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discussion"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -214,10 +230,10 @@ msgstr "Rapports de bug"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -298,6 +314,10 @@ msgstr "Votre mot de passe doit comprendre au moins %s caractères."
msgid "Invalid e-mail."
msgstr "E-mail invalide"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Réinitialisation de mot de passe"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -363,10 +383,10 @@ msgstr "Suppression de paquet"
msgid "Delete Package: %s"
msgstr "Supprimer le paquet : %s."
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Utilisez ce formulaire pour supprimer le paquet de base %s%s%s et les "
"paquets suivants de AUR :"
@@ -478,6 +498,12 @@ msgstr "Dernière"
msgid "Requests"
msgstr "Requêtes"
+msgid "Register"
+msgstr "S’inscrire"
+
+msgid "Use this form to create an account."
+msgstr "Utilisez ce formulaire pour créer un compte."
+
msgid "Trusted User"
msgstr "Utilisateur de confiance (TU)"
@@ -570,6 +596,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Cliquez sur le lien de connexion ci-dessus pour utiliser votre compte."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -625,6 +655,10 @@ msgstr "Combinaison entre l'e-mail et la clef de réinitialisation invalides."
msgid "None"
msgstr "Aucun"
+#, php-format
+msgid "View account information for %s"
+msgstr "Voir les informations du compte %s"
+
msgid "Error retrieving package details."
msgstr "Erreur en recherchant les détails du paquet."
@@ -722,17 +756,13 @@ msgstr "Le commentaire a été supprimé."
msgid "You are not allowed to delete this comment."
msgstr "Vous n'êtes pas autorisé(e) à supprimer ce commentaire."
-msgid "Missing category ID."
-msgstr "ID de catégorie manquant."
-
-msgid "Invalid category ID."
-msgstr "ID de catégorie non valide."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Vous n'êtes pas autorisé à modifier la catégorie de ce paquet."
-msgid "Package category changed."
-msgstr "Catégorie du paquet changé."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Les paquets sélectionnés ont été supprimés."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -773,8 +803,8 @@ msgstr ""
msgid "Request closed successfully."
msgstr "Requête fermée avec succès."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Vous ne pouvez pas utiliser ce formulaire pour effacer le compte AUR %s de "
"façon permanente."
@@ -856,9 +886,10 @@ msgstr "Retapez le mot de passe"
msgid "Language"
msgstr "Langue"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -915,100 +946,6 @@ msgstr "Mes paquets"
msgid " My Account"
msgstr "Mon compte"
-msgid "Register"
-msgstr "S’inscrire"
-
-msgid "unknown"
-msgstr "inconnu"
-
-msgid "Package Base Details"
-msgstr "Détails du paquet de base"
-
-msgid "Package Actions"
-msgstr "Actions du paquet"
-
-msgid "View PKGBUILD"
-msgstr "Voir le PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Rechercher sur le wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marqué comme périmé"
-
-msgid "Flag package out-of-date"
-msgstr "Marquer le paquet comme périmé"
-
-msgid "Unflag package"
-msgstr "Ne plus marquer le paquet comme périmé"
-
-msgid "Remove vote"
-msgstr "Retirer le vote"
-
-msgid "Vote for this package"
-msgstr "Voter pour ce paquet"
-
-msgid "Disable notifications"
-msgstr "Désactiver les notifications"
-
-msgid "Notify of new comments"
-msgstr "Avertir des nouveaux commentaires"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d requête en attente"
-msgstr[1] "%d requêtes en attente"
-
-msgid "Delete Package"
-msgstr "Supprimer le paquet"
-
-msgid "Merge Package"
-msgstr "Fusionner le paquet"
-
-msgid "Adopt Package"
-msgstr "Adopter ce paquet"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Catégorie"
-
-msgid "Change category"
-msgstr "Changer de catégorie"
-
-msgid "Submitter"
-msgstr "Contributeur"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Voir les informations du compte %s"
-
-msgid "Maintainer"
-msgstr "Mainteneur"
-
-msgid "Last Packager"
-msgstr "Dernier packageur"
-
-msgid "Votes"
-msgstr "Votes"
-
-msgid "First Submitted"
-msgstr "Première soumission"
-
-msgid "Last Updated"
-msgstr "Dernière mise à jour"
-
msgid "Add Comment"
msgstr "Ajouter un commentaire"
@@ -1037,9 +974,18 @@ msgstr "supprimé"
msgid "All comments"
msgstr "Tous les commentaires"
+msgid "unknown"
+msgstr "inconnu"
+
msgid "Package Details"
msgstr "Détails du paquet"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Paquet de base"
@@ -1052,6 +998,9 @@ msgstr "Lien"
msgid "Visit the website for"
msgstr "Accéder au site web de"
+msgid "Keywords"
+msgstr "Mots-clés"
+
msgid "Licenses"
msgstr "Licences"
@@ -1067,113 +1016,32 @@ msgstr "Fournit"
msgid "Replaces"
msgstr "Remplace"
-msgid "Dependencies"
-msgstr "Dépendances"
-
-msgid "Required by"
-msgstr "Requis par"
-
-msgid "Sources"
-msgstr "Sources"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Fermer la requête : %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Utiliser ce formulaire pour fermer la requête pour le paquet de base %s%s%s."
-
-msgid "Note"
-msgstr "Note"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Le champ commentaires peut être laissé vide. Cependant, il est fortement "
-"recommandé d'ajouter un commentaire lors du rejet d'une requête."
-
-msgid "Reason"
-msgstr "Raison"
-
-msgid "Accepted"
-msgstr "Accepté"
-
-msgid "Rejected"
-msgstr "Rejeté"
-
-msgid "Comments"
-msgstr "Commentaires"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Requête de Fichier: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Utilisez ce formulaire pour soumettre une requête concernant le paquet de "
-"base %s%s%s contenant les paquets suivant:"
-
-msgid "Request type"
-msgstr "Type de requête"
-
-msgid "Deletion"
-msgstr "Suppression"
-
-msgid "Orphan"
-msgstr "Rendre orphelin"
-
-msgid "Merge into"
-msgstr "Fusionner dans"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d paquet demandé trouvé."
-msgstr[1] "%d paquets demandés trouvés."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Page %d sur %d."
-
-msgid "Package"
-msgstr "Paquet"
-
-msgid "Filed by"
-msgstr "Soumise par"
+msgid "Submitter"
+msgstr "Contributeur"
-msgid "Date"
-msgstr "Date"
+msgid "Maintainer"
+msgstr "Mainteneur"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d jours restants"
+msgid "Last Packager"
+msgstr "Dernier packageur"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d heure restante"
-msgstr[1] "%d heures restantes"
+msgid "Votes"
+msgstr "Votes"
-msgid "<1 hour left"
-msgstr "< 1 heure restante"
+msgid "First Submitted"
+msgstr "Première soumission"
-msgid "Accept"
-msgstr "Accepter"
+msgid "Last Updated"
+msgstr "Dernière mise à jour"
-msgid "Locked"
-msgstr "Verrouillé"
+msgid "Dependencies"
+msgstr "Dépendances"
-msgid "Close"
-msgstr "Fermer"
+msgid "Required by"
+msgstr "Requis par"
-msgid "Closed"
-msgstr "Fermé"
+msgid "Sources"
+msgstr "Sources"
msgid "Name, Description"
msgstr "Nom, Description"
@@ -1217,15 +1085,9 @@ msgstr "Descendant"
msgid "Enter search criteria"
msgstr "Saisissez les critères de recherche"
-msgid "Any"
-msgstr "Tous"
-
msgid "Search by"
msgstr "Rechercher par"
-msgid "Keywords"
-msgstr "Mots-clés"
-
msgid "Out of Date"
msgstr "Périmé"
@@ -1256,9 +1118,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d paquet trouvé."
msgstr[1] "%d paquets trouvés."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Page %d sur %d."
+
msgid "Version"
msgstr "Version"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Oui"
@@ -1283,9 +1154,161 @@ msgstr "Abandonner les paquets"
msgid "Delete Packages"
msgstr "Supprimer des paquets"
+msgid "Merge into"
+msgstr "Fusionner dans"
+
msgid "Confirm"
msgstr "Confirmer"
+msgid "Package Actions"
+msgstr "Actions du paquet"
+
+msgid "View PKGBUILD"
+msgstr "Voir le PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Rechercher sur le wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marqué comme périmé"
+
+msgid "Flag package out-of-date"
+msgstr "Marquer le paquet comme périmé"
+
+msgid "Unflag package"
+msgstr "Ne plus marquer le paquet comme périmé"
+
+msgid "Remove vote"
+msgstr "Retirer le vote"
+
+msgid "Vote for this package"
+msgstr "Voter pour ce paquet"
+
+msgid "Disable notifications"
+msgstr "Désactiver les notifications"
+
+msgid "Notify of new comments"
+msgstr "Avertir des nouveaux commentaires"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d requête en attente"
+msgstr[1] "%d requêtes en attente"
+
+msgid "Delete Package"
+msgstr "Supprimer le paquet"
+
+msgid "Merge Package"
+msgstr "Fusionner le paquet"
+
+msgid "Adopt Package"
+msgstr "Adopter ce paquet"
+
+msgid "Package Base Details"
+msgstr "Détails du paquet de base"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Fermer la requête : %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Utiliser ce formulaire pour fermer la requête pour le paquet de base %s%s%s."
+
+msgid "Note"
+msgstr "Note"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Le champ commentaires peut être laissé vide. Cependant, il est fortement "
+"recommandé d'ajouter un commentaire lors du rejet d'une requête."
+
+msgid "Reason"
+msgstr "Raison"
+
+msgid "Accepted"
+msgstr "Accepté"
+
+msgid "Rejected"
+msgstr "Rejeté"
+
+msgid "Comments"
+msgstr "Commentaires"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Requête de Fichier: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Utilisez ce formulaire pour soumettre une requête concernant le paquet de "
+"base %s%s%s contenant les paquets suivant:"
+
+msgid "Request type"
+msgstr "Type de requête"
+
+msgid "Deletion"
+msgstr "Suppression"
+
+msgid "Orphan"
+msgstr "Rendre orphelin"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d paquet demandé trouvé."
+msgstr[1] "%d paquets demandés trouvés."
+
+msgid "Package"
+msgstr "Paquet"
+
+msgid "Filed by"
+msgstr "Soumise par"
+
+msgid "Date"
+msgstr "Date"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d jours restants"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d heure restante"
+msgstr[1] "%d heures restantes"
+
+msgid "<1 hour left"
+msgstr "< 1 heure restante"
+
+msgid "Accept"
+msgstr "Accepter"
+
+msgid "Locked"
+msgstr "Verrouillé"
+
+msgid "Close"
+msgstr "Fermer"
+
+msgid "Closed"
+msgstr "Fermé"
+
msgid "Any type"
msgstr "Tout type"
@@ -1367,3 +1390,21 @@ msgstr "Début"
msgid "Back"
msgstr "Retour"
+
+#~ msgid "Missing category ID."
+#~ msgstr "ID de catégorie manquant."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "ID de catégorie non valide."
+
+#~ msgid "Package category changed."
+#~ msgstr "Catégorie du paquet changé."
+
+#~ msgid "Category"
+#~ msgstr "Catégorie"
+
+#~ msgid "Change category"
+#~ msgstr "Changer de catégorie"
+
+#~ msgid "Any"
+#~ msgstr "Tous"
diff --git a/po/he.po b/po/he.po
index ff35d48..aa2c9e0 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/aur/language/"
@@ -53,9 +53,6 @@ msgstr "נא להשתמש בטופס על מנת לחפש אחר חשבונות
msgid "You must log in to view user information."
msgstr "עליך להתחבר על מנת לצפות בנתוני משתמש."
-msgid "Use this form to create an account."
-msgstr "ניתן להשתמש בטופס זה על מנת ליצור חשבון."
-
msgid "Add Proposal"
msgstr "הוספת הצעה"
@@ -116,7 +113,7 @@ msgstr "בית"
#, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
@@ -140,6 +137,9 @@ msgid ""
"files is at your own risk."
msgstr ""
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -163,10 +163,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -183,14 +184,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "שחרור בעלות על חבילות"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "דיון"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -198,10 +214,10 @@ msgstr ""
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -280,6 +296,10 @@ msgstr "הססמה חייבת להיות באורך של %s אותיות לפח
msgid "Invalid e-mail."
msgstr ""
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "איפוס ססמה"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -342,7 +362,7 @@ msgstr ""
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -445,6 +465,12 @@ msgstr ""
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr ""
+
+msgid "Use this form to create an account."
+msgstr "ניתן להשתמש בטופס זה על מנת ליצור חשבון."
+
msgid "Trusted User"
msgstr "משתמש אמין"
@@ -535,6 +561,10 @@ msgid "Click on the Login link above to use your account."
msgstr ""
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -579,6 +609,10 @@ msgstr ""
msgid "None"
msgstr ""
+#, php-format
+msgid "View account information for %s"
+msgstr ""
+
msgid "Error retrieving package details."
msgstr "שגיאה בקבלת נתוני חבילה."
@@ -668,17 +702,13 @@ msgstr "הערה נמחקה."
msgid "You are not allowed to delete this comment."
msgstr "אין לך הרשאה למחוק הערה זו."
-msgid "Missing category ID."
-msgstr ""
-
-msgid "Invalid category ID."
-msgstr "מס׳ הזיהוי של הקטגוריה אינו תקין"
-
-msgid "You are not allowed to change this package category."
-msgstr ""
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "אין לך גישה לאזור זה."
-msgid "Package category changed."
-msgstr ""
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "החבילות המסומנות נמחקו."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -717,9 +747,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "ניתן להשתמש בטופס זה על מנת ליצור חשבון."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -798,9 +828,10 @@ msgstr "הקלדת הססמה מחדש"
msgid "Language"
msgstr "שפה"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -857,83 +888,77 @@ msgstr "החבילות שלי"
msgid " My Account"
msgstr ""
-msgid "Register"
+msgid "Add Comment"
msgstr ""
-msgid "unknown"
+msgid "Comment has been added."
msgstr ""
-msgid "Package Base Details"
+msgid "View all comments"
msgstr ""
-msgid "Package Actions"
+msgid "Latest Comments"
msgstr ""
-msgid "View PKGBUILD"
-msgstr ""
+msgid "Delete comment"
+msgstr "מחיקת הערה"
-msgid "View Changes"
+#, php-format
+msgid "Comment by %s"
msgstr ""
-msgid "Download snapshot"
+msgid "Anonymous comment"
msgstr ""
-msgid "Search wiki"
+msgid "deleted"
msgstr ""
-msgid "Flagged out-of-date"
+msgid "All comments"
msgstr ""
-msgid "Flag package out-of-date"
+msgid "unknown"
msgstr ""
-msgid "Unflag package"
-msgstr ""
+msgid "Package Details"
+msgstr "נתוני חבילה"
-msgid "Remove vote"
+msgid "Git Clone URL"
msgstr ""
-msgid "Vote for this package"
+msgid "read-only"
msgstr ""
-msgid "Disable notifications"
+msgid "Package Base"
msgstr ""
-msgid "Notify of new comments"
-msgstr ""
+msgid "Description"
+msgstr "תיאור"
-msgid "Manage Co-Maintainers"
+msgid "Upstream URL"
msgstr ""
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
+msgid "Visit the website for"
msgstr ""
-msgid "Merge Package"
+msgid "Keywords"
msgstr ""
-msgid "Adopt Package"
+msgid "Licenses"
msgstr ""
-msgid "Git Clone URL"
+msgid "Groups"
msgstr ""
-msgid "Category"
-msgstr "קטגוריה"
+msgid "Conflicts"
+msgstr ""
-msgid "Change category"
+msgid "Provides"
msgstr ""
-msgid "Submitter"
+msgid "Replaces"
msgstr ""
-#, php-format
-msgid "View account information for %s"
+msgid "Submitter"
msgstr ""
msgid "Maintainer"
@@ -951,277 +976,275 @@ msgstr ""
msgid "Last Updated"
msgstr ""
-msgid "Add Comment"
-msgstr ""
+msgid "Dependencies"
+msgstr "תלות"
-msgid "Comment has been added."
+msgid "Required by"
+msgstr "נדרש על ידי"
+
+msgid "Sources"
msgstr ""
-msgid "View all comments"
+msgid "Name, Description"
msgstr ""
-msgid "Latest Comments"
+msgid "Name Only"
msgstr ""
-msgid "Delete comment"
-msgstr "מחיקת הערה"
+msgid "Exact Name"
+msgstr ""
-#, php-format
-msgid "Comment by %s"
+msgid "Exact Package Base"
msgstr ""
-msgid "Anonymous comment"
+msgid "All"
msgstr ""
-msgid "deleted"
+msgid "Flagged"
msgstr ""
-msgid "All comments"
+msgid "Not Flagged"
msgstr ""
-msgid "Package Details"
-msgstr "נתוני חבילה"
+msgid "Name"
+msgstr "שם"
-msgid "Package Base"
+msgid "Popularity"
msgstr ""
-msgid "Description"
-msgstr "תיאור"
+msgid "Voted"
+msgstr "הצביעו"
-msgid "Upstream URL"
+msgid "Age"
msgstr ""
-msgid "Visit the website for"
+msgid "Ascending"
msgstr ""
-msgid "Licenses"
+msgid "Descending"
msgstr ""
-msgid "Groups"
+msgid "Enter search criteria"
msgstr ""
-msgid "Conflicts"
-msgstr ""
+msgid "Search by"
+msgstr "חיפוש לפי"
-msgid "Provides"
+msgid "Out of Date"
msgstr ""
-msgid "Replaces"
-msgstr ""
+msgid "Sort by"
+msgstr "סידור לפי"
-msgid "Dependencies"
-msgstr "תלות"
+msgid "Sort order"
+msgstr "סדר המיון"
-msgid "Required by"
-msgstr "נדרש על ידי"
+msgid "Per page"
+msgstr "לפי דף"
-msgid "Sources"
-msgstr ""
+msgid "Go"
+msgstr "מעבר"
+
+msgid "Orphans"
+msgstr "יתומות"
+
+msgid "Error retrieving package list."
+msgstr "שגיאה בעת קבלת רשימת החבילות."
+
+msgid "No packages matched your search criteria."
+msgstr "אין חבילות התואמות לנתוני החיפוש שלך."
#, php-format
-msgid "Close Request: %s"
-msgstr ""
+msgid "%d package found."
+msgid_plural "%d packages found."
+msgstr[0] ""
+msgstr[1] ""
#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
+msgid "Page %d of %d."
msgstr ""
-msgid "Note"
+msgid "Version"
msgstr ""
msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
msgstr ""
-msgid "Reason"
-msgstr ""
+msgid "Yes"
+msgstr "כן"
-msgid "Accepted"
-msgstr ""
+msgid "orphan"
+msgstr "יתומה"
-msgid "Rejected"
+msgid "Actions"
+msgstr "פעולות"
+
+msgid "Flag Out-of-date"
+msgstr "סימון כלא עדכני"
+
+msgid "Unflag Out-of-date"
+msgstr "ביטול סימון כלא מעודכן"
+
+msgid "Adopt Packages"
+msgstr "אימוץ חבילות"
+
+msgid "Disown Packages"
+msgstr "שחרור בעלות על חבילות"
+
+msgid "Delete Packages"
+msgstr "מחיקת חבילות"
+
+msgid "Merge into"
msgstr ""
-msgid "Comments"
+msgid "Confirm"
+msgstr "אישור"
+
+msgid "Package Actions"
msgstr ""
-#, php-format
-msgid "File Request: %s"
+msgid "View PKGBUILD"
msgstr ""
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
+msgid "View Changes"
msgstr ""
-msgid "Request type"
+msgid "Download snapshot"
msgstr ""
-msgid "Deletion"
+msgid "Search wiki"
msgstr ""
-msgid "Orphan"
+msgid "Flagged out-of-date"
msgstr ""
-msgid "Merge into"
+msgid "Flag package out-of-date"
msgstr ""
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
+msgid "Unflag package"
+msgstr ""
-#, php-format
-msgid "Page %d of %d."
+msgid "Remove vote"
msgstr ""
-msgid "Package"
+msgid "Vote for this package"
msgstr ""
-msgid "Filed by"
+msgid "Disable notifications"
msgstr ""
-msgid "Date"
+msgid "Notify of new comments"
msgstr ""
-#, php-format
-msgid "~%d days left"
+msgid "Manage Co-Maintainers"
msgstr ""
#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
+msgid "%d pending request"
+msgid_plural "%d pending requests"
msgstr[0] ""
msgstr[1] ""
-msgid "<1 hour left"
+msgid "Delete Package"
msgstr ""
-msgid "Accept"
+msgid "Merge Package"
msgstr ""
-msgid "Locked"
+msgid "Adopt Package"
msgstr ""
-msgid "Close"
+msgid "Package Base Details"
msgstr ""
-msgid "Closed"
+#, php-format
+msgid "Close Request: %s"
msgstr ""
-msgid "Name, Description"
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
msgstr ""
-msgid "Name Only"
+msgid "Note"
msgstr ""
-msgid "Exact Name"
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
msgstr ""
-msgid "Exact Package Base"
+msgid "Reason"
msgstr ""
-msgid "All"
+msgid "Accepted"
msgstr ""
-msgid "Flagged"
+msgid "Rejected"
msgstr ""
-msgid "Not Flagged"
+msgid "Comments"
msgstr ""
-msgid "Name"
-msgstr "שם"
-
-msgid "Popularity"
+#, php-format
+msgid "File Request: %s"
msgstr ""
-msgid "Voted"
-msgstr "הצביעו"
-
-msgid "Age"
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
msgstr ""
-msgid "Ascending"
+msgid "Request type"
msgstr ""
-msgid "Descending"
+msgid "Deletion"
msgstr ""
-msgid "Enter search criteria"
+msgid "Orphan"
msgstr ""
-msgid "Any"
-msgstr "כל"
-
-msgid "Search by"
-msgstr "חיפוש לפי"
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
-msgid "Keywords"
+msgid "Package"
msgstr ""
-msgid "Out of Date"
+msgid "Filed by"
msgstr ""
-msgid "Sort by"
-msgstr "סידור לפי"
-
-msgid "Sort order"
-msgstr "סדר המיון"
-
-msgid "Per page"
-msgstr "לפי דף"
-
-msgid "Go"
-msgstr "מעבר"
-
-msgid "Orphans"
-msgstr "יתומות"
-
-msgid "Error retrieving package list."
-msgstr "שגיאה בעת קבלת רשימת החבילות."
+msgid "Date"
+msgstr ""
-msgid "No packages matched your search criteria."
-msgstr "אין חבילות התואמות לנתוני החיפוש שלך."
+#, php-format
+msgid "~%d days left"
+msgstr ""
#, php-format
-msgid "%d package found."
-msgid_plural "%d packages found."
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
msgstr[0] ""
msgstr[1] ""
-msgid "Version"
+msgid "<1 hour left"
msgstr ""
-msgid "Yes"
-msgstr "כן"
-
-msgid "orphan"
-msgstr "יתומה"
-
-msgid "Actions"
-msgstr "פעולות"
-
-msgid "Flag Out-of-date"
-msgstr "סימון כלא עדכני"
-
-msgid "Unflag Out-of-date"
-msgstr "ביטול סימון כלא מעודכן"
-
-msgid "Adopt Packages"
-msgstr "אימוץ חבילות"
+msgid "Accept"
+msgstr ""
-msgid "Disown Packages"
-msgstr "שחרור בעלות על חבילות"
+msgid "Locked"
+msgstr ""
-msgid "Delete Packages"
-msgstr "מחיקת חבילות"
+msgid "Close"
+msgstr ""
-msgid "Confirm"
-msgstr "אישור"
+msgid "Closed"
+msgstr ""
msgid "Any type"
msgstr "כל סוג"
@@ -1304,3 +1327,12 @@ msgstr "התחלה"
msgid "Back"
msgstr "חזרה"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "מס׳ הזיהוי של הקטגוריה אינו תקין"
+
+#~ msgid "Category"
+#~ msgstr "קטגוריה"
+
+#~ msgid "Any"
+#~ msgstr "כל"
diff --git a/po/hr.po b/po/hr.po
index 4adabae..0013d34 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/aur/language/"
@@ -54,9 +54,6 @@ msgstr "Koristite ovaj formular za pretraživanj postoječih računa."
msgid "You must log in to view user information."
msgstr "Morate se logirati kako bi pregledali informacije o korisniku."
-msgid "Use this form to create an account."
-msgstr "Koristite ovaj formular za kreiranje računa."
-
msgid "Add Proposal"
msgstr ""
@@ -117,7 +114,7 @@ msgstr "Početna"
#, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
@@ -141,6 +138,9 @@ msgid ""
"files is at your own risk."
msgstr ""
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -164,10 +164,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -184,14 +185,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Odrekni se paketa"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Rasprava"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -199,10 +215,10 @@ msgstr ""
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -281,6 +297,10 @@ msgstr "Lozinka mora sadržavati najmanje %s znakova."
msgid "Invalid e-mail."
msgstr ""
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Lozinka"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -343,7 +363,7 @@ msgstr ""
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -446,6 +466,12 @@ msgstr ""
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr ""
+
+msgid "Use this form to create an account."
+msgstr "Koristite ovaj formular za kreiranje računa."
+
msgid "Trusted User"
msgstr "Pouzdan korisnik"
@@ -536,6 +562,10 @@ msgid "Click on the Login link above to use your account."
msgstr ""
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -580,6 +610,10 @@ msgstr ""
msgid "None"
msgstr ""
+#, php-format
+msgid "View account information for %s"
+msgstr ""
+
msgid "Error retrieving package details."
msgstr "Došlo je do greške prilikom preuzimanja detalja o paketu."
@@ -669,17 +703,13 @@ msgstr "Komentar je izbrisan."
msgid "You are not allowed to delete this comment."
msgstr "Brisanje ovog komentara Vam nije dozvoljeno."
-msgid "Missing category ID."
-msgstr ""
-
-msgid "Invalid category ID."
-msgstr "Neispravan ID kategorije."
-
-msgid "You are not allowed to change this package category."
-msgstr ""
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "Nije vam dozvoljen pristup ovom području."
-msgid "Package category changed."
-msgstr ""
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Odabrani paketi su izbrisani."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -718,9 +748,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Koristite ovaj formular za kreiranje računa."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -799,9 +829,10 @@ msgstr "Ponovno upišite lozinku"
msgid "Language"
msgstr "Jezik"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -858,84 +889,77 @@ msgstr "Moji paketi"
msgid " My Account"
msgstr ""
-msgid "Register"
+msgid "Add Comment"
msgstr ""
-msgid "unknown"
-msgstr "nepoznato"
+msgid "Comment has been added."
+msgstr "Komentar je dodan."
-msgid "Package Base Details"
+msgid "View all comments"
msgstr ""
-msgid "Package Actions"
+msgid "Latest Comments"
msgstr ""
-msgid "View PKGBUILD"
-msgstr ""
+msgid "Delete comment"
+msgstr "Briši komentar"
-msgid "View Changes"
+#, php-format
+msgid "Comment by %s"
msgstr ""
-msgid "Download snapshot"
+msgid "Anonymous comment"
msgstr ""
-msgid "Search wiki"
+msgid "deleted"
msgstr ""
-msgid "Flagged out-of-date"
+msgid "All comments"
msgstr ""
-msgid "Flag package out-of-date"
-msgstr ""
+msgid "unknown"
+msgstr "nepoznato"
-msgid "Unflag package"
-msgstr ""
+msgid "Package Details"
+msgstr "Detalji o paketu"
-msgid "Remove vote"
+msgid "Git Clone URL"
msgstr ""
-msgid "Vote for this package"
+msgid "read-only"
msgstr ""
-msgid "Disable notifications"
+msgid "Package Base"
msgstr ""
-msgid "Notify of new comments"
-msgstr ""
+msgid "Description"
+msgstr "Opis"
-msgid "Manage Co-Maintainers"
+msgid "Upstream URL"
msgstr ""
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-msgid "Delete Package"
+msgid "Visit the website for"
msgstr ""
-msgid "Merge Package"
+msgid "Keywords"
msgstr ""
-msgid "Adopt Package"
+msgid "Licenses"
msgstr ""
-msgid "Git Clone URL"
+msgid "Groups"
msgstr ""
-msgid "Category"
-msgstr "Kategorija"
+msgid "Conflicts"
+msgstr ""
-msgid "Change category"
+msgid "Provides"
msgstr ""
-msgid "Submitter"
+msgid "Replaces"
msgstr ""
-#, php-format
-msgid "View account information for %s"
+msgid "Submitter"
msgstr ""
msgid "Maintainer"
@@ -953,279 +977,278 @@ msgstr "Prvi put poslan"
msgid "Last Updated"
msgstr "Posljednji put ažuriran"
-msgid "Add Comment"
-msgstr ""
+msgid "Dependencies"
+msgstr "Ovisi o"
-msgid "Comment has been added."
-msgstr "Komentar je dodan."
+msgid "Required by"
+msgstr "Potreban za"
-msgid "View all comments"
+msgid "Sources"
+msgstr "Izvor"
+
+msgid "Name, Description"
msgstr ""
-msgid "Latest Comments"
+msgid "Name Only"
msgstr ""
-msgid "Delete comment"
-msgstr "Briši komentar"
+msgid "Exact Name"
+msgstr ""
-#, php-format
-msgid "Comment by %s"
+msgid "Exact Package Base"
msgstr ""
-msgid "Anonymous comment"
+msgid "All"
msgstr ""
-msgid "deleted"
+msgid "Flagged"
msgstr ""
-msgid "All comments"
+msgid "Not Flagged"
msgstr ""
-msgid "Package Details"
-msgstr "Detalji o paketu"
+msgid "Name"
+msgstr "Ime"
-msgid "Package Base"
+msgid "Popularity"
msgstr ""
-msgid "Description"
-msgstr "Opis"
+msgid "Voted"
+msgstr "Glasao"
-msgid "Upstream URL"
+msgid "Age"
msgstr ""
-msgid "Visit the website for"
+msgid "Ascending"
msgstr ""
-msgid "Licenses"
+msgid "Descending"
msgstr ""
-msgid "Groups"
+msgid "Enter search criteria"
msgstr ""
-msgid "Conflicts"
-msgstr ""
+msgid "Search by"
+msgstr "Traži po"
-msgid "Provides"
-msgstr ""
+msgid "Out of Date"
+msgstr "Zastario"
-msgid "Replaces"
-msgstr ""
+msgid "Sort by"
+msgstr "Sortiraj po"
-msgid "Dependencies"
-msgstr "Ovisi o"
+msgid "Sort order"
+msgstr "Način sortiranja"
-msgid "Required by"
-msgstr "Potreban za"
+msgid "Per page"
+msgstr "Po stranici"
-msgid "Sources"
-msgstr "Izvor"
+msgid "Go"
+msgstr "Traži"
+
+msgid "Orphans"
+msgstr "Napušteni"
+
+msgid "Error retrieving package list."
+msgstr "Došlo je do greške prilikom stvaranja liste paketa."
+
+msgid "No packages matched your search criteria."
+msgstr "Nijedan paket ne odgovara kriterijima traženja."
#, php-format
-msgid "Close Request: %s"
-msgstr ""
+msgid "%d package found."
+msgid_plural "%d packages found."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
+msgid "Page %d of %d."
msgstr ""
-msgid "Note"
+msgid "Version"
msgstr ""
msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
msgstr ""
-msgid "Reason"
-msgstr ""
+msgid "Yes"
+msgstr "Da"
-msgid "Accepted"
+msgid "orphan"
+msgstr "napušten"
+
+msgid "Actions"
+msgstr "Radnje"
+
+msgid "Flag Out-of-date"
+msgstr "Obilježi kao zastario"
+
+msgid "Unflag Out-of-date"
+msgstr "Obilježi kao ažuriran"
+
+msgid "Adopt Packages"
+msgstr "Posvoji paket"
+
+msgid "Disown Packages"
+msgstr "Odrekni se paketa"
+
+msgid "Delete Packages"
+msgstr "Izbriši pakete"
+
+msgid "Merge into"
msgstr ""
-msgid "Rejected"
+msgid "Confirm"
msgstr ""
-msgid "Comments"
+msgid "Package Actions"
msgstr ""
-#, php-format
-msgid "File Request: %s"
+msgid "View PKGBUILD"
msgstr ""
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
+msgid "View Changes"
msgstr ""
-msgid "Request type"
+msgid "Download snapshot"
msgstr ""
-msgid "Deletion"
+msgid "Search wiki"
msgstr ""
-msgid "Orphan"
+msgid "Flagged out-of-date"
msgstr ""
-msgid "Merge into"
+msgid "Flag package out-of-date"
msgstr ""
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgid "Unflag package"
+msgstr ""
-#, php-format
-msgid "Page %d of %d."
+msgid "Remove vote"
msgstr ""
-msgid "Package"
+msgid "Vote for this package"
msgstr ""
-msgid "Filed by"
+msgid "Disable notifications"
msgstr ""
-msgid "Date"
+msgid "Notify of new comments"
msgstr ""
-#, php-format
-msgid "~%d days left"
+msgid "Manage Co-Maintainers"
msgstr ""
#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
+msgid "%d pending request"
+msgid_plural "%d pending requests"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-msgid "<1 hour left"
+msgid "Delete Package"
msgstr ""
-msgid "Accept"
+msgid "Merge Package"
msgstr ""
-msgid "Locked"
+msgid "Adopt Package"
msgstr ""
-msgid "Close"
+msgid "Package Base Details"
msgstr ""
-msgid "Closed"
+#, php-format
+msgid "Close Request: %s"
msgstr ""
-msgid "Name, Description"
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
msgstr ""
-msgid "Name Only"
+msgid "Note"
msgstr ""
-msgid "Exact Name"
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
msgstr ""
-msgid "Exact Package Base"
+msgid "Reason"
msgstr ""
-msgid "All"
+msgid "Accepted"
msgstr ""
-msgid "Flagged"
+msgid "Rejected"
msgstr ""
-msgid "Not Flagged"
+msgid "Comments"
msgstr ""
-msgid "Name"
-msgstr "Ime"
-
-msgid "Popularity"
+#, php-format
+msgid "File Request: %s"
msgstr ""
-msgid "Voted"
-msgstr "Glasao"
-
-msgid "Age"
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
msgstr ""
-msgid "Ascending"
+msgid "Request type"
msgstr ""
-msgid "Descending"
+msgid "Deletion"
msgstr ""
-msgid "Enter search criteria"
+msgid "Orphan"
msgstr ""
-msgid "Any"
-msgstr "Bilo koji"
-
-msgid "Search by"
-msgstr "Traži po"
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
-msgid "Keywords"
+msgid "Package"
msgstr ""
-msgid "Out of Date"
-msgstr "Zastario"
-
-msgid "Sort by"
-msgstr "Sortiraj po"
-
-msgid "Sort order"
-msgstr "Način sortiranja"
-
-msgid "Per page"
-msgstr "Po stranici"
-
-msgid "Go"
-msgstr "Traži"
-
-msgid "Orphans"
-msgstr "Napušteni"
+msgid "Filed by"
+msgstr ""
-msgid "Error retrieving package list."
-msgstr "Došlo je do greške prilikom stvaranja liste paketa."
+msgid "Date"
+msgstr ""
-msgid "No packages matched your search criteria."
-msgstr "Nijedan paket ne odgovara kriterijima traženja."
+#, php-format
+msgid "~%d days left"
+msgstr ""
#, php-format
-msgid "%d package found."
-msgid_plural "%d packages found."
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-msgid "Version"
+msgid "<1 hour left"
msgstr ""
-msgid "Yes"
-msgstr "Da"
-
-msgid "orphan"
-msgstr "napušten"
-
-msgid "Actions"
-msgstr "Radnje"
-
-msgid "Flag Out-of-date"
-msgstr "Obilježi kao zastario"
-
-msgid "Unflag Out-of-date"
-msgstr "Obilježi kao ažuriran"
-
-msgid "Adopt Packages"
-msgstr "Posvoji paket"
+msgid "Accept"
+msgstr ""
-msgid "Disown Packages"
-msgstr "Odrekni se paketa"
+msgid "Locked"
+msgstr ""
-msgid "Delete Packages"
-msgstr "Izbriši pakete"
+msgid "Close"
+msgstr ""
-msgid "Confirm"
+msgid "Closed"
msgstr ""
msgid "Any type"
@@ -1309,3 +1332,12 @@ msgstr "Početak"
msgid "Back"
msgstr "Natrag"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Neispravan ID kategorije."
+
+#~ msgid "Category"
+#~ msgstr "Kategorija"
+
+#~ msgid "Any"
+#~ msgstr "Bilo koji"
diff --git a/po/hu.po b/po/hu.po
index 9f5788f..95e17ef 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/aur/language/"
@@ -55,9 +55,6 @@ msgstr "Már meglévő felhasználói fiókok kereséséhez használd ezt az űr
msgid "You must log in to view user information."
msgstr "A felhasználói információ megtekintéshez be kell jelentkezned."
-msgid "Use this form to create an account."
-msgstr "Használd ezt a űrlapot felhasználói fiók létrehozására."
-
msgid "Add Proposal"
msgstr "Indítvány hozzáadása"
@@ -116,9 +113,9 @@ msgstr ""
msgid "Home"
msgstr "Honlap"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Üdvözlünk az AUR-ban! További információért olvasd el az %sAUR felhasználói "
@@ -149,6 +146,9 @@ msgstr ""
"szolgáltatott fájlok bármilyen felhasználása csak saját felelősségre "
"történik."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -172,10 +172,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -192,14 +193,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Csomagok megtagadása"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Megbeszélés"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -207,10 +223,10 @@ msgstr "Hibajelentés"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -291,6 +307,10 @@ msgstr "A jelszónak legalább %s karakter hosszúságúnak kell lennie."
msgid "Invalid e-mail."
msgstr "Érvénytelen e-mail."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Jelszó visszaállítása"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -356,10 +376,10 @@ msgstr "Csomag törlése"
msgid "Delete Package: %s"
msgstr "Csomag törlése: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Használd ezt az űrlapot a(z) %s%s%s alapcsomag és az alábbi csomagok "
"törléséhez az AUR-ból:"
@@ -468,6 +488,12 @@ msgstr "Utolsó"
msgid "Requests"
msgstr "Kérelmek"
+msgid "Register"
+msgstr "Regisztráció"
+
+msgid "Use this form to create an account."
+msgstr "Használd ezt a űrlapot felhasználói fiók létrehozására."
+
msgid "Trusted User"
msgstr "Megbízható felhasználó"
@@ -560,6 +586,10 @@ msgid "Click on the Login link above to use your account."
msgstr "A fiókod használatához kattints a Bejelentkezés hivatkozásra feljebb."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -613,6 +643,10 @@ msgstr "Érvénytelen e-mail és visszaállító kulcs kombináció."
msgid "None"
msgstr "Nincs"
+#, php-format
+msgid "View account information for %s"
+msgstr "Fiók információinak megtekintése – %s"
+
msgid "Error retrieving package details."
msgstr "Hiba történt a csomag részletes információinak letöltése közben."
@@ -703,17 +737,13 @@ msgstr "Megjegyzés törölve."
msgid "You are not allowed to delete this comment."
msgstr "Nem törölheted ezt a megjegyzést."
-msgid "Missing category ID."
-msgstr "Hiányzó kategóriaazonosító."
-
-msgid "Invalid category ID."
-msgstr "Érvénytelen kategóriaazonosító."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Nem változtathatod meg ennek a csomagnak a kategóriáját."
-msgid "Package category changed."
-msgstr "A csomag kategóriája megváltoztatva."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "A kiválasztott csomagok törlése megtörtént."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -752,8 +782,8 @@ msgstr "Csak megbízható felhasználók és fejlesztők tudnak kérelmeket lez
msgid "Request closed successfully."
msgstr "Kérelem sikeresen lezárva."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Ez az űrlap %s AUR fiókjának végleges törléséhez használható."
#, php-format
@@ -833,9 +863,10 @@ msgstr "Megismételt jelszó"
msgid "Language"
msgstr "Nyelv"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -892,100 +923,6 @@ msgstr "Csomagjaim"
msgid " My Account"
msgstr " Fiókom"
-msgid "Register"
-msgstr "Regisztráció"
-
-msgid "unknown"
-msgstr "ismeretlen"
-
-msgid "Package Base Details"
-msgstr "Alapcsomag részletei"
-
-msgid "Package Actions"
-msgstr "Csomagműveletek"
-
-msgid "View PKGBUILD"
-msgstr "PKGBUILD megtekintése"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Keresés wikiben"
-
-msgid "Flagged out-of-date"
-msgstr "Elavultnak jelölve"
-
-msgid "Flag package out-of-date"
-msgstr "Csomag elavultnak jelölése"
-
-msgid "Unflag package"
-msgstr "Csomag jelölésének visszavonása"
-
-msgid "Remove vote"
-msgstr "Szavazat eltávolítása"
-
-msgid "Vote for this package"
-msgstr "Szavazás erre a csomagra"
-
-msgid "Disable notifications"
-msgstr "Értesítések kikapcsolása"
-
-msgid "Notify of new comments"
-msgstr "Értesítés új hozzászólásról"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d függő kérelem"
-msgstr[1] "%d függő kérelem"
-
-msgid "Delete Package"
-msgstr "Csomag törlése"
-
-msgid "Merge Package"
-msgstr "Csomag beolvasztása"
-
-msgid "Adopt Package"
-msgstr "Csomag örökbe fogadása"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Kategória"
-
-msgid "Change category"
-msgstr "Kategória megváltoztatása"
-
-msgid "Submitter"
-msgstr "Beküldő"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Fiók információinak megtekintése – %s"
-
-msgid "Maintainer"
-msgstr "Karbantartó"
-
-msgid "Last Packager"
-msgstr "Legutóbbi csomagoló"
-
-msgid "Votes"
-msgstr "Szavazatok"
-
-msgid "First Submitted"
-msgstr "Először beküldve"
-
-msgid "Last Updated"
-msgstr "Legutóbb frissítve"
-
msgid "Add Comment"
msgstr "Hosszászólás"
@@ -1014,9 +951,18 @@ msgstr "törölve"
msgid "All comments"
msgstr "Összes hozzászólás"
+msgid "unknown"
+msgstr "ismeretlen"
+
msgid "Package Details"
msgstr "Részletes csomaginformáció"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Alapcsomag"
@@ -1029,6 +975,9 @@ msgstr "Upstream URL"
msgid "Visit the website for"
msgstr "A webhely meglátogatása –"
+msgid "Keywords"
+msgstr "Kulcsszavak"
+
msgid "Licenses"
msgstr "Licencek"
@@ -1044,114 +993,32 @@ msgstr "Szolgáltatja"
msgid "Replaces"
msgstr "Lecseréli"
-msgid "Dependencies"
-msgstr "Függőségek"
-
-msgid "Required by"
-msgstr "Igényli"
-
-msgid "Sources"
-msgstr "Források"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Kérelem lezárása: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Használd ezt az űrlapot a(z) %s%s%s alapcsomaggal kapcsolatos kérelem "
-"lezárásához."
-
-msgid "Note"
-msgstr "Megjegyzés"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"A megjegyzések mező üresen hagyható. Viszont kérelem elutasításakor erősen "
-"javasolt megjegyzés hozzáadása."
-
-msgid "Reason"
-msgstr "Ok"
-
-msgid "Accepted"
-msgstr "Elfogadva"
-
-msgid "Rejected"
-msgstr "Elutasítva"
-
-msgid "Comments"
-msgstr "Megjegyzések"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Kérelem benyújtása: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Használd ezt az űrlapot a(z) %s%s%s alapcsomaggal kapcsolatos kérelem "
-"benyújtásához, amely a következő csomagokat tartalmazza:"
-
-msgid "Request type"
-msgstr "Kérelem típusa"
-
-msgid "Deletion"
-msgstr "Törlés"
-
-msgid "Orphan"
-msgstr "Árva"
-
-msgid "Merge into"
-msgstr "Beolvasztás ebbe:"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d csomagokkal kapcsolatos kérelem található."
-msgstr[1] "%d csomagokkal kapcsolatos kérelem található."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "%d. oldal, összesen: %d."
-
-msgid "Package"
-msgstr "Csomag"
-
-msgid "Filed by"
-msgstr "Kitöltő"
+msgid "Submitter"
+msgstr "Beküldő"
-msgid "Date"
-msgstr "Dátum"
+msgid "Maintainer"
+msgstr "Karbantartó"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d nap van hátra"
+msgid "Last Packager"
+msgstr "Legutóbbi csomagoló"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d óra van hátra"
-msgstr[1] "~%d óra van hátra"
+msgid "Votes"
+msgstr "Szavazatok"
-msgid "<1 hour left"
-msgstr "<1 óra van hátra"
+msgid "First Submitted"
+msgstr "Először beküldve"
-msgid "Accept"
-msgstr "Elfogadás"
+msgid "Last Updated"
+msgstr "Legutóbb frissítve"
-msgid "Locked"
-msgstr "Zárolva"
+msgid "Dependencies"
+msgstr "Függőségek"
-msgid "Close"
-msgstr "Lezárás"
+msgid "Required by"
+msgstr "Igényli"
-msgid "Closed"
-msgstr "Lezárva"
+msgid "Sources"
+msgstr "Források"
msgid "Name, Description"
msgstr "Név, leírás"
@@ -1195,15 +1062,9 @@ msgstr "Csökkenő"
msgid "Enter search criteria"
msgstr "Keresési feltételek megadása"
-msgid "Any"
-msgstr "Bármi"
-
msgid "Search by"
msgstr "Keresés eszerint"
-msgid "Keywords"
-msgstr "Kulcsszavak"
-
msgid "Out of Date"
msgstr "Elavult"
@@ -1234,9 +1095,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d csomag található."
msgstr[1] "%d csomag található."
+#, php-format
+msgid "Page %d of %d."
+msgstr "%d. oldal, összesen: %d."
+
msgid "Version"
msgstr "Verzió"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Igen"
@@ -1261,9 +1131,162 @@ msgstr "Csomagok megtagadása"
msgid "Delete Packages"
msgstr "Csomagok törlése"
+msgid "Merge into"
+msgstr "Beolvasztás ebbe:"
+
msgid "Confirm"
msgstr "Megerősítés"
+msgid "Package Actions"
+msgstr "Csomagműveletek"
+
+msgid "View PKGBUILD"
+msgstr "PKGBUILD megtekintése"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Keresés wikiben"
+
+msgid "Flagged out-of-date"
+msgstr "Elavultnak jelölve"
+
+msgid "Flag package out-of-date"
+msgstr "Csomag elavultnak jelölése"
+
+msgid "Unflag package"
+msgstr "Csomag jelölésének visszavonása"
+
+msgid "Remove vote"
+msgstr "Szavazat eltávolítása"
+
+msgid "Vote for this package"
+msgstr "Szavazás erre a csomagra"
+
+msgid "Disable notifications"
+msgstr "Értesítések kikapcsolása"
+
+msgid "Notify of new comments"
+msgstr "Értesítés új hozzászólásról"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d függő kérelem"
+msgstr[1] "%d függő kérelem"
+
+msgid "Delete Package"
+msgstr "Csomag törlése"
+
+msgid "Merge Package"
+msgstr "Csomag beolvasztása"
+
+msgid "Adopt Package"
+msgstr "Csomag örökbe fogadása"
+
+msgid "Package Base Details"
+msgstr "Alapcsomag részletei"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Kérelem lezárása: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Használd ezt az űrlapot a(z) %s%s%s alapcsomaggal kapcsolatos kérelem "
+"lezárásához."
+
+msgid "Note"
+msgstr "Megjegyzés"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"A megjegyzések mező üresen hagyható. Viszont kérelem elutasításakor erősen "
+"javasolt megjegyzés hozzáadása."
+
+msgid "Reason"
+msgstr "Ok"
+
+msgid "Accepted"
+msgstr "Elfogadva"
+
+msgid "Rejected"
+msgstr "Elutasítva"
+
+msgid "Comments"
+msgstr "Megjegyzések"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Kérelem benyújtása: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Használd ezt az űrlapot a(z) %s%s%s alapcsomaggal kapcsolatos kérelem "
+"benyújtásához, amely a következő csomagokat tartalmazza:"
+
+msgid "Request type"
+msgstr "Kérelem típusa"
+
+msgid "Deletion"
+msgstr "Törlés"
+
+msgid "Orphan"
+msgstr "Árva"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d csomagokkal kapcsolatos kérelem található."
+msgstr[1] "%d csomagokkal kapcsolatos kérelem található."
+
+msgid "Package"
+msgstr "Csomag"
+
+msgid "Filed by"
+msgstr "Kitöltő"
+
+msgid "Date"
+msgstr "Dátum"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d nap van hátra"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d óra van hátra"
+msgstr[1] "~%d óra van hátra"
+
+msgid "<1 hour left"
+msgstr "<1 óra van hátra"
+
+msgid "Accept"
+msgstr "Elfogadás"
+
+msgid "Locked"
+msgstr "Zárolva"
+
+msgid "Close"
+msgstr "Lezárás"
+
+msgid "Closed"
+msgstr "Lezárva"
+
msgid "Any type"
msgstr "Bármilyen típus"
@@ -1345,3 +1368,21 @@ msgstr "Kezdés"
msgid "Back"
msgstr "Vissza"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Hiányzó kategóriaazonosító."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Érvénytelen kategóriaazonosító."
+
+#~ msgid "Package category changed."
+#~ msgstr "A csomag kategóriája megváltoztatva."
+
+#~ msgid "Category"
+#~ msgstr "Kategória"
+
+#~ msgid "Change category"
+#~ msgstr "Kategória megváltoztatása"
+
+#~ msgid "Any"
+#~ msgstr "Bármi"
diff --git a/po/it.po b/po/it.po
index c5f83ba..0662e2b 100644
--- a/po/it.po
+++ b/po/it.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-12 13:45+0000\n"
"Last-Translator: Giovanni Scafora <giovanni@archlinux.org>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/aur/language/"
@@ -57,9 +57,6 @@ msgstr "Usa questo modulo per cercare gli account esistenti."
msgid "You must log in to view user information."
msgstr "Devi autenticarti per visualizzare le informazioni dell'utente."
-msgid "Use this form to create an account."
-msgstr "Usa questo modulo per creare un account."
-
msgid "Add Proposal"
msgstr "Aggiungi una proposta"
@@ -118,9 +115,9 @@ msgstr "Gestisci i co-manutentori"
msgid "Home"
msgstr "Home"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Benvenuto in AUR! Per ottenere maggiori informazioni, leggi le %sAUR User "
@@ -152,6 +149,9 @@ msgstr ""
"I pacchetti presenti in AUR sono stati inviati dagli utenti. Usali a tuo "
"rischio e pericolo."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr "Supporto"
@@ -180,10 +180,11 @@ msgstr ""
msgid "Deletion Request"
msgstr "Richiesta di rimozione di un pacchetto"
+#, fuzzy, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
"richiesta per rimuovere un pacchetto dall'Arch User Repository. Non usate "
"questo se il pacchetto non funziona e se può essere sistemato facilmente. "
@@ -209,14 +210,29 @@ msgstr ""
"Se vuoi discutere una richiesta, puoi usare la lista di discussione %saur-"
"requests%s. Non usare questa lista per inoltrare le tue richieste."
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Abbandona il pacchetto"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discussione"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
"La discussione generale sull'Arch User Repository (AUR) e sulla struttura "
"dei TU avviene in %saur-general%s. Per la discussione relativa allo sviluppo "
@@ -225,12 +241,12 @@ msgstr ""
msgid "Bug Reporting"
msgstr "Segnalazione di un bug"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
"Se trovi un bug nell'interfaccia web di AUR, invia un report al nostro %sbug "
"tracker%s. Usa il tracker %ssolo%s per inviare i bug di AUR. Per inviare bug "
@@ -316,6 +332,10 @@ msgstr "La password deve contenere almeno %s caratteri."
msgid "Invalid e-mail."
msgstr "L'e-mail inserita non è valida."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Resetta la password"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -387,10 +407,10 @@ msgstr "Eliminazione del pacchetto"
msgid "Delete Package: %s"
msgstr "Elimina il pacchetto: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Usa questo modulo per eliminare il pacchetto base %s%s%s e i seguenti "
"pacchetti da AUR:"
@@ -504,6 +524,12 @@ msgstr "Ultimo"
msgid "Requests"
msgstr "Richieste"
+msgid "Register"
+msgstr "Registrati"
+
+msgid "Use this form to create an account."
+msgstr "Usa questo modulo per creare un account."
+
msgid "Trusted User"
msgstr "TU"
@@ -594,6 +620,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Per utilizzare il tuo account, clicca sul link Accedi."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -648,6 +678,10 @@ msgstr "Combinazione non valida del pulsante reset e dell'e-mail."
msgid "None"
msgstr "Nessuno"
+#, php-format
+msgid "View account information for %s"
+msgstr "Visualizza le informazioni dell'account %s"
+
msgid "Error retrieving package details."
msgstr ""
"Si è verificato un errore durante il recupero dei dettagli del pacchetto."
@@ -742,17 +776,14 @@ msgstr "Il commento è stato rimosso."
msgid "You are not allowed to delete this comment."
msgstr "Non puoi rimuovere questo commento."
-msgid "Missing category ID."
-msgstr "Manca l'ID della categoria."
-
-msgid "Invalid category ID."
-msgstr "L'ID della categoria non è valido."
-
-msgid "You are not allowed to change this package category."
-msgstr "Non puoi modificare la categoria di questo pacchetto."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr ""
+"Non sei autorizzato a gestire i co-manutentori di questo pacchetto base."
-msgid "Package category changed."
-msgstr "La categoria del pacchetto è stata modificata."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "I co-menutentori del pacchetto base sono stati aggiornati."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -792,8 +823,8 @@ msgstr "Solo i TU e gli sviluppatori possono chiudere le richieste."
msgid "Request closed successfully."
msgstr "La richiesta è stata chiusa con successo."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Puoi usare questo modulo per eliminare definitivamente l'account %s di AUR."
@@ -874,9 +905,10 @@ msgstr "Riscrivi la password"
msgid "Language"
msgstr "Lingua"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"La seguente informazione è richiesta solo se vuoi inviare i pacchetti "
"nell'Arch User Repository."
@@ -937,100 +969,6 @@ msgstr "I miei pacchetti"
msgid " My Account"
msgstr "Il mio account"
-msgid "Register"
-msgstr "Registrati"
-
-msgid "unknown"
-msgstr "sconosciuta"
-
-msgid "Package Base Details"
-msgstr "Dettagli del pacchetto base"
-
-msgid "Package Actions"
-msgstr "Azioni del pacchetto"
-
-msgid "View PKGBUILD"
-msgstr "Visualizza il PKGBUILD"
-
-msgid "View Changes"
-msgstr "Mostra i cambiamenti"
-
-msgid "Download snapshot"
-msgstr "Scarica lo snapshot"
-
-msgid "Search wiki"
-msgstr "Cerca nella wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Il pacchetto non è aggiornato"
-
-msgid "Flag package out-of-date"
-msgstr "Segnala che il pacchetto non è aggiornato"
-
-msgid "Unflag package"
-msgstr "Rimuovi la segnalazione del pacchetto"
-
-msgid "Remove vote"
-msgstr "Rimuovi il voto"
-
-msgid "Vote for this package"
-msgstr "Vota per questo pacchetto"
-
-msgid "Disable notifications"
-msgstr "Disabilita le notifiche"
-
-msgid "Notify of new comments"
-msgstr "Notifica dei nuovi commenti"
-
-msgid "Manage Co-Maintainers"
-msgstr "Gestisci i co-manutentori"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d richiesta in attesa"
-msgstr[1] "%d richieste in attesa"
-
-msgid "Delete Package"
-msgstr "Elimina il pacchetto"
-
-msgid "Merge Package"
-msgstr "Unisci il pacchetto"
-
-msgid "Adopt Package"
-msgstr "Adotta il pacchetto"
-
-msgid "Git Clone URL"
-msgstr "Git Clone URL"
-
-msgid "Category"
-msgstr "Categoria"
-
-msgid "Change category"
-msgstr "Cambia la categoria"
-
-msgid "Submitter"
-msgstr "Contributore"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Visualizza le informazioni dell'account %s"
-
-msgid "Maintainer"
-msgstr "Manutentore"
-
-msgid "Last Packager"
-msgstr "Ultimo pacchettizzatore"
-
-msgid "Votes"
-msgstr "Voti"
-
-msgid "First Submitted"
-msgstr "Data del primo invio"
-
-msgid "Last Updated"
-msgstr "Ultimo aggiornamento"
-
msgid "Add Comment"
msgstr "Aggiungi un commento"
@@ -1059,9 +997,18 @@ msgstr "eliminato"
msgid "All comments"
msgstr "Tutti i commenti"
+msgid "unknown"
+msgstr "sconosciuta"
+
msgid "Package Details"
msgstr "Dettagli del pacchetto"
+msgid "Git Clone URL"
+msgstr "Git Clone URL"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Pacchetto base"
@@ -1074,6 +1021,9 @@ msgstr "URL dell'upstream"
msgid "Visit the website for"
msgstr "Visita il sito web di"
+msgid "Keywords"
+msgstr "Parole chiave"
+
msgid "Licenses"
msgstr "Licenze"
@@ -1089,112 +1039,32 @@ msgstr "Fornisce"
msgid "Replaces"
msgstr "Rimpiazza"
-msgid "Dependencies"
-msgstr "Dipendenze"
-
-msgid "Required by"
-msgstr "Richiesto da"
-
-msgid "Sources"
-msgstr "Sorgenti"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Chiudi la richiesta: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "Usa questo modulo per chiudere la richiesta del pacchetto base %s%s%s."
-
-msgid "Note"
-msgstr "Nota"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Il campo dei commenti può essere lasciato vuoto. Tuttavia, è consigliabile "
-"aggiungere un commento quando non si accetta una richiesta."
-
-msgid "Reason"
-msgstr "Motivo"
-
-msgid "Accepted"
-msgstr "Accettato"
-
-msgid "Rejected"
-msgstr "Rifiutato"
-
-msgid "Comments"
-msgstr "Commenti"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Richiesta di file: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Usa questo modulo per inviare una richiesta per il pacchetto base %s%s%s che "
-"include i seguenti pacchetti:"
-
-msgid "Request type"
-msgstr "Tipo di richiesta"
-
-msgid "Deletion"
-msgstr "Eliminazione"
-
-msgid "Orphan"
-msgstr "Orfano"
-
-msgid "Merge into"
-msgstr "Unisci con"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "È stato trovato %d pacchetto."
-msgstr[1] "Sono stati trovati %d pacchetti."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Pagina %d du %d."
-
-msgid "Package"
-msgstr "Pacchetto"
-
-msgid "Filed by"
-msgstr "Inviato da"
+msgid "Submitter"
+msgstr "Contributore"
-msgid "Date"
-msgstr "Data"
+msgid "Maintainer"
+msgstr "Manutentore"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d giorni rimanenti"
+msgid "Last Packager"
+msgstr "Ultimo pacchettizzatore"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d ora rimanente"
-msgstr[1] "~%d ore rimanenti"
+msgid "Votes"
+msgstr "Voti"
-msgid "<1 hour left"
-msgstr "<1 ora rimanente"
+msgid "First Submitted"
+msgstr "Data del primo invio"
-msgid "Accept"
-msgstr "Accetta"
+msgid "Last Updated"
+msgstr "Ultimo aggiornamento"
-msgid "Locked"
-msgstr "Bloccato"
+msgid "Dependencies"
+msgstr "Dipendenze"
-msgid "Close"
-msgstr "Chiudi"
+msgid "Required by"
+msgstr "Richiesto da"
-msgid "Closed"
-msgstr "Chiuso"
+msgid "Sources"
+msgstr "Sorgenti"
msgid "Name, Description"
msgstr "Nome, descrizione"
@@ -1238,15 +1108,9 @@ msgstr "Discendente"
msgid "Enter search criteria"
msgstr "Inserisci un criterio di ricerca"
-msgid "Any"
-msgstr "Qualsiasi"
-
msgid "Search by"
msgstr "Cerca per"
-msgid "Keywords"
-msgstr "Parole chiave"
-
msgid "Out of Date"
msgstr "Non aggiornati"
@@ -1278,9 +1142,18 @@ msgid_plural "%d packages found."
msgstr[0] "È stato trovato %d pacchetto."
msgstr[1] "Sono stati trovati %d pacchetti."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Pagina %d du %d."
+
msgid "Version"
msgstr "Versione"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sì"
@@ -1305,9 +1178,160 @@ msgstr "Abbandona il pacchetto"
msgid "Delete Packages"
msgstr "Elimina il pacchetto"
+msgid "Merge into"
+msgstr "Unisci con"
+
msgid "Confirm"
msgstr "Conferma"
+msgid "Package Actions"
+msgstr "Azioni del pacchetto"
+
+msgid "View PKGBUILD"
+msgstr "Visualizza il PKGBUILD"
+
+msgid "View Changes"
+msgstr "Mostra i cambiamenti"
+
+msgid "Download snapshot"
+msgstr "Scarica lo snapshot"
+
+msgid "Search wiki"
+msgstr "Cerca nella wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Il pacchetto non è aggiornato"
+
+msgid "Flag package out-of-date"
+msgstr "Segnala che il pacchetto non è aggiornato"
+
+msgid "Unflag package"
+msgstr "Rimuovi la segnalazione del pacchetto"
+
+msgid "Remove vote"
+msgstr "Rimuovi il voto"
+
+msgid "Vote for this package"
+msgstr "Vota per questo pacchetto"
+
+msgid "Disable notifications"
+msgstr "Disabilita le notifiche"
+
+msgid "Notify of new comments"
+msgstr "Notifica dei nuovi commenti"
+
+msgid "Manage Co-Maintainers"
+msgstr "Gestisci i co-manutentori"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d richiesta in attesa"
+msgstr[1] "%d richieste in attesa"
+
+msgid "Delete Package"
+msgstr "Elimina il pacchetto"
+
+msgid "Merge Package"
+msgstr "Unisci il pacchetto"
+
+msgid "Adopt Package"
+msgstr "Adotta il pacchetto"
+
+msgid "Package Base Details"
+msgstr "Dettagli del pacchetto base"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Chiudi la richiesta: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "Usa questo modulo per chiudere la richiesta del pacchetto base %s%s%s."
+
+msgid "Note"
+msgstr "Nota"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Il campo dei commenti può essere lasciato vuoto. Tuttavia, è consigliabile "
+"aggiungere un commento quando non si accetta una richiesta."
+
+msgid "Reason"
+msgstr "Motivo"
+
+msgid "Accepted"
+msgstr "Accettato"
+
+msgid "Rejected"
+msgstr "Rifiutato"
+
+msgid "Comments"
+msgstr "Commenti"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Richiesta di file: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Usa questo modulo per inviare una richiesta per il pacchetto base %s%s%s che "
+"include i seguenti pacchetti:"
+
+msgid "Request type"
+msgstr "Tipo di richiesta"
+
+msgid "Deletion"
+msgstr "Eliminazione"
+
+msgid "Orphan"
+msgstr "Orfano"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "È stato trovato %d pacchetto."
+msgstr[1] "Sono stati trovati %d pacchetti."
+
+msgid "Package"
+msgstr "Pacchetto"
+
+msgid "Filed by"
+msgstr "Inviato da"
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d giorni rimanenti"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d ora rimanente"
+msgstr[1] "~%d ore rimanenti"
+
+msgid "<1 hour left"
+msgstr "<1 ora rimanente"
+
+msgid "Accept"
+msgstr "Accetta"
+
+msgid "Locked"
+msgstr "Bloccato"
+
+msgid "Close"
+msgstr "Chiudi"
+
+msgid "Closed"
+msgstr "Chiuso"
+
msgid "Any type"
msgstr "Qualsiasi tipo"
@@ -1389,3 +1413,24 @@ msgstr "Home"
msgid "Back"
msgstr "Precedente"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Manca l'ID della categoria."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "L'ID della categoria non è valido."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "Non puoi modificare la categoria di questo pacchetto."
+
+#~ msgid "Package category changed."
+#~ msgstr "La categoria del pacchetto è stata modificata."
+
+#~ msgid "Category"
+#~ msgstr "Categoria"
+
+#~ msgid "Change category"
+#~ msgstr "Cambia la categoria"
+
+#~ msgid "Any"
+#~ msgstr "Qualsiasi"
diff --git a/po/ja.po b/po/ja.po
index 7d300a6..0d9d5ea 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/aur/language/"
@@ -55,9 +55,6 @@ msgstr "アカウントの検索はこのフォームを使って下さい。"
msgid "You must log in to view user information."
msgstr "ユーザー情報を見るにはログインする必要があります。"
-msgid "Use this form to create an account."
-msgstr "このフォームを使ってアカウントを作成してください。"
-
msgid "Add Proposal"
msgstr "提案を追加する"
@@ -116,9 +113,9 @@ msgstr ""
msgid "Home"
msgstr "ホーム"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"AUR にようこそ!AUR についての詳しい情報は %sAUR User Guidelines%s や %sAUR "
@@ -149,6 +146,9 @@ msgstr ""
"ユーザーが作成したパッケージにサポートはありません。それぞれのファイルの利用"
"は自己責任でお願いします。"
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -172,10 +172,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -192,14 +193,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "パッケージの放棄"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "議論"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -207,10 +223,10 @@ msgstr "バグレポート"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -290,6 +306,10 @@ msgstr "パスワードは最低でも %s 文字以上必要です。"
msgid "Invalid e-mail."
msgstr "不正なメールアドレス。"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "パスワードのリセット"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -353,10 +373,10 @@ msgstr "パッケージの削除"
msgid "Delete Package: %s"
msgstr "削除するパッケージ: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"AUR からパッケージベース %s%s%s と以下のパッケージを削除するにはこのフォーム"
"を使って下さい:"
@@ -463,6 +483,12 @@ msgstr "最後"
msgid "Requests"
msgstr "リクエスト"
+msgid "Register"
+msgstr "登録"
+
+msgid "Use this form to create an account."
+msgstr "このフォームを使ってアカウントを作成してください。"
+
msgid "Trusted User"
msgstr "Trusted User"
@@ -555,6 +581,10 @@ msgid "Click on the Login link above to use your account."
msgstr "あなたのアカウントを使うには上のログインリンクをクリックして下さい。"
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -606,6 +636,10 @@ msgstr "メールアドレスとリセットキーの不正な組み合わせ。
msgid "None"
msgstr "なし"
+#, php-format
+msgid "View account information for %s"
+msgstr "%s のアカウント情報を見る"
+
msgid "Error retrieving package details."
msgstr "パッケージの詳細の取得エラー。"
@@ -695,17 +729,13 @@ msgstr "コメントが削除されました。"
msgid "You are not allowed to delete this comment."
msgstr "このコメントを削除することはできません。"
-msgid "Missing category ID."
-msgstr "カテゴリ ID がありません。"
-
-msgid "Invalid category ID."
-msgstr "不正なカテゴリ ID です。"
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "このパッケージのカテゴリを変更することはできません。"
-msgid "Package category changed."
-msgstr "パッケージのカテゴリが変更されました。"
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "選択されたパッケージが削除されました。"
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -744,8 +774,8 @@ msgstr "TU と開発者だけがリクエストをクローズできます。"
msgid "Request closed successfully."
msgstr "リクエストのクローズが完了しました。"
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"このフォームを使って AUR アカウント %s を恒久的に削除することができます。"
@@ -826,9 +856,10 @@ msgstr "パスワードの再入力"
msgid "Language"
msgstr "言語"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -885,99 +916,6 @@ msgstr "自分のパッケージ"
msgid " My Account"
msgstr "アカウント"
-msgid "Register"
-msgstr "登録"
-
-msgid "unknown"
-msgstr "不明"
-
-msgid "Package Base Details"
-msgstr "パッケージベースの詳細"
-
-msgid "Package Actions"
-msgstr "パッケージアクション"
-
-msgid "View PKGBUILD"
-msgstr "PKGBUILD を見る"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "wiki を検索"
-
-msgid "Flagged out-of-date"
-msgstr "out-of-date フラグを立てる"
-
-msgid "Flag package out-of-date"
-msgstr "パッケージの out-of-date フラグを立てる"
-
-msgid "Unflag package"
-msgstr "パッケージのフラグを降ろす"
-
-msgid "Remove vote"
-msgstr "投票を削除する"
-
-msgid "Vote for this package"
-msgstr "このパッケージに投票する"
-
-msgid "Disable notifications"
-msgstr "通知を止める"
-
-msgid "Notify of new comments"
-msgstr "新しいコメントを通知"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d 個の保留リクエスト。"
-
-msgid "Delete Package"
-msgstr "パッケージを削除"
-
-msgid "Merge Package"
-msgstr "パッケージのマージ"
-
-msgid "Adopt Package"
-msgstr "パッケージを承継する"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "カテゴリ"
-
-msgid "Change category"
-msgstr "カテゴリの変更"
-
-msgid "Submitter"
-msgstr "投稿者"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "%s のアカウント情報を見る"
-
-msgid "Maintainer"
-msgstr "メンテナ"
-
-msgid "Last Packager"
-msgstr "最後のパッケージ作成者"
-
-msgid "Votes"
-msgstr "投票数"
-
-msgid "First Submitted"
-msgstr "最初の投稿"
-
-msgid "Last Updated"
-msgstr "最終更新"
-
msgid "Add Comment"
msgstr "コメントを投稿する"
@@ -1006,9 +944,18 @@ msgstr "削除済み"
msgid "All comments"
msgstr "全てのコメント"
+msgid "unknown"
+msgstr "不明"
+
msgid "Package Details"
msgstr "パッケージの詳細"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "パッケージベース"
@@ -1021,6 +968,9 @@ msgstr "上流 URL"
msgid "Visit the website for"
msgstr "ウェブサイトを見る"
+msgid "Keywords"
+msgstr "キーワード"
+
msgid "Licenses"
msgstr "ライセンス"
@@ -1036,112 +986,32 @@ msgstr "提供"
msgid "Replaces"
msgstr "置換"
-msgid "Dependencies"
-msgstr "依存パッケージ"
-
-msgid "Required by"
-msgstr "必要としているパッケージ"
-
-msgid "Sources"
-msgstr "ソース"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "クローズリクエスト: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"このフォームを使ってパッケージベース %s%s%s のリクエストをクローズすることが"
-"できます。"
-
-msgid "Note"
-msgstr "ノート"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"コメント欄は空でもかまいません。ただし、リクエストを却下されたときはコメント"
-"を追加することを強く推奨します。"
-
-msgid "Reason"
-msgstr "理由"
-
-msgid "Accepted"
-msgstr "承認されました"
-
-msgid "Rejected"
-msgstr "却下されました"
-
-msgid "Comments"
-msgstr "コメント"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "リクエストを送る: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"このフォームを使って以下のパッケージを含むパッケージベース %s%s%s にリクエス"
-"トを送ることができます:"
-
-msgid "Request type"
-msgstr "リクエストの種類"
-
-msgid "Deletion"
-msgstr "削除"
-
-msgid "Orphan"
-msgstr "孤児"
-
-msgid "Merge into"
-msgstr "マージ"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "パッケージリクエストが %d 個見つかりました。"
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "ページ %d / %d。"
-
-msgid "Package"
-msgstr "パッケージ"
-
-msgid "Filed by"
-msgstr "送信者"
+msgid "Submitter"
+msgstr "投稿者"
-msgid "Date"
-msgstr "日付"
+msgid "Maintainer"
+msgstr "メンテナ"
-#, php-format
-msgid "~%d days left"
-msgstr "残り ~%d 日"
+msgid "Last Packager"
+msgstr "最後のパッケージ作成者"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "残り ~%d 時間"
+msgid "Votes"
+msgstr "投票数"
-msgid "<1 hour left"
-msgstr "残り <1 時間"
+msgid "First Submitted"
+msgstr "最初の投稿"
-msgid "Accept"
-msgstr "承認"
+msgid "Last Updated"
+msgstr "最終更新"
-msgid "Locked"
-msgstr "ロックされています"
+msgid "Dependencies"
+msgstr "依存パッケージ"
-msgid "Close"
-msgstr "クローズ"
+msgid "Required by"
+msgstr "必要としているパッケージ"
-msgid "Closed"
-msgstr "クローズされました"
+msgid "Sources"
+msgstr "ソース"
msgid "Name, Description"
msgstr "名前、説明"
@@ -1185,15 +1055,9 @@ msgstr "降順"
msgid "Enter search criteria"
msgstr "検索条件を入力"
-msgid "Any"
-msgstr "全て"
-
msgid "Search by"
msgstr "検索対象"
-msgid "Keywords"
-msgstr "キーワード"
-
msgid "Out of Date"
msgstr "Out of Date"
@@ -1223,9 +1087,18 @@ msgid "%d package found."
msgid_plural "%d packages found."
msgstr[0] "パッケージが %d 個見つかりました。"
+#, php-format
+msgid "Page %d of %d."
+msgstr "ページ %d / %d。"
+
msgid "Version"
msgstr "バージョン"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "はい"
@@ -1250,9 +1123,159 @@ msgstr "パッケージの放棄"
msgid "Delete Packages"
msgstr "パッケージの削除"
+msgid "Merge into"
+msgstr "マージ"
+
msgid "Confirm"
msgstr "確認"
+msgid "Package Actions"
+msgstr "パッケージアクション"
+
+msgid "View PKGBUILD"
+msgstr "PKGBUILD を見る"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "wiki を検索"
+
+msgid "Flagged out-of-date"
+msgstr "out-of-date フラグを立てる"
+
+msgid "Flag package out-of-date"
+msgstr "パッケージの out-of-date フラグを立てる"
+
+msgid "Unflag package"
+msgstr "パッケージのフラグを降ろす"
+
+msgid "Remove vote"
+msgstr "投票を削除する"
+
+msgid "Vote for this package"
+msgstr "このパッケージに投票する"
+
+msgid "Disable notifications"
+msgstr "通知を止める"
+
+msgid "Notify of new comments"
+msgstr "新しいコメントを通知"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d 個の保留リクエスト。"
+
+msgid "Delete Package"
+msgstr "パッケージを削除"
+
+msgid "Merge Package"
+msgstr "パッケージのマージ"
+
+msgid "Adopt Package"
+msgstr "パッケージを承継する"
+
+msgid "Package Base Details"
+msgstr "パッケージベースの詳細"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "クローズリクエスト: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"このフォームを使ってパッケージベース %s%s%s のリクエストをクローズすることが"
+"できます。"
+
+msgid "Note"
+msgstr "ノート"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"コメント欄は空でもかまいません。ただし、リクエストを却下されたときはコメント"
+"を追加することを強く推奨します。"
+
+msgid "Reason"
+msgstr "理由"
+
+msgid "Accepted"
+msgstr "承認されました"
+
+msgid "Rejected"
+msgstr "却下されました"
+
+msgid "Comments"
+msgstr "コメント"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "リクエストを送る: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"このフォームを使って以下のパッケージを含むパッケージベース %s%s%s にリクエス"
+"トを送ることができます:"
+
+msgid "Request type"
+msgstr "リクエストの種類"
+
+msgid "Deletion"
+msgstr "削除"
+
+msgid "Orphan"
+msgstr "孤児"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "パッケージリクエストが %d 個見つかりました。"
+
+msgid "Package"
+msgstr "パッケージ"
+
+msgid "Filed by"
+msgstr "送信者"
+
+msgid "Date"
+msgstr "日付"
+
+#, php-format
+msgid "~%d days left"
+msgstr "残り ~%d 日"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "残り ~%d 時間"
+
+msgid "<1 hour left"
+msgstr "残り <1 時間"
+
+msgid "Accept"
+msgstr "承認"
+
+msgid "Locked"
+msgstr "ロックされています"
+
+msgid "Close"
+msgstr "クローズ"
+
+msgid "Closed"
+msgstr "クローズされました"
+
msgid "Any type"
msgstr "全てのタイプ"
@@ -1334,3 +1357,21 @@ msgstr "開始"
msgid "Back"
msgstr "前へ"
+
+#~ msgid "Missing category ID."
+#~ msgstr "カテゴリ ID がありません。"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "不正なカテゴリ ID です。"
+
+#~ msgid "Package category changed."
+#~ msgstr "パッケージのカテゴリが変更されました。"
+
+#~ msgid "Category"
+#~ msgstr "カテゴリ"
+
+#~ msgid "Change category"
+#~ msgstr "カテゴリの変更"
+
+#~ msgid "Any"
+#~ msgstr "全て"
diff --git a/po/nb.po b/po/nb.po
index ee2e251..1f9c867 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/aur/"
@@ -55,9 +55,6 @@ msgstr "Bruk dette skjemaet for å lete etter eksisterende kontoer."
msgid "You must log in to view user information."
msgstr "Du må logge inn for å se brukerinformasjon."
-msgid "Use this form to create an account."
-msgstr "Bruk dette feltet for å opprette en konto."
-
msgid "Add Proposal"
msgstr "Legg til forslag"
@@ -116,9 +113,9 @@ msgstr ""
msgid "Home"
msgstr "Hjem"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Velkommen til AUR! Vennligst les %sAUR Brukerveiledning%s og %sAUR TU "
@@ -148,6 +145,9 @@ msgstr ""
"Uoffisielle pakker har innhold produsert av andre brukere. All bruk av de "
"tilgjengelige filene er på eget ansvar."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -171,10 +171,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -191,14 +192,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Gjør pakker foreldreløse"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Diskusjon"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -206,10 +222,10 @@ msgstr "Feilrapportering"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -288,6 +304,10 @@ msgstr "Passordet ditt må være minst %s tegn."
msgid "Invalid e-mail."
msgstr "Ugyldig e-post."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Tilbakestill passord"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -352,10 +372,10 @@ msgstr "Sletting av pakke"
msgid "Delete Package: %s"
msgstr "Slett pakke: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Bruk dette skjemaet for å slette grunnpakken %s%s%s og følgende pakker fra "
"AUR:"
@@ -461,6 +481,12 @@ msgstr "Siste"
msgid "Requests"
msgstr "Forespørsler"
+msgid "Register"
+msgstr "Registrer"
+
+msgid "Use this form to create an account."
+msgstr "Bruk dette feltet for å opprette en konto."
+
msgid "Trusted User"
msgstr "Betrodd bruker"
@@ -554,6 +580,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Klikk på Logg inn lenken over for å bruke kontoen."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -607,6 +637,10 @@ msgstr "Ugyldig kombinasjon av e-post og nullstillingsnøkkel."
msgid "None"
msgstr "Ingen"
+#, php-format
+msgid "View account information for %s"
+msgstr "Vis kontoinformasjon for %s"
+
msgid "Error retrieving package details."
msgstr "Kunne ikke finne frem pakkedetaljer."
@@ -697,17 +731,13 @@ msgstr "Kommentar slettet."
msgid "You are not allowed to delete this comment."
msgstr "Du har ikke tilgang til å slette denne kommentaren."
-msgid "Missing category ID."
-msgstr "Manglende kategori-ID."
-
-msgid "Invalid category ID."
-msgstr "Ugyldig kategori-ID."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Du har ikke tilgang til å endre denne pakkekategorien."
-msgid "Package category changed."
-msgstr "Pakkekategori endret."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "De valgte pakkene har blitt slettet."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -746,8 +776,8 @@ msgstr "Bare betrodde brukere og utviklere kan lukke forespørsler."
msgid "Request closed successfully."
msgstr "Forespørselen ble lukket."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Dette skjemaet kan brukes for å permanent slette AUR kontoen %s."
#, php-format
@@ -827,9 +857,10 @@ msgstr "Skriv inn passordet på nytt"
msgid "Language"
msgstr "Språk"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -886,100 +917,6 @@ msgstr "Mine pakker"
msgid " My Account"
msgstr " Min konto"
-msgid "Register"
-msgstr "Registrer"
-
-msgid "unknown"
-msgstr "ukjent"
-
-msgid "Package Base Details"
-msgstr "Grunnpakkedetaljer"
-
-msgid "Package Actions"
-msgstr "Pakkehandlinger"
-
-msgid "View PKGBUILD"
-msgstr "Vis PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Søk wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Markert som utdatert"
-
-msgid "Flag package out-of-date"
-msgstr "Marker pakke som utdatert"
-
-msgid "Unflag package"
-msgstr "Fjern markering"
-
-msgid "Remove vote"
-msgstr "Angre stemme"
-
-msgid "Vote for this package"
-msgstr "Stem på denne pakken"
-
-msgid "Disable notifications"
-msgstr "Slå av beskjeder"
-
-msgid "Notify of new comments"
-msgstr "Gi beskjed om nye kommentarer"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d ventende forespørsel"
-msgstr[1] "%d ventende forespørsler"
-
-msgid "Delete Package"
-msgstr "Slett pakke"
-
-msgid "Merge Package"
-msgstr "Slå sammen pakke"
-
-msgid "Adopt Package"
-msgstr "Adopter pakke"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Kategori"
-
-msgid "Change category"
-msgstr "Endre kategori"
-
-msgid "Submitter"
-msgstr "Innsender"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Vis kontoinformasjon for %s"
-
-msgid "Maintainer"
-msgstr "Vedlikeholder"
-
-msgid "Last Packager"
-msgstr "Siste innpakker"
-
-msgid "Votes"
-msgstr "Stemmer"
-
-msgid "First Submitted"
-msgstr "Først innsendt"
-
-msgid "Last Updated"
-msgstr "Sist oppdatert"
-
msgid "Add Comment"
msgstr "Legg til kommentar"
@@ -1008,9 +945,18 @@ msgstr "slettet"
msgid "All comments"
msgstr "Alle kommentarer"
+msgid "unknown"
+msgstr "ukjent"
+
msgid "Package Details"
msgstr "Pakkedetaljer"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Grunnpakke"
@@ -1023,6 +969,9 @@ msgstr "Prosjektets URL"
msgid "Visit the website for"
msgstr "Besøk nettsiden til"
+msgid "Keywords"
+msgstr "Nøkkelord"
+
msgid "Licenses"
msgstr "Lisenser"
@@ -1038,112 +987,32 @@ msgstr "Tilbyr"
msgid "Replaces"
msgstr "Erstatter"
-msgid "Dependencies"
-msgstr "Avhengigheter"
-
-msgid "Required by"
-msgstr "Trengs av"
-
-msgid "Sources"
-msgstr "Kilder"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Lukk forespørsel: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "Bruk dette skjemaet for å lukke forespørselen for grunnpakken %s%s%s."
-
-msgid "Note"
-msgstr "OBS"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Kommentarfeltet kan stå tomt, men det anbefales å legge igjen en melding når "
-"en forespørsel avvises."
-
-msgid "Reason"
-msgstr "Begrunnelse"
-
-msgid "Accepted"
-msgstr "Akseptert"
-
-msgid "Rejected"
-msgstr "Avvist"
-
-msgid "Comments"
-msgstr "Kommentarer"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Send inn forespørsel: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Bruk dette skjemaet for å registrere en forespørsel for grunnpakken %s%s%s "
-"som inkluderer følgende pakker:"
-
-msgid "Request type"
-msgstr "Type forespørsel"
-
-msgid "Deletion"
-msgstr "Sletting"
-
-msgid "Orphan"
-msgstr "Foreldreløs"
-
-msgid "Merge into"
-msgstr "Flett med"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "Fant %d pakkeforespørsel."
-msgstr[1] "Fant %d pakkeforespørsler."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Side %d av %d."
-
-msgid "Package"
-msgstr "Pakke"
-
-msgid "Filed by"
-msgstr "Registrert av"
+msgid "Submitter"
+msgstr "Innsender"
-msgid "Date"
-msgstr "Dato"
+msgid "Maintainer"
+msgstr "Vedlikeholder"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d dager igjen"
+msgid "Last Packager"
+msgstr "Siste innpakker"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d time igjen"
-msgstr[1] "~%d timer igjen"
+msgid "Votes"
+msgstr "Stemmer"
-msgid "<1 hour left"
-msgstr "<1 time igjen"
+msgid "First Submitted"
+msgstr "Først innsendt"
-msgid "Accept"
-msgstr "Godta"
+msgid "Last Updated"
+msgstr "Sist oppdatert"
-msgid "Locked"
-msgstr "Låst"
+msgid "Dependencies"
+msgstr "Avhengigheter"
-msgid "Close"
-msgstr "Lukk"
+msgid "Required by"
+msgstr "Trengs av"
-msgid "Closed"
-msgstr "Lukket"
+msgid "Sources"
+msgstr "Kilder"
msgid "Name, Description"
msgstr "Navn, beskrivelse"
@@ -1187,15 +1056,9 @@ msgstr "Synkende"
msgid "Enter search criteria"
msgstr "Fyll ut søkekriterier"
-msgid "Any"
-msgstr "Hvilken som helst"
-
msgid "Search by"
msgstr "Søk etter"
-msgid "Keywords"
-msgstr "Nøkkelord"
-
msgid "Out of Date"
msgstr "Foreldet"
@@ -1226,9 +1089,18 @@ msgid_plural "%d packages found."
msgstr[0] "Fant %d pakke."
msgstr[1] "Fant %d pakker."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Side %d av %d."
+
msgid "Version"
msgstr "Versjon"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Ja"
@@ -1253,9 +1125,160 @@ msgstr "Gjør pakker foreldreløse"
msgid "Delete Packages"
msgstr "Slett pakker"
+msgid "Merge into"
+msgstr "Flett med"
+
msgid "Confirm"
msgstr "Bekreft"
+msgid "Package Actions"
+msgstr "Pakkehandlinger"
+
+msgid "View PKGBUILD"
+msgstr "Vis PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Søk wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Markert som utdatert"
+
+msgid "Flag package out-of-date"
+msgstr "Marker pakke som utdatert"
+
+msgid "Unflag package"
+msgstr "Fjern markering"
+
+msgid "Remove vote"
+msgstr "Angre stemme"
+
+msgid "Vote for this package"
+msgstr "Stem på denne pakken"
+
+msgid "Disable notifications"
+msgstr "Slå av beskjeder"
+
+msgid "Notify of new comments"
+msgstr "Gi beskjed om nye kommentarer"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d ventende forespørsel"
+msgstr[1] "%d ventende forespørsler"
+
+msgid "Delete Package"
+msgstr "Slett pakke"
+
+msgid "Merge Package"
+msgstr "Slå sammen pakke"
+
+msgid "Adopt Package"
+msgstr "Adopter pakke"
+
+msgid "Package Base Details"
+msgstr "Grunnpakkedetaljer"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Lukk forespørsel: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "Bruk dette skjemaet for å lukke forespørselen for grunnpakken %s%s%s."
+
+msgid "Note"
+msgstr "OBS"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Kommentarfeltet kan stå tomt, men det anbefales å legge igjen en melding når "
+"en forespørsel avvises."
+
+msgid "Reason"
+msgstr "Begrunnelse"
+
+msgid "Accepted"
+msgstr "Akseptert"
+
+msgid "Rejected"
+msgstr "Avvist"
+
+msgid "Comments"
+msgstr "Kommentarer"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Send inn forespørsel: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Bruk dette skjemaet for å registrere en forespørsel for grunnpakken %s%s%s "
+"som inkluderer følgende pakker:"
+
+msgid "Request type"
+msgstr "Type forespørsel"
+
+msgid "Deletion"
+msgstr "Sletting"
+
+msgid "Orphan"
+msgstr "Foreldreløs"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "Fant %d pakkeforespørsel."
+msgstr[1] "Fant %d pakkeforespørsler."
+
+msgid "Package"
+msgstr "Pakke"
+
+msgid "Filed by"
+msgstr "Registrert av"
+
+msgid "Date"
+msgstr "Dato"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d dager igjen"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d time igjen"
+msgstr[1] "~%d timer igjen"
+
+msgid "<1 hour left"
+msgstr "<1 time igjen"
+
+msgid "Accept"
+msgstr "Godta"
+
+msgid "Locked"
+msgstr "Låst"
+
+msgid "Close"
+msgstr "Lukk"
+
+msgid "Closed"
+msgstr "Lukket"
+
msgid "Any type"
msgstr "Hvilken som helst type"
@@ -1337,3 +1360,21 @@ msgstr "Start"
msgid "Back"
msgstr "Tilbake"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Manglende kategori-ID."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Ugyldig kategori-ID."
+
+#~ msgid "Package category changed."
+#~ msgstr "Pakkekategori endret."
+
+#~ msgid "Category"
+#~ msgstr "Kategori"
+
+#~ msgid "Change category"
+#~ msgstr "Endre kategori"
+
+#~ msgid "Any"
+#~ msgstr "Hvilken som helst"
diff --git a/po/nl.po b/po/nl.po
index 2f2869b..3da1045 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/aur/language/nl/)\n"
@@ -54,9 +54,6 @@ msgstr "Gebruik dit formulier om bestaande accounts zoeken."
msgid "You must log in to view user information."
msgstr "U moet inloggen om de gebruikersinformatie te bekijken."
-msgid "Use this form to create an account."
-msgstr "Gebruik dit formulier om een ​​account aan te maken."
-
msgid "Add Proposal"
msgstr "Voeg Voorstel Toe"
@@ -115,9 +112,9 @@ msgstr ""
msgid "Home"
msgstr "Home"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Welkom bij de AUR! Lees de %sAUR Gebruikersvoorschriften%s en %sAUR "
@@ -147,6 +144,9 @@ msgstr ""
"Niet-ondersteunde pakketten zijn door gebruikers geproduceerde content. Elk "
"gebruik van de geleverde bestanden is op eigen risico."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -170,10 +170,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -190,14 +191,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Onteigen Pakketten"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discussie"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -205,10 +221,10 @@ msgstr "Bug Rapportage"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -287,6 +303,10 @@ msgstr "Je wachtwoord moet minimaal %s karakters lang zijn."
msgid "Invalid e-mail."
msgstr "Ongeldig e-mail adres."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Wachtwoord Reset"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -352,7 +372,7 @@ msgstr "Verwijder Pakket: %s"
#, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
msgid "Deletion of a package is permanent. "
@@ -458,6 +478,12 @@ msgstr "Laatste"
msgid "Requests"
msgstr ""
+msgid "Register"
+msgstr "Registreren"
+
+msgid "Use this form to create an account."
+msgstr "Gebruik dit formulier om een ​​account aan te maken."
+
msgid "Trusted User"
msgstr "Vertrouwde Gebruiker"
@@ -550,6 +576,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Klik op de Login link hierboven om je account te gebruiken"
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -605,6 +635,10 @@ msgstr "Ongeldige e-mail en reset-toets combinatie."
msgid "None"
msgstr "Geen"
+#, php-format
+msgid "View account information for %s"
+msgstr "Toon accountinformatie voor %s"
+
msgid "Error retrieving package details."
msgstr "Fout bij het ophalen van pakketdetails."
@@ -697,17 +731,13 @@ msgstr "Comment is verwijderd."
msgid "You are not allowed to delete this comment."
msgstr "Je hebt geen toestemming deze comment te verwijderen."
-msgid "Missing category ID."
-msgstr "Missende categorie ID."
-
-msgid "Invalid category ID."
-msgstr "Ongeldige categorie ID."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Je hebt geen toestemming deze pakketcategorie aan te passen."
-msgid "Package category changed."
-msgstr "Pakketcategorie aangepast."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "De geselecteerde pakketten zijn verwijderd."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -746,9 +776,9 @@ msgstr ""
msgid "Request closed successfully."
msgstr ""
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Gebruik dit formulier om een ​​account aan te maken."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -827,9 +857,10 @@ msgstr "Voer wachtwoord opnieuw in"
msgid "Language"
msgstr "Taal"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -886,100 +917,6 @@ msgstr "Mijn pakketten"
msgid " My Account"
msgstr "Mijn Account"
-msgid "Register"
-msgstr "Registreren"
-
-msgid "unknown"
-msgstr "onbekend"
-
-msgid "Package Base Details"
-msgstr ""
-
-msgid "Package Actions"
-msgstr "Pakket Acties"
-
-msgid "View PKGBUILD"
-msgstr "Toon PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr ""
-
-msgid "Flagged out-of-date"
-msgstr "Markeer als verouderd"
-
-msgid "Flag package out-of-date"
-msgstr "Markeer pakket als verouderd"
-
-msgid "Unflag package"
-msgstr "Verwijder markering"
-
-msgid "Remove vote"
-msgstr "Verwijder stem"
-
-msgid "Vote for this package"
-msgstr "Stem voor dit pakket"
-
-msgid "Disable notifications"
-msgstr "Schakel notificaties uit"
-
-msgid "Notify of new comments"
-msgstr "Notificatie bij nieuwe comment"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] ""
-msgstr[1] ""
-
-msgid "Delete Package"
-msgstr "Verwijder Pakket"
-
-msgid "Merge Package"
-msgstr "Voeg Pakket Samen"
-
-msgid "Adopt Package"
-msgstr "Adopteer Pakket"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Categorie"
-
-msgid "Change category"
-msgstr "Verander categorie"
-
-msgid "Submitter"
-msgstr "Inzender"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Toon accountinformatie voor %s"
-
-msgid "Maintainer"
-msgstr "Beheerder"
-
-msgid "Last Packager"
-msgstr ""
-
-msgid "Votes"
-msgstr "Stemmen"
-
-msgid "First Submitted"
-msgstr "Toegevoegd"
-
-msgid "Last Updated"
-msgstr "Laatste Update"
-
msgid "Add Comment"
msgstr "Voeg Comment Toe"
@@ -1008,9 +945,18 @@ msgstr ""
msgid "All comments"
msgstr "Alle comments"
+msgid "unknown"
+msgstr "onbekend"
+
msgid "Package Details"
msgstr "Pakketdetails"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr ""
@@ -1023,6 +969,9 @@ msgstr "Upstream URL"
msgid "Visit the website for"
msgstr "Bezoek de website voor"
+msgid "Keywords"
+msgstr "Sleutelwoorden"
+
msgid "Licenses"
msgstr ""
@@ -1038,108 +987,32 @@ msgstr ""
msgid "Replaces"
msgstr ""
-msgid "Dependencies"
-msgstr "Afhankelijkheden"
-
-msgid "Required by"
-msgstr "Vereist door"
-
-msgid "Sources"
-msgstr "Bronnen"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr ""
-
-msgid "Accepted"
-msgstr ""
-
-msgid "Rejected"
-msgstr ""
-
-msgid "Comments"
-msgstr ""
-
-#, php-format
-msgid "File Request: %s"
-msgstr ""
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-
-msgid "Request type"
-msgstr ""
-
-msgid "Deletion"
-msgstr ""
-
-msgid "Orphan"
-msgstr ""
-
-msgid "Merge into"
-msgstr "Voeg samen met"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] ""
-msgstr[1] ""
-
-#, php-format
-msgid "Page %d of %d."
-msgstr ""
-
-msgid "Package"
-msgstr ""
-
-msgid "Filed by"
-msgstr ""
+msgid "Submitter"
+msgstr "Inzender"
-msgid "Date"
-msgstr ""
+msgid "Maintainer"
+msgstr "Beheerder"
-#, php-format
-msgid "~%d days left"
+msgid "Last Packager"
msgstr ""
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Votes"
+msgstr "Stemmen"
-msgid "<1 hour left"
-msgstr ""
+msgid "First Submitted"
+msgstr "Toegevoegd"
-msgid "Accept"
-msgstr ""
+msgid "Last Updated"
+msgstr "Laatste Update"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "Afhankelijkheden"
-msgid "Close"
-msgstr ""
+msgid "Required by"
+msgstr "Vereist door"
-msgid "Closed"
-msgstr ""
+msgid "Sources"
+msgstr "Bronnen"
msgid "Name, Description"
msgstr "Naam, omschrijving"
@@ -1183,15 +1056,9 @@ msgstr "Aflopend"
msgid "Enter search criteria"
msgstr "Voer zoekcriteria in"
-msgid "Any"
-msgstr "Elke"
-
msgid "Search by"
msgstr "Zoek op"
-msgid "Keywords"
-msgstr "Sleutelwoorden"
-
msgid "Out of Date"
msgstr "Verouderd"
@@ -1222,9 +1089,18 @@ msgid_plural "%d packages found."
msgstr[0] ""
msgstr[1] ""
+#, php-format
+msgid "Page %d of %d."
+msgstr ""
+
msgid "Version"
msgstr "Versie"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Ja"
@@ -1249,9 +1125,156 @@ msgstr "Onteigen Pakketten"
msgid "Delete Packages"
msgstr "Verwijder pakketten"
+msgid "Merge into"
+msgstr "Voeg samen met"
+
msgid "Confirm"
msgstr "Bevestig"
+msgid "Package Actions"
+msgstr "Pakket Acties"
+
+msgid "View PKGBUILD"
+msgstr "Toon PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr ""
+
+msgid "Flagged out-of-date"
+msgstr "Markeer als verouderd"
+
+msgid "Flag package out-of-date"
+msgstr "Markeer pakket als verouderd"
+
+msgid "Unflag package"
+msgstr "Verwijder markering"
+
+msgid "Remove vote"
+msgstr "Verwijder stem"
+
+msgid "Vote for this package"
+msgstr "Stem voor dit pakket"
+
+msgid "Disable notifications"
+msgstr "Schakel notificaties uit"
+
+msgid "Notify of new comments"
+msgstr "Notificatie bij nieuwe comment"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Delete Package"
+msgstr "Verwijder Pakket"
+
+msgid "Merge Package"
+msgstr "Voeg Pakket Samen"
+
+msgid "Adopt Package"
+msgstr "Adopteer Pakket"
+
+msgid "Package Base Details"
+msgstr ""
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr ""
+
+msgid "Accepted"
+msgstr ""
+
+msgid "Rejected"
+msgstr ""
+
+msgid "Comments"
+msgstr ""
+
+#, php-format
+msgid "File Request: %s"
+msgstr ""
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+
+msgid "Request type"
+msgstr ""
+
+msgid "Deletion"
+msgstr ""
+
+msgid "Orphan"
+msgstr ""
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Package"
+msgstr ""
+
+msgid "Filed by"
+msgstr ""
+
+msgid "Date"
+msgstr ""
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr ""
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Closed"
+msgstr ""
+
msgid "Any type"
msgstr "Elk type"
@@ -1333,3 +1356,21 @@ msgstr "Start "
msgid "Back"
msgstr "Terug"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Missende categorie ID."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Ongeldige categorie ID."
+
+#~ msgid "Package category changed."
+#~ msgstr "Pakketcategorie aangepast."
+
+#~ msgid "Category"
+#~ msgstr "Categorie"
+
+#~ msgid "Change category"
+#~ msgstr "Verander categorie"
+
+#~ msgid "Any"
+#~ msgstr "Elke"
diff --git a/po/pl.po b/po/pl.po
index ece06fd..10f2fc6 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/aur/language/"
@@ -61,9 +61,6 @@ msgstr "Przy użyciu tego formularza możesz przeszukać istniejące konta."
msgid "You must log in to view user information."
msgstr "Musisz być zalogowany aby móc oglądać informacje o użytkownikach."
-msgid "Use this form to create an account."
-msgstr "Przy użyciu tego formularza możesz utworzyć konto."
-
msgid "Add Proposal"
msgstr "Dodaj Propozycję"
@@ -122,9 +119,9 @@ msgstr ""
msgid "Home"
msgstr "Start"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Witamy w AUR! Aby uzyskać więcej informacji, przeczytaj %sInstrukcję "
@@ -154,6 +151,9 @@ msgstr ""
"Zamieszczone pakiety są niewspierane i utworzone przez użytkowników. Używasz "
"ich na własne ryzyko."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -177,10 +177,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -197,14 +198,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Porzuć pakiety"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Dyskusja"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -212,10 +228,10 @@ msgstr "Zgłaszanie błędów"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -296,6 +312,10 @@ msgstr "Twoje hasło musi mieć składać się z conajmniej %s znaków."
msgid "Invalid e-mail."
msgstr "Nieprawidłowy e-mail."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Resetowanie hasła"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -359,10 +379,10 @@ msgstr "Usuwanie pakietów"
msgid "Delete Package: %s"
msgstr "Usuń pakiet: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Użyj tego formularza, aby usunąć bazę pakietu %s%s%s i następujące pakiety z "
"AUR:"
@@ -469,6 +489,12 @@ msgstr "Ostatnia"
msgid "Requests"
msgstr "Propozcje"
+msgid "Register"
+msgstr "Zarejestruj się"
+
+msgid "Use this form to create an account."
+msgstr "Przy użyciu tego formularza możesz utworzyć konto."
+
msgid "Trusted User"
msgstr "Zaufany Użytkownik"
@@ -562,6 +588,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Kliknij na link Zaloguj się powyżej aby się zalogować."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -616,6 +646,10 @@ msgstr "Nieprawidłowy e-mail i klucz do resetowania."
msgid "None"
msgstr "Żaden"
+#, php-format
+msgid "View account information for %s"
+msgstr "Wyświetl informacje o koncie %s"
+
msgid "Error retrieving package details."
msgstr "Błąd podczas pobierania informacji o pakiecie."
@@ -705,17 +739,13 @@ msgstr "Komentarz został usunięty."
msgid "You are not allowed to delete this comment."
msgstr "Nie masz uprawnień do usunięcia tego komentarza."
-msgid "Missing category ID."
-msgstr "Brakujące ID kategorii."
-
-msgid "Invalid category ID."
-msgstr "Nieprawidłowy identyfikator kategorii."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Nie masz uprawnień, by zmienić kategorię tego pakietu."
-msgid "Package category changed."
-msgstr "Kategoria pakietu zmieniona."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Wybrane pakiety zostały usunięte."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -754,8 +784,8 @@ msgstr "Tylko Zaufani Użytkownicy i Deweloperzy mogą zamykać propozycje."
msgid "Request closed successfully."
msgstr "Pomyślnie zamknięto propozycję."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Możesz użyć tego formularza, aby nieodwracalnie usunąć konto %s."
#, php-format
@@ -835,9 +865,10 @@ msgstr "Hasło (ponownie)"
msgid "Language"
msgstr "Język"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -894,101 +925,6 @@ msgstr "Moje pakiety"
msgid " My Account"
msgstr "Moje konto"
-msgid "Register"
-msgstr "Zarejestruj się"
-
-msgid "unknown"
-msgstr "nieznana"
-
-msgid "Package Base Details"
-msgstr "Szczegóły bazy pakietu"
-
-msgid "Package Actions"
-msgstr "Działania na pakietach"
-
-msgid "View PKGBUILD"
-msgstr "Pokaż PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Przeszukaj wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Oznaczony jako nieaktualny"
-
-msgid "Flag package out-of-date"
-msgstr "Oznacz pakiet jako nieaktualny"
-
-msgid "Unflag package"
-msgstr "Odznacz pakiet"
-
-msgid "Remove vote"
-msgstr "Usuń głos"
-
-msgid "Vote for this package"
-msgstr "Zagłosuj na ten pakiet"
-
-msgid "Disable notifications"
-msgstr "Wyłącz powiadomienia"
-
-msgid "Notify of new comments"
-msgstr "Powiadom o nowych komentarzach"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d propozycja w toku"
-msgstr[1] "%d propozycje w toku"
-msgstr[2] "%d propozycji w toku"
-
-msgid "Delete Package"
-msgstr "Usuń pakiet"
-
-msgid "Merge Package"
-msgstr "Scal pakiet"
-
-msgid "Adopt Package"
-msgstr "Przejmij pakiet"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Kategoria"
-
-msgid "Change category"
-msgstr "Zmień kategorię."
-
-msgid "Submitter"
-msgstr "Nadesłał"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Wyświetl informacje o koncie %s"
-
-msgid "Maintainer"
-msgstr "Opiekun"
-
-msgid "Last Packager"
-msgstr "Ostatni pakujący"
-
-msgid "Votes"
-msgstr "Głosy"
-
-msgid "First Submitted"
-msgstr "Wysłany"
-
-msgid "Last Updated"
-msgstr "Ostatnia aktualizacja"
-
msgid "Add Comment"
msgstr "Dodaj komentarz"
@@ -1017,9 +953,18 @@ msgstr "usunięty"
msgid "All comments"
msgstr "Wszystkie komentarze"
+msgid "unknown"
+msgstr "nieznana"
+
msgid "Package Details"
msgstr "Informacje o pakiecie"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Baza pakietu"
@@ -1032,6 +977,9 @@ msgstr "URL upstreamu"
msgid "Visit the website for"
msgstr "Odwiedź stronę pakietu"
+msgid "Keywords"
+msgstr "Słowa kluczowe"
+
msgid "Licenses"
msgstr "Licencje"
@@ -1047,112 +995,32 @@ msgstr "Zapewnia"
msgid "Replaces"
msgstr "Zastępuje"
-msgid "Dependencies"
-msgstr "Zależności"
-
-msgid "Required by"
-msgstr "Wymagane przez"
-
-msgid "Sources"
-msgstr "Źródła"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr ""
-
-msgid "Accepted"
-msgstr "Zaakceptowany"
-
-msgid "Rejected"
-msgstr "Odrzucony"
-
-msgid "Comments"
-msgstr "Kommentarze"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Propozycja Pliku: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Użyj tego formularza, aby złożyć propozycję na bazę pakietu %s%s%s i "
-"następujące pakiety:"
-
-msgid "Request type"
-msgstr "Rodzaj Propozycji"
-
-msgid "Deletion"
-msgstr "Usunięcie"
-
-msgid "Orphan"
-msgstr "Bez opiekuna"
-
-msgid "Merge into"
-msgstr "Scal z"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d propozycje znaleziono"
-msgstr[1] "%d propozycje znaleziono."
-msgstr[2] "%d propozycji znaleziono."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Strona %d z %d."
-
-msgid "Package"
-msgstr "Pakiet"
-
-msgid "Filed by"
-msgstr "Złożone przez"
+msgid "Submitter"
+msgstr "Nadesłał"
-msgid "Date"
-msgstr "Data"
+msgid "Maintainer"
+msgstr "Opiekun"
-#, php-format
-msgid "~%d days left"
-msgstr ""
+msgid "Last Packager"
+msgstr "Ostatni pakujący"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgid "Votes"
+msgstr "Głosy"
-msgid "<1 hour left"
-msgstr ""
+msgid "First Submitted"
+msgstr "Wysłany"
-msgid "Accept"
-msgstr "Akceptuj"
+msgid "Last Updated"
+msgstr "Ostatnia aktualizacja"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "Zależności"
-msgid "Close"
-msgstr "Zamknij"
+msgid "Required by"
+msgstr "Wymagane przez"
-msgid "Closed"
-msgstr "Zamknięte"
+msgid "Sources"
+msgstr "Źródła"
msgid "Name, Description"
msgstr "Nazwa, Opis"
@@ -1196,15 +1064,9 @@ msgstr "Malejąco"
msgid "Enter search criteria"
msgstr "Podaj kryteria wyszukiwania"
-msgid "Any"
-msgstr "Dowolna"
-
msgid "Search by"
msgstr "Szukaj według"
-msgid "Keywords"
-msgstr "Słowa kluczowe"
-
msgid "Out of Date"
msgstr "Nieaktualny"
@@ -1236,9 +1098,18 @@ msgstr[0] "%d pakiet znaleziono"
msgstr[1] "%d pakiety znaleziono"
msgstr[2] "%d pakietów znaleziono"
+#, php-format
+msgid "Page %d of %d."
+msgstr "Strona %d z %d."
+
msgid "Version"
msgstr "Wersja"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Tak"
@@ -1263,9 +1134,161 @@ msgstr "Porzuć pakiety"
msgid "Delete Packages"
msgstr "Usuń pakiety"
+msgid "Merge into"
+msgstr "Scal z"
+
msgid "Confirm"
msgstr "Potwierdź"
+msgid "Package Actions"
+msgstr "Działania na pakietach"
+
+msgid "View PKGBUILD"
+msgstr "Pokaż PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Przeszukaj wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Oznaczony jako nieaktualny"
+
+msgid "Flag package out-of-date"
+msgstr "Oznacz pakiet jako nieaktualny"
+
+msgid "Unflag package"
+msgstr "Odznacz pakiet"
+
+msgid "Remove vote"
+msgstr "Usuń głos"
+
+msgid "Vote for this package"
+msgstr "Zagłosuj na ten pakiet"
+
+msgid "Disable notifications"
+msgstr "Wyłącz powiadomienia"
+
+msgid "Notify of new comments"
+msgstr "Powiadom o nowych komentarzach"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d propozycja w toku"
+msgstr[1] "%d propozycje w toku"
+msgstr[2] "%d propozycji w toku"
+
+msgid "Delete Package"
+msgstr "Usuń pakiet"
+
+msgid "Merge Package"
+msgstr "Scal pakiet"
+
+msgid "Adopt Package"
+msgstr "Przejmij pakiet"
+
+msgid "Package Base Details"
+msgstr "Szczegóły bazy pakietu"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr ""
+
+msgid "Accepted"
+msgstr "Zaakceptowany"
+
+msgid "Rejected"
+msgstr "Odrzucony"
+
+msgid "Comments"
+msgstr "Kommentarze"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Propozycja Pliku: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Użyj tego formularza, aby złożyć propozycję na bazę pakietu %s%s%s i "
+"następujące pakiety:"
+
+msgid "Request type"
+msgstr "Rodzaj Propozycji"
+
+msgid "Deletion"
+msgstr "Usunięcie"
+
+msgid "Orphan"
+msgstr "Bez opiekuna"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d propozycje znaleziono"
+msgstr[1] "%d propozycje znaleziono."
+msgstr[2] "%d propozycji znaleziono."
+
+msgid "Package"
+msgstr "Pakiet"
+
+msgid "Filed by"
+msgstr "Złożone przez"
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr "Akceptuj"
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr "Zamknij"
+
+msgid "Closed"
+msgstr "Zamknięte"
+
msgid "Any type"
msgstr "Dowolny rodzaj"
@@ -1347,3 +1370,21 @@ msgstr "Początek"
msgid "Back"
msgstr "Wstecz"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Brakujące ID kategorii."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Nieprawidłowy identyfikator kategorii."
+
+#~ msgid "Package category changed."
+#~ msgstr "Kategoria pakietu zmieniona."
+
+#~ msgid "Category"
+#~ msgstr "Kategoria"
+
+#~ msgid "Change category"
+#~ msgstr "Zmień kategorię."
+
+#~ msgid "Any"
+#~ msgstr "Dowolna"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 3198fc2..dd318f1 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/aur/"
@@ -56,9 +56,6 @@ msgstr "Utilize este formulário para procurar contas existentes."
msgid "You must log in to view user information."
msgstr "Você precisa fazer login para ver as informações do usuário."
-msgid "Use this form to create an account."
-msgstr "Utilize este formulário para criar uma conta."
-
msgid "Add Proposal"
msgstr "Adicionar proposta"
@@ -117,9 +114,9 @@ msgstr "Gerenciar co-mantenedores"
msgid "Home"
msgstr "Início"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Bem-vindo ao AUR! Por favor, leia as %sDiretrizes de Usuário do AUR%s e "
@@ -150,6 +147,9 @@ msgstr ""
"Pacotes sem suporte são pacotes produzidos pelos usuários. Qualquer uso dos "
"arquivos fornecidos é de sua própria conta e risco."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -173,10 +173,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -193,14 +194,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Abandonar pacotes"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discussão"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -208,10 +224,10 @@ msgstr "Relatório de erros"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -292,6 +308,10 @@ msgstr "Sua senha deve conter pelo menos %s caracteres."
msgid "Invalid e-mail."
msgstr "E-mail inválido."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Redefinição de senha"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -359,10 +379,10 @@ msgstr "Exclusão de pacotes"
msgid "Delete Package: %s"
msgstr "Excluir pacote: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Use este formulário para excluir o pacote base %s%s%s e os seguintes pacotes "
"do AUR: "
@@ -474,6 +494,12 @@ msgstr "Última"
msgid "Requests"
msgstr "Requisições"
+msgid "Register"
+msgstr "Registrar"
+
+msgid "Use this form to create an account."
+msgstr "Utilize este formulário para criar uma conta."
+
msgid "Trusted User"
msgstr "Trusted User"
@@ -566,6 +592,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Clique no link de Login acima para usar a sua conta."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -620,6 +650,10 @@ msgstr "Combinação entre email e chave de redefinição é inválida"
msgid "None"
msgstr "Nenhum"
+#, php-format
+msgid "View account information for %s"
+msgstr "Ver informações da conta para %s"
+
msgid "Error retrieving package details."
msgstr "Erro ao obter detalhes do pacote."
@@ -709,17 +743,14 @@ msgstr "O comentário foi excluído."
msgid "You are not allowed to delete this comment."
msgstr "Você não tem permissão para excluir esse comentário."
-msgid "Missing category ID."
-msgstr "Faltando ID de categoria."
-
-msgid "Invalid category ID."
-msgstr "ID de categoria inválido."
-
-msgid "You are not allowed to change this package category."
-msgstr "Você não tem permissão para alterar a categoria desse pacote."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr ""
+"Você não tem permissão para gerenciar co-mantenedores deste pacote base."
-msgid "Package category changed."
-msgstr "Categoria do pacote alterada."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Os co-mantenedores do pacote base foram atualizados."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -759,8 +790,8 @@ msgstr "Apenas TUs e desenvolvedores podem fechar requisições"
msgid "Request closed successfully."
msgstr "Requisição fechada com sucesso"
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Você pode usar esse formulário para excluir permanentemente a conta %s do "
"AUR."
@@ -842,9 +873,10 @@ msgstr "Re-digite a senha"
msgid "Language"
msgstr "Idioma"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"A informação a seguir é necessária apenas se você deseja enviar pacotes para "
"o Repositório de Usuário do Arch."
@@ -905,100 +937,6 @@ msgstr "Meus pacotes"
msgid " My Account"
msgstr " Minha conta"
-msgid "Register"
-msgstr "Registrar"
-
-msgid "unknown"
-msgstr "desconhecido"
-
-msgid "Package Base Details"
-msgstr "Detalhes do pacote base"
-
-msgid "Package Actions"
-msgstr "Ações do pacote"
-
-msgid "View PKGBUILD"
-msgstr "Visualizar PKGBUILD"
-
-msgid "View Changes"
-msgstr "Ver alterações"
-
-msgid "Download snapshot"
-msgstr "Baixar snapshot"
-
-msgid "Search wiki"
-msgstr "Pesquisar no wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marcado como desatualizado"
-
-msgid "Flag package out-of-date"
-msgstr "Marcar como desatualizado"
-
-msgid "Unflag package"
-msgstr "Desmarcar desatualização"
-
-msgid "Remove vote"
-msgstr "Remover voto"
-
-msgid "Vote for this package"
-msgstr "Votar neste pacote"
-
-msgid "Disable notifications"
-msgstr "Desabilitar notificações"
-
-msgid "Notify of new comments"
-msgstr "Notificar sobre novos comentários"
-
-msgid "Manage Co-Maintainers"
-msgstr "Gerenciar co-mantenedores"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d requisição pentende"
-msgstr[1] "%d requisições pentendes"
-
-msgid "Delete Package"
-msgstr "Excluir pacote"
-
-msgid "Merge Package"
-msgstr "Mesclar pacote"
-
-msgid "Adopt Package"
-msgstr "Adotar pacote"
-
-msgid "Git Clone URL"
-msgstr "Git Clone URL"
-
-msgid "Category"
-msgstr "Categoria"
-
-msgid "Change category"
-msgstr "Alterar categoria"
-
-msgid "Submitter"
-msgstr "Criado por"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Ver informações da conta para %s"
-
-msgid "Maintainer"
-msgstr "Mantenedor"
-
-msgid "Last Packager"
-msgstr "Último empacotador"
-
-msgid "Votes"
-msgstr "Votos"
-
-msgid "First Submitted"
-msgstr "Criado em"
-
-msgid "Last Updated"
-msgstr "Última atualização"
-
msgid "Add Comment"
msgstr "Adicionar comentário"
@@ -1027,9 +965,18 @@ msgstr "excluída"
msgid "All comments"
msgstr "Todos os comentários"
+msgid "unknown"
+msgstr "desconhecido"
+
msgid "Package Details"
msgstr "Detalhes do pacote"
+msgid "Git Clone URL"
+msgstr "Git Clone URL"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Pacote base"
@@ -1042,6 +989,9 @@ msgstr "URL"
msgid "Visit the website for"
msgstr "Visitar o site para"
+msgid "Keywords"
+msgstr "Palavras-chave"
+
msgid "Licenses"
msgstr "Licenças"
@@ -1057,113 +1007,32 @@ msgstr "Provê"
msgid "Replaces"
msgstr "Substitui"
-msgid "Dependencies"
-msgstr "Dependências"
-
-msgid "Required by"
-msgstr "Necessário para"
-
-msgid "Sources"
-msgstr "Fontes"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Fechar requisição: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Use esse formulário para fechar a requisição para o pacote base %s%s%s."
-
-msgid "Note"
-msgstr "Nota"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"O campo de comentários pode ser deixado vazio. Porém, é fortemente "
-"recomendado adicionar um comentário ao rejeitar uma requisição."
-
-msgid "Reason"
-msgstr "Motivo"
-
-msgid "Accepted"
-msgstr "Aceito"
-
-msgid "Rejected"
-msgstr "Rejeitado"
-
-msgid "Comments"
-msgstr "Comentários"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Fazer requisição: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Use esse formulário para fazer uma requisição sobre o pacote base %s%s%s que "
-"inclui os seguintes pacotes:"
-
-msgid "Request type"
-msgstr "Tipo de requisição"
-
-msgid "Deletion"
-msgstr "Excluir"
-
-msgid "Orphan"
-msgstr "Tornar órfão"
-
-msgid "Merge into"
-msgstr "Mesclar em"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d requisição de pacote encontrada."
-msgstr[1] "%d requisições de pacotes encontradas."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Página %d de %d."
-
-msgid "Package"
-msgstr "Pacote"
-
-msgid "Filed by"
-msgstr "Criada por"
+msgid "Submitter"
+msgstr "Criado por"
-msgid "Date"
-msgstr "Data"
+msgid "Maintainer"
+msgstr "Mantenedor"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d dias restantes"
+msgid "Last Packager"
+msgstr "Último empacotador"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d hora restante"
-msgstr[1] "~%d horas restantes"
+msgid "Votes"
+msgstr "Votos"
-msgid "<1 hour left"
-msgstr "<1 hora restante"
+msgid "First Submitted"
+msgstr "Criado em"
-msgid "Accept"
-msgstr "Aceitar"
+msgid "Last Updated"
+msgstr "Última atualização"
-msgid "Locked"
-msgstr "Travado"
+msgid "Dependencies"
+msgstr "Dependências"
-msgid "Close"
-msgstr "Fechar"
+msgid "Required by"
+msgstr "Necessário para"
-msgid "Closed"
-msgstr "Fechada"
+msgid "Sources"
+msgstr "Fontes"
msgid "Name, Description"
msgstr "Nome, descrição"
@@ -1207,15 +1076,9 @@ msgstr "Decrescente"
msgid "Enter search criteria"
msgstr "Digite os critérios de pesquisa"
-msgid "Any"
-msgstr "Qualquer"
-
msgid "Search by"
msgstr "Pesquisar por"
-msgid "Keywords"
-msgstr "Palavras-chave"
-
msgid "Out of Date"
msgstr "Desatualizado"
@@ -1246,9 +1109,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d pacote encontrado."
msgstr[1] "%d pacotes encontrados."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Página %d de %d."
+
msgid "Version"
msgstr "Versão"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sim"
@@ -1273,9 +1145,161 @@ msgstr "Abandonar pacotes"
msgid "Delete Packages"
msgstr "Excluir pacotes"
+msgid "Merge into"
+msgstr "Mesclar em"
+
msgid "Confirm"
msgstr "Confirmar"
+msgid "Package Actions"
+msgstr "Ações do pacote"
+
+msgid "View PKGBUILD"
+msgstr "Visualizar PKGBUILD"
+
+msgid "View Changes"
+msgstr "Ver alterações"
+
+msgid "Download snapshot"
+msgstr "Baixar snapshot"
+
+msgid "Search wiki"
+msgstr "Pesquisar no wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marcado como desatualizado"
+
+msgid "Flag package out-of-date"
+msgstr "Marcar como desatualizado"
+
+msgid "Unflag package"
+msgstr "Desmarcar desatualização"
+
+msgid "Remove vote"
+msgstr "Remover voto"
+
+msgid "Vote for this package"
+msgstr "Votar neste pacote"
+
+msgid "Disable notifications"
+msgstr "Desabilitar notificações"
+
+msgid "Notify of new comments"
+msgstr "Notificar sobre novos comentários"
+
+msgid "Manage Co-Maintainers"
+msgstr "Gerenciar co-mantenedores"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d requisição pentende"
+msgstr[1] "%d requisições pentendes"
+
+msgid "Delete Package"
+msgstr "Excluir pacote"
+
+msgid "Merge Package"
+msgstr "Mesclar pacote"
+
+msgid "Adopt Package"
+msgstr "Adotar pacote"
+
+msgid "Package Base Details"
+msgstr "Detalhes do pacote base"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Fechar requisição: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Use esse formulário para fechar a requisição para o pacote base %s%s%s."
+
+msgid "Note"
+msgstr "Nota"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"O campo de comentários pode ser deixado vazio. Porém, é fortemente "
+"recomendado adicionar um comentário ao rejeitar uma requisição."
+
+msgid "Reason"
+msgstr "Motivo"
+
+msgid "Accepted"
+msgstr "Aceito"
+
+msgid "Rejected"
+msgstr "Rejeitado"
+
+msgid "Comments"
+msgstr "Comentários"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Fazer requisição: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Use esse formulário para fazer uma requisição sobre o pacote base %s%s%s que "
+"inclui os seguintes pacotes:"
+
+msgid "Request type"
+msgstr "Tipo de requisição"
+
+msgid "Deletion"
+msgstr "Excluir"
+
+msgid "Orphan"
+msgstr "Tornar órfão"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d requisição de pacote encontrada."
+msgstr[1] "%d requisições de pacotes encontradas."
+
+msgid "Package"
+msgstr "Pacote"
+
+msgid "Filed by"
+msgstr "Criada por"
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d dias restantes"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d hora restante"
+msgstr[1] "~%d horas restantes"
+
+msgid "<1 hour left"
+msgstr "<1 hora restante"
+
+msgid "Accept"
+msgstr "Aceitar"
+
+msgid "Locked"
+msgstr "Travado"
+
+msgid "Close"
+msgstr "Fechar"
+
+msgid "Closed"
+msgstr "Fechada"
+
msgid "Any type"
msgstr "Qualquer tipo"
@@ -1357,3 +1381,24 @@ msgstr "Iniciar"
msgid "Back"
msgstr "Voltar"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Faltando ID de categoria."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "ID de categoria inválido."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "Você não tem permissão para alterar a categoria desse pacote."
+
+#~ msgid "Package category changed."
+#~ msgstr "Categoria do pacote alterada."
+
+#~ msgid "Category"
+#~ msgstr "Categoria"
+
+#~ msgid "Change category"
+#~ msgstr "Alterar categoria"
+
+#~ msgid "Any"
+#~ msgstr "Qualquer"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 0787b58..ca8280e 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/"
@@ -57,9 +57,6 @@ msgstr "Utilize este formulário para procurar contas existentes."
msgid "You must log in to view user information."
msgstr "Necessita iniciar sessão para visualizar a informação do utilizador."
-msgid "Use this form to create an account."
-msgstr "Para criar uma conta utilize este formulário."
-
msgid "Add Proposal"
msgstr "Adicionar Proposta"
@@ -118,9 +115,9 @@ msgstr ""
msgid "Home"
msgstr "Início"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Bem-vindo ao AUR! Por favor leia as %sOrientações de Utilizador do AUR%s e "
@@ -152,6 +149,9 @@ msgstr ""
"Os pacotes não suportados são produzidos por utilizadores. O seu uso é por "
"sua conta e risco."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -175,10 +175,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -195,14 +196,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Renunciar Pacotes"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discussão"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -210,10 +226,10 @@ msgstr "Reportar um Bug"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -294,6 +310,10 @@ msgstr "A sua palavra-passe tem de ter pelo menos %s caracteres."
msgid "Invalid e-mail."
msgstr "E-mail inválido."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Reiniciar a Palavra-passe"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -357,10 +377,10 @@ msgstr "Eliminar Pacote"
msgid "Delete Package: %s"
msgstr "Eliminar Pacote: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Use este formulário para eliminar o pacote base %s%s%s e os seguintes "
"pacotes do AUR:"
@@ -466,6 +486,12 @@ msgstr "Ultimo."
msgid "Requests"
msgstr "Pedidos"
+msgid "Register"
+msgstr "Registar"
+
+msgid "Use this form to create an account."
+msgstr "Para criar uma conta utilize este formulário."
+
msgid "Trusted User"
msgstr "Utilizador de Confiança"
@@ -559,6 +585,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Clique no link Login acima para iniciar sessão."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -615,6 +645,10 @@ msgstr "Combinação de e-mail e chave de recuperação inválidos."
msgid "None"
msgstr "Nenhum"
+#, php-format
+msgid "View account information for %s"
+msgstr "Ver informação de conta de %s"
+
msgid "Error retrieving package details."
msgstr "Erro ao obter os detalhes do pacote."
@@ -704,17 +738,13 @@ msgstr "O comentário foi apagado."
msgid "You are not allowed to delete this comment."
msgstr "Não tem permissão para apagar este comentário."
-msgid "Missing category ID."
-msgstr "ID de categoria em falta."
-
-msgid "Invalid category ID."
-msgstr "ID de categoria inválido."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Não tem permissão para mudar a categoria deste pacote."
-msgid "Package category changed."
-msgstr "Categoria do pacote modificada."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Os pacotes seleccionados foram apagados."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -753,9 +783,9 @@ msgstr "Apenas programadores e TUs podem fechar pedidos."
msgid "Request closed successfully."
msgstr "Pedido fechado com sucesso."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
-msgstr ""
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
+msgstr "Para criar uma conta utilize este formulário."
#, php-format
msgid "%sWARNING%s: This action cannot be undone."
@@ -834,9 +864,10 @@ msgstr "Reintroduza a palavra-passe"
msgid "Language"
msgstr "Língua"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -893,100 +924,6 @@ msgstr "Os meus pacotes"
msgid " My Account"
msgstr "A minha Conta"
-msgid "Register"
-msgstr "Registar"
-
-msgid "unknown"
-msgstr "desconhecido"
-
-msgid "Package Base Details"
-msgstr "Pacote Base Detalhes"
-
-msgid "Package Actions"
-msgstr "Ações sobre Pacotes"
-
-msgid "View PKGBUILD"
-msgstr "Ver PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Pesquisar na Wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marcado como desatualizado."
-
-msgid "Flag package out-of-date"
-msgstr "Marcar como desatualizado"
-
-msgid "Unflag package"
-msgstr "Desmarcar pacote"
-
-msgid "Remove vote"
-msgstr "Remover voto"
-
-msgid "Vote for this package"
-msgstr "Votar neste pacote"
-
-msgid "Disable notifications"
-msgstr "Desativar notificações"
-
-msgid "Notify of new comments"
-msgstr "Notificar-me sobre novos comentários"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d pedido por atender"
-msgstr[1] "%d pedidos por atender"
-
-msgid "Delete Package"
-msgstr "Eliminar Pacote"
-
-msgid "Merge Package"
-msgstr "Fundir Pacote"
-
-msgid "Adopt Package"
-msgstr "Adotar Pacote"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Categoria"
-
-msgid "Change category"
-msgstr "Mudar categoria"
-
-msgid "Submitter"
-msgstr "Submissor"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Ver informação de conta de %s"
-
-msgid "Maintainer"
-msgstr "Responsável pela manutenção"
-
-msgid "Last Packager"
-msgstr "Último Responsável"
-
-msgid "Votes"
-msgstr "Votos"
-
-msgid "First Submitted"
-msgstr "Primeira Submissão"
-
-msgid "Last Updated"
-msgstr "Última Actualização"
-
msgid "Add Comment"
msgstr "Adicionar comentário"
@@ -1015,9 +952,18 @@ msgstr ""
msgid "All comments"
msgstr "Todos os comentários"
+msgid "unknown"
+msgstr "desconhecido"
+
msgid "Package Details"
msgstr "Detalhes do Pacote"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Pacote Base"
@@ -1030,6 +976,9 @@ msgstr "URL a montante"
msgid "Visit the website for"
msgstr "Visitar a página web de"
+msgid "Keywords"
+msgstr "Palavras-chave"
+
msgid "Licenses"
msgstr "Licenças"
@@ -1045,110 +994,32 @@ msgstr "Fornece"
msgid "Replaces"
msgstr "Substitui"
-msgid "Dependencies"
-msgstr "Dependências"
-
-msgid "Required by"
-msgstr "Exigido por"
-
-msgid "Sources"
-msgstr "Fontes"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr ""
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-
-msgid "Note"
-msgstr ""
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-
-msgid "Reason"
-msgstr ""
-
-msgid "Accepted"
-msgstr "Aceite"
-
-msgid "Rejected"
-msgstr "Rejeitado"
-
-msgid "Comments"
-msgstr "Comentários"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Pedido de Ficheiro: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Use este formulário para enviar um pedido sobre o pacote base %s%s%s que "
-"inclui os seguintes pacotes:"
-
-msgid "Request type"
-msgstr "Tipo de pedido"
-
-msgid "Deletion"
-msgstr "Apagar"
-
-msgid "Orphan"
-msgstr "Orfão"
-
-msgid "Merge into"
-msgstr "Juntar em"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d pedido de pacote encontrado."
-msgstr[1] "%d pedidos de pacotes encontrados."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Página %d de %d."
-
-msgid "Package"
-msgstr "Pacote"
-
-msgid "Filed by"
-msgstr "Enviado por"
+msgid "Submitter"
+msgstr "Submissor"
-msgid "Date"
-msgstr "Data"
+msgid "Maintainer"
+msgstr "Responsável pela manutenção"
-#, php-format
-msgid "~%d days left"
-msgstr ""
+msgid "Last Packager"
+msgstr "Último Responsável"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Votes"
+msgstr "Votos"
-msgid "<1 hour left"
-msgstr ""
+msgid "First Submitted"
+msgstr "Primeira Submissão"
-msgid "Accept"
-msgstr "Aceitar"
+msgid "Last Updated"
+msgstr "Última Actualização"
-msgid "Locked"
-msgstr ""
+msgid "Dependencies"
+msgstr "Dependências"
-msgid "Close"
-msgstr "Fechar"
+msgid "Required by"
+msgstr "Exigido por"
-msgid "Closed"
-msgstr "Fechado"
+msgid "Sources"
+msgstr "Fontes"
msgid "Name, Description"
msgstr "Nome, Descrição"
@@ -1192,15 +1063,9 @@ msgstr "Descendente"
msgid "Enter search criteria"
msgstr "Introduzir critério de pesquisa"
-msgid "Any"
-msgstr "Qualquer"
-
msgid "Search by"
msgstr "Procurar por"
-msgid "Keywords"
-msgstr "Palavras-chave"
-
msgid "Out of Date"
msgstr "Desactualizado"
@@ -1231,9 +1096,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d pacote encontrado."
msgstr[1] "%d pacotes encontrados."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Página %d de %d."
+
msgid "Version"
msgstr "Versão"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Sim"
@@ -1258,9 +1132,158 @@ msgstr "Renunciar Pacotes"
msgid "Delete Packages"
msgstr "Apagar Pacotes"
+msgid "Merge into"
+msgstr "Juntar em"
+
msgid "Confirm"
msgstr "Confirmar"
+msgid "Package Actions"
+msgstr "Ações sobre Pacotes"
+
+msgid "View PKGBUILD"
+msgstr "Ver PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Pesquisar na Wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marcado como desatualizado."
+
+msgid "Flag package out-of-date"
+msgstr "Marcar como desatualizado"
+
+msgid "Unflag package"
+msgstr "Desmarcar pacote"
+
+msgid "Remove vote"
+msgstr "Remover voto"
+
+msgid "Vote for this package"
+msgstr "Votar neste pacote"
+
+msgid "Disable notifications"
+msgstr "Desativar notificações"
+
+msgid "Notify of new comments"
+msgstr "Notificar-me sobre novos comentários"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d pedido por atender"
+msgstr[1] "%d pedidos por atender"
+
+msgid "Delete Package"
+msgstr "Eliminar Pacote"
+
+msgid "Merge Package"
+msgstr "Fundir Pacote"
+
+msgid "Adopt Package"
+msgstr "Adotar Pacote"
+
+msgid "Package Base Details"
+msgstr "Pacote Base Detalhes"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr ""
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+
+msgid "Note"
+msgstr ""
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+
+msgid "Reason"
+msgstr ""
+
+msgid "Accepted"
+msgstr "Aceite"
+
+msgid "Rejected"
+msgstr "Rejeitado"
+
+msgid "Comments"
+msgstr "Comentários"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Pedido de Ficheiro: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Use este formulário para enviar um pedido sobre o pacote base %s%s%s que "
+"inclui os seguintes pacotes:"
+
+msgid "Request type"
+msgstr "Tipo de pedido"
+
+msgid "Deletion"
+msgstr "Apagar"
+
+msgid "Orphan"
+msgstr "Orfão"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d pedido de pacote encontrado."
+msgstr[1] "%d pedidos de pacotes encontrados."
+
+msgid "Package"
+msgstr "Pacote"
+
+msgid "Filed by"
+msgstr "Enviado por"
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr ""
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "<1 hour left"
+msgstr ""
+
+msgid "Accept"
+msgstr "Aceitar"
+
+msgid "Locked"
+msgstr ""
+
+msgid "Close"
+msgstr "Fechar"
+
+msgid "Closed"
+msgstr "Fechado"
+
msgid "Any type"
msgstr "Qualquer tipo"
@@ -1342,3 +1365,21 @@ msgstr "Inicio"
msgid "Back"
msgstr "Anterior"
+
+#~ msgid "Missing category ID."
+#~ msgstr "ID de categoria em falta."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "ID de categoria inválido."
+
+#~ msgid "Package category changed."
+#~ msgstr "Categoria do pacote modificada."
+
+#~ msgid "Category"
+#~ msgstr "Categoria"
+
+#~ msgid "Change category"
+#~ msgstr "Mudar categoria"
+
+#~ msgid "Any"
+#~ msgstr "Qualquer"
diff --git a/po/ro.po b/po/ro.po
index f484c94..9f63de8 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/aur/language/"
@@ -58,9 +58,6 @@ msgstr ""
"Trebuie să fi autentificat pentru a putea vedea informații despre "
"utilizatori."
-msgid "Use this form to create an account."
-msgstr "Folosește acest formular pentru a crea un cont."
-
msgid "Add Proposal"
msgstr "Adaugă o propunere"
@@ -119,9 +116,9 @@ msgstr ""
msgid "Home"
msgstr "Acasă"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Bine ai venit la AUR! Te rog citește %sGhidul utilizatorului AUR%s și "
@@ -151,6 +148,9 @@ msgstr ""
"Pachetele fără suport sunt conținut produs de utilizatori. Orice folosire a "
"fișierelor oferite este pe risc propriu!"
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -174,10 +174,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -194,14 +195,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Abandonează pachete"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Discuție"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -209,10 +225,10 @@ msgstr "Semnalare buguri"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -293,6 +309,10 @@ msgstr "Parola trebuie să fie de cel puțin %s caractere."
msgid "Invalid e-mail."
msgstr "E-mail nevalid"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Resetare parolă"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -354,10 +374,10 @@ msgstr "Ștergere pachet"
msgid "Delete Package: %s"
msgstr "Șterge pachetul: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Folosește acest formular pentru a șterge pachetul de bază %s%s%s și "
"următoarele pachete din AUR: "
@@ -464,6 +484,12 @@ msgstr "Ultim"
msgid "Requests"
msgstr "Cereri"
+msgid "Register"
+msgstr "Înregistrare"
+
+msgid "Use this form to create an account."
+msgstr "Folosește acest formular pentru a crea un cont."
+
msgid "Trusted User"
msgstr "Trusted User"
@@ -557,6 +583,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Clic pe legătura către Autentificare pentru a-ți folosi contul."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -609,6 +639,10 @@ msgstr "Combinație e-mail și cheie pentru resetare nevalidă."
msgid "None"
msgstr "Nimic"
+#, php-format
+msgid "View account information for %s"
+msgstr "Vezi informații despre contul lui %s"
+
msgid "Error retrieving package details."
msgstr "Eroare la preluarea detaliilor pachetului."
@@ -704,17 +738,13 @@ msgstr "Comentariul a fost șters."
msgid "You are not allowed to delete this comment."
msgstr "Nu ai voie să ștergi acest comentariu."
-msgid "Missing category ID."
-msgstr "ID-ul categoriei lipsește."
-
-msgid "Invalid category ID."
-msgstr "ID-ul categoriei nu este valid."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Nu ai permisiunea de a schimba categoria acestui pachet."
-msgid "Package category changed."
-msgstr "Categoria pachetului a fost schimbată."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Pachetele selectate au fost șterse."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -753,8 +783,8 @@ msgstr "Doar TU și dezvoltatorii pot închide cererile."
msgid "Request closed successfully."
msgstr "Cerere închisă cu succes."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Poți folosi acest formular pentru a șterge permanent contul AUR %s."
#, php-format
@@ -834,9 +864,10 @@ msgstr "Rescrie parola"
msgid "Language"
msgstr "Limbă"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -893,101 +924,6 @@ msgstr "Pachetele mele"
msgid " My Account"
msgstr "Contul meu"
-msgid "Register"
-msgstr "Înregistrare"
-
-msgid "unknown"
-msgstr "necunoscut"
-
-msgid "Package Base Details"
-msgstr "Detalii pachet de bază"
-
-msgid "Package Actions"
-msgstr "Operațiuni"
-
-msgid "View PKGBUILD"
-msgstr "Examinează PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Caută în wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Marcat ca Neactualizat"
-
-msgid "Flag package out-of-date"
-msgstr "Marchează pachetul ca Neactualizat"
-
-msgid "Unflag package"
-msgstr "Elimină marcaj pachet"
-
-msgid "Remove vote"
-msgstr "Elimină vot"
-
-msgid "Vote for this package"
-msgstr "Votează acest pachet"
-
-msgid "Disable notifications"
-msgstr "Dezactivează notificări"
-
-msgid "Notify of new comments"
-msgstr "Notifică pentru comentarii noi"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d cerere în așteptare"
-msgstr[1] "%d cereri în așteptare"
-msgstr[2] "%d de cereri în așteptare"
-
-msgid "Delete Package"
-msgstr "Șterge pachet"
-
-msgid "Merge Package"
-msgstr "Fuzionează pachet"
-
-msgid "Adopt Package"
-msgstr "Adoptă pachet"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Categorie"
-
-msgid "Change category"
-msgstr "Schimbă categoria"
-
-msgid "Submitter"
-msgstr "Autor"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Vezi informații despre contul lui %s"
-
-msgid "Maintainer"
-msgstr "Responsabil"
-
-msgid "Last Packager"
-msgstr "Ultimul autor de pachet"
-
-msgid "Votes"
-msgstr "Voturi"
-
-msgid "First Submitted"
-msgstr "Prima trimitere"
-
-msgid "Last Updated"
-msgstr "Ultima actualizare"
-
msgid "Add Comment"
msgstr "Adaugă comentariu"
@@ -1016,9 +952,18 @@ msgstr "șters"
msgid "All comments"
msgstr "Toate comentariile"
+msgid "unknown"
+msgstr "necunoscut"
+
msgid "Package Details"
msgstr "Detalii pachet"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Pachet de bază"
@@ -1031,6 +976,9 @@ msgstr "URL upstream"
msgid "Visit the website for"
msgstr "Vizitează pagina web pentru"
+msgid "Keywords"
+msgstr "Cuvinte cheie"
+
msgid "Licenses"
msgstr "Licențe"
@@ -1046,116 +994,32 @@ msgstr "Furnizează"
msgid "Replaces"
msgstr "Înlocuiește"
-msgid "Dependencies"
-msgstr "Dependențe"
-
-msgid "Required by"
-msgstr "Cerut de"
-
-msgid "Sources"
-msgstr "Surse"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Închide cererea: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Folosește acest formular pentru a închide cererea pentru pachetul de bază %s"
-"%s%s."
-
-msgid "Note"
-msgstr "Notă"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Câmpul pentru comentarii poate fi lăsat necompletat. Este totuși foarte "
-"recomandat să adaugi un comentariu când respingi o cerere."
-
-msgid "Reason"
-msgstr "Motiv"
-
-msgid "Accepted"
-msgstr "Acceptat"
-
-msgid "Rejected"
-msgstr "Respins"
-
-msgid "Comments"
-msgstr "Comentarii"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Înregistrează cerere: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Folosește acest formular pentru a înregistra o cerere pentru pachetul de "
-"bază %s%s%s care cuprinde următoarele pachete:"
-
-msgid "Request type"
-msgstr "Tipul de cerere"
-
-msgid "Deletion"
-msgstr "Ștergere"
-
-msgid "Orphan"
-msgstr "Orfan"
-
-msgid "Merge into"
-msgstr "Fuzionează"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d cerere pentru pachet găsită"
-msgstr[1] "%d cereri pentru pachet găsite"
-msgstr[2] "%d de cereri pentru pachet găsite"
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Pagina %d din %d."
-
-msgid "Package"
-msgstr "Pachet"
-
-msgid "Filed by"
-msgstr "Depusă de"
+msgid "Submitter"
+msgstr "Autor"
-msgid "Date"
-msgstr "Data"
+msgid "Maintainer"
+msgstr "Responsabil"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d zile rămase"
+msgid "Last Packager"
+msgstr "Ultimul autor de pachet"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d oră rămasă"
-msgstr[1] "~%d ore rămase"
-msgstr[2] "~%d de ore rămase"
+msgid "Votes"
+msgstr "Voturi"
-msgid "<1 hour left"
-msgstr "<1 oră a rămas"
+msgid "First Submitted"
+msgstr "Prima trimitere"
-msgid "Accept"
-msgstr "Acceptă"
+msgid "Last Updated"
+msgstr "Ultima actualizare"
-msgid "Locked"
-msgstr "Blocat"
+msgid "Dependencies"
+msgstr "Dependențe"
-msgid "Close"
-msgstr "Închide"
+msgid "Required by"
+msgstr "Cerut de"
-msgid "Closed"
-msgstr "Închis"
+msgid "Sources"
+msgstr "Surse"
msgid "Name, Description"
msgstr "Nume, Descriere"
@@ -1199,15 +1063,9 @@ msgstr "Descrescător"
msgid "Enter search criteria"
msgstr "Introdu criteriul de căutare"
-msgid "Any"
-msgstr "Orice"
-
msgid "Search by"
msgstr "Caută după"
-msgid "Keywords"
-msgstr "Cuvinte cheie"
-
msgid "Out of Date"
msgstr "Neactualizate"
@@ -1239,9 +1097,18 @@ msgstr[0] "%d pachet găsit"
msgstr[1] "%d pachete găsite"
msgstr[2] "%d de pachete găsite"
+#, php-format
+msgid "Page %d of %d."
+msgstr "Pagina %d din %d."
+
msgid "Version"
msgstr "Versiune"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Da"
@@ -1266,9 +1133,165 @@ msgstr "Abandonează pachete"
msgid "Delete Packages"
msgstr "Șterge pachete"
+msgid "Merge into"
+msgstr "Fuzionează"
+
msgid "Confirm"
msgstr "Confirmare"
+msgid "Package Actions"
+msgstr "Operațiuni"
+
+msgid "View PKGBUILD"
+msgstr "Examinează PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Caută în wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Marcat ca Neactualizat"
+
+msgid "Flag package out-of-date"
+msgstr "Marchează pachetul ca Neactualizat"
+
+msgid "Unflag package"
+msgstr "Elimină marcaj pachet"
+
+msgid "Remove vote"
+msgstr "Elimină vot"
+
+msgid "Vote for this package"
+msgstr "Votează acest pachet"
+
+msgid "Disable notifications"
+msgstr "Dezactivează notificări"
+
+msgid "Notify of new comments"
+msgstr "Notifică pentru comentarii noi"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d cerere în așteptare"
+msgstr[1] "%d cereri în așteptare"
+msgstr[2] "%d de cereri în așteptare"
+
+msgid "Delete Package"
+msgstr "Șterge pachet"
+
+msgid "Merge Package"
+msgstr "Fuzionează pachet"
+
+msgid "Adopt Package"
+msgstr "Adoptă pachet"
+
+msgid "Package Base Details"
+msgstr "Detalii pachet de bază"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Închide cererea: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Folosește acest formular pentru a închide cererea pentru pachetul de bază %s"
+"%s%s."
+
+msgid "Note"
+msgstr "Notă"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Câmpul pentru comentarii poate fi lăsat necompletat. Este totuși foarte "
+"recomandat să adaugi un comentariu când respingi o cerere."
+
+msgid "Reason"
+msgstr "Motiv"
+
+msgid "Accepted"
+msgstr "Acceptat"
+
+msgid "Rejected"
+msgstr "Respins"
+
+msgid "Comments"
+msgstr "Comentarii"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Înregistrează cerere: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Folosește acest formular pentru a înregistra o cerere pentru pachetul de "
+"bază %s%s%s care cuprinde următoarele pachete:"
+
+msgid "Request type"
+msgstr "Tipul de cerere"
+
+msgid "Deletion"
+msgstr "Ștergere"
+
+msgid "Orphan"
+msgstr "Orfan"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d cerere pentru pachet găsită"
+msgstr[1] "%d cereri pentru pachet găsite"
+msgstr[2] "%d de cereri pentru pachet găsite"
+
+msgid "Package"
+msgstr "Pachet"
+
+msgid "Filed by"
+msgstr "Depusă de"
+
+msgid "Date"
+msgstr "Data"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d zile rămase"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d oră rămasă"
+msgstr[1] "~%d ore rămase"
+msgstr[2] "~%d de ore rămase"
+
+msgid "<1 hour left"
+msgstr "<1 oră a rămas"
+
+msgid "Accept"
+msgstr "Acceptă"
+
+msgid "Locked"
+msgstr "Blocat"
+
+msgid "Close"
+msgstr "Închide"
+
+msgid "Closed"
+msgstr "Închis"
+
msgid "Any type"
msgstr "Orice tip"
@@ -1350,3 +1373,21 @@ msgstr "Start"
msgid "Back"
msgstr "Înapoi"
+
+#~ msgid "Missing category ID."
+#~ msgstr "ID-ul categoriei lipsește."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "ID-ul categoriei nu este valid."
+
+#~ msgid "Package category changed."
+#~ msgstr "Categoria pachetului a fost schimbată."
+
+#~ msgid "Category"
+#~ msgstr "Categorie"
+
+#~ msgid "Change category"
+#~ msgstr "Schimbă categoria"
+
+#~ msgid "Any"
+#~ msgstr "Orice"
diff --git a/po/ru.po b/po/ru.po
index 849bc7a..4a2fdf3 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/aur/language/"
@@ -61,9 +61,6 @@ msgid "You must log in to view user information."
msgstr ""
"Вы должны представиться для того, чтобы посмотреть информацию о пользователе."
-msgid "Use this form to create an account."
-msgstr "Используйте эту форму для создания учетной записи."
-
msgid "Add Proposal"
msgstr "Добавить предложение"
@@ -122,9 +119,9 @@ msgstr ""
msgid "Home"
msgstr "Главная"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Добро пожаловать в AUR! Пожалуйста, ознакомьтесь с %sРуководством "
@@ -157,6 +154,9 @@ msgstr ""
"Неподдерживаемые пакеты — это пакеты, созданные пользователями. Любой способ "
"их использования осуществляется на ваш страх и риск."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -180,10 +180,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -200,14 +201,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Бросить пакеты"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Обсуждение"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -215,10 +231,10 @@ msgstr "Отчет об ошибке"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -299,6 +315,10 @@ msgstr "Пароль должен быть не менее %s символов."
msgid "Invalid e-mail."
msgstr "Неверная электронная почта."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Сброс пароля"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -360,10 +380,10 @@ msgstr "Удаление пакета"
msgid "Delete Package: %s"
msgstr "Удалить пакет: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr "Используйте эту форму, чтобы удалить группу пакетов %s%s%s из AUR:"
msgid "Deletion of a package is permanent. "
@@ -468,6 +488,12 @@ msgstr "Последний"
msgid "Requests"
msgstr "Запросы"
+msgid "Register"
+msgstr "Регистрация"
+
+msgid "Use this form to create an account."
+msgstr "Используйте эту форму для создания учетной записи."
+
msgid "Trusted User"
msgstr "Доверенный пользователь"
@@ -560,6 +586,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Нажмите на ссылку для входа вверху чтобы зайти."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -613,6 +643,10 @@ msgstr "Неверная электронная почта и комбинаци
msgid "None"
msgstr "Нет"
+#, php-format
+msgid "View account information for %s"
+msgstr "Просмотр информации об аккаунте %s"
+
msgid "Error retrieving package details."
msgstr "Ошибка получения информации о пакете."
@@ -702,17 +736,13 @@ msgstr "Комментарий удален."
msgid "You are not allowed to delete this comment."
msgstr "У вас нет прав для удаления этого комментария."
-msgid "Missing category ID."
-msgstr "Отсутствует идентификатор категории."
-
-msgid "Invalid category ID."
-msgstr "Неверный идентификатор категории."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Вам не позволено менять категорию этого пакета."
-msgid "Package category changed."
-msgstr "Категория пакета изменилась."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Выбранные пакеты удалены."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -752,8 +782,8 @@ msgstr ""
msgid "Request closed successfully."
msgstr "Запрос закрыт успешно."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr ""
"Вы можете использовать данную форму, чтобы удалить следующий аккаунт AUR: %s."
@@ -834,9 +864,10 @@ msgstr "Введите пароль еще раз"
msgid "Language"
msgstr "Язык"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -893,102 +924,6 @@ msgstr "Мои пакеты"
msgid " My Account"
msgstr "Моя учётная запись"
-msgid "Register"
-msgstr "Регистрация"
-
-msgid "unknown"
-msgstr "неизвестно"
-
-msgid "Package Base Details"
-msgstr "Информация по группе пакетов"
-
-msgid "Package Actions"
-msgstr "Действия над пакетом"
-
-msgid "View PKGBUILD"
-msgstr "Просмотреть PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Искать в Wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Помечен как устаревший"
-
-msgid "Flag package out-of-date"
-msgstr "Пометить пакет как устаревший"
-
-msgid "Unflag package"
-msgstr "Снять пометку"
-
-msgid "Remove vote"
-msgstr "Удалить голос"
-
-msgid "Vote for this package"
-msgstr "Проголосовать за пакет"
-
-msgid "Disable notifications"
-msgstr "Выключить уведомления"
-
-msgid "Notify of new comments"
-msgstr "Уведомлять о новых комментариях"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d запрос в обработке"
-msgstr[1] "%d запроса в обработке"
-msgstr[2] "%d запросов в обработке"
-msgstr[3] "%d запросов в обработке"
-
-msgid "Delete Package"
-msgstr "Удалить пакет"
-
-msgid "Merge Package"
-msgstr "Объединить пакеты"
-
-msgid "Adopt Package"
-msgstr "Усыновить пакет"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Категория"
-
-msgid "Change category"
-msgstr "Изменить категорию"
-
-msgid "Submitter"
-msgstr "Автор"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Просмотр информации об аккаунте %s"
-
-msgid "Maintainer"
-msgstr "Ответственный"
-
-msgid "Last Packager"
-msgstr "Последний приславший"
-
-msgid "Votes"
-msgstr "Голосов"
-
-msgid "First Submitted"
-msgstr "Впервые послан"
-
-msgid "Last Updated"
-msgstr "Последнее обновление"
-
msgid "Add Comment"
msgstr "Добавить комментарий"
@@ -1017,9 +952,18 @@ msgstr "удален"
msgid "All comments"
msgstr "Все комментарии"
+msgid "unknown"
+msgstr "неизвестно"
+
msgid "Package Details"
msgstr "Информация о пакете"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Группа пакетов"
@@ -1032,6 +976,9 @@ msgstr "URL апстрима"
msgid "Visit the website for"
msgstr "Посетить сайт"
+msgid "Keywords"
+msgstr "Ключевые слова"
+
msgid "Licenses"
msgstr "Лицензия"
@@ -1047,116 +994,32 @@ msgstr "Предоставляет"
msgid "Replaces"
msgstr "Заменяет"
-msgid "Dependencies"
-msgstr "Зависимости"
-
-msgid "Required by"
-msgstr "Требуется пакетами"
-
-msgid "Sources"
-msgstr "Исходники"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Закрыть запрос %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "Используйте эту форму, чтобы закрыть запрос о группе пакетов %s%s%s."
-
-msgid "Note"
-msgstr "Примечание"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"При отклонении запроса рекомендуется заполнить поле комментарий (не "
-"обязательно)."
-
-msgid "Reason"
-msgstr "Причина"
-
-msgid "Accepted"
-msgstr "Принято"
-
-msgid "Rejected"
-msgstr "Отклонено"
-
-msgid "Comments"
-msgstr "Комментарии"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Запрос: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Используйте данную форму, чтобы послать запрос по поводу группы пакетов %s%s"
-"%s, которая включает следующие пакеты:"
-
-msgid "Request type"
-msgstr "Тип запроса"
-
-msgid "Deletion"
-msgstr "Удаление"
-
-msgid "Orphan"
-msgstr "Сделать сиротой"
-
-msgid "Merge into"
-msgstr "Объединить с"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "Найдены запросы для %d пакета."
-msgstr[1] "Найдены запросы для %d пакетов."
-msgstr[2] "Найдены запросы для %d пакетов."
-msgstr[3] "Найдены запросы для %d пакетов."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Страница %d из %d."
-
-msgid "Package"
-msgstr "Пакет"
-
-msgid "Filed by"
-msgstr "Послан"
+msgid "Submitter"
+msgstr "Автор"
-msgid "Date"
-msgstr "Дата"
+msgid "Maintainer"
+msgstr "Ответственный"
-#, php-format
-msgid "~%d days left"
-msgstr "осталось ~%d дней"
+msgid "Last Packager"
+msgstr "Последний приславший"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "остался ~%d час"
-msgstr[1] "осталось ~%d часа"
-msgstr[2] "осталось ~%d часов"
-msgstr[3] "осталось ~%d часов"
+msgid "Votes"
+msgstr "Голосов"
-msgid "<1 hour left"
-msgstr "осталось меньше часа"
+msgid "First Submitted"
+msgstr "Впервые послан"
-msgid "Accept"
-msgstr "Принять"
+msgid "Last Updated"
+msgstr "Последнее обновление"
-msgid "Locked"
-msgstr "Заблокировано"
+msgid "Dependencies"
+msgstr "Зависимости"
-msgid "Close"
-msgstr "Закрыть"
+msgid "Required by"
+msgstr "Требуется пакетами"
-msgid "Closed"
-msgstr "Закрыт"
+msgid "Sources"
+msgstr "Исходники"
msgid "Name, Description"
msgstr "Название, описание"
@@ -1200,15 +1063,9 @@ msgstr "По убыванию"
msgid "Enter search criteria"
msgstr "Введите критерии поиска"
-msgid "Any"
-msgstr "Любой"
-
msgid "Search by"
msgstr "Искать по"
-msgid "Keywords"
-msgstr "Ключевые слова"
-
msgid "Out of Date"
msgstr "Устарел"
@@ -1241,9 +1098,18 @@ msgstr[1] "Найдено %d пакета."
msgstr[2] "Найдено %d пакетов."
msgstr[3] "Найдено %d пакетов."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Страница %d из %d."
+
msgid "Version"
msgstr "Версия"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Да"
@@ -1268,9 +1134,166 @@ msgstr "Бросить пакеты"
msgid "Delete Packages"
msgstr "Удалить пакеты"
+msgid "Merge into"
+msgstr "Объединить с"
+
msgid "Confirm"
msgstr "Подтвердить"
+msgid "Package Actions"
+msgstr "Действия над пакетом"
+
+msgid "View PKGBUILD"
+msgstr "Просмотреть PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Искать в Wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Помечен как устаревший"
+
+msgid "Flag package out-of-date"
+msgstr "Пометить пакет как устаревший"
+
+msgid "Unflag package"
+msgstr "Снять пометку"
+
+msgid "Remove vote"
+msgstr "Удалить голос"
+
+msgid "Vote for this package"
+msgstr "Проголосовать за пакет"
+
+msgid "Disable notifications"
+msgstr "Выключить уведомления"
+
+msgid "Notify of new comments"
+msgstr "Уведомлять о новых комментариях"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d запрос в обработке"
+msgstr[1] "%d запроса в обработке"
+msgstr[2] "%d запросов в обработке"
+msgstr[3] "%d запросов в обработке"
+
+msgid "Delete Package"
+msgstr "Удалить пакет"
+
+msgid "Merge Package"
+msgstr "Объединить пакеты"
+
+msgid "Adopt Package"
+msgstr "Усыновить пакет"
+
+msgid "Package Base Details"
+msgstr "Информация по группе пакетов"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Закрыть запрос %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "Используйте эту форму, чтобы закрыть запрос о группе пакетов %s%s%s."
+
+msgid "Note"
+msgstr "Примечание"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"При отклонении запроса рекомендуется заполнить поле комментарий (не "
+"обязательно)."
+
+msgid "Reason"
+msgstr "Причина"
+
+msgid "Accepted"
+msgstr "Принято"
+
+msgid "Rejected"
+msgstr "Отклонено"
+
+msgid "Comments"
+msgstr "Комментарии"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Запрос: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Используйте данную форму, чтобы послать запрос по поводу группы пакетов %s%s"
+"%s, которая включает следующие пакеты:"
+
+msgid "Request type"
+msgstr "Тип запроса"
+
+msgid "Deletion"
+msgstr "Удаление"
+
+msgid "Orphan"
+msgstr "Сделать сиротой"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "Найдены запросы для %d пакета."
+msgstr[1] "Найдены запросы для %d пакетов."
+msgstr[2] "Найдены запросы для %d пакетов."
+msgstr[3] "Найдены запросы для %d пакетов."
+
+msgid "Package"
+msgstr "Пакет"
+
+msgid "Filed by"
+msgstr "Послан"
+
+msgid "Date"
+msgstr "Дата"
+
+#, php-format
+msgid "~%d days left"
+msgstr "осталось ~%d дней"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "остался ~%d час"
+msgstr[1] "осталось ~%d часа"
+msgstr[2] "осталось ~%d часов"
+msgstr[3] "осталось ~%d часов"
+
+msgid "<1 hour left"
+msgstr "осталось меньше часа"
+
+msgid "Accept"
+msgstr "Принять"
+
+msgid "Locked"
+msgstr "Заблокировано"
+
+msgid "Close"
+msgstr "Закрыть"
+
+msgid "Closed"
+msgstr "Закрыт"
+
msgid "Any type"
msgstr "Любой тип"
@@ -1352,3 +1375,21 @@ msgstr "Начало"
msgid "Back"
msgstr "Назад"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Отсутствует идентификатор категории."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Неверный идентификатор категории."
+
+#~ msgid "Package category changed."
+#~ msgstr "Категория пакета изменилась."
+
+#~ msgid "Category"
+#~ msgstr "Категория"
+
+#~ msgid "Change category"
+#~ msgstr "Изменить категорию"
+
+#~ msgid "Any"
+#~ msgstr "Любой"
diff --git a/po/sk.po b/po/sk.po
index 1a5fa63..8a12288 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Slovak (http://www.transifex.com/projects/p/aur/language/"
@@ -54,9 +54,6 @@ msgstr "Použite tento formulár pre vyhľadávanie v existujúcich účtoch."
msgid "You must log in to view user information."
msgstr "Musíte sa prihlásiť, pre zobrazenie užívateľských informácií. "
-msgid "Use this form to create an account."
-msgstr "Použite tento formulár pre vytvorenie účtu. "
-
msgid "Add Proposal"
msgstr "Pridať návrh"
@@ -115,9 +112,9 @@ msgstr ""
msgid "Home"
msgstr "Domov"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Vitajte v AUR! Prečítajte si prosím %sAUR smernicu pre užívateľov%s a %sAUR "
@@ -147,6 +144,9 @@ msgstr ""
"Nepodporované balíčky sú vytvárané užívateľmi. Akékoľvek použitie "
"poskytnutých súborov je na vaše vlastné riziko. "
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -170,10 +170,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -190,14 +191,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Vyvlastni balíčky"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Diskusia"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -205,10 +221,10 @@ msgstr "Ohlasovanie chýb"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -289,6 +305,10 @@ msgstr "Heslo musí mať aspoň %s znakov."
msgid "Invalid e-mail."
msgstr "Neplatný e-mail."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Obnova hesla"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -351,10 +371,10 @@ msgstr "Vymazanie balíčka"
msgid "Delete Package: %s"
msgstr "Vymazať balíček: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Použite tento formulár pre vymazanie základne balíčka %s%s%s a nasledovných "
"balíčkov z AUR: "
@@ -461,6 +481,12 @@ msgstr "Posledný"
msgid "Requests"
msgstr "Žiadosti"
+msgid "Register"
+msgstr "Registrovať"
+
+msgid "Use this form to create an account."
+msgstr "Použite tento formulár pre vytvorenie účtu. "
+
msgid "Trusted User"
msgstr "Dôverovaný užívateľ (TU)"
@@ -553,6 +579,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Kliknite na Prihlásenie pre použitie svojho účtu."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -606,6 +636,10 @@ msgstr "Neplatný email a kombinácia obnovovacích znakov."
msgid "None"
msgstr "Žiadny"
+#, php-format
+msgid "View account information for %s"
+msgstr "Pozri informácie o účte pre %s"
+
msgid "Error retrieving package details."
msgstr "Chyba pri získavaní informácií o balíčku."
@@ -695,17 +729,13 @@ msgstr "Komentár bol vymazaný."
msgid "You are not allowed to delete this comment."
msgstr "Nemáte práva na vymazanie tohto komentára."
-msgid "Missing category ID."
-msgstr "Chýba ID kategórie."
-
-msgid "Invalid category ID."
-msgstr "Neplatné ID kategórie."
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "Na zmenu kategórie balíčka nemáte oprávnenie."
-msgid "Package category changed."
-msgstr "Kategória balíčka bola zmenená."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Vybrané balíčky boli vymazané."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -744,8 +774,8 @@ msgstr "Len Dôverovaní Užívatelia (TU) a vývojári môžu zatvárať žiado
msgid "Request closed successfully."
msgstr "Žiadosť bola úspešne uzavretá."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Tento formulár môžete použiť na trvalé vymazanie AUR účtu %s."
#, php-format
@@ -825,9 +855,10 @@ msgstr "Potvrďte heslo"
msgid "Language"
msgstr "Jazyk"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -884,101 +915,6 @@ msgstr "Moje balíčky"
msgid " My Account"
msgstr "Môj účet"
-msgid "Register"
-msgstr "Registrovať"
-
-msgid "unknown"
-msgstr "neznámy"
-
-msgid "Package Base Details"
-msgstr "Detaily základne balíčka"
-
-msgid "Package Actions"
-msgstr "Akcie balíčka"
-
-msgid "View PKGBUILD"
-msgstr "Pozrieť PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "Prehľadať wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Označený ako neaktuálny"
-
-msgid "Flag package out-of-date"
-msgstr "Označ balíček ako neaktuálny"
-
-msgid "Unflag package"
-msgstr "Odznač balíček"
-
-msgid "Remove vote"
-msgstr "Odober hlas"
-
-msgid "Vote for this package"
-msgstr "Hlasuj za tento balíček"
-
-msgid "Disable notifications"
-msgstr "Vypni upozornenia"
-
-msgid "Notify of new comments"
-msgstr "Upozorni na nové komentáre"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d ostávajúcich žiadostí"
-msgstr[1] "%d ostávajúce žiadosti"
-msgstr[2] "%d ostávajúcich žiadostí"
-
-msgid "Delete Package"
-msgstr "Vymaž balíček"
-
-msgid "Merge Package"
-msgstr "Zlúč balíček"
-
-msgid "Adopt Package"
-msgstr "Adoptuj balíček"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "Kategória"
-
-msgid "Change category"
-msgstr "Zmeniť kategóriu"
-
-msgid "Submitter"
-msgstr "Prispievateľ"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Pozri informácie o účte pre %s"
-
-msgid "Maintainer"
-msgstr "Spravovateľ"
-
-msgid "Last Packager"
-msgstr "Naposledy zabalil"
-
-msgid "Votes"
-msgstr "Hlasy"
-
-msgid "First Submitted"
-msgstr "Prvý príspevok"
-
-msgid "Last Updated"
-msgstr "Posledná aktualizácia"
-
msgid "Add Comment"
msgstr "Pridať komentár"
@@ -1007,9 +943,18 @@ msgstr "vymazaný"
msgid "All comments"
msgstr "Všetky komentáre"
+msgid "unknown"
+msgstr "neznámy"
+
msgid "Package Details"
msgstr "Detaily balíčka"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Základňa balíčka"
@@ -1022,6 +967,9 @@ msgstr "Upstream URL"
msgid "Visit the website for"
msgstr "Navštív web stránku pre"
+msgid "Keywords"
+msgstr "Kľúčové slová"
+
msgid "Licenses"
msgstr "Licencie"
@@ -1037,115 +985,32 @@ msgstr "Poskytuje"
msgid "Replaces"
msgstr "Nahrádza"
-msgid "Dependencies"
-msgstr "Závislosti"
-
-msgid "Required by"
-msgstr "Vyžadovaný"
-
-msgid "Sources"
-msgstr "Zdroje"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Uzavrieť požiadavku: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Použite tento formulár pre zatvorenie požiadavky na základňu balíčka %s%s%s."
-
-msgid "Note"
-msgstr "Poznámka"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Políčko pre komentár možno nechať prázdne. Napriek tomu sa odporúča zanechať "
-"komentár pri zamietnutí požiadavky."
-
-msgid "Reason"
-msgstr "Dôvod"
-
-msgid "Accepted"
-msgstr "Prijatý"
-
-msgid "Rejected"
-msgstr "Zamietnutý"
-
-msgid "Comments"
-msgstr "Komentáre"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Vyplniť žiadosť: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Použite tento formulár na vyplnenie požiadavky ohľadom základne balíčka %s%s"
-"%s ktorá zahrňuje nasledovné balíčky:"
-
-msgid "Request type"
-msgstr "Typ žiadosti"
-
-msgid "Deletion"
-msgstr "Vymazanie"
-
-msgid "Orphan"
-msgstr "Vyvlastniť"
-
-msgid "Merge into"
-msgstr "Zlúčiť do"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "Bola nájdená %d požiadavka ohľadom balíčkov."
-msgstr[1] "Boli nájdené %d požiadavky ohľadom balíčkov."
-msgstr[2] "Bolo nájdených %d požiadaviek ohľadom balíčkov."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Strana %d z %d."
-
-msgid "Package"
-msgstr "Balíček"
-
-msgid "Filed by"
-msgstr "Vyplnil"
+msgid "Submitter"
+msgstr "Prispievateľ"
-msgid "Date"
-msgstr "Dátum"
+msgid "Maintainer"
+msgstr "Spravovateľ"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d dní ostáva"
+msgid "Last Packager"
+msgstr "Naposledy zabalil"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "ostáva ~%d hodina"
-msgstr[1] "ostávajú ~%d hodiny"
-msgstr[2] "ostáva ~%d hodín"
+msgid "Votes"
+msgstr "Hlasy"
-msgid "<1 hour left"
-msgstr "ostáva < 1 hodina"
+msgid "First Submitted"
+msgstr "Prvý príspevok"
-msgid "Accept"
-msgstr "Prijať"
+msgid "Last Updated"
+msgstr "Posledná aktualizácia"
-msgid "Locked"
-msgstr "Uzamknuté"
+msgid "Dependencies"
+msgstr "Závislosti"
-msgid "Close"
-msgstr "Zatvoriť"
+msgid "Required by"
+msgstr "Vyžadovaný"
-msgid "Closed"
-msgstr "Zatvorené"
+msgid "Sources"
+msgstr "Zdroje"
msgid "Name, Description"
msgstr "meno, popis"
@@ -1189,15 +1054,9 @@ msgstr "Zostupne"
msgid "Enter search criteria"
msgstr "Zadaj kritériá pre vyhľadávanie"
-msgid "Any"
-msgstr "Ľubovoľné"
-
msgid "Search by"
msgstr "Vyhľadávať podľa"
-msgid "Keywords"
-msgstr "Kľúčové slová"
-
msgid "Out of Date"
msgstr "Neaktuálny"
@@ -1229,9 +1088,18 @@ msgstr[0] "%d nájdených balíčkov."
msgstr[1] "%d nájdené balíčky."
msgstr[2] "%d nájdených balíčkov."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Strana %d z %d."
+
msgid "Version"
msgstr "Verzia"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Áno"
@@ -1256,9 +1124,164 @@ msgstr "Vyvlastni balíčky"
msgid "Delete Packages"
msgstr "Vymaž balíčky"
+msgid "Merge into"
+msgstr "Zlúčiť do"
+
msgid "Confirm"
msgstr "Potvrď"
+msgid "Package Actions"
+msgstr "Akcie balíčka"
+
+msgid "View PKGBUILD"
+msgstr "Pozrieť PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "Prehľadať wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Označený ako neaktuálny"
+
+msgid "Flag package out-of-date"
+msgstr "Označ balíček ako neaktuálny"
+
+msgid "Unflag package"
+msgstr "Odznač balíček"
+
+msgid "Remove vote"
+msgstr "Odober hlas"
+
+msgid "Vote for this package"
+msgstr "Hlasuj za tento balíček"
+
+msgid "Disable notifications"
+msgstr "Vypni upozornenia"
+
+msgid "Notify of new comments"
+msgstr "Upozorni na nové komentáre"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d ostávajúcich žiadostí"
+msgstr[1] "%d ostávajúce žiadosti"
+msgstr[2] "%d ostávajúcich žiadostí"
+
+msgid "Delete Package"
+msgstr "Vymaž balíček"
+
+msgid "Merge Package"
+msgstr "Zlúč balíček"
+
+msgid "Adopt Package"
+msgstr "Adoptuj balíček"
+
+msgid "Package Base Details"
+msgstr "Detaily základne balíčka"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Uzavrieť požiadavku: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Použite tento formulár pre zatvorenie požiadavky na základňu balíčka %s%s%s."
+
+msgid "Note"
+msgstr "Poznámka"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Políčko pre komentár možno nechať prázdne. Napriek tomu sa odporúča zanechať "
+"komentár pri zamietnutí požiadavky."
+
+msgid "Reason"
+msgstr "Dôvod"
+
+msgid "Accepted"
+msgstr "Prijatý"
+
+msgid "Rejected"
+msgstr "Zamietnutý"
+
+msgid "Comments"
+msgstr "Komentáre"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Vyplniť žiadosť: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Použite tento formulár na vyplnenie požiadavky ohľadom základne balíčka %s%s"
+"%s ktorá zahrňuje nasledovné balíčky:"
+
+msgid "Request type"
+msgstr "Typ žiadosti"
+
+msgid "Deletion"
+msgstr "Vymazanie"
+
+msgid "Orphan"
+msgstr "Vyvlastniť"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "Bola nájdená %d požiadavka ohľadom balíčkov."
+msgstr[1] "Boli nájdené %d požiadavky ohľadom balíčkov."
+msgstr[2] "Bolo nájdených %d požiadaviek ohľadom balíčkov."
+
+msgid "Package"
+msgstr "Balíček"
+
+msgid "Filed by"
+msgstr "Vyplnil"
+
+msgid "Date"
+msgstr "Dátum"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d dní ostáva"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "ostáva ~%d hodina"
+msgstr[1] "ostávajú ~%d hodiny"
+msgstr[2] "ostáva ~%d hodín"
+
+msgid "<1 hour left"
+msgstr "ostáva < 1 hodina"
+
+msgid "Accept"
+msgstr "Prijať"
+
+msgid "Locked"
+msgstr "Uzamknuté"
+
+msgid "Close"
+msgstr "Zatvoriť"
+
+msgid "Closed"
+msgstr "Zatvorené"
+
msgid "Any type"
msgstr "Ľub. typ"
@@ -1340,3 +1363,21 @@ msgstr "Začiatok"
msgid "Back"
msgstr "Späť"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Chýba ID kategórie."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Neplatné ID kategórie."
+
+#~ msgid "Package category changed."
+#~ msgstr "Kategória balíčka bola zmenená."
+
+#~ msgid "Category"
+#~ msgstr "Kategória"
+
+#~ msgid "Change category"
+#~ msgstr "Zmeniť kategóriu"
+
+#~ msgid "Any"
+#~ msgstr "Ľubovoľné"
diff --git a/po/sr.po b/po/sr.po
index 7899e15..38432df 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-12 02:57+0000\n"
"Last-Translator: Slobodan Terzić <githzerai06@gmail.com>\n"
"Language-Team: Serbian (http://www.transifex.com/projects/p/aur/language/"
@@ -57,9 +57,6 @@ msgstr "Ovim obrascem pretražujete postojeće naloge."
msgid "You must log in to view user information."
msgstr "Morate se prijaviti da bi videli podatke o korisniku."
-msgid "Use this form to create an account."
-msgstr "Ovim formularom pravite nalog."
-
msgid "Add Proposal"
msgstr "Dodavanje predloga"
@@ -118,9 +115,9 @@ msgstr "Upravljanje koodržavaocima"
msgid "Home"
msgstr "Početna"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Dobrodošli u AUR! Molimo pročitajte %sSmernice za korisnike AUR-a%s i "
@@ -150,6 +147,9 @@ msgstr ""
"Paketi označeni sa [unsupported] su sadržaj koji stvaraju korisnici. "
"Upotrebljavate ih na sopstvenu odgovornost."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr "Podrška"
@@ -177,10 +177,11 @@ msgstr ""
msgid "Deletion Request"
msgstr "Zahtevi za brisanje"
+#, fuzzy, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
"zahtev za brisanje paketa iz Arčove Korisničke Riznice. Ne koristite ovo ako "
"je paket polomljen i može se lako ispraviti. Umesto toga, kontaktirajte "
@@ -205,14 +206,29 @@ msgstr ""
"%saur-requests%s. Međutim, molimo da ne koristite tu listu za podnošenje "
"zahteva."
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Odrekni se paketa"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Diskusija"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
"Opšta diskusija vezana za Arčovu Korisničku Riznicu (AUR) i strukturu "
"Poverljivih korisnika se vodi na dopisnoj listi %saur-general%s.Za diskusiju "
@@ -221,12 +237,12 @@ msgstr ""
msgid "Bug Reporting"
msgstr "Prijavljivanje grešaka"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
"Ukoliko nađete grešku u web sučelju AUR-a. molimo da je prijavite na našem "
"%sbubolovcu%s. Bubolovac koristite %sisključivo%s za prjavljivanje grešaka u "
@@ -311,6 +327,10 @@ msgstr "Lozinka mora imati najmanje %s znaka."
msgid "Invalid e-mail."
msgstr "Neispravna e-pošta."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Resetovanje lozinke"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -375,10 +395,10 @@ msgstr "Brisanje paketa"
msgid "Delete Package: %s"
msgstr "Obriši paket: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Ovim formularom brišete osnovu paketa %s%s%s i sledeće pakete iz AUR-a:"
@@ -485,6 +505,12 @@ msgstr "Zadnja"
msgid "Requests"
msgstr "Zahtevi"
+msgid "Register"
+msgstr "Registracija"
+
+msgid "Use this form to create an account."
+msgstr "Ovim formularom pravite nalog."
+
msgid "Trusted User"
msgstr "Poverljivi korisnik"
@@ -577,6 +603,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Kliknite iznad na vezu Prijava da bi koristili svoj nalog."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -630,6 +660,10 @@ msgstr "Neispravna kombinacija e-pošte i ključa za resetovanje."
msgid "None"
msgstr "Nema"
+#, php-format
+msgid "View account information for %s"
+msgstr "Prikaži podatke o nalogu za %s"
+
msgid "Error retrieving package details."
msgstr "Greška pri dobavaljanju podataka o paketu."
@@ -719,17 +753,13 @@ msgstr "Komentar je obrisan."
msgid "You are not allowed to delete this comment."
msgstr "Nije vam dozvoljeno brisanje ovog komentara."
-msgid "Missing category ID."
-msgstr "Nedostaje ID kategorije."
-
-msgid "Invalid category ID."
-msgstr "Neispravan ID kategorije."
-
-msgid "You are not allowed to change this package category."
-msgstr "Nemate dozvolu da promenite kategoriju ovog paketa."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "Nije vam dozvvoljeno da upravljate koodržavaocima ove osnove paketa."
-msgid "Package category changed."
-msgstr "Kategorija paketa je izmenjena."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Koodržavaoci osnove baze paketa su ažurirani."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr "Nije vam dozvvoljeno da upravljate koodržavaocima ove osnove paketa."
@@ -768,8 +798,8 @@ msgstr "Samo Poverljivi korisnici i programeri mogu zatvarati zahteve."
msgid "Request closed successfully."
msgstr "Zahtev je uspešno zatvoren."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Ovim možete trajno obrisati nalog %s iz AUR-a."
#, php-format
@@ -849,9 +879,10 @@ msgstr "Ponovo unesite lozinku"
msgid "Language"
msgstr "Jezik"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"Sledeće informacije su neophodne ako želite da prilažete pakete u Arčovu "
"korisničku riznicu."
@@ -912,101 +943,6 @@ msgstr "Moji paketi"
msgid " My Account"
msgstr "Moj nalog"
-msgid "Register"
-msgstr "Registracija"
-
-msgid "unknown"
-msgstr "nepoznata"
-
-msgid "Package Base Details"
-msgstr "Podaci o bazi paketa"
-
-msgid "Package Actions"
-msgstr "Radnje nad paketom"
-
-msgid "View PKGBUILD"
-msgstr "Prikaži PKGBUILD"
-
-msgid "View Changes"
-msgstr "Prikaz izmena"
-
-msgid "Download snapshot"
-msgstr "Preuzimanje snimka"
-
-msgid "Search wiki"
-msgstr "Pretraži wiki"
-
-msgid "Flagged out-of-date"
-msgstr "Označen kao zastareo"
-
-msgid "Flag package out-of-date"
-msgstr "Označi kao zastareo"
-
-msgid "Unflag package"
-msgstr "Odznači paket"
-
-msgid "Remove vote"
-msgstr "Ukloni glas"
-
-msgid "Vote for this package"
-msgstr "Glasajte za paket"
-
-msgid "Disable notifications"
-msgstr "Ugasi obaveštenja"
-
-msgid "Notify of new comments"
-msgstr "Obavesti o novim komentarima"
-
-msgid "Manage Co-Maintainers"
-msgstr "Upravljanje koodržavaocima"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d zahtev na čekanju"
-msgstr[1] "%d zahteva na čekanju"
-msgstr[2] "%d zahteva na čekanju"
-
-msgid "Delete Package"
-msgstr "Obriši paket"
-
-msgid "Merge Package"
-msgstr "Spoji paket"
-
-msgid "Adopt Package"
-msgstr "Usvoji paket"
-
-msgid "Git Clone URL"
-msgstr "URL za git kloniranje"
-
-msgid "Category"
-msgstr "Kategorija"
-
-msgid "Change category"
-msgstr "Promeni kategoriju"
-
-msgid "Submitter"
-msgstr "Pošiljalac"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Prikaži podatke o nalogu za %s"
-
-msgid "Maintainer"
-msgstr "Održavalac"
-
-msgid "Last Packager"
-msgstr "Poslednji paketar"
-
-msgid "Votes"
-msgstr "Glasova"
-
-msgid "First Submitted"
-msgstr "Prvi put priloženo"
-
-msgid "Last Updated"
-msgstr "Poslednje ažuriranje"
-
msgid "Add Comment"
msgstr "Dodaj komentar"
@@ -1035,9 +971,18 @@ msgstr "obrisan"
msgid "All comments"
msgstr "Svi komentari"
+msgid "unknown"
+msgstr "nepoznata"
+
msgid "Package Details"
msgstr "Podaci o paketu"
+msgid "Git Clone URL"
+msgstr "URL za git kloniranje"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Osnova paketa"
@@ -1050,6 +995,9 @@ msgstr "Uzvodni URL"
msgid "Visit the website for"
msgstr "Poseti sajt za"
+msgid "Keywords"
+msgstr "Ključne reči"
+
msgid "Licenses"
msgstr "Licence"
@@ -1065,114 +1013,32 @@ msgstr "Dostavlja"
msgid "Replaces"
msgstr "Smenjuje"
-msgid "Dependencies"
-msgstr "Zavisnosti"
-
-msgid "Required by"
-msgstr "Zahteva ga"
-
-msgid "Sources"
-msgstr "Izvori"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Zatvaranje zahteva: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "Ovim formularom zatvarate zahteve za osnovu paketa %s%s%s."
-
-msgid "Note"
-msgstr "Beleška"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Polje komentara može ostati prazno. Međutim, preporučujemo da uvek dodate "
-"komentar pri odbijanju zahteva."
-
-msgid "Reason"
-msgstr "Razlog"
-
-msgid "Accepted"
-msgstr "Prihvaćeno"
-
-msgid "Rejected"
-msgstr "Odbijeno"
-
-msgid "Comments"
-msgstr "Komentari"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Slanje zahteva: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Ovim formularom pošaljite zahtev vezan za osnovu paketa %s%s%s koja sadrži "
-"sledeće pakete:"
-
-msgid "Request type"
-msgstr "Tip zahteva"
-
-msgid "Deletion"
-msgstr "Brisanje"
-
-msgid "Orphan"
-msgstr "Siročić"
-
-msgid "Merge into"
-msgstr "Stopi sa"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d zahtev za paket."
-msgstr[1] "%d zahteva za paket."
-msgstr[2] "%d zahteva za paket."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Stranica %d od %d."
-
-msgid "Package"
-msgstr "Paket"
-
-msgid "Filed by"
-msgstr "Posla"
+msgid "Submitter"
+msgstr "Pošiljalac"
-msgid "Date"
-msgstr "Datum"
+msgid "Maintainer"
+msgstr "Održavalac"
-#, php-format
-msgid "~%d days left"
-msgstr "Preostalo dana: ~%d"
+msgid "Last Packager"
+msgstr "Poslednji paketar"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "Preostao ~%d čas"
-msgstr[1] "Preostala ~%d časa"
-msgstr[2] "Preostalo ~%d časova"
+msgid "Votes"
+msgstr "Glasova"
-msgid "<1 hour left"
-msgstr "<1 sata preostalo"
+msgid "First Submitted"
+msgstr "Prvi put priloženo"
-msgid "Accept"
-msgstr "Prihvati"
+msgid "Last Updated"
+msgstr "Poslednje ažuriranje"
-msgid "Locked"
-msgstr "Zaključano"
+msgid "Dependencies"
+msgstr "Zavisnosti"
-msgid "Close"
-msgstr "Zatvori"
+msgid "Required by"
+msgstr "Zahteva ga"
-msgid "Closed"
-msgstr "Zatvoreno"
+msgid "Sources"
+msgstr "Izvori"
msgid "Name, Description"
msgstr "ime, opis"
@@ -1216,15 +1082,9 @@ msgstr "opadajući"
msgid "Enter search criteria"
msgstr "Unesite kriterijum pretrage"
-msgid "Any"
-msgstr "bilo koja"
-
msgid "Search by"
msgstr "Traži se"
-msgid "Keywords"
-msgstr "Ključne reči"
-
msgid "Out of Date"
msgstr "Zastareli paketi"
@@ -1256,9 +1116,18 @@ msgstr[0] "Nađen %d paket."
msgstr[1] "Nađena %d paketa."
msgstr[2] "Nađeno %d paketa."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Stranica %d od %d."
+
msgid "Version"
msgstr "Verzija"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Da"
@@ -1283,9 +1152,163 @@ msgstr "Odrekni se paketa"
msgid "Delete Packages"
msgstr "Obriši pakete"
+msgid "Merge into"
+msgstr "Stopi sa"
+
msgid "Confirm"
msgstr "Potvrdi"
+msgid "Package Actions"
+msgstr "Radnje nad paketom"
+
+msgid "View PKGBUILD"
+msgstr "Prikaži PKGBUILD"
+
+msgid "View Changes"
+msgstr "Prikaz izmena"
+
+msgid "Download snapshot"
+msgstr "Preuzimanje snimka"
+
+msgid "Search wiki"
+msgstr "Pretraži wiki"
+
+msgid "Flagged out-of-date"
+msgstr "Označen kao zastareo"
+
+msgid "Flag package out-of-date"
+msgstr "Označi kao zastareo"
+
+msgid "Unflag package"
+msgstr "Odznači paket"
+
+msgid "Remove vote"
+msgstr "Ukloni glas"
+
+msgid "Vote for this package"
+msgstr "Glasajte za paket"
+
+msgid "Disable notifications"
+msgstr "Ugasi obaveštenja"
+
+msgid "Notify of new comments"
+msgstr "Obavesti o novim komentarima"
+
+msgid "Manage Co-Maintainers"
+msgstr "Upravljanje koodržavaocima"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d zahtev na čekanju"
+msgstr[1] "%d zahteva na čekanju"
+msgstr[2] "%d zahteva na čekanju"
+
+msgid "Delete Package"
+msgstr "Obriši paket"
+
+msgid "Merge Package"
+msgstr "Spoji paket"
+
+msgid "Adopt Package"
+msgstr "Usvoji paket"
+
+msgid "Package Base Details"
+msgstr "Podaci o bazi paketa"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Zatvaranje zahteva: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "Ovim formularom zatvarate zahteve za osnovu paketa %s%s%s."
+
+msgid "Note"
+msgstr "Beleška"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Polje komentara može ostati prazno. Međutim, preporučujemo da uvek dodate "
+"komentar pri odbijanju zahteva."
+
+msgid "Reason"
+msgstr "Razlog"
+
+msgid "Accepted"
+msgstr "Prihvaćeno"
+
+msgid "Rejected"
+msgstr "Odbijeno"
+
+msgid "Comments"
+msgstr "Komentari"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Slanje zahteva: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Ovim formularom pošaljite zahtev vezan za osnovu paketa %s%s%s koja sadrži "
+"sledeće pakete:"
+
+msgid "Request type"
+msgstr "Tip zahteva"
+
+msgid "Deletion"
+msgstr "Brisanje"
+
+msgid "Orphan"
+msgstr "Siročić"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d zahtev za paket."
+msgstr[1] "%d zahteva za paket."
+msgstr[2] "%d zahteva za paket."
+
+msgid "Package"
+msgstr "Paket"
+
+msgid "Filed by"
+msgstr "Posla"
+
+msgid "Date"
+msgstr "Datum"
+
+#, php-format
+msgid "~%d days left"
+msgstr "Preostalo dana: ~%d"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "Preostao ~%d čas"
+msgstr[1] "Preostala ~%d časa"
+msgstr[2] "Preostalo ~%d časova"
+
+msgid "<1 hour left"
+msgstr "<1 sata preostalo"
+
+msgid "Accept"
+msgstr "Prihvati"
+
+msgid "Locked"
+msgstr "Zaključano"
+
+msgid "Close"
+msgstr "Zatvori"
+
+msgid "Closed"
+msgstr "Zatvoreno"
+
msgid "Any type"
msgstr "Bilo koji tip"
@@ -1367,3 +1390,24 @@ msgstr "Pokrenut"
msgid "Back"
msgstr "Nazad"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Nedostaje ID kategorije."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Neispravan ID kategorije."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "Nemate dozvolu da promenite kategoriju ovog paketa."
+
+#~ msgid "Package category changed."
+#~ msgstr "Kategorija paketa je izmenjena."
+
+#~ msgid "Category"
+#~ msgstr "Kategorija"
+
+#~ msgid "Change category"
+#~ msgstr "Promeni kategoriju"
+
+#~ msgid "Any"
+#~ msgstr "bilo koja"
diff --git a/po/tr.po b/po/tr.po
index 988fd2a..b93520d 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-12 08:15+0000\n"
"Last-Translator: Atilla Öntaş <tarakbumba@gmail.com>\n"
"Language-Team: Turkish (http://www.transifex.com/projects/p/aur/language/"
@@ -61,9 +61,6 @@ msgstr "Mevcut hesaplar içinde arama yapmak için bu formu kullanın."
msgid "You must log in to view user information."
msgstr "Kullanıcı bilgilerini görmek için giriş yapmalısınız."
-msgid "Use this form to create an account."
-msgstr "Yeni bir hesap oluşturmak için bu formu kullanın."
-
msgid "Add Proposal"
msgstr "Öneri ekle"
@@ -122,9 +119,9 @@ msgstr "Yardımcı bakımcıları Yönet"
msgid "Home"
msgstr "Anasayfa"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"AUR'a hoş geldiniz! Bilgi almak için lütfen %sAUR Kullanıcı Rehberi%s ve "
@@ -156,6 +153,9 @@ msgstr ""
"sahiptirler. Bu paketlerin kullanımından doğan risk kullanıcının kendisine "
"aittir."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr "Destek"
@@ -183,10 +183,11 @@ msgstr ""
msgid "Deletion Request"
msgstr "Silme Talebi"
+#, fuzzy, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
"Bir paketin Arch Kullanıcı Deposundan kaldırılması talebidir. Lütfen bunu, "
"bir paket çalışmıyor fakat kolayca düzeltilebiliyorsa kullanmayın. Bunun "
@@ -213,14 +214,29 @@ msgstr ""
"listesini kullanabilirsiniz. Bununla birlikte o e-posta listesini dosya "
"talepleri için kullanmamalısınız."
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Paketleri sahiplenmeyi bırak"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Tartışma"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
"Arch Kullanıcı Deposu (AUR) ve Güvenilir Kullanıcı yapısı ile ilgili genel "
"tartışmalar %saur-general%s üzerinde yapılır. AUR web arayüzü geliştirme "
@@ -229,12 +245,12 @@ msgstr ""
msgid "Bug Reporting"
msgstr "Hata Bildirimi"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
"Eğer AUR'da bir hata ile karşılaştırsanız lütfen %shata takip sistemine%s "
"bildirin. Hata takip sistemini lütfen %ssadece%s AUR sistemi için kullanın. "
@@ -318,6 +334,10 @@ msgstr "Şifreniz en az %s karakterden oluşmalıdır."
msgid "Invalid e-mail."
msgstr "Geçersiz e-posta adresi"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Parola sıfırlama"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -384,10 +404,10 @@ msgstr "Paket Silimi"
msgid "Delete Package: %s"
msgstr "Paketi sil: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr ""
"Bu formu paket temeli %s%s%s ve şu paketleri AUR üzerinden silmek için "
"kullanın: "
@@ -501,6 +521,12 @@ msgstr "Son"
msgid "Requests"
msgstr "Talepler"
+msgid "Register"
+msgstr "Kayıt ol"
+
+msgid "Use this form to create an account."
+msgstr "Yeni bir hesap oluşturmak için bu formu kullanın."
+
msgid "Trusted User"
msgstr "Güvenilen Kullanıcı"
@@ -593,6 +619,10 @@ msgid "Click on the Login link above to use your account."
msgstr "Hesabınızı kullanmak için Giriş bağlantısını kullanın."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -645,6 +675,10 @@ msgstr "Geçersiz e-posta adresi ve sıfırlama anahtarı bileşimi"
msgid "None"
msgstr "Yok"
+#, php-format
+msgid "View account information for %s"
+msgstr "%s için hesap bilgilerini görüntüle"
+
msgid "Error retrieving package details."
msgstr "Paket bilgileri alınırken hata oluştu."
@@ -734,17 +768,14 @@ msgstr "Yorum silindi."
msgid "You are not allowed to delete this comment."
msgstr "Bu yorumu silme yetkiniz yok."
-msgid "Missing category ID."
-msgstr "Kategori kimliği bulunamadı."
-
-msgid "Invalid category ID."
-msgstr "Geçersiz kategori."
-
-msgid "You are not allowed to change this package category."
-msgstr "Bu paket kategorisini değiştirmek için gerekli izne sahip değilsiniz."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr ""
+"Bu paket temelinin yardımcı bakımcılarını yönetme yetkisine sahip değilsiniz."
-msgid "Package category changed."
-msgstr "Paket kategorisi değiştirildi."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Paket temeli yardımcı bakımcıları güncellendi."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -784,8 +815,8 @@ msgstr "Sadece GK'lar ve geliştiriciler talepleri kapatabilirler."
msgid "Request closed successfully."
msgstr "Talep başarıyla kapatıldı."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Bu formu kullanarak %s AUR hesabını temelli silebilirsiniz."
#, php-format
@@ -865,9 +896,10 @@ msgstr "Parolayı tekrar girin"
msgid "Language"
msgstr "Dil"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"Aşağıdaki bilgi sadece Arch Kullanıcı Deposu' na paket göndermek "
"istiyorsanız gereklidir."
@@ -928,100 +960,6 @@ msgstr "Paketlerim"
msgid " My Account"
msgstr "Hesabım"
-msgid "Register"
-msgstr "Kayıt ol"
-
-msgid "unknown"
-msgstr "bilinmiyor"
-
-msgid "Package Base Details"
-msgstr "Paket Temeli Ayrıntıları"
-
-msgid "Package Actions"
-msgstr "Paket Eylemleri"
-
-msgid "View PKGBUILD"
-msgstr "PKGBUILD görüntüle"
-
-msgid "View Changes"
-msgstr "Değişiklikleri Görüntüle"
-
-msgid "Download snapshot"
-msgstr "Anlık görüntüsünü indir"
-
-msgid "Search wiki"
-msgstr "Wikide ara"
-
-msgid "Flagged out-of-date"
-msgstr "Güncelliğini yitirmiş olarak işaretlendi"
-
-msgid "Flag package out-of-date"
-msgstr "Güncelliğini yitirmiş olarak işaretle"
-
-msgid "Unflag package"
-msgstr "İşareti kaldır"
-
-msgid "Remove vote"
-msgstr "Oyu kaldır"
-
-msgid "Vote for this package"
-msgstr "Pakete oy ver"
-
-msgid "Disable notifications"
-msgstr "Bildirimleri kapat"
-
-msgid "Notify of new comments"
-msgstr "Yeni yorumları bildir"
-
-msgid "Manage Co-Maintainers"
-msgstr "Yardımcı Bakımcıları Yönet"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d adet bekleyen talep"
-msgstr[1] "%d adet bekleyen talep"
-
-msgid "Delete Package"
-msgstr "Paketi Sil"
-
-msgid "Merge Package"
-msgstr "Paketi Birleştir"
-
-msgid "Adopt Package"
-msgstr "Paketi Sahiplen"
-
-msgid "Git Clone URL"
-msgstr "Git Clone URL"
-
-msgid "Category"
-msgstr "Kategori"
-
-msgid "Change category"
-msgstr "Kategori değiştir"
-
-msgid "Submitter"
-msgstr "Yükleyen"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "%s için hesap bilgilerini görüntüle"
-
-msgid "Maintainer"
-msgstr "Sorumlu"
-
-msgid "Last Packager"
-msgstr "Son Paketleyici"
-
-msgid "Votes"
-msgstr "Oy"
-
-msgid "First Submitted"
-msgstr "İlk Yükleme"
-
-msgid "Last Updated"
-msgstr "Son Güncelleme"
-
msgid "Add Comment"
msgstr "Yorum Ekle"
@@ -1050,9 +988,18 @@ msgstr "silindi"
msgid "All comments"
msgstr "Tüm yorumlar"
+msgid "unknown"
+msgstr "bilinmiyor"
+
msgid "Package Details"
msgstr "Paket Ayrıntıları"
+msgid "Git Clone URL"
+msgstr "Git Clone URL"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "Paket Temeli"
@@ -1065,6 +1012,9 @@ msgstr "Geliştiricinin Bağlantısı"
msgid "Visit the website for"
msgstr "Web sayfasını görüntüle"
+msgid "Keywords"
+msgstr "Anahtar kelimeler"
+
msgid "Licenses"
msgstr "Lisanslar"
@@ -1080,113 +1030,32 @@ msgstr "Sunar"
msgid "Replaces"
msgstr "Yerini alır"
-msgid "Dependencies"
-msgstr "Bağımlılıklar"
-
-msgid "Required by"
-msgstr "İhtiyaç duyanlar"
-
-msgid "Sources"
-msgstr "Kaynak kodlar"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Kapatma Talebi: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr ""
-"Bu formu %s%s%s paket temeli için yapılan talebi kapatmak için kullanın."
-
-msgid "Note"
-msgstr "Not"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Yorum alanı boş bırakılabilir. Ancak, bir talebi reddederken bir yorum "
-"eklemeniz şiddetle önerilir."
-
-msgid "Reason"
-msgstr "Sebep"
-
-msgid "Accepted"
-msgstr "Kabul edildi"
-
-msgid "Rejected"
-msgstr "Reddedildi"
-
-msgid "Comments"
-msgstr "Yorumlar"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Dosya Talebi: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Bu formu kullanarak aşağıdaki paketleri içeren paket temeli %s%s%s için "
-"talep doldurun:"
-
-msgid "Request type"
-msgstr "Talep türü"
-
-msgid "Deletion"
-msgstr "Silme"
-
-msgid "Orphan"
-msgstr "Öksüz"
-
-msgid "Merge into"
-msgstr "Şununla ilişkilendir:"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "%d adet paket talebi bulundu."
-msgstr[1] "%d adet paket talebi bulundu."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Sayfa %d / %d"
-
-msgid "Package"
-msgstr "Paket"
-
-msgid "Filed by"
-msgstr "Dolduran"
+msgid "Submitter"
+msgstr "Yükleyen"
-msgid "Date"
-msgstr "Tarih"
+msgid "Maintainer"
+msgstr "Sorumlu"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d gün kaldı"
+msgid "Last Packager"
+msgstr "Son Paketleyici"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d saat kaldı"
-msgstr[1] "~%d saat kaldı"
+msgid "Votes"
+msgstr "Oy"
-msgid "<1 hour left"
-msgstr "<1 saat kaldı"
+msgid "First Submitted"
+msgstr "İlk Yükleme"
-msgid "Accept"
-msgstr "Kabul"
+msgid "Last Updated"
+msgstr "Son Güncelleme"
-msgid "Locked"
-msgstr "Kilitli"
+msgid "Dependencies"
+msgstr "Bağımlılıklar"
-msgid "Close"
-msgstr "Kapat"
+msgid "Required by"
+msgstr "İhtiyaç duyanlar"
-msgid "Closed"
-msgstr "Kapandı"
+msgid "Sources"
+msgstr "Kaynak kodlar"
msgid "Name, Description"
msgstr "İsim, Açıklama"
@@ -1230,15 +1099,9 @@ msgstr "Yeniden eskiye"
msgid "Enter search criteria"
msgstr "Arama kriteri girin"
-msgid "Any"
-msgstr "Tümü"
-
msgid "Search by"
msgstr "Buna göre ara"
-msgid "Keywords"
-msgstr "Anahtar kelimeler"
-
msgid "Out of Date"
msgstr "Güncelliğini Yitirmiş"
@@ -1269,9 +1132,18 @@ msgid_plural "%d packages found."
msgstr[0] "%d adet paket bulundu."
msgstr[1] "%d adet paket bulundu."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Sayfa %d / %d"
+
msgid "Version"
msgstr "Sürüm"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Evet"
@@ -1296,9 +1168,161 @@ msgstr "Paketleri sahiplenmeyi bırak"
msgid "Delete Packages"
msgstr "Paketleri Sil"
+msgid "Merge into"
+msgstr "Şununla ilişkilendir:"
+
msgid "Confirm"
msgstr "Onayla"
+msgid "Package Actions"
+msgstr "Paket Eylemleri"
+
+msgid "View PKGBUILD"
+msgstr "PKGBUILD görüntüle"
+
+msgid "View Changes"
+msgstr "Değişiklikleri Görüntüle"
+
+msgid "Download snapshot"
+msgstr "Anlık görüntüsünü indir"
+
+msgid "Search wiki"
+msgstr "Wikide ara"
+
+msgid "Flagged out-of-date"
+msgstr "Güncelliğini yitirmiş olarak işaretlendi"
+
+msgid "Flag package out-of-date"
+msgstr "Güncelliğini yitirmiş olarak işaretle"
+
+msgid "Unflag package"
+msgstr "İşareti kaldır"
+
+msgid "Remove vote"
+msgstr "Oyu kaldır"
+
+msgid "Vote for this package"
+msgstr "Pakete oy ver"
+
+msgid "Disable notifications"
+msgstr "Bildirimleri kapat"
+
+msgid "Notify of new comments"
+msgstr "Yeni yorumları bildir"
+
+msgid "Manage Co-Maintainers"
+msgstr "Yardımcı Bakımcıları Yönet"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d adet bekleyen talep"
+msgstr[1] "%d adet bekleyen talep"
+
+msgid "Delete Package"
+msgstr "Paketi Sil"
+
+msgid "Merge Package"
+msgstr "Paketi Birleştir"
+
+msgid "Adopt Package"
+msgstr "Paketi Sahiplen"
+
+msgid "Package Base Details"
+msgstr "Paket Temeli Ayrıntıları"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Kapatma Talebi: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr ""
+"Bu formu %s%s%s paket temeli için yapılan talebi kapatmak için kullanın."
+
+msgid "Note"
+msgstr "Not"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Yorum alanı boş bırakılabilir. Ancak, bir talebi reddederken bir yorum "
+"eklemeniz şiddetle önerilir."
+
+msgid "Reason"
+msgstr "Sebep"
+
+msgid "Accepted"
+msgstr "Kabul edildi"
+
+msgid "Rejected"
+msgstr "Reddedildi"
+
+msgid "Comments"
+msgstr "Yorumlar"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Dosya Talebi: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Bu formu kullanarak aşağıdaki paketleri içeren paket temeli %s%s%s için "
+"talep doldurun:"
+
+msgid "Request type"
+msgstr "Talep türü"
+
+msgid "Deletion"
+msgstr "Silme"
+
+msgid "Orphan"
+msgstr "Öksüz"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "%d adet paket talebi bulundu."
+msgstr[1] "%d adet paket talebi bulundu."
+
+msgid "Package"
+msgstr "Paket"
+
+msgid "Filed by"
+msgstr "Dolduran"
+
+msgid "Date"
+msgstr "Tarih"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d gün kaldı"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d saat kaldı"
+msgstr[1] "~%d saat kaldı"
+
+msgid "<1 hour left"
+msgstr "<1 saat kaldı"
+
+msgid "Accept"
+msgstr "Kabul"
+
+msgid "Locked"
+msgstr "Kilitli"
+
+msgid "Close"
+msgstr "Kapat"
+
+msgid "Closed"
+msgstr "Kapandı"
+
msgid "Any type"
msgstr "Herhangi bir tür"
@@ -1380,3 +1404,25 @@ msgstr "Başlangıç"
msgid "Back"
msgstr "Geri"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Kategori kimliği bulunamadı."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Geçersiz kategori."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr ""
+#~ "Bu paket kategorisini değiştirmek için gerekli izne sahip değilsiniz."
+
+#~ msgid "Package category changed."
+#~ msgstr "Paket kategorisi değiştirildi."
+
+#~ msgid "Category"
+#~ msgstr "Kategori"
+
+#~ msgid "Change category"
+#~ msgstr "Kategori değiştir"
+
+#~ msgid "Any"
+#~ msgstr "Tümü"
diff --git a/po/uk.po b/po/uk.po
index e431c5f..5ad08e6 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-12 12:02+0000\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/aur/language/"
@@ -60,9 +60,6 @@ msgstr "Шукайте облікові записи за допомогою ц
msgid "You must log in to view user information."
msgstr "Ви повинні увійти в систему для перегляду даних користувача."
-msgid "Use this form to create an account."
-msgstr "Створіть обліковий запис за допомогою цієї форми."
-
msgid "Add Proposal"
msgstr "Додати пропозицію"
@@ -121,9 +118,9 @@ msgstr "Керування супровідниками"
msgid "Home"
msgstr "Початкова сторінка"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"Раді вітати вас в «AUR» — у сховищі користувацьких пакунків. Розширена "
@@ -154,6 +151,9 @@ msgstr ""
"Пакунки, що не підтримуються - це пакунки, створені користувачами. Ви можете "
"використовувати їх тільки на Ваш власний страх і ризик."
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr "Підтримка"
@@ -181,10 +181,11 @@ msgstr ""
msgid "Deletion Request"
msgstr "Запит на вилучення"
+#, fuzzy, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
"Запит на вилучення пакунку зі Сховища Користувацьких Пакунків AUR. Будь "
"ласка, не використовуйте це, якщо пакунок є зламаний і його можна легко "
@@ -209,14 +210,29 @@ msgstr ""
"Якщо Ви бажаєте обговорити запит, використайте список розсилки %saur-requests"
"%s. Будь ласка, не використовуйте цю розсилку для подання запитів."
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "Зректися пакунків"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "Обговорення"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
"Загальне обговорення сховища користувацьких пакунків (AUR) та структури "
"довірених користувачів відбувається в %saur-general%s. Для дискусій про "
@@ -225,12 +241,12 @@ msgstr ""
msgid "Bug Reporting"
msgstr "Повідомлення про вади"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
"Якщо Ви знайдете ваду в AUR, %sповідомте нам%s. Таким чином слід сповіщати "
"%sлише%s про проблеми AUR. При виявленні вади конкретного пакунка зв’яжіться "
@@ -314,6 +330,10 @@ msgstr "Ваш пароль має містити щонайменше %s сим
msgid "Invalid e-mail."
msgstr "Неправильна електронна адреса."
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "Скидання паролю"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -380,10 +400,10 @@ msgstr "Вилучення пакунку"
msgid "Delete Package: %s"
msgstr "Вилучити пакунок: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr "Використовуйте цю форму для вилучення пакунку %s%s%s з AUR. "
msgid "Deletion of a package is permanent. "
@@ -492,6 +512,12 @@ msgstr "Останній"
msgid "Requests"
msgstr "Запити"
+msgid "Register"
+msgstr "Зареєструватись"
+
+msgid "Use this form to create an account."
+msgstr "Створіть обліковий запис за допомогою цієї форми."
+
msgid "Trusted User"
msgstr "Довірений користувач"
@@ -586,6 +612,10 @@ msgstr ""
"«Увійти» (згори)."
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -639,6 +669,10 @@ msgstr "Неприпустима адреса електронної пошти
msgid "None"
msgstr "Немає"
+#, php-format
+msgid "View account information for %s"
+msgstr "Показати інформацію про рахунок для %s"
+
msgid "Error retrieving package details."
msgstr "Помилка пошуку інформації про пакунок."
@@ -730,17 +764,13 @@ msgstr "Коментар вилучено."
msgid "You are not allowed to delete this comment."
msgstr "У вас немає прав, щоб вилучити цей коментар."
-msgid "Missing category ID."
-msgstr "Пропущено ідентифікатор категорії."
-
-msgid "Invalid category ID."
-msgstr "Неправильний ідентифікатор категорії."
-
-msgid "You are not allowed to change this package category."
-msgstr "Ви не можете змінити катеогрію цього пакунку."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "Ви не має прав для керування супровідниками цього базового пакунку."
-msgid "Package category changed."
-msgstr "Категорію пакунку змінено."
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "Оновлено супровідників базового пакунку."
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr "Ви не має прав для керування супровідниками цього базового пакунку."
@@ -779,8 +809,8 @@ msgstr "Тільки TU (довірені користувачі) і розро
msgid "Request closed successfully."
msgstr "Запит успішно закритий."
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "Ви можете використати цю форму для вилучення рахунку в AUR %s."
#, php-format
@@ -860,9 +890,10 @@ msgstr "Введіть пароль ще раз"
msgid "Language"
msgstr "Мова"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
"Наступну інформацію потрібно, якщо Ви бажаєте надіслати пакунки до Сховища "
"Користувацьких Пакунків AUR."
@@ -923,101 +954,6 @@ msgstr "Мої пакунки"
msgid " My Account"
msgstr "Мій рахунок"
-msgid "Register"
-msgstr "Зареєструватись"
-
-msgid "unknown"
-msgstr "невідомо"
-
-msgid "Package Base Details"
-msgstr "Деталі бази пакунків"
-
-msgid "Package Actions"
-msgstr "Дії над пакунком"
-
-msgid "View PKGBUILD"
-msgstr "Переглянути PKGBUILD"
-
-msgid "View Changes"
-msgstr "Переглянути зміни"
-
-msgid "Download snapshot"
-msgstr "Звантажити поточну версію"
-
-msgid "Search wiki"
-msgstr "Шукати у Вікі"
-
-msgid "Flagged out-of-date"
-msgstr "Позначено як застарілий"
-
-msgid "Flag package out-of-date"
-msgstr "Позначити пакунок як застарілий"
-
-msgid "Unflag package"
-msgstr "Відмінити позначення"
-
-msgid "Remove vote"
-msgstr "Вилучити голос"
-
-msgid "Vote for this package"
-msgstr "Голосувати за цей пакунок"
-
-msgid "Disable notifications"
-msgstr "Відключити сповіщення"
-
-msgid "Notify of new comments"
-msgstr "Сповіщати про нові коментарі"
-
-msgid "Manage Co-Maintainers"
-msgstr "Керування Супровідниками"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d запит в обробці"
-msgstr[1] "%d запитів в обробці"
-msgstr[2] "%d запитів в обробці"
-
-msgid "Delete Package"
-msgstr "Вилучити пакунок"
-
-msgid "Merge Package"
-msgstr "Об’єднати пакунок"
-
-msgid "Adopt Package"
-msgstr "Прийняти пакунок"
-
-msgid "Git Clone URL"
-msgstr "Адреса URL для клонування Git"
-
-msgid "Category"
-msgstr "Категорія"
-
-msgid "Change category"
-msgstr "Змінити категорію"
-
-msgid "Submitter"
-msgstr "Подавач"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "Показати інформацію про рахунок для %s"
-
-msgid "Maintainer"
-msgstr "Супровідник"
-
-msgid "Last Packager"
-msgstr "Останній збирач пакунку"
-
-msgid "Votes"
-msgstr "Голоси"
-
-msgid "First Submitted"
-msgstr "Вперше надіслано"
-
-msgid "Last Updated"
-msgstr "Останній раз оновлено"
-
msgid "Add Comment"
msgstr "Додати коментар"
@@ -1046,9 +982,18 @@ msgstr "вилучено"
msgid "All comments"
msgstr "Всі коментарі"
+msgid "unknown"
+msgstr "невідомо"
+
msgid "Package Details"
msgstr "Подробиці пакунку"
+msgid "Git Clone URL"
+msgstr "Адреса URL для клонування Git"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "База пакунків"
@@ -1061,6 +1006,9 @@ msgstr "Посилання"
msgid "Visit the website for"
msgstr "Відвідати веб-сторінку для"
+msgid "Keywords"
+msgstr "Ключові слова"
+
msgid "Licenses"
msgstr "Ліцензії"
@@ -1076,114 +1024,32 @@ msgstr "Забезпечує"
msgid "Replaces"
msgstr "Замінює"
-msgid "Dependencies"
-msgstr "Залежності"
-
-msgid "Required by"
-msgstr "Потрібен для"
-
-msgid "Sources"
-msgstr "Сирці"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "Закрити запит: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "Використайте цю форму для закриття запиту бази пакетів %s%s%s."
-
-msgid "Note"
-msgstr "Примітка"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr ""
-"Поле коментарів може залишатися пустим. Тим не менше, рекомендовано залишити "
-"коментар при відкиданні запиту."
-
-msgid "Reason"
-msgstr "Причина"
-
-msgid "Accepted"
-msgstr "Прийнято"
-
-msgid "Rejected"
-msgstr "Відхилено"
-
-msgid "Comments"
-msgstr "Коментарі"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "Запит файлу: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr ""
-"Використайте цю форму для запиту файлу з бази пакунків %s%s%s, який містить "
-"наступні пакунки:"
-
-msgid "Request type"
-msgstr "Тип запиту"
-
-msgid "Deletion"
-msgstr "Вилучення"
-
-msgid "Orphan"
-msgstr "Позначити застарілим"
-
-msgid "Merge into"
-msgstr "Об'єднати в"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "Знайдено %d запит пакунку."
-msgstr[1] "Знайдено %d запитів пакунку."
-msgstr[2] "Знайдено %d запитів пакунку."
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "Сторінка %d з %d."
-
-msgid "Package"
-msgstr "Пакунок"
-
-msgid "Filed by"
-msgstr "Запаковано через"
+msgid "Submitter"
+msgstr "Подавач"
-msgid "Date"
-msgstr "Дата"
+msgid "Maintainer"
+msgstr "Супровідник"
-#, php-format
-msgid "~%d days left"
-msgstr "~%d днів залишилося"
+msgid "Last Packager"
+msgstr "Останній збирач пакунку"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "~%d година залишилася"
-msgstr[1] "~%d годин залишилося"
-msgstr[2] "~%d годин залишилося"
+msgid "Votes"
+msgstr "Голоси"
-msgid "<1 hour left"
-msgstr "<1 години залишилося"
+msgid "First Submitted"
+msgstr "Вперше надіслано"
-msgid "Accept"
-msgstr "Прийняти"
+msgid "Last Updated"
+msgstr "Останній раз оновлено"
-msgid "Locked"
-msgstr "Замкнено"
+msgid "Dependencies"
+msgstr "Залежності"
-msgid "Close"
-msgstr "Закрити"
+msgid "Required by"
+msgstr "Потрібен для"
-msgid "Closed"
-msgstr "Замкнено"
+msgid "Sources"
+msgstr "Сирці"
msgid "Name, Description"
msgstr "Назва, опис"
@@ -1227,15 +1093,9 @@ msgstr "Спадний"
msgid "Enter search criteria"
msgstr "Введіть критерії пошуку"
-msgid "Any"
-msgstr "Будь-який"
-
msgid "Search by"
msgstr "Де шукати"
-msgid "Keywords"
-msgstr "Ключові слова"
-
msgid "Out of Date"
msgstr "Застарілих"
@@ -1267,9 +1127,18 @@ msgstr[0] "Знайдено %d пакунок."
msgstr[1] "Знайдено %d пакунків."
msgstr[2] "Знайдено %d пакунків."
+#, php-format
+msgid "Page %d of %d."
+msgstr "Сторінка %d з %d."
+
msgid "Version"
msgstr "Версія"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "Так"
@@ -1294,9 +1163,163 @@ msgstr "Зректися пакунків"
msgid "Delete Packages"
msgstr "Вилучити пакунки"
+msgid "Merge into"
+msgstr "Об'єднати в"
+
msgid "Confirm"
msgstr "Підтвердити"
+msgid "Package Actions"
+msgstr "Дії над пакунком"
+
+msgid "View PKGBUILD"
+msgstr "Переглянути PKGBUILD"
+
+msgid "View Changes"
+msgstr "Переглянути зміни"
+
+msgid "Download snapshot"
+msgstr "Звантажити поточну версію"
+
+msgid "Search wiki"
+msgstr "Шукати у Вікі"
+
+msgid "Flagged out-of-date"
+msgstr "Позначено як застарілий"
+
+msgid "Flag package out-of-date"
+msgstr "Позначити пакунок як застарілий"
+
+msgid "Unflag package"
+msgstr "Відмінити позначення"
+
+msgid "Remove vote"
+msgstr "Вилучити голос"
+
+msgid "Vote for this package"
+msgstr "Голосувати за цей пакунок"
+
+msgid "Disable notifications"
+msgstr "Відключити сповіщення"
+
+msgid "Notify of new comments"
+msgstr "Сповіщати про нові коментарі"
+
+msgid "Manage Co-Maintainers"
+msgstr "Керування Супровідниками"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d запит в обробці"
+msgstr[1] "%d запитів в обробці"
+msgstr[2] "%d запитів в обробці"
+
+msgid "Delete Package"
+msgstr "Вилучити пакунок"
+
+msgid "Merge Package"
+msgstr "Об’єднати пакунок"
+
+msgid "Adopt Package"
+msgstr "Прийняти пакунок"
+
+msgid "Package Base Details"
+msgstr "Деталі бази пакунків"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "Закрити запит: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "Використайте цю форму для закриття запиту бази пакетів %s%s%s."
+
+msgid "Note"
+msgstr "Примітка"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr ""
+"Поле коментарів може залишатися пустим. Тим не менше, рекомендовано залишити "
+"коментар при відкиданні запиту."
+
+msgid "Reason"
+msgstr "Причина"
+
+msgid "Accepted"
+msgstr "Прийнято"
+
+msgid "Rejected"
+msgstr "Відхилено"
+
+msgid "Comments"
+msgstr "Коментарі"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "Запит файлу: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr ""
+"Використайте цю форму для запиту файлу з бази пакунків %s%s%s, який містить "
+"наступні пакунки:"
+
+msgid "Request type"
+msgstr "Тип запиту"
+
+msgid "Deletion"
+msgstr "Вилучення"
+
+msgid "Orphan"
+msgstr "Позначити застарілим"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "Знайдено %d запит пакунку."
+msgstr[1] "Знайдено %d запитів пакунку."
+msgstr[2] "Знайдено %d запитів пакунку."
+
+msgid "Package"
+msgstr "Пакунок"
+
+msgid "Filed by"
+msgstr "Запаковано через"
+
+msgid "Date"
+msgstr "Дата"
+
+#, php-format
+msgid "~%d days left"
+msgstr "~%d днів залишилося"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "~%d година залишилася"
+msgstr[1] "~%d годин залишилося"
+msgstr[2] "~%d годин залишилося"
+
+msgid "<1 hour left"
+msgstr "<1 години залишилося"
+
+msgid "Accept"
+msgstr "Прийняти"
+
+msgid "Locked"
+msgstr "Замкнено"
+
+msgid "Close"
+msgstr "Закрити"
+
+msgid "Closed"
+msgstr "Замкнено"
+
msgid "Any type"
msgstr "Будь-який тип"
@@ -1378,3 +1401,24 @@ msgstr "Початок"
msgid "Back"
msgstr "Назад"
+
+#~ msgid "Missing category ID."
+#~ msgstr "Пропущено ідентифікатор категорії."
+
+#~ msgid "Invalid category ID."
+#~ msgstr "Неправильний ідентифікатор категорії."
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "Ви не можете змінити катеогрію цього пакунку."
+
+#~ msgid "Package category changed."
+#~ msgstr "Категорію пакунку змінено."
+
+#~ msgid "Category"
+#~ msgstr "Категорія"
+
+#~ msgid "Change category"
+#~ msgstr "Змінити категорію"
+
+#~ msgid "Any"
+#~ msgstr "Будь-який"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 693ad6d..46e8858 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/aur/"
@@ -58,9 +58,6 @@ msgstr "使用此表单查找存在的帐户。"
msgid "You must log in to view user information."
msgstr "您需要登录后才能察看用户信息。"
-msgid "Use this form to create an account."
-msgstr "使用此表单创建帐号。"
-
msgid "Add Proposal"
msgstr "添加提议"
@@ -119,9 +116,9 @@ msgstr ""
msgid "Home"
msgstr "首页"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"欢迎来到 AUR!想了解更多信息,请阅读 %sAUR 用户指南%s和 %sAUR 受信用户指"
@@ -147,6 +144,9 @@ msgid ""
"files is at your own risk."
msgstr "位于 unsupported 的软件包为用户产生的内容。使用它们造成的后果自负。"
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -170,10 +170,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -190,14 +191,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "弃置软件包"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "邮件列表"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -205,10 +221,10 @@ msgstr "Bug 报告"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -287,6 +303,10 @@ msgstr "密码至少要 %s 个字符。"
msgid "Invalid e-mail."
msgstr "电子邮箱不正确。"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "密码重置"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -347,10 +367,10 @@ msgstr "软件包删除"
msgid "Delete Package: %s"
msgstr "删除包:%s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr "使用这个表单将包基础 %s%s%s 和以下包从 AUR 中移除:"
msgid "Deletion of a package is permanent. "
@@ -453,6 +473,12 @@ msgstr "末页"
msgid "Requests"
msgstr "请求"
+msgid "Register"
+msgstr "注册"
+
+msgid "Use this form to create an account."
+msgstr "使用此表单创建帐号。"
+
msgid "Trusted User"
msgstr "受信用户"
@@ -545,6 +571,10 @@ msgid "Click on the Login link above to use your account."
msgstr "点击上方的登陆链接以使用你的帐号。"
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -595,6 +625,10 @@ msgstr "邮箱和重置 key 不匹配。"
msgid "None"
msgstr "无"
+#, php-format
+msgid "View account information for %s"
+msgstr "查看 %s 的账户信息"
+
msgid "Error retrieving package details."
msgstr "获取软件包详情时发生错误。"
@@ -684,17 +718,13 @@ msgstr "评论已被删除。"
msgid "You are not allowed to delete this comment."
msgstr "您没有权限删除此评论。"
-msgid "Missing category ID."
-msgstr "缺少分类 ID。"
-
-msgid "Invalid category ID."
-msgstr "非法的类别标识"
-
-msgid "You are not allowed to change this package category."
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
msgstr "您无权修改此软件包的类别。"
-msgid "Package category changed."
-msgstr "软件包分类已更改。"
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "选中的软件包已经被删除。"
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr ""
@@ -733,8 +763,8 @@ msgstr "只有受信用户和开发者可以关闭请求。"
msgid "Request closed successfully."
msgstr "请求关闭成功。"
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "你可以使用这个表单来彻底删除 AUR 帐号 %s。"
#, php-format
@@ -814,9 +844,10 @@ msgstr "确认密码"
msgid "Language"
msgstr "语言"
+#, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr ""
msgid "SSH Public Key"
@@ -873,99 +904,6 @@ msgstr "我的软件包"
msgid " My Account"
msgstr "我的帐户"
-msgid "Register"
-msgstr "注册"
-
-msgid "unknown"
-msgstr "未知"
-
-msgid "Package Base Details"
-msgstr "包基础详情"
-
-msgid "Package Actions"
-msgstr "软件包操作"
-
-msgid "View PKGBUILD"
-msgstr "查看 PKGBUILD"
-
-msgid "View Changes"
-msgstr ""
-
-msgid "Download snapshot"
-msgstr ""
-
-msgid "Search wiki"
-msgstr "搜索 Wiki"
-
-msgid "Flagged out-of-date"
-msgstr "已标记为过期"
-
-msgid "Flag package out-of-date"
-msgstr "将软件包标记为过期"
-
-msgid "Unflag package"
-msgstr "取消标记软件包"
-
-msgid "Remove vote"
-msgstr "移除投票"
-
-msgid "Vote for this package"
-msgstr "为这个软件包投票"
-
-msgid "Disable notifications"
-msgstr "禁用通知"
-
-msgid "Notify of new comments"
-msgstr "当有新评论的时候提醒我"
-
-msgid "Manage Co-Maintainers"
-msgstr ""
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d 个未处理的请求"
-
-msgid "Delete Package"
-msgstr "删除软件包"
-
-msgid "Merge Package"
-msgstr "合并软件包"
-
-msgid "Adopt Package"
-msgstr "接管软件包"
-
-msgid "Git Clone URL"
-msgstr ""
-
-msgid "Category"
-msgstr "类别"
-
-msgid "Change category"
-msgstr "修改分类"
-
-msgid "Submitter"
-msgstr "提交人"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "查看 %s 的账户信息"
-
-msgid "Maintainer"
-msgstr "维护者"
-
-msgid "Last Packager"
-msgstr "最近一次打包者"
-
-msgid "Votes"
-msgstr "得票"
-
-msgid "First Submitted"
-msgstr "首次提交"
-
-msgid "Last Updated"
-msgstr "最后更新"
-
msgid "Add Comment"
msgstr "添加评论"
@@ -994,9 +932,18 @@ msgstr "已删除"
msgid "All comments"
msgstr "全部评论"
+msgid "unknown"
+msgstr "未知"
+
msgid "Package Details"
msgstr "软件包详情"
+msgid "Git Clone URL"
+msgstr ""
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "包基础"
@@ -1009,6 +956,9 @@ msgstr "上游 URL"
msgid "Visit the website for"
msgstr "访问网站"
+msgid "Keywords"
+msgstr "关键字"
+
msgid "Licenses"
msgstr "许可协议"
@@ -1024,106 +974,32 @@ msgstr "提供"
msgid "Replaces"
msgstr "取代"
-msgid "Dependencies"
-msgstr "依赖于:"
-
-msgid "Required by"
-msgstr "被需要:"
-
-msgid "Sources"
-msgstr "源代码:"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "关闭请求:%s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "使用这个表单来关闭对包基础 %s%s%s 的请求。"
-
-msgid "Note"
-msgstr "提示"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr "评论可以留空。不过,当拒绝一个请求的时候,强烈推荐提供一条评论。"
-
-msgid "Reason"
-msgstr "原因"
-
-msgid "Accepted"
-msgstr "已接受"
-
-msgid "Rejected"
-msgstr "已拒绝"
-
-msgid "Comments"
-msgstr "评论"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "提交请求:%s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr "使用这个表格,提交一个针对包基础 %s%s%s 的请求,其中包括下列软件包:"
-
-msgid "Request type"
-msgstr "请求类型"
-
-msgid "Deletion"
-msgstr "删除"
-
-msgid "Orphan"
-msgstr "弃置"
-
-msgid "Merge into"
-msgstr "合并到"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "找到了 %d 个软件包请求。"
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "第 %d 页,共 %d 页。"
-
-msgid "Package"
-msgstr "软件包"
-
-msgid "Filed by"
-msgstr "提交者是"
+msgid "Submitter"
+msgstr "提交人"
-msgid "Date"
-msgstr "日期"
+msgid "Maintainer"
+msgstr "维护者"
-#, php-format
-msgid "~%d days left"
-msgstr "剩余~%d天"
+msgid "Last Packager"
+msgstr "最近一次打包者"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "剩余~%d小时"
+msgid "Votes"
+msgstr "得票"
-msgid "<1 hour left"
-msgstr "剩余<1小时"
+msgid "First Submitted"
+msgstr "首次提交"
-msgid "Accept"
-msgstr "接受"
+msgid "Last Updated"
+msgstr "最后更新"
-msgid "Locked"
-msgstr "已锁定"
+msgid "Dependencies"
+msgstr "依赖于:"
-msgid "Close"
-msgstr "关闭"
+msgid "Required by"
+msgstr "被需要:"
-msgid "Closed"
-msgstr "已关闭"
+msgid "Sources"
+msgstr "源代码:"
msgid "Name, Description"
msgstr "名称和描述"
@@ -1167,15 +1043,9 @@ msgstr "从大到小"
msgid "Enter search criteria"
msgstr "输入搜索条件"
-msgid "Any"
-msgstr "所有"
-
msgid "Search by"
msgstr "搜索"
-msgid "Keywords"
-msgstr "关键字"
-
msgid "Out of Date"
msgstr "过期状态"
@@ -1205,9 +1075,18 @@ msgid "%d package found."
msgid_plural "%d packages found."
msgstr[0] "找到了 %d 个软件包。"
+#, php-format
+msgid "Page %d of %d."
+msgstr "第 %d 页,共 %d 页。"
+
msgid "Version"
msgstr "版本"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "是"
@@ -1232,9 +1111,153 @@ msgstr "弃置软件包"
msgid "Delete Packages"
msgstr "删除软件包"
+msgid "Merge into"
+msgstr "合并到"
+
msgid "Confirm"
msgstr "确认"
+msgid "Package Actions"
+msgstr "软件包操作"
+
+msgid "View PKGBUILD"
+msgstr "查看 PKGBUILD"
+
+msgid "View Changes"
+msgstr ""
+
+msgid "Download snapshot"
+msgstr ""
+
+msgid "Search wiki"
+msgstr "搜索 Wiki"
+
+msgid "Flagged out-of-date"
+msgstr "已标记为过期"
+
+msgid "Flag package out-of-date"
+msgstr "将软件包标记为过期"
+
+msgid "Unflag package"
+msgstr "取消标记软件包"
+
+msgid "Remove vote"
+msgstr "移除投票"
+
+msgid "Vote for this package"
+msgstr "为这个软件包投票"
+
+msgid "Disable notifications"
+msgstr "禁用通知"
+
+msgid "Notify of new comments"
+msgstr "当有新评论的时候提醒我"
+
+msgid "Manage Co-Maintainers"
+msgstr ""
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d 个未处理的请求"
+
+msgid "Delete Package"
+msgstr "删除软件包"
+
+msgid "Merge Package"
+msgstr "合并软件包"
+
+msgid "Adopt Package"
+msgstr "接管软件包"
+
+msgid "Package Base Details"
+msgstr "包基础详情"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "关闭请求:%s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "使用这个表单来关闭对包基础 %s%s%s 的请求。"
+
+msgid "Note"
+msgstr "提示"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr "评论可以留空。不过,当拒绝一个请求的时候,强烈推荐提供一条评论。"
+
+msgid "Reason"
+msgstr "原因"
+
+msgid "Accepted"
+msgstr "已接受"
+
+msgid "Rejected"
+msgstr "已拒绝"
+
+msgid "Comments"
+msgstr "评论"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "提交请求:%s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr "使用这个表格,提交一个针对包基础 %s%s%s 的请求,其中包括下列软件包:"
+
+msgid "Request type"
+msgstr "请求类型"
+
+msgid "Deletion"
+msgstr "删除"
+
+msgid "Orphan"
+msgstr "弃置"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "找到了 %d 个软件包请求。"
+
+msgid "Package"
+msgstr "软件包"
+
+msgid "Filed by"
+msgstr "提交者是"
+
+msgid "Date"
+msgstr "日期"
+
+#, php-format
+msgid "~%d days left"
+msgstr "剩余~%d天"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "剩余~%d小时"
+
+msgid "<1 hour left"
+msgstr "剩余<1小时"
+
+msgid "Accept"
+msgstr "接受"
+
+msgid "Locked"
+msgstr "已锁定"
+
+msgid "Close"
+msgstr "关闭"
+
+msgid "Closed"
+msgstr "已关闭"
+
msgid "Any type"
msgstr "所有类别"
@@ -1316,3 +1339,21 @@ msgstr "开始"
msgid "Back"
msgstr "返回"
+
+#~ msgid "Missing category ID."
+#~ msgstr "缺少分类 ID。"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "非法的类别标识"
+
+#~ msgid "Package category changed."
+#~ msgstr "软件包分类已更改。"
+
+#~ msgid "Category"
+#~ msgstr "类别"
+
+#~ msgid "Change category"
+#~ msgstr "修改分类"
+
+#~ msgid "Any"
+#~ msgstr "所有"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index f145135..e048ad3 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Arch User Repository (AUR)\n"
"Report-Msgid-Bugs-To: https://bugs.archlinux.org/index.php?project=2\n"
-"POT-Creation-Date: 2015-06-11 23:45+0200\n"
+"POT-Creation-Date: 2015-08-05 07:21+0100\n"
"PO-Revision-Date: 2015-06-11 21:46+0000\n"
"Last-Translator: Lukas Fleischer <transifex@cryptocrack.de>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/aur/"
@@ -53,9 +53,6 @@ msgstr "使用此表單來搜尋已有的帳號。"
msgid "You must log in to view user information."
msgstr "您必須登入以檢視使用者資訊。"
-msgid "Use this form to create an account."
-msgstr "使用此表單來新建一個帳號。"
-
msgid "Add Proposal"
msgstr "添加建議"
@@ -114,9 +111,9 @@ msgstr "管理共同維護者"
msgid "Home"
msgstr "首頁"
-#, php-format
+#, fuzzy, php-format
msgid ""
-"Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU "
+"Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU "
"Guidelines%s for more information."
msgstr ""
"歡迎來到 AUR!請閱讀 %sAUR 使用者指導方針%s 和 %sAUR 受信使用者指導方針%s 以"
@@ -144,6 +141,9 @@ msgid ""
"files is at your own risk."
msgstr "AUR 上的檔案是使用者產生的內容。任何使用檔案的風險由您自行承擔。"
+msgid "Learn more..."
+msgstr ""
+
msgid "Support"
msgstr ""
@@ -167,10 +167,11 @@ msgstr ""
msgid "Deletion Request"
msgstr ""
+#, php-format
msgid ""
-"Request a package to be removed from the Arch User Repository. Please do not "
-"use this if a package is broken and can be fixed easily. Instead, contact "
-"the package maintainer and file orphan request if necessary."
+"Request a package to be removed from the %s. Please do not use this if a "
+"package is broken and can be fixed easily. Instead, contact the package "
+"maintainer and file orphan request if necessary."
msgstr ""
msgid "Merge Request"
@@ -187,14 +188,29 @@ msgid ""
"list. However, please do not use that list to file requests."
msgstr ""
+#, fuzzy
+msgid "Submitting Packages"
+msgstr "棄置套件"
+
+#, php-format
+msgid ""
+"Git over SSH is now used to submit packages to the %s. See the %sSubmitting "
+"packages%s section of the Arch User Repository ArchWiki page for more "
+"details."
+msgstr ""
+
+#, php-format
+msgid "The following SSH fingerprints are used for the %s:"
+msgstr ""
+
msgid "Discussion"
msgstr "討論"
#, php-format
msgid ""
-"General discussion regarding the Arch User Repository (AUR) and Trusted User "
-"structure takes place on %saur-general%s. For discussion relating to the "
-"development of the AUR web interface, use the %saur-dev%s mailing list."
+"General discussion regarding the %s (%s) and Trusted User structure takes "
+"place on %s. For discussion relating to the development of the %s web "
+"interface (aurweb), use the %s mailing list."
msgstr ""
msgid "Bug Reporting"
@@ -202,10 +218,10 @@ msgstr "臭蟲回報"
#, php-format
msgid ""
-"If you find a bug in the AUR web interface, please fill out a bug report on "
-"our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To "
-"report packaging bugs contact the package maintainer or leave a comment on "
-"the appropriate package page."
+"If you find a bug in the %s web interface (aurweb), please fill out a bug "
+"report on our %sbug tracker%s. Use the tracker to report bugs in aurweb "
+"%sonly%s. To report packaging bugs contact the package maintainer or leave a "
+"comment on the appropriate package page."
msgstr ""
msgid "Package Search"
@@ -284,6 +300,10 @@ msgstr "您的密碼必須至少 %s 個字節。"
msgid "Invalid e-mail."
msgstr "無效的電子郵件。"
+#, fuzzy, php-format
+msgid "%s Password Reset"
+msgstr "密碼重置"
+
#, php-format
msgid ""
"A password reset request was submitted for the account %s associated with "
@@ -347,10 +367,10 @@ msgstr "套件刪除"
msgid "Delete Package: %s"
msgstr "刪除套件: %s"
-#, php-format
+#, fuzzy, php-format
msgid ""
"Use this form to delete the package base %s%s%s and the following packages "
-"from the AUR: "
+"from the %s: "
msgstr "使用這個表單以從 AUR 刪除套件基礎 %s%s%s 以及以下的套件。"
msgid "Deletion of a package is permanent. "
@@ -453,6 +473,12 @@ msgstr "最後一頁"
msgid "Requests"
msgstr "請求"
+msgid "Register"
+msgstr "註冊"
+
+msgid "Use this form to create an account."
+msgstr "使用此表單來新建一個帳號。"
+
msgid "Trusted User"
msgstr "受信使用者"
@@ -545,6 +571,10 @@ msgid "Click on the Login link above to use your account."
msgstr "點擊上面的登入連結以使用您的帳號。"
#, php-format
+msgid "Welcome to the %s"
+msgstr ""
+
+#, php-format
msgid ""
"Welcome to %s! In order to set an initial password for your new account, "
"please click the link below. If the link does not work try copying and "
@@ -595,6 +625,10 @@ msgstr "無效的電子郵件與密鑰組合。"
msgid "None"
msgstr "無"
+#, php-format
+msgid "View account information for %s"
+msgstr "檢視 %s 的帳號資訊"
+
msgid "Error retrieving package details."
msgstr "擷取套件細節時發生錯誤。"
@@ -684,17 +718,13 @@ msgstr "評論已被刪除。"
msgid "You are not allowed to delete this comment."
msgstr "您不被允許刪除此則評論。"
-msgid "Missing category ID."
-msgstr "遺失分類 ID。"
-
-msgid "Invalid category ID."
-msgstr "無效的分類 ID。"
-
-msgid "You are not allowed to change this package category."
-msgstr "您不被允許改變此套件的分類。"
+#, fuzzy
+msgid "You are not allowed to edit the keywords of this package base."
+msgstr "您不被允許管理此套件基礎的共同維護者。"
-msgid "Package category changed."
-msgstr "套件分類已變更。"
+#, fuzzy
+msgid "The package base keywords have been updated."
+msgstr "套件基礎共同維護者已更新。"
msgid "You are not allowed to manage co-maintainers of this package base."
msgstr "您不被允許管理此套件基礎的共同維護者。"
@@ -733,8 +763,8 @@ msgstr "只有受信使用者和開發者可以關閉請求。"
msgid "Request closed successfully."
msgstr "請求關閉成功。"
-#, php-format
-msgid "You can use this form to permanently delete the AUR account %s."
+#, fuzzy, php-format
+msgid "You can use this form to permanently delete the %s account %s."
msgstr "您可以使用這個表單來永久刪除 AUR 帳號 %s 。"
#, php-format
@@ -814,9 +844,10 @@ msgstr "重新輸入密碼"
msgid "Language"
msgstr "語言"
+#, fuzzy, php-format
msgid ""
"The following information is only required if you want to submit packages to "
-"the Arch User Repository."
+"the %s."
msgstr "以下的資訊僅在您想要遞交套件到 Arch 使用者套件庫時是必須的。"
msgid "SSH Public Key"
@@ -873,99 +904,6 @@ msgstr "我的套件"
msgid " My Account"
msgstr "我的帳號"
-msgid "Register"
-msgstr "註冊"
-
-msgid "unknown"
-msgstr "未知"
-
-msgid "Package Base Details"
-msgstr "套件基礎詳細資訊"
-
-msgid "Package Actions"
-msgstr "套件動作"
-
-msgid "View PKGBUILD"
-msgstr "檢視 PKGBUILD"
-
-msgid "View Changes"
-msgstr "檢視變更"
-
-msgid "Download snapshot"
-msgstr "下載快照"
-
-msgid "Search wiki"
-msgstr "搜尋 wiki"
-
-msgid "Flagged out-of-date"
-msgstr "已標記為過期"
-
-msgid "Flag package out-of-date"
-msgstr "將套件標記為過期"
-
-msgid "Unflag package"
-msgstr "取消標記套件"
-
-msgid "Remove vote"
-msgstr "移除投票"
-
-msgid "Vote for this package"
-msgstr "為此套件投票"
-
-msgid "Disable notifications"
-msgstr "停用通知"
-
-msgid "Notify of new comments"
-msgstr "新評論通知"
-
-msgid "Manage Co-Maintainers"
-msgstr "管理共同維護者"
-
-#, php-format
-msgid "%d pending request"
-msgid_plural "%d pending requests"
-msgstr[0] "%d 個擱置的請求"
-
-msgid "Delete Package"
-msgstr "刪除套件"
-
-msgid "Merge Package"
-msgstr "合併套件"
-
-msgid "Adopt Package"
-msgstr "接管套件"
-
-msgid "Git Clone URL"
-msgstr "Git Clone URL"
-
-msgid "Category"
-msgstr "分類"
-
-msgid "Change category"
-msgstr "變更分類"
-
-msgid "Submitter"
-msgstr "提交人"
-
-#, php-format
-msgid "View account information for %s"
-msgstr "檢視 %s 的帳號資訊"
-
-msgid "Maintainer"
-msgstr "維護者"
-
-msgid "Last Packager"
-msgstr "最近一次打包者"
-
-msgid "Votes"
-msgstr "得票"
-
-msgid "First Submitted"
-msgstr "首次提交"
-
-msgid "Last Updated"
-msgstr "最後更新"
-
msgid "Add Comment"
msgstr "新增評論"
@@ -994,9 +932,18 @@ msgstr "已刪除"
msgid "All comments"
msgstr "所有評論"
+msgid "unknown"
+msgstr "未知"
+
msgid "Package Details"
msgstr "套件詳細資訊"
+msgid "Git Clone URL"
+msgstr "Git Clone URL"
+
+msgid "read-only"
+msgstr ""
+
msgid "Package Base"
msgstr "套件基礎"
@@ -1009,6 +956,9 @@ msgstr "上游 URL"
msgid "Visit the website for"
msgstr "參觀網頁"
+msgid "Keywords"
+msgstr "關鍵字"
+
msgid "Licenses"
msgstr "授權條款"
@@ -1024,106 +974,32 @@ msgstr "它提供"
msgid "Replaces"
msgstr "它會取代"
-msgid "Dependencies"
-msgstr "它依賴"
-
-msgid "Required by"
-msgstr "需要它"
-
-msgid "Sources"
-msgstr "來源"
-
-#, php-format
-msgid "Close Request: %s"
-msgstr "關閉請求: %s"
-
-#, php-format
-msgid "Use this form to close the request for package base %s%s%s."
-msgstr "使用這個表單以關閉請求套件基礎 %s%s%s 。"
-
-msgid "Note"
-msgstr "注意"
-
-msgid ""
-"The comments field can be left empty. However, it is highly recommended to "
-"add a comment when rejecting a request."
-msgstr "評論區域可以留空。但強烈建議在拒絕一個請求時加入一些評論。"
-
-msgid "Reason"
-msgstr "理由"
-
-msgid "Accepted"
-msgstr "已接受"
-
-msgid "Rejected"
-msgstr "已拒絕"
-
-msgid "Comments"
-msgstr "評論"
-
-#, php-format
-msgid "File Request: %s"
-msgstr "檔案請求: %s"
-
-#, php-format
-msgid ""
-"Use this form to file a request against package base %s%s%s which includes "
-"the following packages:"
-msgstr "使用這個表單以提交一個針對包含以下套件的套件基礎 %s%s%s :"
-
-msgid "Request type"
-msgstr "請求類型"
-
-msgid "Deletion"
-msgstr "刪除"
-
-msgid "Orphan"
-msgstr "棄置"
-
-msgid "Merge into"
-msgstr "合併到"
-
-#, php-format
-msgid "%d package request found."
-msgid_plural "%d package requests found."
-msgstr[0] "找到了 %d 個套件請求。"
-
-#, php-format
-msgid "Page %d of %d."
-msgstr "第 %d 頁,共 %d 頁。"
-
-msgid "Package"
-msgstr "套件"
-
-msgid "Filed by"
-msgstr "提交人為"
+msgid "Submitter"
+msgstr "提交人"
-msgid "Date"
-msgstr "日期"
+msgid "Maintainer"
+msgstr "維護者"
-#, php-format
-msgid "~%d days left"
-msgstr "剩餘 ~%d 天"
+msgid "Last Packager"
+msgstr "最近一次打包者"
-#, php-format
-msgid "~%d hour left"
-msgid_plural "~%d hours left"
-msgstr[0] "剩餘 ~%d 小時"
+msgid "Votes"
+msgstr "得票"
-msgid "<1 hour left"
-msgstr "剩餘 <1 小時"
+msgid "First Submitted"
+msgstr "首次提交"
-msgid "Accept"
-msgstr "接受"
+msgid "Last Updated"
+msgstr "最後更新"
-msgid "Locked"
-msgstr "已鎖定"
+msgid "Dependencies"
+msgstr "它依賴"
-msgid "Close"
-msgstr "關閉"
+msgid "Required by"
+msgstr "需要它"
-msgid "Closed"
-msgstr "已關閉"
+msgid "Sources"
+msgstr "來源"
msgid "Name, Description"
msgstr "名稱,描述"
@@ -1167,15 +1043,9 @@ msgstr "遞減"
msgid "Enter search criteria"
msgstr "輸入搜尋條件"
-msgid "Any"
-msgstr "任意"
-
msgid "Search by"
msgstr "以何種方式搜尋"
-msgid "Keywords"
-msgstr "關鍵字"
-
msgid "Out of Date"
msgstr "過期狀態"
@@ -1205,9 +1075,18 @@ msgid "%d package found."
msgid_plural "%d packages found."
msgstr[0] "找到 %d 個套件。"
+#, php-format
+msgid "Page %d of %d."
+msgstr "第 %d 頁,共 %d 頁。"
+
msgid "Version"
msgstr "版本"
+msgid ""
+"Popularity is calculated as the sum of all votes with each vote being "
+"weighted with a factor of 0.98 per day since its creation."
+msgstr ""
+
msgid "Yes"
msgstr "是"
@@ -1232,9 +1111,153 @@ msgstr "棄置套件"
msgid "Delete Packages"
msgstr "刪除套件"
+msgid "Merge into"
+msgstr "合併到"
+
msgid "Confirm"
msgstr "確認"
+msgid "Package Actions"
+msgstr "套件動作"
+
+msgid "View PKGBUILD"
+msgstr "檢視 PKGBUILD"
+
+msgid "View Changes"
+msgstr "檢視變更"
+
+msgid "Download snapshot"
+msgstr "下載快照"
+
+msgid "Search wiki"
+msgstr "搜尋 wiki"
+
+msgid "Flagged out-of-date"
+msgstr "已標記為過期"
+
+msgid "Flag package out-of-date"
+msgstr "將套件標記為過期"
+
+msgid "Unflag package"
+msgstr "取消標記套件"
+
+msgid "Remove vote"
+msgstr "移除投票"
+
+msgid "Vote for this package"
+msgstr "為此套件投票"
+
+msgid "Disable notifications"
+msgstr "停用通知"
+
+msgid "Notify of new comments"
+msgstr "新評論通知"
+
+msgid "Manage Co-Maintainers"
+msgstr "管理共同維護者"
+
+#, php-format
+msgid "%d pending request"
+msgid_plural "%d pending requests"
+msgstr[0] "%d 個擱置的請求"
+
+msgid "Delete Package"
+msgstr "刪除套件"
+
+msgid "Merge Package"
+msgstr "合併套件"
+
+msgid "Adopt Package"
+msgstr "接管套件"
+
+msgid "Package Base Details"
+msgstr "套件基礎詳細資訊"
+
+#, php-format
+msgid "Close Request: %s"
+msgstr "關閉請求: %s"
+
+#, php-format
+msgid "Use this form to close the request for package base %s%s%s."
+msgstr "使用這個表單以關閉請求套件基礎 %s%s%s 。"
+
+msgid "Note"
+msgstr "注意"
+
+msgid ""
+"The comments field can be left empty. However, it is highly recommended to "
+"add a comment when rejecting a request."
+msgstr "評論區域可以留空。但強烈建議在拒絕一個請求時加入一些評論。"
+
+msgid "Reason"
+msgstr "理由"
+
+msgid "Accepted"
+msgstr "已接受"
+
+msgid "Rejected"
+msgstr "已拒絕"
+
+msgid "Comments"
+msgstr "評論"
+
+#, php-format
+msgid "File Request: %s"
+msgstr "檔案請求: %s"
+
+#, php-format
+msgid ""
+"Use this form to file a request against package base %s%s%s which includes "
+"the following packages:"
+msgstr "使用這個表單以提交一個針對包含以下套件的套件基礎 %s%s%s :"
+
+msgid "Request type"
+msgstr "請求類型"
+
+msgid "Deletion"
+msgstr "刪除"
+
+msgid "Orphan"
+msgstr "棄置"
+
+#, php-format
+msgid "%d package request found."
+msgid_plural "%d package requests found."
+msgstr[0] "找到了 %d 個套件請求。"
+
+msgid "Package"
+msgstr "套件"
+
+msgid "Filed by"
+msgstr "提交人為"
+
+msgid "Date"
+msgstr "日期"
+
+#, php-format
+msgid "~%d days left"
+msgstr "剩餘 ~%d 天"
+
+#, php-format
+msgid "~%d hour left"
+msgid_plural "~%d hours left"
+msgstr[0] "剩餘 ~%d 小時"
+
+msgid "<1 hour left"
+msgstr "剩餘 <1 小時"
+
+msgid "Accept"
+msgstr "接受"
+
+msgid "Locked"
+msgstr "已鎖定"
+
+msgid "Close"
+msgstr "關閉"
+
+msgid "Closed"
+msgstr "已關閉"
+
msgid "Any type"
msgstr "任何類型"
@@ -1316,3 +1339,24 @@ msgstr "開始"
msgid "Back"
msgstr "返回"
+
+#~ msgid "Missing category ID."
+#~ msgstr "遺失分類 ID。"
+
+#~ msgid "Invalid category ID."
+#~ msgstr "無效的分類 ID。"
+
+#~ msgid "You are not allowed to change this package category."
+#~ msgstr "您不被允許改變此套件的分類。"
+
+#~ msgid "Package category changed."
+#~ msgstr "套件分類已變更。"
+
+#~ msgid "Category"
+#~ msgstr "分類"
+
+#~ msgid "Change category"
+#~ msgstr "變更分類"
+
+#~ msgid "Any"
+#~ msgstr "任意"
diff --git a/schema/gendummydata.py b/schema/gendummydata.py
index 9dd2f45..b5512c5 100755
--- a/schema/gendummydata.py
+++ b/schema/gendummydata.py
@@ -3,11 +3,11 @@
usage: gendummydata.py outputfilename.sql
"""
#
-# This script seeds the AUR database with dummy data for
+# This script seeds the aurweb database with dummy data for
# use during development/testing. It uses random entries
# from /usr/share/dict/words to create user accounts and
# package names. It generates the SQL statements to
-# insert these users/packages into the AUR database.
+# insert these users/packages into the aurweb database.
#
import random
import time
diff --git a/scripts/mkpkglists.py b/scripts/mkpkglists.py
index a6f8a19..4bc6de4 100755
--- a/scripts/mkpkglists.py
+++ b/scripts/mkpkglists.py
@@ -11,6 +11,9 @@ docroot = os.path.dirname(os.path.realpath(__file__)) + "/../web/html/"
config = configparser.RawConfigParser()
config.read(os.path.dirname(os.path.realpath(__file__)) + "/../conf/config")
+
+branding_name = config.get('options', 'branding_shortname');
+
aur_db_host = config.get('database', 'host')
aur_db_name = config.get('database', 'name')
aur_db_user = config.get('database', 'user')
@@ -23,8 +26,8 @@ db = mysql.connector.connect(host=aur_db_host, user=aur_db_user,
cur = db.cursor()
datestr = datetime.datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S GMT")
-pkglist_header = "# AUR package list, generated on " + datestr
-pkgbaselist_header = "# AUR package base list, generated on " + datestr
+pkglist_header = "# " + branding_name + " package list, generated on " + datestr
+pkgbaselist_header = "# " + branding_name + " package base list, generated on " + datestr
with gzip.open(docroot + "packages.gz", "w") as f:
f.write(bytes(pkglist_header + "\n", "UTF-8"))
diff --git a/web/html/account.php b/web/html/account.php
index c447de3..f9925f9 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
-include_once('aur.inc.php'); # access AUR common functions
+include_once('aur.inc.php'); # access aurweb common functions
include_once('acctfuncs.inc.php'); # access Account specific functions
set_lang(); # this sets up the visitor's language
diff --git a/web/html/css/archnavbar/archlogo.png b/web/html/css/archnavbar/archlogo.png
index e873e94..bf36635 100644..120000
--- a/web/html/css/archnavbar/archlogo.png
+++ b/web/html/css/archnavbar/archlogo.png
Binary files differ
diff --git a/web/html/css/archnavbar/archnavbar.css b/web/html/css/archnavbar/archnavbar.css
index d10c5f5..03762c3 100644..120000
--- a/web/html/css/archnavbar/archnavbar.css
+++ b/web/html/css/archnavbar/archnavbar.css
@@ -1,25 +1 @@
-/*
- * ARCH GLOBAL NAVBAR
- * We're forcing all generic selectors with !important
- * to help prevent other stylesheets from interfering.
- */
-
-/* container for the entire bar */
-#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
-#archnavbarlogo { background: url('archlogo.png') no-repeat !important; }
-
-/* move the heading/paragraph text offscreen */
-#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
-#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
-
-/* make the link the same size as the logo */
-#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
-
-/* display the list inline, float it to the right and style it */
-#archnavbar ul { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
-#archnavbar ul li { float: left !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 45px !important; padding-right: 15px !important; padding-left: 15px !important; }
-
-/* style the links */
-#archnavbar ul#archnavbarlist li a { color: #999; font-weight: bold !important; text-decoration: none !important; }
-#archnavbar ul li a:hover { color: white !important; text-decoration: underline !important; }
-
+/srv/http/www.parabola.nu/web/sitestatic/archnavbar/archnavbar.css \ No newline at end of file
diff --git a/web/html/css/archnavbar/aurlogo.png b/web/html/css/archnavbar/aurlogo.png
index 69110d8..7d05c87 100644
--- a/web/html/css/archnavbar/aurlogo.png
+++ b/web/html/css/archnavbar/aurlogo.png
Binary files differ
diff --git a/web/html/css/archweb.css b/web/html/css/archweb.css
index b7d6e1e..a05fc46 100644..120000
--- a/web/html/css/archweb.css
+++ b/web/html/css/archweb.css
@@ -1,1113 +1 @@
-/*
- * Font sizing based on 16px browser defaults (use em):
- * 14px = 0.875em
- * 13px = 0.812em
- * 12px = 0.75em
- * 11px = 0.6875em
- */
-
-/*
- * ARCH GLOBAL NAVBAR
- * We're forcing all generic selectors with !important
- * to help prevent other stylesheets from interfering.
- */
-
-/* container for the entire bar */
-#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
-#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; background: url('archnavbar/archlogo.png') no-repeat !important; }
-
-/* move the heading text offscreen */
-#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
-
-/* make the link the same size as the logo */
-#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
-
-/* display the list inline, float it to the right and style it */
-#archnavbarlist { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
-#archnavbarlist li { float: left !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 45px !important; padding-right: 15px !important; padding-left: 15px !important; }
-
-/* style the links */
-#archnavbarlist li a { color: #999; font-weight: bold !important; text-decoration: none !important; }
-#archnavbarlist li a:hover { color: white !important; text-decoration: underline !important; }
-
-/* END ARCH GLOBAL NAVBAR */
-
-/* simple reset */
-* {
- margin: 0;
- padding: 0;
- line-height: 1.4;
-}
-
-/* general styling */
-body {
- min-width: 650px;
- background: #f6f9fc;
- color: #222;
- font: normal 100% sans-serif;
- text-align: center;
-}
-
-p {
- margin: .33em 0 1em;
-}
-
-ol,
-ul {
- margin-bottom: 1em;
- padding-left: 2em;
-}
-
- ul {
- list-style: square;
- }
-
-code {
- font: 1.2em monospace;
- background: #ffd;
- padding: 0.15em 0.25em;
-}
-
-pre {
- font: 1.2em monospace;
- border: 1px solid #bdb;
- background: #dfd;
- padding: 0.5em;
- margin: 1em;
-}
-
- pre code {
- display: block;
- background: none;
- }
-
-blockquote {
- margin: 1.5em 2em;
-}
-
-input {
- vertical-align: middle;
-}
-
-select[multiple] {
- padding: 1px 0;
-}
-
- select[multiple] option {
- padding: 0 0.5em 0 0.3em;
- }
-
-input[type=submit] {
- padding: 0 0.6em;
-}
-
-.clear {
- clear: both;
-}
-
-.hide {
- display: none;
-}
-
-hr {
- border: none;
- border-top: 1px solid #888;
-}
-
-img {
- border: 0;
-}
-
-/* scale fonts down to a sane default (16 * .812 = 13px) */
-#content {
- font-size: 0.812em;
-}
-
-/* link style */
-a {
- text-decoration: none;
-}
-
- a:link,
- th a:visited {
- color: #07b;
- }
-
- a:visited {
- color: #666;
- }
-
- a:hover {
- text-decoration: underline;
- color: #666;
- }
-
- a:active {
- color: #e90;
- }
-
-/* special anchor elements */
-a.headerlink {
- visibility: hidden;
- padding-left: 0.5em;
-}
-
-h3:hover > a.headerlink {
- visibility: visible;
-}
-
-/* headings */
-h2 {
- font-size: 1.5em;
- margin-bottom: 0.5em;
- border-bottom: 1px solid #888;
-}
-
-h3 {
- font-size: 1.25em;
- margin-top: .5em;
-}
-
-h4 {
- font-size: 1.15em;
- margin-top: 1em;
-}
-
-h5 {
- font-size: 1em;
- margin-top: 1em;
-}
-
-/* general layout */
-#content {
- width: 95%;
- margin: 0 auto;
- text-align: left;
-}
-
-#content-left-wrapper {
- float: left;
- width: 100%; /* req to keep content above sidebar in source code */
-}
-
-#content-left {
- margin: 0 340px 0 0;
-}
-
-#content-right {
- float: left;
- width: 300px;
- margin-left: -300px;
-}
-
-div.box {
- margin-bottom: 1.5em;
- padding: 0.65em;
- background: #ecf2f5;
- border: 1px solid #bcd;
-}
-
-#footer {
- clear: both;
- margin: 2em 0 1em;
-}
-
- #footer p {
- margin: 0;
- text-align: center;
- font-size: 0.85em;
- }
-
-/* alignment */
-div.center,
-table.center,
-img.center {
- width: auto;
- margin-left: auto;
- margin-right: auto;
-}
-
-p.center,
-td.center,
-th.center {
- text-align: center;
-}
-
-/* table generics */
-table {
- width: 100%;
- border-collapse: collapse;
-}
-
- table .wrap {
- white-space: normal;
- }
-
-th,
-td {
- white-space: nowrap;
- text-align: left;
-}
-
- th {
- vertical-align: middle;
- font-weight: bold;
- }
-
- td {
- vertical-align: top;
- }
-
-/* table pretty styles */
-table.pretty1 {
- width: auto;
- margin-top: 0.25em;
- margin-bottom: 0.5em;
- border-collapse: collapse;
- border: 1px solid #bcd;
-}
-
- .pretty1 th {
- padding: 0.35em;
- background: #e4eeff;
- border: 1px solid #bcd;
- }
-
- .pretty1 td {
- padding: 0.35em;
- border: 1px dotted #bcd;
- }
-
-table.pretty2 {
- width: auto;
- margin-top: 0.25em;
- margin-bottom: 0.5em;
- border-collapse: collapse;
- border: 1px solid #bbb;
-}
-
- .pretty2 th {
- padding: 0.35em;
- background: #eee;
- border: 1px solid #bbb;
- }
-
- .pretty2 td {
- padding: 0.35em;
- border: 1px dotted #bbb;
- }
-
-table.compact {
- width: auto;
-}
-
- .compact td {
- padding: 0.25em 0 0.25em 1.5em;
- }
-
-
-/* definition lists */
-dl {
- clear: both;
-}
-
- dl dt,
- dl dd {
- margin-bottom: 4px;
- padding: 8px 0 4px;
- font-weight: bold;
- border-top: 1px dotted #bbb;
- }
-
- dl dt {
- color: #333;
- float:left;
- padding-right:15px;
- }
-
-/* forms and input styling */
-form p {
- margin: 0.5em 0;
-}
-
-fieldset {
- border: 0;
-}
-
-label {
- width: 12em;
- vertical-align: top;
- display: inline-block;
- font-weight: bold;
-}
-
-input[type=text],
-input[type=password],
-textarea {
- padding: 0.10em;
-}
-
-form.general-form label,
-form.general-form .form-help {
- width: 10em;
- vertical-align: top;
- display: inline-block;
-}
-
-form.general-form input[type=text],
-form.general-form textarea {
- width: 45%;
-}
-
-/* archdev navbar */
-#archdev-navbar {
- margin: 1.5em 0;
-}
-
- #archdev-navbar ul {
- list-style: none;
- margin: -0.5em 0;
- padding: 0;
- }
-
- #archdev-navbar li {
- display: inline;
- margin: 0;
- padding: 0;
- font-size: 0.9em;
- }
-
- #archdev-navbar li a {
- padding: 0 0.5em;
- color: #07b;
- }
-
-/* error/info messages (x pkg is already flagged out-of-date, etc) */
-#sys-message {
- width: 35em;
- text-align: center;
- margin: 1em auto;
- padding: 0.5em;
- background: #fff;
- border: 1px solid #f00;
-}
-
- #sys-message p {
- margin: 0;
- }
-
-ul.errorlist {
- color: red;
-}
-
-/* JS sorting via tablesorter */
-table th.tablesorter-header {
- padding-right: 20px;
- background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
- background-repeat: no-repeat;
- background-position: center right;
- cursor: pointer;
-}
-
-table thead th.tablesorter-headerAsc {
- background-color: #e4eeff;
- background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
-}
-
-table thead th.tablesorter-headerDesc {
- background-color: #e4eeff;
- background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
-}
-
-table thead th.sorter-false {
- background-image: none;
- cursor: default;
-}
-
-/**
- * PAGE SPECIFIC STYLES
- */
-
-/* home: introduction */
-#intro p.readmore {
- margin: -0.5em 0 0 0;
- font-size: .9em;
- text-align: right;
-}
-
-/* home: news */
-#news {
- margin-top: 1.5em;
-}
-
- #news h3 {
- float: left;
- padding-bottom: .5em
- }
-
- #news div {
- margin-bottom: 1em;
- }
-
- #news div p {
- margin-bottom: 0.5em;
- }
-
- #news .more {
- font-weight: normal;
- }
-
- #news .rss-icon {
- float: right;
- margin-top: 1em;
- }
-
- #news h4 {
- clear: both;
- font-size: 1em;
- margin-top: 1.5em;
- border-bottom: 1px dotted #bbb;
- }
-
- #news .timestamp {
- float: right;
- font-size: 0.85em;
- margin: -1.8em 0.5em 0 0;
- }
-
-/* home: arrowed headings */
-#news h3 a {
- display: block;
- background: #1794D1;
- font-size: 15px;
- padding: 2px 10px;
- color: white;
-}
-
- #news a:active {
- color: white;
- }
-
-h3 span.arrow {
- display: block;
- width: 0;
- height: 0;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 6px solid #1794D1;
- margin: 0 auto;
- font-size: 0;
- line-height: 0px;
-}
-
-/* home: pkgsearch box */
-#pkgsearch {
- padding: 1em 0.75em;
- background: #3ad;
- color: #fff;
- border: 1px solid #08b;
-}
-
- #pkgsearch label {
- width: auto;
- padding: 0.1em 0;
- }
-
- #pkgsearch input {
- width: 10em;
- float: right;
- font-size: 1em;
- color: #000;
- background: #fff;
- border: 1px solid #09c;
- }
-
- .pkgsearch-typeahead {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- padding: 0.15em 0.1em;
- margin: 0;
- min-width: 10em;
- font-size: 0.812em;
- text-align: left;
- list-style: none;
- background-color: #f6f9fc;
- border: 1px solid #09c;
- }
-
- .pkgsearch-typeahead li a {
- color: #000;
- }
-
- .pkgsearch-typeahead li.active a {
- color: #07b;
- }
-
-/* home: recent pkg updates */
-#pkg-updates h3 {
- margin: 0 0 0.3em;
-}
-
- #pkg-updates .more {
- font-weight: normal;
- }
-
- #pkg-updates .rss-icon {
- float: right;
- margin: -2em 0 0 0;
- }
-
- #pkg-updates table {
- margin: 0;
- }
-
- #pkg-updates td.pkg-name {
- white-space: normal;
- }
-
- #pkg-updates td.pkg-arch {
- text-align: right;
- }
-
- #pkg-updates span.testing {
- font-style: italic;
- }
-
- #pkg-updates span.staging {
- font-style: italic;
- color: #ff8040;
- }
-
-/* home: sidebar navigation */
-#nav-sidebar ul {
- list-style: none;
- margin: 0.5em 0 0.5em 1em;
- padding: 0;
-}
-
-/* home: sponsor banners */
-#arch-sponsors img {
- padding: 0.3em 0;
-}
-
-/* home: sidebar components (navlist, sponsors, pkgsearch, etc) */
-div.widget {
- margin-bottom: 1.5em;
-}
-
-/* home: other stuff */
-#konami {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- text-align: center;
- opacity: 0.6;
-}
-
-/* feeds page */
-#rss-feeds .rss {
- padding-right: 20px;
- background: url(rss.png) top right no-repeat;
-}
-
-/* artwork: logo images */
-#artwork img.inverted {
- background: #333;
- padding: 0;
-}
-
-#artwork div.imagelist img {
- display: inline;
- margin: 0.75em;
-}
-
-/* news: article list */
-.news-nav {
- float: right;
- margin-top: -2.2em;
-}
-
- .news-nav .prev,
- .news-nav .next {
- margin: 0 1em;
- }
-
-/* news: article pages */
-div.news-article .article-info {
- margin: 0;
- color: #999;
-}
-
-/* news: add/edit article */
-#newsform {
- width: 60em;
-}
-
- #newsform input[type=text],
- #newsform textarea {
- width: 75%;
- }
-
-/* donate: donor list */
-#donor-list ul {
- width: 100%;
-}
- /* max 4 columns, but possibly fewer if screen size doesn't allow for more */
- #donor-list li {
- float: left;
- width: 25%;
- min-width: 20em;
- }
-
-/* download page */
-#arch-downloads h3 {
- border-bottom: 1px dotted #bbb;
-}
-
-/* pkglists/devlists */
-table.results {
- font-size: 0.846em;
- border-top: 1px dotted #999;
- border-bottom: 1px dotted #999;
-}
-
- .results th {
- padding: 0.5em 1em 0.25em 0.25em;
- border-bottom: 1px solid #999;
- white-space: nowrap;
- background-color:#fff;
- }
-
- .results td {
- padding: .3em 1em .3em 3px;
- }
-
- .results tr.odd {
- background: #fff;
- }
-
- .results tr.even {
- background: #e4eeff;
- }
-
- .results .flagged {
- color: red;
- }
-
-/* pkglist: layout */
-#pkglist-about {
- margin-top: 1.5em;
-}
-
-/* pkglist: results navigation */
-.pkglist-stats {
- font-size: 0.85em;
-}
-
-#pkglist-results .pkglist-nav {
- float: right;
- margin-top: -2.2em;
-}
-
-.pkglist-nav .prev {
- margin-right: 1em;
-}
-
-.pkglist-nav .next {
- margin-right: 1em;
-}
-
-/* search fields and other filter selections */
-.filter-criteria {
- margin-bottom: 1em;
-}
-
-.filter-criteria h3 {
- font-size: 1em;
- margin-top: 0;
-}
-
-.filter-criteria div {
- float: left;
- margin-right: 1.65em;
- font-size: 0.85em;
-}
-
-.filter-criteria legend {
- display: none;
-}
-
-.filter-criteria label {
- width: auto;
- display: block;
- font-weight: normal;
-}
-
-/* pkgdetails: details links that float on the right */
-#pkgdetails #detailslinks {
- float: right;
-}
-
- #pkgdetails #detailslinks h4 {
- margin-top: 0;
- margin-bottom: 0.25em;
- }
-
- #pkgdetails #detailslinks ul {
- list-style: none;
- padding: 0;
- margin-bottom: 0;
- font-size: 0.846em;
- }
-
- #pkgdetails #detailslinks > div {
- padding: 0.5em;
- margin-bottom: 1em;
- background: #eee;
- border: 1px solid #bbb;
- }
-
-#pkgdetails #actionlist .flagged {
- color: red;
- font-size: 0.9em;
- font-style: italic;
-}
-
-/* pkgdetails: pkg info */
-#pkgdetails #pkginfo {
- width: auto;
-}
-
- #pkgdetails #pkginfo td {
- padding: 0.25em 0 0.25em 1.5em;
- }
-
- #pkgdetails #pkginfo .userdata {
- font-size: 0.85em;
- padding: 0.5em;
- }
-
-/* pkgdetails: flag package */
-#flag-pkg-form label {
- width: 10em;
-}
-
-#flag-pkg-form textarea,
-#flag-pkg-form input[type=text] {
- width: 45%;
-}
-
-/* pkgdetails: deps, required by and file lists */
-#pkgdetails #metadata {
- clear: both;
-}
-
-#pkgdetails #metadata h3 {
- background: #555;
- color: #fff;
- font-size: 1em;
- margin-bottom: 0.5em;
- padding: 0.2em 0.35em;
-}
-
-#pkgdetails #metadata ul {
- list-style: none;
- margin: 0;
- padding: 0;
-}
-
-#pkgdetails #metadata li {
- padding-left: 0.5em;
-}
-
-#pkgdetails #metadata p {
- padding-left: 0.5em;
-}
-
-#pkgdetails #metadata .message {
- font-style: italic;
-}
-
-#pkgdetails #metadata br {
- clear: both;
-}
-
-#pkgdetails #pkgdeps {
- float: left;
- width: 48%;
- margin-right: 2%;
-}
-
-#pkgdetails #metadata .virtual-dep,
-#pkgdetails #metadata .testing-dep,
-#pkgdetails #metadata .staging-dep,
-#pkgdetails #metadata .opt-dep,
-#pkgdetails #metadata .make-dep,
-#pkgdetails #metadata .check-dep,
-#pkgdetails #metadata .dep-desc {
- font-style: italic;
-}
-#pkgdetails #pkgreqs {
- float: left;
- width: 50%;
-}
-
-#pkgdetails #pkgfiles {
- clear: left;
- padding-top: 1em;
-}
-
-#pkgfilelist li.d {
- color: #666;
-}
-
-#pkgfilelist li.f {
-}
-
-/* mirror stuff */
-table td.country {
- white-space: normal;
-}
-
-#list-generator div ul {
- list-style: none;
- display: inline;
- padding-left: 0;
-}
-
- #list-generator div ul li {
- display: inline;
- }
-
-.visualize-mirror .axis path,
-.visualize-mirror .axis line {
- fill: none;
- stroke: #000;
- stroke-width: 3px;
- shape-rendering: crispEdges;
-}
-
-.visualize-mirror .url-dot {
- stroke: #000;
-}
-
-.visualize-mirror .url-line {
- fill: none;
- stroke-width: 1.5px;
-}
-
-/* dev/TU biographies */
-#arch-bio-toc {
- width: 75%;
- margin: 0 auto;
- text-align: center;
-}
-
- #arch-bio-toc a {
- white-space: nowrap;
- }
-
-.arch-bio-entry {
- width: 75%;
- min-width: 640px;
- margin: 0 auto;
-}
-
- .arch-bio-entry td.pic {
- vertical-align: top;
- padding-right: 15px;
- padding-top: 2.25em;
- }
-
- .arch-bio-entry td.pic img {
- padding: 4px;
- border: 1px solid #ccc;
- }
-
- .arch-bio-entry td h3 {
- border-bottom: 1px dotted #ccc;
- margin-bottom: 0.5em;
- }
-
- .arch-bio-entry table.bio {
- margin-bottom: 2em;
- }
-
- .arch-bio-entry table.bio th {
- color: #666;
- font-weight: normal;
- text-align: right;
- padding-right: 0.5em;
- vertical-align: top;
- white-space: nowrap;
- }
-
- .arch-bio-entry table.bio td {
- width: 100%;
- padding-bottom: 0.25em;
- white-space: normal;
- }
-
-/* dev: login/out */
-#dev-login {
- width: auto;
-}
-
-/* dev dashboard: flagged packages */
-#dash-pkg-notify {
- text-align: right;
- padding: 1em 0 0;
- margin-top: 1em;
- font-size: 0.85em;
- border-top: 1px dotted #bbb;
-}
-
- #dash-pkg-notify label {
- width: auto;
- font-weight: normal;
- }
-
- #dash-pkg-notify input {
- vertical-align: middle;
- margin: 0 0.25em;
- }
-
- #dash-pkg-notify input[type=submit] {
- margin-top: -0.25em;
- }
-
- #dash-pkg-notify p {
- margin: 0;
- }
-
-table.dash-stats .key {
- width: 50%;
-}
-
-/* dev dashboard: admin actions (add news items, todo list, etc) */
-ul.admin-actions {
- float: right;
- list-style: none;
- margin-top: -2.5em;
-}
-
- ul.admin-actions li {
- display: inline;
- padding-left: 1.5em;
- }
-
-/* colored yes/no type values */
-.todo-table .complete,
-.signoff-yes,
-#key-status .signed-yes,
-#releng-result .success-yes,
-#release-list .available-yes {
- color: green;
-}
-
-.todo-table .incomplete,
-.signoff-no,
-#key-status .signed-no,
-#releng-result .success-no,
-#release-list .available-no {
- color: red;
-}
-
-.todo-table .inprogress,
-.signoff-bad {
- color: darkorange;
-}
-
-
-/* todo lists (public and private) */
-.todo-info {
- margin: 0; color: #999;
-}
-
-.todo-list h4 {
- margin-top: 0;
- margin-bottom: 0.4em;
-}
-
-/* dev: signoff page */
-#dev-signoffs tr:hover {
- background: #ffd;
-}
-
-ul.signoff-list {
- list-style: none;
- margin: 0;
- padding: 0;
-}
-
-.signoff-yes {
- font-weight: bold;
-}
-
-.signoff-disabled {
- color: gray;
-}
-
-/* iso testing feedback form */
-#releng-feedback label {
- width: auto;
- display: inline;
- font-weight: normal;
-}
-
-#releng-feedback ul {
- padding-left: 1em;
-}
-
-#releng-feedback li {
- list-style: none;
-}
-
-#releng-feedback ul+.helptext {
- position: relative; top: -0.9em;
-}
-
-/* highlight current website in the navbar */
-#archnavbar.anb-home ul li#anb-home a,
-#archnavbar.anb-packages ul li#anb-packages a,
-#archnavbar.anb-download ul li#anb-download a {
- color: white !important;
-}
-
-/* visualizations page */
-.visualize-buttons {
- margin: 0.5em 0.33em;
-}
-
- .visualize-buttons button.active {
- depressed: true;
- }
-
-.visualize-chart {
- position: relative;
- height: 500px;
- margin: 0.33em;
-}
-
-#visualize-archrepo .treemap-cell {
- border: solid 1px white;
- overflow: hidden;
- position: absolute;
-}
-
- #visualize-archrepo .treemap-cell span {
- padding: 3px;
- font-size: 0.85em;
- line-height: 1em;
- }
-
-#visualize-keys svg {
- width: 100%;
- height: 100%;
-}
+/srv/http/www.parabola.nu/web/sitestatic/archweb.css \ No newline at end of file
diff --git a/web/html/css/cgit.css b/web/html/css/cgit.css
index 429b5f5..13131bc 100644..120000
--- a/web/html/css/cgit.css
+++ b/web/html/css/cgit.css
@@ -1,866 +1 @@
-/*
- * ARCH GLOBAL NAVBAR
- * We're forcing all generic selectors with !important
- * to help prevent other stylesheets from interfering.
- */
-
-/* container for the entire bar */
-#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
-#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; background: url('archnavbar/archlogo.png') no-repeat !important; }
-
-/* move the heading text offscreen */
-#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
-
-/* make the link the same size as the logo */
-#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
-
-/* display the list inline, float it to the right and style it */
-#archnavbarlist { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
-#archnavbarlist li { float: left !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 45px !important; padding-right: 15px !important; padding-left: 15px !important; }
-
-/* style the links */
-#archnavbarlist li a { color: #999; font-weight: bold !important; text-decoration: none !important; }
-#archnavbarlist li a:hover { color: white !important; text-decoration: underline !important; }
-
-/* END ARCH GLOBAL NAVBAR */
-
-#footer {
- clear: both;
- margin: 0;
-}
-
-#footer p {
- margin: 1em;
-}
-
-#archnavbar.anb-aur ul li#anb-aur a {
- color: white !important;
-}
-
-#archnavbarlogo {
- background: url('archnavbar/aurlogo.png') !important;
-}
-
-body {
- padding: 0;
- margin: 0;
- font-family: sans-serif;
- font-size: 10pt;
- color: #333;
- background: white;
-}
-
-div#cgit a {
- color: blue;
- text-decoration: none;
-}
-
-div#cgit a:hover {
- text-decoration: underline;
-}
-
-div#cgit table {
- border-collapse: collapse;
-}
-
-div#cgit table#header {
- width: 100%;
- margin-bottom: 1em;
-}
-
-div#cgit table#header td.logo {
- width: 96px;
- vertical-align: top;
-}
-
-div#cgit table#header td.main {
- font-size: 250%;
- padding-left: 10px;
- white-space: nowrap;
-}
-
-div#cgit table#header td.main a {
- color: #000;
-}
-
-div#cgit table#header td.form {
- text-align: right;
- vertical-align: bottom;
- padding-right: 1em;
- padding-bottom: 2px;
- white-space: nowrap;
-}
-
-div#cgit table#header td.form form,
-div#cgit table#header td.form input,
-div#cgit table#header td.form select {
- font-size: 90%;
-}
-
-div#cgit table#header td.sub {
- color: #777;
- border-top: solid 1px #ccc;
- padding-left: 10px;
-}
-
-div#cgit table.tabs {
- border-bottom: solid 3px #ccc;
- border-collapse: collapse;
- margin-top: 2em;
- margin-bottom: 0px;
- width: 100%;
-}
-
-div#cgit table.tabs td {
- padding: 0px 1em;
- vertical-align: bottom;
-}
-
-div#cgit table.tabs td a {
- padding: 2px 0.75em;
- color: #777;
- font-size: 110%;
-}
-
-div#cgit table.tabs td a.active {
- color: #000;
- background-color: #ccc;
-}
-
-div#cgit table.tabs td.form {
- text-align: right;
-}
-
-div#cgit table.tabs td.form form {
- padding-bottom: 2px;
- font-size: 90%;
- white-space: nowrap;
-}
-
-div#cgit table.tabs td.form input,
-div#cgit table.tabs td.form select {
- font-size: 90%;
-}
-
-div#cgit div.path {
- margin: 0px;
- padding: 5px 2em 2px 2em;
- color: #000;
- background-color: #eee;
-}
-
-div#cgit div.content {
- margin: 0px;
- padding: 2em;
- border-bottom: solid 3px #ccc;
-}
-
-
-div#cgit table.list {
- width: 100%;
- border: none;
- border-collapse: collapse;
-}
-
-div#cgit table.list tr {
- background: white;
-}
-
-div#cgit table.list tr.logheader {
- background: #eee;
-}
-
-div#cgit table.list tr:hover {
- background: #eee;
-}
-
-div#cgit table.list tr.nohover:hover {
- background: white;
-}
-
-div#cgit table.list th {
- font-weight: bold;
- /* color: #888;
- border-top: dashed 1px #888;
- border-bottom: dashed 1px #888;
- */
- padding: 0.1em 0.5em 0.05em 0.5em;
- vertical-align: baseline;
-}
-
-div#cgit table.list td {
- border: none;
- padding: 0.1em 0.5em 0.1em 0.5em;
-}
-
-div#cgit table.list td.commitgraph {
- font-family: monospace;
- white-space: pre;
-}
-
-div#cgit table.list td.commitgraph .column1 {
- color: #a00;
-}
-
-div#cgit table.list td.commitgraph .column2 {
- color: #0a0;
-}
-
-div#cgit table.list td.commitgraph .column3 {
- color: #aa0;
-}
-
-div#cgit table.list td.commitgraph .column4 {
- color: #00a;
-}
-
-div#cgit table.list td.commitgraph .column5 {
- color: #a0a;
-}
-
-div#cgit table.list td.commitgraph .column6 {
- color: #0aa;
-}
-
-div#cgit table.list td.logsubject {
- font-family: monospace;
- font-weight: bold;
-}
-
-div#cgit table.list td.logmsg {
- font-family: monospace;
- white-space: pre;
- padding: 0 0.5em;
-}
-
-div#cgit table.list td a {
- color: black;
-}
-
-div#cgit table.list td a.ls-dir {
- font-weight: bold;
- color: #00f;
-}
-
-div#cgit table.list td a:hover {
- color: #00f;
-}
-
-div#cgit img {
- border: none;
-}
-
-div#cgit input#switch-btn {
- margin: 2px 0px 0px 0px;
-}
-
-div#cgit td#sidebar input.txt {
- width: 100%;
- margin: 2px 0px 0px 0px;
-}
-
-div#cgit table#grid {
- margin: 0px;
-}
-
-div#cgit td#content {
- vertical-align: top;
- padding: 1em 2em 1em 1em;
- border: none;
-}
-
-div#cgit div#summary {
- vertical-align: top;
- margin-bottom: 1em;
-}
-
-div#cgit table#downloads {
- float: right;
- border-collapse: collapse;
- border: solid 1px #777;
- margin-left: 0.5em;
- margin-bottom: 0.5em;
-}
-
-div#cgit table#downloads th {
- background-color: #ccc;
-}
-
-div#cgit div#blob {
- border: solid 1px black;
-}
-
-div#cgit div.error {
- color: red;
- font-weight: bold;
- margin: 1em 2em;
-}
-
-div#cgit a.ls-blob, div#cgit a.ls-dir, div#cgit a.ls-mod {
- font-family: monospace;
-}
-
-div#cgit td.ls-size {
- text-align: right;
- font-family: monospace;
- width: 10em;
-}
-
-div#cgit td.ls-mode {
- font-family: monospace;
- width: 10em;
-}
-
-div#cgit table.blob {
- margin-top: 0.5em;
- border-top: solid 1px black;
-}
-
-div#cgit table.blob td.lines {
- margin: 0; padding: 0 0 0 0.5em;
- vertical-align: top;
- color: black;
-}
-
-div#cgit table.blob td.linenumbers {
- margin: 0; padding: 0 0.5em 0 0.5em;
- vertical-align: top;
- text-align: right;
- border-right: 1px solid gray;
-}
-
-div#cgit table.blob pre {
- padding: 0; margin: 0;
-}
-
-div#cgit table.blob a.no, div#cgit table.ssdiff a.no {
- color: gray;
- text-align: right;
- text-decoration: none;
-}
-
-div#cgit table.blob a.no a:hover {
- color: black;
-}
-
-div#cgit table.bin-blob {
- margin-top: 0.5em;
- border: solid 1px black;
-}
-
-div#cgit table.bin-blob th {
- font-family: monospace;
- white-space: pre;
- border: solid 1px #777;
- padding: 0.5em 1em;
-}
-
-div#cgit table.bin-blob td {
- font-family: monospace;
- white-space: pre;
- border-left: solid 1px #777;
- padding: 0em 1em;
-}
-
-div#cgit table.nowrap td {
- white-space: nowrap;
-}
-
-div#cgit table.commit-info {
- border-collapse: collapse;
- margin-top: 1.5em;
-}
-
-div#cgit div.cgit-panel {
- float: right;
- margin-top: 1.5em;
-}
-
-div#cgit div.cgit-panel table {
- border-collapse: collapse;
- border: solid 1px #aaa;
- background-color: #eee;
-}
-
-div#cgit div.cgit-panel th {
- text-align: center;
-}
-
-div#cgit div.cgit-panel td {
- padding: 0.25em 0.5em;
-}
-
-div#cgit div.cgit-panel td.label {
- padding-right: 0.5em;
-}
-
-div#cgit div.cgit-panel td.ctrl {
- padding-left: 0.5em;
-}
-
-div#cgit table.commit-info th {
- text-align: left;
- font-weight: normal;
- padding: 0.1em 1em 0.1em 0.1em;
- vertical-align: top;
-}
-
-div#cgit table.commit-info td {
- font-weight: normal;
- padding: 0.1em 1em 0.1em 0.1em;
-}
-
-div#cgit div.commit-subject {
- font-weight: bold;
- font-size: 125%;
- margin: 1.5em 0em 0.5em 0em;
- padding: 0em;
-}
-
-div#cgit div.commit-msg {
- white-space: pre;
- font-family: monospace;
-}
-
-div#cgit div.notes-header {
- font-weight: bold;
- padding-top: 1.5em;
-}
-
-div#cgit div.notes {
- white-space: pre;
- font-family: monospace;
- border: solid 1px #ee9;
- background-color: #ffd;
- padding: 0.3em 2em 0.3em 1em;
- float: left;
-}
-
-div#cgit div.notes-footer {
- clear: left;
-}
-
-div#cgit div.diffstat-header {
- font-weight: bold;
- padding-top: 1.5em;
-}
-
-div#cgit table.diffstat {
- border-collapse: collapse;
- border: solid 1px #aaa;
- background-color: #eee;
-}
-
-div#cgit table.diffstat th {
- font-weight: normal;
- text-align: left;
- text-decoration: underline;
- padding: 0.1em 1em 0.1em 0.1em;
- font-size: 100%;
-}
-
-div#cgit table.diffstat td {
- padding: 0.2em 0.2em 0.1em 0.1em;
- font-size: 100%;
- border: none;
-}
-
-div#cgit table.diffstat td.mode {
- white-space: nowrap;
-}
-
-div#cgit table.diffstat td span.modechange {
- padding-left: 1em;
- color: red;
-}
-
-div#cgit table.diffstat td.add a {
- color: green;
-}
-
-div#cgit table.diffstat td.del a {
- color: red;
-}
-
-div#cgit table.diffstat td.upd a {
- color: blue;
-}
-
-div#cgit table.diffstat td.graph {
- width: 500px;
- vertical-align: middle;
-}
-
-div#cgit table.diffstat td.graph table {
- border: none;
-}
-
-div#cgit table.diffstat td.graph td {
- padding: 0px;
- border: 0px;
- height: 7pt;
-}
-
-div#cgit table.diffstat td.graph td.add {
- background-color: #5c5;
-}
-
-div#cgit table.diffstat td.graph td.rem {
- background-color: #c55;
-}
-
-div#cgit div.diffstat-summary {
- color: #888;
- padding-top: 0.5em;
-}
-
-div#cgit table.diff {
- width: 100%;
-}
-
-div#cgit table.diff td {
- font-family: monospace;
- white-space: pre;
-}
-
-div#cgit table.diff td div.head {
- font-weight: bold;
- margin-top: 1em;
- color: black;
-}
-
-div#cgit table.diff td div.hunk {
- color: #009;
-}
-
-div#cgit table.diff td div.add {
- color: green;
-}
-
-div#cgit table.diff td div.del {
- color: red;
-}
-
-div#cgit .sha1 {
- font-family: monospace;
- font-size: 90%;
-}
-
-div#cgit .left {
- text-align: left;
-}
-
-div#cgit .right {
- text-align: right;
- float: none !important;
- width: auto !important;
- padding: 0 !important;
-}
-
-div#cgit table.list td.reposection {
- font-style: italic;
- color: #888;
-}
-
-div#cgit a.button {
- font-size: 80%;
- padding: 0em 0.5em;
-}
-
-div#cgit a.primary {
- font-size: 100%;
-}
-
-div#cgit a.secondary {
- font-size: 90%;
-}
-
-div#cgit td.toplevel-repo {
-
-}
-
-div#cgit table.list td.sublevel-repo {
- padding-left: 1.5em;
-}
-
-div#cgit ul.pager {
- list-style-type: none;
- text-align: center;
- margin: 1em 0em 0em 0em;
- padding: 0;
-}
-
-div#cgit ul.pager li {
- display: inline-block;
- margin: 0.25em 0.5em;
-}
-
-div#cgit ul.pager a {
- color: #777;
-}
-
-div#cgit ul.pager .current {
- font-weight: bold;
-}
-
-div#cgit span.age-mins {
- font-weight: bold;
- color: #080;
-}
-
-div#cgit span.age-hours {
- color: #080;
-}
-
-div#cgit span.age-days {
- color: #040;
-}
-
-div#cgit span.age-weeks {
- color: #444;
-}
-
-div#cgit span.age-months {
- color: #888;
-}
-
-div#cgit span.age-years {
- color: #bbb;
-}
-div#cgit div.footer {
- margin-top: 0.5em;
- text-align: center;
- font-size: 80%;
- color: #ccc;
-}
-div#cgit a.branch-deco {
- color: #000;
- margin: 0px 0.5em;
- padding: 0px 0.25em;
- background-color: #88ff88;
- border: solid 1px #007700;
-}
-div#cgit a.tag-deco {
- color: #000;
- margin: 0px 0.5em;
- padding: 0px 0.25em;
- background-color: #ffff88;
- border: solid 1px #777700;
-}
-div#cgit a.remote-deco {
- color: #000;
- margin: 0px 0.5em;
- padding: 0px 0.25em;
- background-color: #ccccff;
- border: solid 1px #000077;
-}
-div#cgit a.deco {
- color: #000;
- margin: 0px 0.5em;
- padding: 0px 0.25em;
- background-color: #ff8888;
- border: solid 1px #770000;
-}
-
-div#cgit div.commit-subject a.branch-deco,
-div#cgit div.commit-subject a.tag-deco,
-div#cgit div.commit-subject a.remote-deco,
-div#cgit div.commit-subject a.deco {
- margin-left: 1em;
- font-size: 75%;
-}
-
-div#cgit table.stats {
- border: solid 1px black;
- border-collapse: collapse;
-}
-
-div#cgit table.stats th {
- text-align: left;
- padding: 1px 0.5em;
- background-color: #eee;
- border: solid 1px black;
-}
-
-div#cgit table.stats td {
- text-align: right;
- padding: 1px 0.5em;
- border: solid 1px black;
-}
-
-div#cgit table.stats td.total {
- font-weight: bold;
- text-align: left;
-}
-
-div#cgit table.stats td.sum {
- color: #c00;
- font-weight: bold;
-/* background-color: #eee; */
-}
-
-div#cgit table.stats td.left {
- text-align: left;
-}
-
-div#cgit table.vgraph {
- border-collapse: separate;
- border: solid 1px black;
- height: 200px;
-}
-
-div#cgit table.vgraph th {
- background-color: #eee;
- font-weight: bold;
- border: solid 1px white;
- padding: 1px 0.5em;
-}
-
-div#cgit table.vgraph td {
- vertical-align: bottom;
- padding: 0px 10px;
-}
-
-div#cgit table.vgraph div.bar {
- background-color: #eee;
-}
-
-div#cgit table.hgraph {
- border: solid 1px black;
- width: 800px;
-}
-
-div#cgit table.hgraph th {
- background-color: #eee;
- font-weight: bold;
- border: solid 1px black;
- padding: 1px 0.5em;
-}
-
-div#cgit table.hgraph td {
- vertical-align: middle;
- padding: 2px 2px;
-}
-
-div#cgit table.hgraph div.bar {
- background-color: #eee;
- height: 1em;
-}
-
-div#cgit table.ssdiff {
- width: 100%;
-}
-
-div#cgit table.ssdiff td {
- font-size: 75%;
- font-family: monospace;
- white-space: pre;
- padding: 1px 4px 1px 4px;
- border-left: solid 1px #aaa;
- border-right: solid 1px #aaa;
-}
-
-div#cgit table.ssdiff td.add {
- color: black;
- background: #cfc;
- min-width: 50%;
-}
-
-div#cgit table.ssdiff td.add_dark {
- color: black;
- background: #aca;
- min-width: 50%;
-}
-
-div#cgit table.ssdiff span.add {
- background: #cfc;
- font-weight: bold;
-}
-
-div#cgit table.ssdiff td.del {
- color: black;
- background: #fcc;
- min-width: 50%;
-}
-
-div#cgit table.ssdiff td.del_dark {
- color: black;
- background: #caa;
- min-width: 50%;
-}
-
-div#cgit table.ssdiff span.del {
- background: #fcc;
- font-weight: bold;
-}
-
-div#cgit table.ssdiff td.changed {
- color: black;
- background: #ffc;
- min-width: 50%;
-}
-
-div#cgit table.ssdiff td.changed_dark {
- color: black;
- background: #cca;
- min-width: 50%;
-}
-
-div#cgit table.ssdiff td.lineno {
- color: black;
- background: #eee;
- text-align: right;
- width: 3em;
- min-width: 3em;
-}
-
-div#cgit table.ssdiff td.hunk {
- color: black;
- background: #ccf;
- border-top: solid 1px #aaa;
- border-bottom: solid 1px #aaa;
-}
-
-div#cgit table.ssdiff td.head {
- border-top: solid 1px #aaa;
- border-bottom: solid 1px #aaa;
-}
-
-div#cgit table.ssdiff td.head div.head {
- font-weight: bold;
- color: black;
-}
-
-div#cgit table.ssdiff td.foot {
- border-top: solid 1px #aaa;
- border-left: none;
- border-right: none;
- border-bottom: none;
-}
-
-div#cgit table.ssdiff td.space {
- border: none;
-}
-
-div#cgit table.ssdiff td.space div {
- min-height: 3em;
-}
-
-/*
- * Style definitions generated by highlight 3.14, http://www.andre-simon.de/
- * Highlighting theme: Kwrite Editor
- */
-div#cgit table.blob .num { color:#b07e00; }
-div#cgit table.blob .esc { color:#ff00ff; }
-div#cgit table.blob .str { color:#bf0303; }
-div#cgit table.blob .pps { color:#818100; }
-div#cgit table.blob .slc { color:#838183; font-style:italic; }
-div#cgit table.blob .com { color:#838183; font-style:italic; }
-div#cgit table.blob .ppc { color:#008200; }
-div#cgit table.blob .opt { color:#000000; }
-div#cgit table.blob .ipl { color:#0057ae; }
-div#cgit table.blob .lin { color:#555555; }
-div#cgit table.blob .kwa { color:#000000; font-weight:bold; }
-div#cgit table.blob .kwb { color:#0057ae; }
-div#cgit table.blob .kwc { color:#000000; font-weight:bold; }
-div#cgit table.blob .kwd { color:#010181; }
+/srv/http/projects.parabola.nu/cgit.css \ No newline at end of file
diff --git a/web/html/home.php b/web/html/home.php
index 3252876..6a2de59 100644
--- a/web/html/home.php
+++ b/web/html/home.php
@@ -15,14 +15,17 @@ html_header( __("Home") );
<div id="content-left-wrapper">
<div id="content-left">
<div id="intro" class="box">
- <h2>AUR <?= __("Home"); ?></h2>
+ <h2><?= config_get('options', 'branding_shortname'); ?> <?= __("Home"); ?></h2>
<p>
<?php
echo __(
- 'Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU Guidelines%s for more information.',
+ 'Welcome to the %s! Please read the %s%s User Guidelines%s and %s%s TU Guidelines%s for more information.',
+ config_get('options', 'branding_shortname'),
'<a href="https://wiki.archlinux.org/index.php/AUR_User_Guidelines">',
+ config_get('options', 'branding_shortname'),
'</a>',
'<a href="https://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">',
+ config_get('options', 'branding_shortname'),
'</a>'
);
?>
@@ -58,7 +61,7 @@ html_header( __("Home") );
</p>
<ul>
<li><em><?= __('Orphan Request') ?></em>: <?= __('Request a package to be disowned, e.g. when the maintainer is inactive and the package has been flagged out-of-date for a long time.') ?></li>
- <li><em><?= __('Deletion Request') ?></em>: <?= __('Request a package to be removed from the Arch User Repository. Please do not use this if a package is broken and can be fixed easily. Instead, contact the package maintainer and file orphan request if necessary.') ?></li>
+ <li><em><?= __('Deletion Request') ?></em>: <?= __('Request a package to be removed from the %s. Please do not use this if a package is broken and can be fixed easily. Instead, contact the package maintainer and file orphan request if necessary.', config_get('options', 'branding_longname')) ?></li>
<li><em><?= __('Merge Request') ?></em>: <?= __('Request a package to be merged into another one. Can be used when a package needs to be renamed or replaced by a split package.') ?></li>
</ul>
<p>
@@ -76,7 +79,8 @@ html_header( __("Home") );
<p>
<?php
echo __(
- 'Git over SSH is now used to submit packages to the AUR. See the %sSubmitting packages%s section of the Arch User Repository ArchWiki page for more details.',
+ 'Git over SSH is now used to submit packages to the %s. See the %sSubmitting packages%s section of the Arch User Repository ArchWiki page for more details.',
+ config_get('options', 'branding_shortname'),
'<a href="https://wiki.archlinux.org/index.php/Arch_User_Repository#AUR_4">',
'</a>'
);
@@ -84,7 +88,7 @@ html_header( __("Home") );
</p>
<?php if (config_section_exists('fingerprints')): ?>
<p>
- <?= __('The following SSH fingerprints are used for the AUR:') ?>
+ <?= __('The following SSH fingerprints are used for the %s:', config_get('options', 'branding_shortname')) ?>
</p>
<ul>
<?php foreach (config_items('fingerprints') as $type => $fingerprint): ?>
@@ -98,11 +102,12 @@ html_header( __("Home") );
<p>
<?php
echo __(
- 'General discussion regarding the Arch User Repository (AUR) and Trusted User structure takes place on %saur-general%s. For discussion relating to the development of the AUR web interface, use the %saur-dev%s mailing list.',
- '<a href="https://mailman.archlinux.org/mailman/listinfo/aur-general">',
- '</a>',
- '<a href="https://mailman.archlinux.org/mailman/listinfo/aur-dev">',
- '</a>'
+ 'General discussion regarding the %s (%s) and Trusted User structure takes place on %s. For discussion relating to the development of the %s web interface (aurweb), use the %s mailing list.',
+ config_get('options', 'branding_longname'),
+ config_get('options', 'branding_shortname'),
+ '<a href="https://mailman.archlinux.org/mailman/listinfo/aur-general">aur-general</a>',
+ config_get('options', 'branding_shortname'),
+ '<a href="https://mailman.archlinux.org/mailman/listinfo/aur-dev">aur-dev</a>'
);
?>
</p>
@@ -112,7 +117,8 @@ html_header( __("Home") );
<p>
<?php
echo __(
- 'If you find a bug in the AUR web interface, please fill out a bug report on our %sbug tracker%s. Use the tracker to report bugs in the AUR %sonly%s. To report packaging bugs contact the package maintainer or leave a comment on the appropriate package page.',
+ 'If you find a bug in the %s web interface (aurweb), please fill out a bug report on our %sbug tracker%s. Use the tracker to report bugs in aurweb %sonly%s. To report packaging bugs contact the package maintainer or leave a comment on the appropriate package page.',
+ config_get('options', 'branding_shortname'),
'<a href="https://bugs.archlinux.org/index.php?project=2">',
'</a>',
'<strong>',
diff --git a/web/html/images/favicon.ico b/web/html/images/favicon.ico
index 55497b8..fdc01ea 100644..120000
--- a/web/html/images/favicon.ico
+++ b/web/html/images/favicon.ico
Binary files differ
diff --git a/web/html/images/feed-icon-14x14.png b/web/html/images/feed-icon-14x14.png
index b3c949d..5a75e20 100644..120000
--- a/web/html/images/feed-icon-14x14.png
+++ b/web/html/images/feed-icon-14x14.png
Binary files differ
diff --git a/web/html/images/new.png b/web/html/images/new.png
index 6a9bf03..b70c53c 100644..120000
--- a/web/html/images/new.png
+++ b/web/html/images/new.png
Binary files differ
diff --git a/web/html/index.php b/web/html/index.php
index 27d897c..79b4207 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -157,18 +157,13 @@ if (!empty($tokens[1]) && '/' . $tokens[1] == get_pkg_route()) {
header("Content-Type: text/css");
readfile("./$path");
break;
- case "/css/archnavbar/archlogo.gif":
- case "/images/new.png":
- header("Content-Type: image/png");
- readfile("./$path");
- break;
case "/css/archnavbar/archlogo.png":
case "/css/archnavbar/aurlogo.png":
case "/images/AUR-logo-80.png":
case "/images/AUR-logo.png":
- case "/images/favicon.ico":
+ case "/images/favicon.ico": /* yes, it is a PNG, despite the extension */
case "/images/feed-icon-14x14.png":
- case "/images/titlelogo.png":
+ case "/images/new.png":
case "/images/x.png":
header("Content-Type: image/png");
readfile("./$path");
diff --git a/web/html/js/bootstrap-typeahead.min.js b/web/html/js/bootstrap-typeahead.min.js
index 7d555ed..10878b6 100644..120000
--- a/web/html/js/bootstrap-typeahead.min.js
+++ b/web/html/js/bootstrap-typeahead.min.js
@@ -1 +1 @@
-!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.typeahead.defaults,n),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.$menu=e(this.options.menu).appendTo("body"),this.source=this.options.source,this.shown=!1,this.listen()};t.prototype={constructor:t,select:function(){var e=this.$menu.find(".active").attr("data-value");return e&&this.$element.val(this.updater(e)).change(),this.hide()},updater:function(e){return e},show:function(){var t=e.extend({},this.$element.offset(),{height:this.$element[0].offsetHeight});return this.$menu.css({top:t.top+t.height,left:t.left}),this.$menu.show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(t){var n;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(n=e.isFunction(this.source)?this.source(this.query,e.proxy(this.process,this)):this.source,n?this.process(n):this)},process:function(t){var n=this;return t=e.grep(t,function(e){return n.matcher(e)}),t=this.sorter(t),t.length?this.render(t.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(e){return~e.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(e){var t=[],n=[],r=[],i;while(i=e.shift())i.toLowerCase().indexOf(this.query.toLowerCase())?~i.indexOf(this.query)?n.push(i):r.push(i):t.push(i);return t.concat(n,r)},highlighter:function(e){var t=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return e.replace(new RegExp("("+t+")","ig"),function(e,t){return"<strong>"+t+"</strong>"})},render:function(t){var n=this;return t=e(t).map(function(t,r){return t=e(n.options.item).attr("data-value",r),t.find("a").html(n.highlighter(r)),t[0]}),this.$menu.html(t),this},next:function(t){var n=this.$menu.find(".active").removeClass("active"),r=n.next();r.length||(r=e(this.$menu.find("li")[0])),r.addClass("active")},prev:function(e){var t=this.$menu.find(".active").removeClass("active"),n=t.prev();n.length||(n=this.$menu.find("li").last()),n.addClass("active")},listen:function(){this.$element.on("blur",e.proxy(this.blur,this)).on("keypress",e.proxy(this.keypress,this)).on("keyup",e.proxy(this.keyup,this)),(e.browser.chrome||e.browser.webkit||e.browser.msie)&&this.$element.on("keydown",e.proxy(this.keydown,this)),this.$menu.on("click",e.proxy(this.click,this)).on("mouseenter","li",e.proxy(this.mouseenter,this))},move:function(e){if(!this.shown)return;switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()},keydown:function(t){this.suppressKeyPressRepeat=!~e.inArray(t.keyCode,[40,38,9,13,27]),this.move(t)},keypress:function(e){if(this.suppressKeyPressRepeat)return;this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},blur:function(e){var t=this;setTimeout(function(){t.hide()},150)},click:function(e){e.stopPropagation(),e.preventDefault(),this.select()},mouseenter:function(t){this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")}},e.fn.typeahead=function(n){return this.each(function(){var r=e(this),i=r.data("typeahead"),s=typeof n=="object"&&n;i||r.data("typeahead",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},e.fn.typeahead.Constructor=t,e(function(){e("body").on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;t.preventDefault(),n.typeahead(n.data())})})}(window.jQuery) \ No newline at end of file
+/srv/http/www.parabola.nu/web/sitestatic/bootstrap-typeahead.min.js \ No newline at end of file
diff --git a/web/html/login.php b/web/html/login.php
index ab7bac9..f0dbb7c 100644
--- a/web/html/login.php
+++ b/web/html/login.php
@@ -11,10 +11,10 @@ if (!$disable_http_login || (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'])) {
$login_error = $login['error'];
}
-html_header('AUR ' . __("Login"));
+html_header(config_get('options', 'branding_shortname') . ' ' . __("Login"));
?>
<div id="dev-login" class="box">
- <h2>AUR <?= __('Login') ?></h2>
+ <h2><?= config_get('options', 'branding_shortname'); ?> <?= __('Login') ?></h2>
<?php if (isset($_COOKIE["AURSID"])): ?>
<p>
<?= __("Logged-in as: %s", '<strong>' . username_from_sid($_COOKIE["AURSID"]) . '</strong>'); ?>
diff --git a/web/html/logout.php b/web/html/logout.php
index 5e8e8f4..d173773 100644
--- a/web/html/logout.php
+++ b/web/html/logout.php
@@ -2,8 +2,8 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
-include_once("aur.inc.php"); # access AUR common functions
-include_once("acctfuncs.inc.php"); # access AUR common functions
+include_once("aur.inc.php"); # access aurweb common functions
+include_once("acctfuncs.inc.php"); # access aurweb common functions
# if they've got a cookie, log them out - need to do this before
diff --git a/web/html/packages.php b/web/html/packages.php
index 75a574e..4d895c1 100644
--- a/web/html/packages.php
+++ b/web/html/packages.php
@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
-include_once("aur.inc.php"); # access AUR common functions
+include_once("aur.inc.php"); # access aurweb common functions
set_lang(); # this sets up the visitor's language
include_once('pkgfuncs.inc.php'); # package specific functions
check_sid(); # see if they're still logged in
diff --git a/web/html/passreset.php b/web/html/passreset.php
index 29f2c64..e77e5b6 100644
--- a/web/html/passreset.php
+++ b/web/html/passreset.php
@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
-include_once("aur.inc.php"); # access AUR common functions
+include_once("aur.inc.php"); # access aurweb common functions
set_lang(); # this sets up the visitor's language
check_sid(); # see if they're still logged in
@@ -46,7 +46,7 @@ if (isset($_GET['resetkey'], $_POST['email'], $_POST['password'], $_POST['confir
if (empty($email)) {
$error = __('Missing a required field.');
} else {
- $subject = 'AUR Password Reset';
+ $subject = __('%s Password Reset', config_get('options', 'branding_shortname'));
$body = __('A password reset request was submitted for the ' .
'account %s associated with your e-mail address. ' .
'If you wish to reset your password follow the ' .
diff --git a/web/html/pkgdel.php b/web/html/pkgdel.php
index eb20967..f631af2 100644
--- a/web/html/pkgdel.php
+++ b/web/html/pkgdel.php
@@ -14,8 +14,8 @@ if (has_credential(CRED_PKGBASE_DELETE)): ?>
<div class="box">
<h2><?= __('Delete Package: %s', htmlspecialchars($pkgbase_name)) ?></h2>
<p>
- <?= __('Use this form to delete the package base %s%s%s and the following packages from the AUR: ',
- '<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?>
+ <?= __('Use this form to delete the package base %s%s%s and the following packages from the %s: ',
+ '<strong>', htmlspecialchars($pkgbase_name), '</strong>', config_get('options', 'branding_shortname')); ?>
</p>
<ul>
<?php foreach(pkgbase_get_pkgnames($base_id) as $pkgname): ?>
diff --git a/web/html/register.php b/web/html/register.php
index 014d802..19f7c09 100644
--- a/web/html/register.php
+++ b/web/html/register.php
@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
-include_once('aur.inc.php'); # access AUR common functions
+include_once('aur.inc.php'); # access aurweb common functions
include_once('acctfuncs.inc.php'); # access Account specific functions
set_lang(); # this sets up the visitor's language
diff --git a/web/html/rss.php b/web/html/rss.php
index 2470d99..a88a6ef 100644
--- a/web/html/rss.php
+++ b/web/html/rss.php
@@ -26,15 +26,15 @@ $rss->xslStyleSheet = false;
$rss->encoding = "UTF-8";
#All the general RSS setup
-$rss->title = "AUR Newest Packages";
-$rss->description = "The latest and greatest packages in the AUR";
+$rss->title = config_get('options', 'branding_shortname') . " Newest Packages";
+$rss->description = "The latest and greatest packages in the " . config_get('options', 'branding_shortname');
$rss->link = "${protocol}://{$host}";
$rss->syndicationURL = "{$protocol}://{$host}" . get_uri('/rss/');
$image = new FeedImage();
-$image->title = "AUR";
+$image->title = config_get('options', 'branding_shortname');
$image->url = "{$protocol}://{$host}/images/AUR-logo-80.png";
$image->link = $rss->link;
-$image->description = "AUR Newest Packages Feed";
+$image->description = config_get('options', 'branding_shortname') . " Newest Packages Feed";
$rss->image = $image;
#Get the latest packages and add items for them
diff --git a/web/lib/DB.class.php b/web/lib/DB.class.php
index b538e0d..4c58c3c 100644
--- a/web/lib/DB.class.php
+++ b/web/lib/DB.class.php
@@ -32,7 +32,7 @@ class DB {
self::$dbh = new PDO($dsn, $user, $password);
self::$dbh->exec("SET NAMES 'utf8' COLLATE 'utf8_general_ci';");
} catch (PDOException $e) {
- die('Error - Could not connect to AUR database');
+ die('Error - Could not connect to ' . config_get('options', 'branding_shortname') . ' database');
}
}
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php
index edd38ee..abc40c3 100644
--- a/web/lib/acctfuncs.inc.php
+++ b/web/lib/acctfuncs.inc.php
@@ -41,7 +41,7 @@ function html_format_pgp_fingerprint($fingerprint) {
/**
* Loads the account editing form, with any values that are already saved
*
- * @global array $SUPPORTED_LANGS Languages that are supported by the AUR
+ * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance
* @param string $A Form to use, either UpdateAccount or NewAccount
* @param string $U The username to display
* @param string $T The account type of the displayed user
@@ -70,7 +70,7 @@ function display_account_form($A,$U="",$T="",$S="",$E="",$P="",$C="",$R="",
/**
* Process information given to new/edit account form
*
- * @global array $SUPPORTED_LANGS Languages that are supported by the AUR
+ * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance
* @param string $TYPE Either "edit" for editing or "new" for registering an account
* @param string $A Form to use, either UpdateAccount or NewAccount
* @param string $U The username for the account
@@ -294,7 +294,7 @@ function process_account_form($TYPE,$A,$U="",$T="",$S="",$E="",$P="",$C="",
return;
}
- $subject = 'Welcome to the Arch User Repository';
+ $subject = __('Welcome to the %s', config_get('options', 'branding_longname'));
$body = __('Welcome to %s! In order ' .
'to set an initial password ' .
'for your new account, ' .
@@ -726,10 +726,10 @@ function send_resetkey($email, $subject, $body) {
"?resetkey={$resetkey}";
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
- "Reply-to: noreply@aur.archlinux.org\r\n" .
- "From: notify@aur.archlinux.org\r\n" .
+ "Reply-to: noreply@".config_get('options', 'email_domain')."\r\n" .
+ "From: notify@".config_get('options', 'email_domain')."\r\n" .
"X-Mailer: PHP\r\n" .
- "X-MimeOLE: Produced By AUR";
+ "X-MimeOLE: Produced By ".config_get('options', 'branding_shortname');
@mail($email, $subject, $body, $headers);
}
diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php
index b410db5..3504662 100644
--- a/web/lib/aur.inc.php
+++ b/web/lib/aur.inc.php
@@ -345,11 +345,11 @@ function uid_from_sid($sid="") {
}
/**
- * Common AUR header displayed on all pages
+ * Common aurweb header displayed on all pages
*
* @global string $LANG Language selected by the visitor
- * @global array $SUPPORTED_LANGS Languages that are supported by the AUR
- * @param string $title Name of the AUR page to be displayed on browser
+ * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance
+ * @param string $title Name of the aurweb page to be displayed on browser
*
* @return void
*/
@@ -362,9 +362,9 @@ function html_header($title="", $details=array()) {
}
/**
- * Common AUR footer displayed on all pages
+ * Common aurweb footer displayed on all pages
*
- * @param string $ver The AUR version
+ * @param string $ver The aurweb version
*
* @return void
*/
@@ -668,9 +668,9 @@ function bound($n, $min, $max) {
}
/**
- * Return the URL of the AUR root
+ * Return the URL of the aurweb root
*
- * @return string The URL of the AUR root
+ * @return string The URL of the aurweb root
*/
function aur_location() {
$location = config_get('options', 'aur_location');
diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php
index debffc4..13b7427 100644
--- a/web/lib/aurjson.class.php
+++ b/web/lib/aurjson.class.php
@@ -3,7 +3,7 @@
include_once("aur.inc.php");
/*
- * This class defines a remote interface for fetching data from the AUR using
+ * This class defines a remote interface for fetching data from aurweb using
* JSON formatted elements.
*
* @package rpc
diff --git a/web/lib/pkgbasefuncs.inc.php b/web/lib/pkgbasefuncs.inc.php
index 92202bf..09312ec 100644
--- a/web/lib/pkgbasefuncs.inc.php
+++ b/web/lib/pkgbasefuncs.inc.php
@@ -118,16 +118,16 @@ function pkgbase_add_comment($base_id, $uid, $comment) {
. "\n\n---\nIf you no longer wish to receive notifications about this package, please go the the above package page and click the UnNotify button.";
$body = wordwrap($body, 70);
$bcc = implode(', ', $bcc);
- $thread_id = "<pkg-notifications-" . $row['Name'] . "@aur.archlinux.org>";
+ $thread_id = "<pkg-notifications-" . $row['Name'] . "@".config_get('options', 'email_domain').">";
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
"Bcc: $bcc\r\n" .
- "Reply-to: noreply@aur.archlinux.org\r\n" .
- "From: notify@aur.archlinux.org\r\n" .
+ "Reply-to: noreply@".config_get('options', 'email_domain')."\r\n" .
+ "From: notify@".config_get('options', 'email_domain')."\r\n" .
"In-Reply-To: $thread_id\r\n" .
"References: $thread_id\r\n" .
- "X-Mailer: AUR";
- @mail('undisclosed-recipients: ;', "AUR Comment for " . $row['Name'], $body, $headers);
+ "X-Mailer: " . config_get('options', 'branding_shortname');
+ @mail('undisclosed-recipients: ;', config_get('options', 'branding_shortname') . " Comment for " . $row['Name'], $body, $headers);
}
}
@@ -375,11 +375,11 @@ function pkgbase_flag($base_ids) {
$body = wordwrap($body, 70);
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
- "Reply-to: noreply@aur.archlinux.org\r\n" .
- "From: notify@aur.archlinux.org\r\n" .
+ "Reply-to: noreply@".config_get('options', 'email_domain')."\r\n" .
+ "From: notify@".config_get('options', 'email_domain')."\r\n" .
"X-Mailer: PHP\r\n" .
- "X-MimeOLE: Produced By AUR";
- @mail($row['Email'], "AUR Out-of-date Notification for ".$row['Name'], $body, $headers);
+ "X-MimeOLE: Produced By " . config_get('options', 'branding_shortname');
+ @mail($row['Email'], config_get('options', 'branding_shortname') . " Out-of-date Notification for ".$row['Name'], $body, $headers);
}
}
}
@@ -475,7 +475,7 @@ function pkgbase_delete ($base_ids, $merge_base_id, $via, $grant=false) {
$body = "";
if ($merge_base_id) {
$body .= username_from_sid($_COOKIE['AURSID']) . " merged \"".$pkgbase_name."\" into \"$merge_base_name\".\n\n";
- $body .= "You will no longer receive notifications about this package, please go to https://aur.archlinux.org" . get_pkgbase_uri($merge_base_name) . " and click the Notify button if you wish to recieve them again.";
+ $body .= "You will no longer receive notifications about this package, please go to " . config_get('options', 'aur_location') . get_pkgbase_uri($merge_base_name) . " and click the Notify button if you wish to recieve them again.";
} else {
$body .= username_from_sid($_COOKIE['AURSID']) . " deleted \"".$pkgbase_name."\".\n\n";
$body .= "You will no longer receive notifications about this package.";
@@ -485,10 +485,10 @@ function pkgbase_delete ($base_ids, $merge_base_id, $via, $grant=false) {
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
"Bcc: $bcc\r\n" .
- "Reply-to: noreply@aur.archlinux.org\r\n" .
- "From: notify@aur.archlinux.org\r\n" .
- "X-Mailer: AUR";
- @mail('undisclosed-recipients: ;', "AUR Package deleted: " . $pkgbase_name, $body, $headers);
+ "Reply-to: noreply@".config_get('options', 'email_domain')."\r\n" .
+ "From: notify@".config_get('options', 'email_domain')."\r\n" .
+ "X-Mailer: " . config_get('options', 'branding_shortname');
+ @mail('undisclosed-recipients: ;', config_get('options', 'branding_shortname') . " Package deleted: " . $pkgbase_name, $body, $headers);
}
}
diff --git a/web/lib/pkgreqfuncs.inc.php b/web/lib/pkgreqfuncs.inc.php
index c056d68..ea4a5eb 100644
--- a/web/lib/pkgreqfuncs.inc.php
+++ b/web/lib/pkgreqfuncs.inc.php
@@ -199,10 +199,10 @@ function pkgreq_file($ids, $type, $merge_into, $comments) {
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
"Cc: " . implode(', ', $cc) . "\r\n";
- $thread_id = "<pkg-request-" . $request_id . "@aur.archlinux.org>";
- $headers .= "From: notify@aur.archlinux.org\r\n" .
+ $thread_id = "<pkg-request-" . $request_id . "@".config_get('options', 'email_domain').">";
+ $headers .= "From: notify@".config_get('options', 'email_domain')."\r\n" .
"Message-ID: $thread_id\r\n" .
- "X-Mailer: AUR";
+ "X-Mailer: " . config_get('options', 'branding_shortname');
$ml = config_get('options', 'aur_request_ml');
@mail($ml, "[PRQ#" . $request_id . "] " . ucfirst($type) .
" Request for " . $row['Name'], $body, $headers);
@@ -302,8 +302,9 @@ function pkgreq_close($id, $reason, $comments, $auto_close=false) {
*/
if ($auto_close) {
$body = "Request #" . intval($id) . " has been " . $reason .
- " automatically by the Arch User Repository package " .
- "request system";
+ " automatically by the " .
+ config_get('options', 'branding_longname') .
+ " package request system";
} else {
$username = username_from_sid($_COOKIE['AURSID']);
$body = "Request #" . intval($id) . " has been " . $reason .
@@ -324,11 +325,11 @@ function pkgreq_close($id, $reason, $comments, $auto_close=false) {
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
"Cc: " . implode(', ', $cc) . "\r\n";
- $thread_id = "<pkg-request-" . $id . "@aur.archlinux.org>";
- $headers .= "From: notify@aur.archlinux.org\r\n" .
+ $thread_id = "<pkg-request-" . $id . "@".config_get('options', 'email_domain').">";
+ $headers .= "From: notify@".config_get('options', 'email_domain')."\r\n" .
"In-Reply-To: $thread_id\r\n" .
"References: $thread_id\r\n" .
- "X-Mailer: AUR";
+ "X-Mailer: " . config_get('options', 'branding_shortname');
$ml = config_get('options', 'aur_request_ml');
@mail($ml, "[PRQ#" . $id . "] Request " . ucfirst($reason),
$body, $headers);
diff --git a/web/lib/stats.inc.php b/web/lib/stats.inc.php
index 203be0a..eaa3321 100644
--- a/web/lib/stats.inc.php
+++ b/web/lib/stats.inc.php
@@ -58,7 +58,7 @@ function user_table($userid) {
* @return void
*/
function general_stats_table() {
- # AUR statistics
+ # aurweb statistics
$q = "SELECT COUNT(*) FROM PackageBases WHERE PackagerUID IS NOT NULL";
$unsupported_count = db_cache_value($q, 'unsupported_count');
diff --git a/web/template/account_delete.php b/web/template/account_delete.php
index 74f386d..6a874f5 100644
--- a/web/template/account_delete.php
+++ b/web/template/account_delete.php
@@ -1,5 +1,6 @@
<p>
- <?= __('You can use this form to permanently delete the AUR account %s.', '<strong>' . htmlspecialchars($username) . '</strong>') ?>
+ <?= __('You can use this form to permanently delete the %s account %s.',
+ config_get('options', 'branding_shortname'), '<strong>' . htmlspecialchars($username) . '</strong>') ?>
</p>
<p>
<?= __('%sWARNING%s: This action cannot be undone.', '<strong>', '</strong>') ?>
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php
index 56bdd45..df1b355 100644
--- a/web/template/account_edit_form.php
+++ b/web/template/account_edit_form.php
@@ -117,7 +117,7 @@
</fieldset>
<fieldset>
- <legend><?= __("The following information is only required if you want to submit packages to the Arch User Repository.") ?></legend>
+ <legend><?= __("The following information is only required if you want to submit packages to the %s.", config_get('options', 'branding_longname')) ?></legend>
<p>
<label for="id_ssh"><?= __("SSH Public Key") ?>:</label>
<textarea name="PK" id="id_ssh" rows="5" cols="30"><?= htmlspecialchars($PK) ?></textarea>
diff --git a/web/template/header.php b/web/template/header.php
index 874109a..2ab1d6b 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -4,7 +4,7 @@
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="<?= htmlspecialchars($LANG, ENT_QUOTES) ?>" lang="<?= htmlspecialchars($LANG, ENT_QUOTES) ?>">
<head>
- <title>AUR (<?= htmlspecialchars($LANG); ?>)<?php if ($title != "") { print " - " . htmlspecialchars($title); } ?></title>
+ <title><?= config_get('options', 'branding_shortname'); ?> (<?= htmlspecialchars($LANG); ?>)<?php if ($title != "") { print " - " . htmlspecialchars($title); } ?></title>
<link rel='stylesheet' type='text/css' href='/css/archweb.css' />
<link rel='stylesheet' type='text/css' href='/css/aurweb.css' />
<link rel='shortcut icon' href='/images/favicon.ico' />
@@ -16,7 +16,7 @@
</head>
<body>
<div id="archnavbar" class="anb-aur">
- <div id="archnavbarlogo"><h1><a href="/" title="Return to the main page">Arch Linux User Repository</a></h1></div>
+ <div id="archnavbarlogo"><h1><a href="/" title="Return to the main page"><?= config_get('options', 'branding_longname'); ?></a></h1></div>
<div id="archnavbarmenu">
<ul id="archnavbarlist">
<li id="anb-home"><a href="https://www.archlinux.org/" title="Arch news, packages, projects and more">Home</a></li>
@@ -24,7 +24,7 @@
<li id="anb-forums"><a href="https://bbs.archlinux.org/" title="Community forums">Forums</a></li>
<li id="anb-wiki"><a href="https://wiki.archlinux.org/" title="Community documentation">Wiki</a></li>
<li id="anb-bugs"><a href="https://bugs.archlinux.org/" title="Report and track bugs">Bugs</a></li>
- <li id="anb-aur"><a href="/" title="Arch Linux User Repository">AUR</a></li>
+ <li id="anb-aur"><a href="/" title="<?= config_get('options', 'branding_longname'); ?>"><?= config_get('options', 'branding_shortname'); ?></a></li>
<li id="anb-download"><a href="https://www.archlinux.org/download/" title="Get Arch Linux">Download</a></li>
</ul>
</div>
@@ -53,7 +53,7 @@
</div>
<div id="archdev-navbar">
<ul>
- <li><a href="<?= get_uri('/'); ?>">AUR <?= __("Home"); ?></a></li>
+ <li><a href="<?= get_uri('/'); ?>"><?= config_get('options', 'branding_shortname'); ?> <?= __("Home"); ?></a></li>
<li><a href="<?= get_uri('/packages/'); ?>"><?= __("Packages"); ?></a></li>
<?php if (isset($_COOKIE['AURSID'])): ?>
<li><a href="<?= get_uri('/packages/'); ?>?SeB=m&amp;K=<?= username_from_sid($_COOKIE["AURSID"]); ?>"><?= __("My Packages"); ?></a></li>
diff --git a/web/template/stats/updates_table.php b/web/template/stats/updates_table.php
index a4b31c5..29ba869 100644
--- a/web/template/stats/updates_table.php
+++ b/web/template/stats/updates_table.php
@@ -1,6 +1,6 @@
<h3><?= __("Recent Updates") ?></h3>
-<a href="<?= get_uri('/rss/') ?>" title="Arch Package Updates RSS Feed" class="rss-icon"><img src="/images/feed-icon-14x14.png" alt="RSS Feed" /></a>
+<a href="<?= get_uri('/rss/') ?>" title="<?= config_get('options', 'branding_longname'); ?> Package Updates RSS Feed" class="rss-icon"><img src="/images/feed-icon-14x14.png" alt="RSS Feed" /></a>
<table>
<tbody>
diff --git a/web/template/template.phps b/web/template/template.phps
index 4f8117c..c395c2a 100644
--- a/web/template/template.phps
+++ b/web/template/template.phps
@@ -4,7 +4,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
-include("aur.inc.php"); # access AUR common functions
+include("aur.inc.php"); # access aurweb common functions
set_lang(); # this sets up the visitor's language
check_sid(); # see if they're still logged in
html_header(); # print out the HTML header