forked from jan/debianmemberportfolio
Compare commits
50 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4508bccaa0 | |||
| 481ce20a6e | |||
| 50b3cdb8ac | |||
| fe0a8c7851 | |||
| a7ae04203d | |||
| c8400c684b | |||
|
|
0e040b70c0 | ||
|
|
aca036b2b4 | ||
|
|
6408d2df0c | ||
|
|
47b45c1d3f | ||
|
|
561da04357 | ||
|
|
0a09e6717b | ||
|
|
37fb5c46ff | ||
| a94469e2a0 | |||
| f180b31732 | |||
|
|
eb350d0cc6 | ||
|
|
f740af579a | ||
|
|
310ce2a4e9 | ||
|
|
5dd6aaf1e2 | ||
|
|
8b42d866bb | ||
|
|
fe804c3284 | ||
|
|
24cc205107 | ||
|
|
ac443a736c | ||
| 3fbe1b2643 | |||
| 107fd58d81 | |||
| fe2ba2a150 | |||
| c069129139 | |||
|
|
54eba0d3f9 | ||
| 108da9dec2 | |||
| b66e80a299 | |||
| 281a171798 | |||
| 3cc49d2c7f | |||
| d4a5c9d24f | |||
| f63ba352d3 | |||
| 7c8bf95adf | |||
| fd6c72b646 | |||
| be8fb73c27 | |||
| db59eeac79 | |||
| 2d5b342158 | |||
| 21e8a62f6a | |||
| 69a5143a6a | |||
| 386502c95b | |||
| 63f1cf3da2 | |||
| 4e1b1e81ae | |||
|
|
b5ec40b189 | ||
|
|
2f6170af56 | ||
|
|
ed62b8743f | ||
|
|
c1f68b9941 | ||
|
|
9c14e43345 | ||
| 3933163a98 |
35 changed files with 2571 additions and 2312 deletions
8
.readthedocs.yml
Normal file
8
.readthedocs.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
version: 2
|
||||||
|
sphinx:
|
||||||
|
configuration: docs/source/conf.py
|
||||||
|
|
||||||
|
python:
|
||||||
|
version: 3
|
||||||
|
install:
|
||||||
|
- requirements: requirements.txt
|
||||||
14
ChangeLog
14
ChangeLog
|
|
@ -1,3 +1,17 @@
|
||||||
|
2022-09-24 Jan Dittberner <jan@dittberner.info>
|
||||||
|
* add updated translations from Weblate
|
||||||
|
* update dependencies
|
||||||
|
* replace gpg and pgp with OpenPGP (thanks Guillem Jover)
|
||||||
|
* remove flattr code
|
||||||
|
|
||||||
|
2021-10-24 Jan Dittberner <jan@dittberner.info>
|
||||||
|
* add updated translations from Weblate
|
||||||
|
* fix NM URL (thanks Diederik de Haas)
|
||||||
|
|
||||||
|
2021-07-03 Jan Dittberner <jan@dittberner.info>
|
||||||
|
* Add translations from Weblate
|
||||||
|
* remove a dead services (thanks Juri Grabowski)
|
||||||
|
|
||||||
2020-02-22 Jan Dittberner <jan@dittberner.info>
|
2020-02-22 Jan Dittberner <jan@dittberner.info>
|
||||||
* Update translations
|
* Update translations
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# Debian Member Portfolio Service views
|
# Debian Member Portfolio Service views
|
||||||
#
|
#
|
||||||
# Copyright © 2015-2020 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2015-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -51,7 +51,7 @@ def gpg_fingerprint(data):
|
||||||
class DeveloperData(FlaskForm):
|
class DeveloperData(FlaskForm):
|
||||||
email = StringField('email', validators=[DataRequired(), Email()])
|
email = StringField('email', validators=[DataRequired(), Email()])
|
||||||
name = StringField('name', validators=[Optional(), DataRequired()])
|
name = StringField('name', validators=[Optional(), DataRequired()])
|
||||||
gpgfp = StringField('gpgfp', filters=[gpg_fingerprint], validators=[
|
openpgpfp = StringField('openpgpfp', filters=[gpg_fingerprint], validators=[
|
||||||
Optional(), FingerPrint(), Length(min=32, max=40)
|
Optional(), FingerPrint(), Length(min=32, max=40)
|
||||||
])
|
])
|
||||||
username = StringField('username', validators=[Optional(), PlainText()])
|
username = StringField('username', validators=[Optional(), PlainText()])
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# Debian Member Portfolio Service data builder
|
# Debian Member Portfolio Service data builder
|
||||||
#
|
#
|
||||||
# Copyright © 2009-2015 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -39,13 +39,13 @@ def build_data(email_address):
|
||||||
"""Build a DD data structure from a given email address."""
|
"""Build a DD data structure from a given email address."""
|
||||||
fields = dict([(field, func(str(email_address)))
|
fields = dict([(field, func(str(email_address)))
|
||||||
for (field, func) in
|
for (field, func) in
|
||||||
[('gpgfp', keyfinder.getFingerprintByEmail),
|
[('openpgpfp', keyfinder.getFingerprintByEmail),
|
||||||
('name', keyfinder.getRealnameByEmail),
|
('name', keyfinder.getRealnameByEmail),
|
||||||
('username', keyfinder.getLoginByEmail)]])
|
('username', keyfinder.getLoginByEmail)]])
|
||||||
fields['email'] = email_address
|
fields['email'] = email_address
|
||||||
if fields['username'] and fields['gpgfp'] and fields['name']:
|
if fields['username'] and fields['openpgpfp'] and fields['name']:
|
||||||
fields['type'] = TYPE_DD
|
fields['type'] = TYPE_DD
|
||||||
elif fields['name'] and fields['gpgfp']:
|
elif fields['name'] and fields['openpgpfp']:
|
||||||
fields['type'] = TYPE_DM
|
fields['type'] = TYPE_DM
|
||||||
else:
|
else:
|
||||||
fields['type'] = TYPE_NO
|
fields['type'] = TYPE_NO
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# Debian Member Portfolio Service key finder module
|
# Debian Member Portfolio Service key finder module
|
||||||
#
|
#
|
||||||
# Copyright © 2009-2015 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
"""
|
"""
|
||||||
This module provides tools for finding PGP key information from a
|
This module provides tools for finding OpenPGP key information from a
|
||||||
given keyring.
|
given keyring.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#
|
#
|
||||||
# Configuration for Debian Member Portfolio Service
|
# Configuration for Debian Member Portfolio Service
|
||||||
#
|
#
|
||||||
# Copyright © 2009-2020 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -44,13 +44,13 @@ urls=buildd
|
||||||
buildd.pattern=https://buildd.debian.org/status/package.php?p=%(email)s&compact=compact&comaint=yes
|
buildd.pattern=https://buildd.debian.org/status/package.php?p=%(email)s&compact=compact&comaint=yes
|
||||||
|
|
||||||
[qa]
|
[qa]
|
||||||
urls=lintian,lintianfull,piuparts,patchtracker,dmd,duck,janitor
|
urls=lintian,lintianfull,piuparts,dmd,janitor
|
||||||
dmd.pattern=https://udd.debian.org/dmd.cgi?email1=%(email)s
|
dmd.pattern=https://udd.debian.org/dmd.cgi?email1=%(email)s
|
||||||
lintian.pattern=https://lintian.debian.org/maintainer/%(email)s.html
|
lintian.pattern=https://lintian.debian.org/maintainer/%(email)s.html
|
||||||
lintianfull.pattern=https://lintian.debian.org/full/%(email)s.html
|
lintianfull.pattern=https://lintian.debian.org/full/%(email)s.html
|
||||||
piuparts.pattern=https://piuparts.debian.org/sid/maintainer/%(firstchar)s/%(email)s.html
|
piuparts.pattern=https://piuparts.debian.org/sid/maintainer/%(firstchar)s/%(email)s.html
|
||||||
patchtracker.pattern=http://patch-tracker.debian.org/email/%(email)s
|
#patchtracker.pattern=http://patch-tracker.debian.org/email/%(email)s
|
||||||
duck.pattern=http://duck.debian.net/persons/%(email)s.html
|
#duck.pattern=http://duck.debian.net/persons/%(email)s.html
|
||||||
janitor.pattern=https://janitor.debian.net/m/%(email)s
|
janitor.pattern=https://janitor.debian.net/m/%(email)s
|
||||||
|
|
||||||
[lists]
|
[lists]
|
||||||
|
|
@ -69,15 +69,15 @@ people.pattern=https://people.debian.org/~%(username)s/
|
||||||
people.optional=true
|
people.optional=true
|
||||||
|
|
||||||
[membership]
|
[membership]
|
||||||
urls=nm,dbfinger,db,webid,salsa,wiki,forum
|
urls=nm,dbfinger,db,salsa,wiki,forum
|
||||||
nm.pattern=https://nm.debian.org/public/nmstatus/%(username)s
|
nm.pattern=https://nm.debian.org/person/%(username)s
|
||||||
dbfinger.pattern=finger %(username)s@db.debian.org
|
dbfinger.pattern=finger %(username)s@db.debian.org
|
||||||
dbfinger.type=finger
|
dbfinger.type=finger
|
||||||
dbfinger.optional=true
|
dbfinger.optional=true
|
||||||
db.pattern=https://db.debian.org/search.cgi?uid=%(username)s&dosearch=Search
|
db.pattern=https://db.debian.org/search.cgi?uid=%(username)s&dosearch=Search
|
||||||
db.optional=true
|
db.optional=true
|
||||||
webid.pattern=http://webid.debian.net/maintainers/%(username)s
|
#webid.pattern=http://webid.debian.net/maintainers/%(username)s
|
||||||
webid.optional=true
|
#webid.optional=true
|
||||||
salsa.pattern=https://salsa.debian.org/%(salsausername)s
|
salsa.pattern=https://salsa.debian.org/%(salsausername)s
|
||||||
salsa.optional=true
|
salsa.optional=true
|
||||||
wiki.pattern=https://wiki.debian.org/%(wikihomepage)s
|
wiki.pattern=https://wiki.debian.org/%(wikihomepage)s
|
||||||
|
|
@ -96,7 +96,7 @@ search.pattern=https://search.debian.org/cgi-bin/omega?P=%%22%(name)s%%22
|
||||||
gpgfinger.pattern=finger %(username)s/key@db.debian.org
|
gpgfinger.pattern=finger %(username)s/key@db.debian.org
|
||||||
gpgfinger.type=finger
|
gpgfinger.type=finger
|
||||||
gpgfinger.optional=true
|
gpgfinger.optional=true
|
||||||
gpgweb.pattern=https://db.debian.org/fetchkey.cgi?fingerprint=%(gpgfp)s
|
gpgweb.pattern=https://db.debian.org/fetchkey.cgi?fingerprint=%(openpgpfp)s
|
||||||
gpgweb.optional=true
|
gpgweb.optional=true
|
||||||
nm.pattern=https://nm.debian.org/public/person/%(username)s
|
nm.pattern=https://nm.debian.org/public/person/%(username)s
|
||||||
contrib.pattern=https://contributors.debian.org/contributor/%(email)s
|
contrib.pattern=https://contributors.debian.org/contributor/%(email)s
|
||||||
|
|
@ -119,6 +119,6 @@ groupinfo.pattern=ssh master.debian.org id %(username)s
|
||||||
groupinfo.type=ssh
|
groupinfo.type=ssh
|
||||||
groupinfo.optional=true
|
groupinfo.optional=true
|
||||||
|
|
||||||
[ubuntu]
|
#[ubuntu]
|
||||||
urls=ubuntudiff
|
#urls=ubuntudiff
|
||||||
ubuntudiff.pattern=http://ubuntudiff.debian.net/q/uploaders/%(email)s
|
#ubuntudiff.pattern=http://ubuntudiff.debian.net/q/uploaders/%(email)s
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# Debian Member Portfolio Service url builder
|
# Debian Member Portfolio Service url builder
|
||||||
#
|
#
|
||||||
# Copyright © 2009-2020 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -42,7 +42,7 @@ my_config.read_file(UTF8StreamReader(
|
||||||
_FIELDNAMES_MAP = {
|
_FIELDNAMES_MAP = {
|
||||||
'email': N_('Email address'),
|
'email': N_('Email address'),
|
||||||
'name': N_('Name'),
|
'name': N_('Name'),
|
||||||
'gpgfp': N_('GPG fingerprint'),
|
'openpgpfp': N_('OpenPGP fingerprint'),
|
||||||
'username': N_('Debian user name'),
|
'username': N_('Debian user name'),
|
||||||
'nonddemail': N_('Non Debian email address'),
|
'nonddemail': N_('Non Debian email address'),
|
||||||
'salsausername': N_('Salsa user name'),
|
'salsausername': N_('Salsa user name'),
|
||||||
|
|
@ -75,10 +75,10 @@ def _build_quoted_fields(fields):
|
||||||
qfields[key] = value
|
qfields[key] = value
|
||||||
qfields[key] = str(qfields[key]).replace('%', '%%')
|
qfields[key] = str(qfields[key]).replace('%', '%%')
|
||||||
|
|
||||||
if 'gpgfp' not in qfields:
|
if 'openpgpfp' not in qfields:
|
||||||
fpr = keyfinder.getFingerprintByEmail(fields['email'].encode('utf8'))
|
fpr = keyfinder.getFingerprintByEmail(fields['email'].encode('utf8'))
|
||||||
if fpr:
|
if fpr:
|
||||||
qfields['gpgfp'] = fpr[0]
|
qfields['openpgpfp'] = fpr[0]
|
||||||
qfields['firstchar'] = fields['email'][0].encode('utf8')
|
qfields['firstchar'] = fields['email'][0].encode('utf8')
|
||||||
qfields['emailnoq'] = fields['email'].encode('utf8')
|
qfields['emailnoq'] = fields['email'].encode('utf8')
|
||||||
return qfields
|
return qfields
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
{# vim: ft=jinja
|
{# vim: ft=jinja
|
||||||
Base template for XHTML templates.
|
Base template for XHTML templates.
|
||||||
Copyright © 2009-2020 Jan Dittberner <jan@dittberner.info>
|
Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
|
|
||||||
This file is part of the Debian Member Portfolio service.
|
This file is part of the Debian Member Portfolio service.
|
||||||
|
|
||||||
|
|
@ -38,11 +38,7 @@ with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<img alt="{{ _('AGPL - Free Software') }}" id="agpllogo" src="{{ url_for('static', filename='images/agplv3-88x31.png') }}" width="88" height="31" />
|
<img alt="{{ _('AGPL - Free Software') }}" id="agpllogo" src="{{ url_for('static', filename='images/agplv3-88x31.png') }}" width="88" height="31" />
|
||||||
<p>{% trans browseurl='https://git.dittberner.info/jan/debianmemberportfolio', cloneurl='https://git.dittberner.info/jan/debianmemberportfolio.git', weblateurl='https://hosted.weblate.org/projects/debian-member-portfolio-service/' %}The service is available under the terms of the <a href="https://www.gnu.org/licenses/agpl.html">GNU Affero General Public License</a> as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. You can <a href="{{ browseurl }}" title="Gitweb repository browser URL">browse the source code</a> or clone it from <a href="{{ cloneurl }}" title="git clone URL">{{ cloneurl }}</a> using <a href="https://git-scm.com/">git</a>. If you want to translate this service to your language you can contribute at <a href="{{ weblateurl }}" title="Debian Member Portfolio Service at Weblate">Weblate</a>.{% endtrans %}</p>
|
<p>{% trans browseurl='https://git.dittberner.info/jan/debianmemberportfolio', cloneurl='https://git.dittberner.info/jan/debianmemberportfolio.git', weblateurl='https://hosted.weblate.org/projects/debian-member-portfolio-service/' %}The service is available under the terms of the <a href="https://www.gnu.org/licenses/agpl.html">GNU Affero General Public License</a> as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. You can <a href="{{ browseurl }}" title="Gitweb repository browser URL">browse the source code</a> or clone it from <a href="{{ cloneurl }}" title="git clone URL">{{ cloneurl }}</a> using <a href="https://git-scm.com/">git</a>. If you want to translate this service to your language you can contribute at <a href="{{ weblateurl }}" title="Debian Member Portfolio Service at Weblate">Weblate</a>.{% endtrans %}</p>
|
||||||
<p>{{ _('Copyright © 2009-2020 Jan Dittberner') }}</p>
|
<p>{{ _('Copyright © 2009-2022 Jan Dittberner') }}</p>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
|
||||||
var flattr_url = '{{ request.scheme }}://portfolio.debian.net/';
|
|
||||||
</script>
|
|
||||||
<script src="{{ request.scheme }}://api.flattr.com/js/0.6/load.js?mode=auto&button=compact" type="text/javascript"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
{#
|
{#
|
||||||
Template for the data input form.
|
Template for the data input form.
|
||||||
|
|
||||||
Copyright © 2009-2020 Jan Dittberner <jan@dittberner.info>
|
Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
|
|
||||||
This file is part of the Debian Member Portfolio service.
|
This file is part of the Debian Member Portfolio service.
|
||||||
|
|
||||||
|
|
@ -46,12 +46,12 @@ with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
</label><br />
|
</label><br />
|
||||||
{{ form.name }}
|
{{ form.name }}
|
||||||
</div>
|
</div>
|
||||||
<div id="gpgfpfield"{% if form.gpgfp.errors %} class="witherrors"{% endif %}>
|
<div id="openpgpfpfield"{% if form.openpgpfp.errors %} class="witherrors"{% endif %}>
|
||||||
<label for="gpgfp">{{ _('GPG fingerprint:') }}{% if form.gpgfp.errors %}<br />
|
<label for="openpgpfp">{{ _('OpenPGP fingerprint:') }}{% if form.openpgpfp.errors %}<br />
|
||||||
<span class="errormsg">{{ form.gpgfp.errors|join(', ') }}</span>
|
<span class="errormsg">{{ form.openpgpfp.errors|join(', ') }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</label><br />
|
</label><br />
|
||||||
{{ form.gpgfp }}
|
{{ form.openpgpfp }}
|
||||||
</div>
|
</div>
|
||||||
<div id="usernamefield"{% if form.username.errors %} class="witherrors"{% endif %}>
|
<div id="usernamefield"{% if form.username.errors %} class="witherrors"{% endif %}>
|
||||||
<label for="username">{{ _('Debian user name:') }}{% if form.username.errors %}<br />
|
<label for="username">{{ _('Debian user name:') }}{% if form.username.errors %}<br />
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{# vim: ft=jinja
|
{# vim: ft=jinja
|
||||||
Helper JavaScript for the data input form.
|
Helper JavaScript for the data input form.
|
||||||
Copyright © 2009-2020, Jan Dittberner <jan@dittberner.info>
|
Copyright © 2009-2022, Jan Dittberner <jan@dittberner.info>
|
||||||
|
|
||||||
This file is part of the Debian Member Portfolio service.
|
This file is part of the Debian Member Portfolio service.
|
||||||
|
|
||||||
|
|
@ -18,19 +18,19 @@ You should have received a copy of the GNU Affero General Public License along
|
||||||
with this program. If not, see <https://www.gnu.org/licenses/>.
|
with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
#}
|
#}
|
||||||
var defaulthiddendivs = new Array(
|
var defaulthiddendivs = new Array(
|
||||||
'#namefield', '#gpgfpfield', '#usernamefield', '#nonddemailfield',
|
'#namefield', '#openpgpfpfield', '#usernamefield', '#nonddemailfield',
|
||||||
'#salsausernamefield', '#wikihomepagefield', '#forumsidfield');
|
'#salsausernamefield', '#wikihomepagefield', '#forumsidfield');
|
||||||
var maskedfielddivs = new Array(
|
var maskedfielddivs = new Array(
|
||||||
'#namefield', '#gpgfpfield', '#usernamefield', '#nonddemailfield',
|
'#namefield', '#openpgpfpfield', '#usernamefield', '#nonddemailfield',
|
||||||
'#salsausernamefield', '#wikihomepagefield', '#forumsidfield');
|
'#salsausernamefield', '#wikihomepagefield', '#forumsidfield');
|
||||||
var allfielddivs = new Array(
|
var allfielddivs = new Array(
|
||||||
'#namefield', '#gpgfpfield', '#usernamefield', '#nonddemailfield',
|
'#namefield', '#openpgpfpfield', '#usernamefield', '#nonddemailfield',
|
||||||
'#salsausernamefield', '#wikihomepagefield', '#forumsidfield');
|
'#salsausernamefield', '#wikihomepagefield', '#forumsidfield');
|
||||||
|
|
||||||
function updateFields(data, textStatus) {
|
function updateFields(data, textStatus) {
|
||||||
if (data.type == 2) { // DD
|
if (data.type == 2) { // DD
|
||||||
$('#name').prop('value', data.name).prop('readonly', 'readonly');
|
$('#name').prop('value', data.name).prop('readonly', 'readonly');
|
||||||
$('#gpgfp').prop('value', data.gpgfp);
|
$('#openpgpfp').prop('value', data.openpgpfp);
|
||||||
$('#username').prop('value', data.username).prop(
|
$('#username').prop('value', data.username).prop(
|
||||||
'readonly', 'readonly');
|
'readonly', 'readonly');
|
||||||
$('#nonddemail').prop('value', data.email).focus();
|
$('#nonddemail').prop('value', data.email).focus();
|
||||||
|
|
@ -38,7 +38,7 @@ function updateFields(data, textStatus) {
|
||||||
$('#wikihomepage').prop('value', data.wikihomepage);
|
$('#wikihomepage').prop('value', data.wikihomepage);
|
||||||
|
|
||||||
$('#namefield').show();
|
$('#namefield').show();
|
||||||
$('#gpgfpfield').show();
|
$('#openpgpfpfield').show();
|
||||||
$('#usernamefield').show();
|
$('#usernamefield').show();
|
||||||
$('#nonddemailfield').show();
|
$('#nonddemailfield').show();
|
||||||
$('#salsausernamefield').show();
|
$('#salsausernamefield').show();
|
||||||
|
|
@ -48,13 +48,13 @@ function updateFields(data, textStatus) {
|
||||||
$('#nonddemail').focus().select();
|
$('#nonddemail').focus().select();
|
||||||
} else if (data.type == 1) { // DM
|
} else if (data.type == 1) { // DM
|
||||||
$('#name').prop('value', data.name).prop('readonly', 'readonly');
|
$('#name').prop('value', data.name).prop('readonly', 'readonly');
|
||||||
$('#gpgfp').prop('value', data.gpgfp);
|
$('#openpgpfp').prop('value', data.openpgpfp);
|
||||||
$('#username').prop('value', '');
|
$('#username').prop('value', '');
|
||||||
$('#nonddemail').prop('value', data.email).focus();
|
$('#nonddemail').prop('value', data.email).focus();
|
||||||
$('#wikihomepage').prop('value', data.wikihomepage);
|
$('#wikihomepage').prop('value', data.wikihomepage);
|
||||||
|
|
||||||
$('#namefield').show();
|
$('#namefield').show();
|
||||||
$('#gpgfpfield').show();
|
$('#openpgpfpfield').show();
|
||||||
$('#usernamefield').hide();
|
$('#usernamefield').hide();
|
||||||
$('#nonddemailfield').hide();
|
$('#nonddemailfield').hide();
|
||||||
$('#salsausernamefield').show();
|
$('#salsausernamefield').show();
|
||||||
|
|
@ -66,10 +66,10 @@ function updateFields(data, textStatus) {
|
||||||
$('#nonddemail').prop('value', data.email);
|
$('#nonddemail').prop('value', data.email);
|
||||||
$('#name').removeAttr('readonly');
|
$('#name').removeAttr('readonly');
|
||||||
$('#username').removeAttr('readonly').prop('value', '');
|
$('#username').removeAttr('readonly').prop('value', '');
|
||||||
$('#gpgfp').prop('value', '');
|
$('#openpgpfp').prop('value', '');
|
||||||
|
|
||||||
$('#usernamefield').hide();
|
$('#usernamefield').hide();
|
||||||
$('#gpgfpfield').hide();
|
$('#openpgpfpfield').hide();
|
||||||
$('#nonddemailfield').hide();
|
$('#nonddemailfield').hide();
|
||||||
$('#namefield').show();
|
$('#namefield').show();
|
||||||
$('#salsausernamefield').show();
|
$('#salsausernamefield').show();
|
||||||
|
|
|
||||||
376
debianmemberportfolio/translations/ar/LC_MESSAGES/messages.po
Normal file
376
debianmemberportfolio/translations/ar/LC_MESSAGES/messages.po
Normal file
|
|
@ -0,0 +1,376 @@
|
||||||
|
# German translations for the Debian Member Portfolio Service.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2009-2014 Jan Dittberner
|
||||||
|
# This file is distributed under the same license as the Debian Member
|
||||||
|
# Portfolio Service project.
|
||||||
|
# Translators:
|
||||||
|
# Jan Dittberner <jan@dittberner.info>, 2009-2014
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Debian Member Portfolio Service 0.6.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
|
"PO-Revision-Date: 2021-07-03 11:15+0200\n"
|
||||||
|
"Last-Translator: Automatically generated\n"
|
||||||
|
"Language: ar\n"
|
||||||
|
"Language-Team: none\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 ? 4 : 5;\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.10.3\n"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/forms.py:64
|
||||||
|
msgid "JSON"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/forms.py:64
|
||||||
|
msgid "HTML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:40
|
||||||
|
msgid "Overview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:41
|
||||||
|
msgid "Debian Member's Package Overview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:42
|
||||||
|
msgid ""
|
||||||
|
"Debian Member's Package Overview\n"
|
||||||
|
"... showing all email addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:46
|
||||||
|
msgid "Bugs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:47
|
||||||
|
msgid ""
|
||||||
|
"bugs received\n"
|
||||||
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:51
|
||||||
|
msgid "bugs reported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:52
|
||||||
|
msgid "user tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:53
|
||||||
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:54
|
||||||
|
msgid "correspondent for bugs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:55
|
||||||
|
msgid "one year open bug history graph"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:58
|
||||||
|
msgid "Build"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:59
|
||||||
|
msgid "buildd.d.o"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:60
|
||||||
|
msgid "igloo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:63
|
||||||
|
msgid "Quality Assurance"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:64
|
||||||
|
msgid "maintainer dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:65
|
||||||
|
msgid "lintian reports"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:66
|
||||||
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:68
|
||||||
|
msgid "piuparts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:69
|
||||||
|
msgid "Debian Janitor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:72
|
||||||
|
msgid "Mailing Lists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:73
|
||||||
|
msgid "lists.d.o"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:74
|
||||||
|
msgid "lists.a.d.o"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:77
|
||||||
|
msgid "Files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:78
|
||||||
|
msgid "people.d.o"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:79
|
||||||
|
msgid "oldpeople"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:82
|
||||||
|
msgid "Membership"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:83
|
||||||
|
msgid "NM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:84
|
||||||
|
msgid "DB information via finger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:85
|
||||||
|
msgid "DB information via HTTP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:86
|
||||||
|
msgid "Salsa"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:87
|
||||||
|
msgid "Wiki"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:88
|
||||||
|
msgid "Forum"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:91
|
||||||
|
msgid "Miscellaneous"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:92
|
||||||
|
msgid "debtags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:93
|
||||||
|
msgid "Planet Debian (name)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:94
|
||||||
|
msgid "Planet Debian (username)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:95
|
||||||
|
msgid "links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:96
|
||||||
|
msgid "Debian website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:97
|
||||||
|
msgid "Debian search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:98
|
||||||
|
msgid "OpenPGP public key via finger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:99
|
||||||
|
msgid "OpenPGP public key via HTTP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:100
|
||||||
|
msgid "NM, AM participation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:101
|
||||||
|
msgid "Contribution information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:106
|
||||||
|
msgid "owned debian.net domains"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:107
|
||||||
|
msgid ""
|
||||||
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
|
"database information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:109
|
||||||
|
msgid "Group membership information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
|
msgid "Email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:44
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
|
msgid "OpenPGP fingerprint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
msgid "Debian user name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:47
|
||||||
|
msgid "Non Debian email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:48
|
||||||
|
msgid "Salsa user name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
|
#, python-format
|
||||||
|
msgid "Missing input: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:24
|
||||||
|
#: debianmemberportfolio/templates/base.html:31
|
||||||
|
msgid "Debian Member Portfolio Service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:30
|
||||||
|
msgid "Debian Logo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
|
msgid ""
|
||||||
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
|
msgid "AGPL - Free Software"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"The service is available under the terms of the <a "
|
||||||
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
msgid "Enter your personal information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:29
|
||||||
|
msgid "Debian Member Portfolio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:31
|
||||||
|
msgid "Email address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:40
|
||||||
|
msgid "Show all form fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:43
|
||||||
|
msgid "Name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
|
msgid "OpenPGP fingerprint:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
msgid "Debian user name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:64
|
||||||
|
msgid "Non Debian email address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:71
|
||||||
|
msgid "Salsa user name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
|
msgid "Wiki user name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
|
msgid "Forum user id:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
|
msgid "Output format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:21
|
||||||
|
msgid "Your personal links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:25
|
||||||
|
msgid "Debian Member Porfolio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:28
|
||||||
|
msgid "Usage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:28
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:38
|
||||||
|
msgid "Error during URL creation:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
|
msgid "Restart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9,8 +9,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.6.4\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.6.4\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2020-10-27 08:36+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-10-27 08:37+0100\n"
|
"PO-Revision-Date: 2021-07-03 11:15+0200\n"
|
||||||
"Last-Translator: Jan Dittberner <jan@dittberner.info>\n"
|
"Last-Translator: Jan Dittberner <jan@dittberner.info>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Language-Team: German <https://hosted.weblate.org/projects/debian-member-"
|
"Language-Team: German <https://hosted.weblate.org/projects/debian-member-"
|
||||||
|
|
@ -19,8 +19,7 @@ msgstr ""
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.8.0\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Poedit 2.4.1\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:64
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
|
|
@ -53,12 +52,13 @@ msgstr "Fehler"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Erhaltene Fehlerberichte\n"
|
"Erhaltene Fehlerberichte\n"
|
||||||
"(Anmerkung: Co-Maintainer werden nicht aufgeführt, siehe <a href=\"https://"
|
"(Anmerkung: Co-Maintainer werden nicht aufgeführt, siehe <a "
|
||||||
"bugs.debian.org/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,200 +69,175 @@ msgid "user tags"
|
||||||
msgstr "User Tags"
|
msgstr "User Tags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"Alle Nachrichten (d.h. Volltextsuche nach dem Entwicklernamen in allen "
|
|
||||||
"Fehlerlogs)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "Beitragender zu Fehlern"
|
msgstr "Beitragender zu Fehlern"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "Graph der Entwicklung offener Fehlerberichte über ein Jahr"
|
msgstr "Graph der Entwicklung offener Fehlerberichte über ein Jahr"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Build"
|
msgstr "Build"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "Igloo"
|
msgstr "Igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Qualitätssicherung"
|
msgstr "Qualitätssicherung"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "Maintainer Dashboard"
|
msgstr "Maintainer Dashboard"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "Lintian-Berichte"
|
msgstr "Lintian-Berichte"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"vollständige Lintian-Berichte (d.h. inklusive Meldungen der Stufe \"info\")"
|
"vollständige Lintian-Berichte (d.h. inklusive Meldungen der Stufe "
|
||||||
|
"\"info\")"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
|
||||||
msgstr "Debian Nachverfolgungssystem für Patches"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian URL-Prüfer"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:73
|
|
||||||
msgid "Debian Janitor"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debian Janitor"
|
msgstr "Debian Janitor"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Mailinglisten"
|
msgstr "Mailinglisten"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Dateien"
|
msgstr "Dateien"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:86
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Mitgliedschaft"
|
msgstr "Mitgliedschaft"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "DB-Informationen per finger"
|
msgstr "DB-Informationen per finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "DB-Informationen per HTTP"
|
msgstr "DB-Informationen per HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "FOAF-Profil"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:96
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Sonstiges"
|
msgstr "Sonstiges"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:97
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (Name)"
|
msgstr "Planet Debian (Name)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (Benutzername)"
|
msgstr "Planet Debian (Benutzername)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "Links"
|
msgstr "Links"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Debian Webseite"
|
msgstr "Debian Webseite"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Debian-Suche"
|
msgstr "Debian-Suche"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "öffentlicher GPG-Schlüssel per finger"
|
msgstr "öffentlicher OpenPGP-Schlüssel per finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "öffentlicher GPG-Schlüssel per HTTP"
|
msgstr "öffentlicher OpenPGP-Schlüssel per HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "NM-, AM-Mitwirkung"
|
msgstr "NM-, AM-Mitwirkung"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Debian Contributor-Informationen"
|
msgstr "Debian Contributor-Informationen"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr "Repology-Informationen"
|
msgstr "Repology-Informationen"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:110
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Per ssh erreichbare Informationen (für Debian Mitglieder)"
|
msgstr "Per ssh erreichbare Informationen (für Debian Mitglieder)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "Besitz von debian.net-Domains"
|
msgstr "Besitz von debian.net-Domains"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Informationen in der <a href=\"https://wiki.debian.org/qa.debian.org/MIATeam"
|
"Informationen in der <a "
|
||||||
"\">MIA</a>-Datenbank"
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>-Datenbank"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Information über Gruppenmitgliedschaften"
|
msgstr "Information über Gruppenmitgliedschaften"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:117
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Verfügbare Patches aus Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "E-Mailadresse"
|
msgstr "E-Mailadresse"
|
||||||
|
|
@ -272,8 +247,8 @@ msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "GPG-Fingerabdruck"
|
msgstr "OpenPGP-Fingerabdruck"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -304,15 +279,16 @@ msgstr "Debian-Logo"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dieser Dienst wurde durch Stefano Zacchirolis <a href=\"http://wiki.debian."
|
"Dieser Dienst wurde durch Stefano Zacchirolis <a "
|
||||||
"org/DDPortfolio\">DDPortfolio-Seite im Debian Wiki</a> inspiriert. Mit dem "
|
"href=\"http://wiki.debian.org/DDPortfolio\">DDPortfolio-Seite im Debian "
|
||||||
"Dienst können personalisierte Links zu Informationen im Bezug auf Debian für "
|
"Wiki</a> inspiriert. Mit dem Dienst können personalisierte Links zu "
|
||||||
"Debian-Mitglieder und Paketbetreuer erzeugt werden."
|
"Informationen im Bezug auf Debian für Debian-Mitglieder und Paketbetreuer"
|
||||||
|
" erzeugt werden."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -321,32 +297,32 @@ msgstr "AGPL - Freie Software"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dieser Dienst wird unter den Bedingungen der <a href=\"http://www.gnu.org/"
|
"Dieser Dienst wird unter den Bedingungen der <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a>, so wie sie von "
|
"href=\"http://www.gnu.org/licenses/agpl.html\">GNU Affero General Public "
|
||||||
"der Free Software Foundation veröffentlicht ist, bereitgestellt. Sie können "
|
"License</a>, so wie sie von der Free Software Foundation veröffentlicht "
|
||||||
"entweder Version 3 oder (auf Ihren Wunsch hin) jede spätere Version der "
|
"ist, bereitgestellt. Sie können entweder Version 3 oder (auf Ihren Wunsch"
|
||||||
"Lizenz verwenden. Sie können sich <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" hin) jede spätere Version der Lizenz verwenden. Sie können sich <a "
|
||||||
"Repository-Browser-URL\">den Quelltext ansehen</a> oder mit <a href=\"http://"
|
"href=\"%(browseurl)s\" title=\"Gitweb Repository-Browser-URL\">den "
|
||||||
"git-scm.com\">git</a> von <a href=\"%(cloneurl)s\" title=\"Git Clone-URL\">"
|
"Quelltext ansehen</a> oder mit <a href=\"http://git-scm.com\">git</a> von"
|
||||||
"%(cloneurl)s</a> klonen. Wenn Sie diesen Service in Ihre Sprache übersetzen "
|
" <a href=\"%(cloneurl)s\" title=\"Git Clone-URL\">%(cloneurl)s</a> "
|
||||||
"möchten, können Sie auf <a href=\"%(weblateurl)s\" title=\"Debian Member "
|
"klonen. Wenn Sie diesen Service in Ihre Sprache übersetzen möchten, "
|
||||||
"Portfolio Service bei Weblate\">Weblate</a> dazu beitragen."
|
"können Sie auf <a href=\"%(weblateurl)s\" title=\"Debian Member Portfolio"
|
||||||
|
" Service bei Weblate\">Weblate</a> dazu beitragen."
|
||||||
|
|
||||||
# | msgid "Copyright © 2009-2018 Jan Dittberner"
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
#| msgid "Copyright © 2009-2019 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgid "Copyright © 2009-2020 Jan Dittberner"
|
msgstr "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Copyright © 2009-2020 Jan Dittberner"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -369,8 +345,8 @@ msgid "Name:"
|
||||||
msgstr "Name:"
|
msgstr "Name:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "GPG-Fingerabdruck:"
|
msgstr "OpenPGP-Fingerabdruck"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -423,3 +399,4 @@ msgstr "Fehler bei der URL-Erzeugung:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Neu beginnen"
|
msgstr "Neu beginnen"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-06-26 21:00+0000\n"
|
"PO-Revision-Date: 2019-06-26 21:00+0000\n"
|
||||||
"Last-Translator: THANOS SIOURDAKIS <siourdakisthanos@gmail.com>\n"
|
"Last-Translator: THANOS SIOURDAKIS <siourdakisthanos@gmail.com>\n"
|
||||||
"Language-Team: Greek <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/el/>\n"
|
|
||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
|
"Language-Team: Greek <https://hosted.weblate.org/projects/debian-member-"
|
||||||
|
"portfolio-service/translations/el/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.7.1-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -51,8 +50,8 @@ msgstr ""
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
|
|
@ -64,199 +63,171 @@ msgid "user tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -266,7 +237,7 @@ msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
|
@ -281,12 +252,8 @@ msgstr ""
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -302,10 +269,10 @@ msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
|
|
@ -315,19 +282,20 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
|
@ -351,7 +319,7 @@ msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
|
@ -367,22 +335,18 @@ msgid "Salsa user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -409,3 +373,4 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-12-19 04:21+0000\n"
|
"PO-Revision-Date: 2022-09-16 12:21+0000\n"
|
||||||
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
|
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/es/>\n"
|
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
|
"Language-Team: Spanish <https://hosted.weblate.org/projects/debian-"
|
||||||
|
"member-portfolio-service/translations/es/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.10-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,13 @@ msgstr "Fallos"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"fallos recibidos\n"
|
"fallos recibidos\n"
|
||||||
"(nota: no se muestran los corresponsables; véase el informe <a href=\""
|
"(nota: no se muestran los corresponsables; véase el informe <a "
|
||||||
"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430986\">n.º 430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430986\">n.º "
|
||||||
|
"430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,204 +69,178 @@ msgid "user tags"
|
||||||
msgstr "etiquetas de usuario"
|
msgstr "etiquetas de usuario"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"todos los mensajes (esto es, búsqueda de texto completo del nombre de "
|
|
||||||
"desarrollador/a en todos los registros de informes)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "contacto para fallos"
|
msgstr "contacto para fallos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "gráfico de histórico anual de informes de error abiertos"
|
msgstr "gráfico de histórico anual de informes de error abiertos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Generación de paquetes"
|
msgstr "Generación de paquetes"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr ""
|
msgstr "iglú"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Control de calidad"
|
msgstr "Control de calidad"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "tablero de responsable"
|
msgstr "tablero de responsable"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "informes de lintian"
|
msgstr "informes de lintian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr "informes íntegros de lintian (es decir, incluyen mensajes de nivel «info»)"
|
||||||
"informes íntegros de lintian (es decir, incluyen mensajes de nivel «info»)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr ""
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Sistema de control de parches de Debian"
|
msgstr "Conserje de Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Comprobador de URL de Debian (DUCK)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Listas de correo"
|
msgstr "Listas de correo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
|
#, fuzzy
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr ""
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:74
|
||||||
|
#, fuzzy
|
||||||
|
msgid "lists.a.d.o"
|
||||||
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "lists.a.d.o"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
|
||||||
msgid "gmane"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Archivos"
|
msgstr "Archivos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
|
#, fuzzy
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr ""
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr ""
|
msgstr "personasmayores"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Membresía"
|
msgstr "Membresía"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
|
#, fuzzy
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr ""
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "Información de BD a través de Finger"
|
msgstr "Información de BD a través de Finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "Información de BD a través de HTTP"
|
msgstr "Información de BD a través de HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "Perfil de FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Foro"
|
msgstr "Foro"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Varios"
|
msgstr "Varios"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
|
#, fuzzy
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr ""
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (nombre)"
|
msgstr "Planet Debian (nombre)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (nombre de usuario)"
|
msgstr "Planet Debian (nombre de usuario)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "enlaces"
|
msgstr "enlaces"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Sitio web de Debian"
|
msgstr "Sitio web de Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Búsqueda en Debian"
|
msgstr "Búsqueda en Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Clave pública de GPG a través de Finger"
|
msgstr "Clave pública de OpenPGP a través de Finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Clave pública de GPG a través de HTTP"
|
msgstr "Clave pública de OpenPGP a través de HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "Participación en NM y AM"
|
msgstr "Participación en NM y AM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Información de contribución"
|
msgstr "Información de contribución"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr "Información de Repology"
|
msgstr "Información de Repology"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Información accesible a través de SSH (para miembros de Debian)"
|
msgstr "Información accesible a través de SSH (para miembros de Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "titularidad de dominios debian.net"
|
msgstr "titularidad de dominios debian.net"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Información de la base de datos <a href=\"https://wiki.debian.org/qa.debian."
|
"Información de la base de datos <a "
|
||||||
"org/MIATeam\">MIA</a>"
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Información de membresía a grupos"
|
msgstr "Información de membresía a grupos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Parches de Ubuntu disponibles"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Dirección de correo"
|
msgstr "Dirección de correo"
|
||||||
|
|
@ -276,8 +250,8 @@ msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "Huella GPG"
|
msgstr "Huella OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -291,12 +265,8 @@ msgstr "Direcciones de correo no de Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Nombre de usuario de Salsa"
|
msgstr "Nombre de usuario de Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Nombre de usuario de Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Falta la entrada: %s"
|
msgstr "Falta la entrada: %s"
|
||||||
|
|
@ -312,16 +282,16 @@ msgstr "Logotipo de Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La inspiración para este servicio provino de la <a href=\""
|
"La inspiración para este servicio provino de la <a "
|
||||||
"https://wiki.debian.org/DDPortfolio\">página «DDPortfolio» del wiki de "
|
"href=\"https://wiki.debian.org/DDPortfolio\">página «DDPortfolio» del "
|
||||||
"Debian</a>, ideada por Stefano Zacchiroli. Puede crear un juego de enlaces "
|
"wiki de Debian</a>, ideada por Stefano Zacchiroli. Puede crear un juego "
|
||||||
"personalizados que apunten a la información relacionada con Debian sobre un/"
|
"de enlaces personalizados que apunten a la información relacionada con "
|
||||||
"a miembro del proyecto o responsable de paquete."
|
"Debian sobre un/a miembro del proyecto o responsable de paquete."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -330,31 +300,33 @@ msgstr "AGPL: «software» libre"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"El servicio se pone a su disposición en virtud de los términos de la <a href="
|
"El servicio se pone a su disposición en virtud de los términos de la <a "
|
||||||
"\"https://www.gnu.org/licenses/agpl.html\">Licencia Pública General Affero "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">Licencia Pública General "
|
||||||
"de GNU</a>, tal como la publica al Free Software Foundation, sea bien la "
|
"Affero de GNU</a>, tal como la publica al Free Software Foundation, sea "
|
||||||
"versión 3 de la Licencia o bien cualquier otra versión posterior de su "
|
"bien la versión 3 de la Licencia o bien cualquier otra versión posterior "
|
||||||
"preferencia. Puede <a href=\"%(browseurl)s\" title=\"URL del explorador de "
|
"de su preferencia. Puede <a href=\"%(browseurl)s\" title=\"URL del "
|
||||||
"repositorios Gitweb\">explorar el código fuente</a> o clonarlo desde <a href="
|
"explorador de repositorios Gitweb\">explorar el código fuente</a> o "
|
||||||
"\"%(cloneurl)s\" title=\"URL para utilizar con «git clone»\">%(cloneurl)s</a>"
|
"clonarlo desde <a href=\"%(cloneurl)s\" title=\"URL para utilizar con "
|
||||||
" sirviéndose de <a href=\"https://git-scm.com/\">git</a>. Si quiere "
|
"«git clone»\">%(cloneurl)s</a> sirviéndose de <a href=\"https://git-"
|
||||||
"contribuir traduciendo este servicio a su lengua, puede hacerlo a través de <"
|
"scm.com/\">git</a>. Si quiere contribuir traduciendo este servicio a su "
|
||||||
"a href=\"%(weblateurl)s\" title=\"Servicio de portafolios de miembros de "
|
"lengua, puede hacerlo a través de <a href=\"%(weblateurl)s\" "
|
||||||
"Debian en Weblate\">Weblate</a>."
|
"title=\"Servicio de portafolios de miembros de Debian en "
|
||||||
|
"Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Derechos de autor © 2009-2018 Jan Dittberner"
|
msgstr "Derechos de autor © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -377,8 +349,8 @@ msgid "Name:"
|
||||||
msgstr "Nombre:"
|
msgstr "Nombre:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "Huella GPG:"
|
msgstr "Huella OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -393,22 +365,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Nombre de usuario de Salsa:"
|
msgstr "Nombre de usuario de Salsa:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Nombre de usuario de Alioth:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Nombre de usuario del wiki:"
|
msgstr "Nombre de usuario del wiki:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Identificador de usuario del foro:"
|
msgstr "Identificador de usuario del foro:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Formato de salida:"
|
msgstr "Formato de salida:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "Crear los URL para portafolio de miembro de Debian"
|
msgstr "Crear los URL para portafolio de miembro de Debian"
|
||||||
|
|
||||||
|
|
@ -435,3 +403,4 @@ msgstr "Se produjo un error al crear el URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Reiniciar"
|
msgstr "Reiniciar"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service\n"
|
"Project-Id-Version: Debian Member Portfolio Service\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2018-02-09 10:14+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-09-17 14:24+0000\n"
|
"PO-Revision-Date: 2021-07-03 11:15+0200\n"
|
||||||
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
|
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
|
||||||
"Language-Team: French <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/fr/>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
"Language-Team: French <https://hosted.weblate.org/projects/debian-member-"
|
||||||
|
"portfolio-service/translations/fr/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.9-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,11 +52,12 @@ msgstr "Bogues"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-bin/"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bogues reçus\n"
|
"Bogues reçus\n"
|
||||||
"(note : co-responsables non listés, voir <a href=\"https://bugs.debian.org/cgi-"
|
"(note : co-responsables non listés, voir <a "
|
||||||
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
|
|
@ -69,199 +69,173 @@ msgid "user tags"
|
||||||
msgstr "Tags utilisateur"
|
msgstr "Tags utilisateur"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"Tous les messages (c-à-d, recherche plein texte sur le nom du développeur dans "
|
|
||||||
"tous les journaux de bogue)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "Correspondant pour les bogues"
|
msgstr "Correspondant pour les bogues"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "Graphique de l'évolution des bogues ouverts sur l'année écoulée"
|
msgstr "Graphique de l'évolution des bogues ouverts sur l'année écoulée"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Construire"
|
msgstr "Construire"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "igloo"
|
msgstr "igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Assurance qualité"
|
msgstr "Assurance qualité"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "tableau de bord du mainteneur"
|
msgstr "tableau de bord du mainteneur"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "Rapports lintian"
|
msgstr "Rapports lintian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "Rapports lintian complets (c-à-d incluant les messages de niveau \"info\")"
|
msgstr "Rapports lintian complets (c-à-d incluant les messages de niveau \"info\")"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "Piuparts"
|
msgstr "Piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Système de suivi des patchs de Debian"
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Vérificateur d'Url Debian"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Listes de diffusion"
|
msgstr "Listes de diffusion"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "Gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Fichiers"
|
msgstr "Fichiers"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "anciens"
|
msgstr "anciens"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Adhésion"
|
msgstr "Adhésion"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "BD d’informations via finger"
|
msgstr "BD d’informations via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "BD d’informations via HTTP"
|
msgstr "BD d’informations via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "profil FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Divers"
|
msgstr "Divers"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "Debtags"
|
msgstr "Debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (nom)"
|
msgstr "Planet Debian (nom)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (nom d’utilisateur)"
|
msgstr "Planet Debian (nom d’utilisateur)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "Liens"
|
msgstr "Liens"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Site web de Debian"
|
msgstr "Site web de Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Recherche Debian"
|
msgstr "Recherche Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Clef GPG publique via finger"
|
msgstr "Clef OpenPGP publique via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Clef GPG publique via HTTP"
|
msgstr "Clef OpenPGP publique via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "participation NM, AM"
|
msgstr "participation NM, AM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Informations de contribution"
|
msgstr "Informations de contribution"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr "Informations de Repology"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Informations accessibles via ssh (pour les membres de Debian)"
|
msgstr "Informations accessibles via ssh (pour les membres de Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "Propriété des domaines debian.net"
|
msgstr "Propriété des domaines debian.net"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Informations de la base de données <a href=\"https://wiki.debian.org/qa.debian."
|
"Informations de la base de données <a "
|
||||||
"org/MIATeam\">MIA</a>"
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:115
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Information sur l’adhésion de groupe"
|
msgstr "Information sur l’adhésion de groupe"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Rustines d’Ubuntu disponibles"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Courriel"
|
msgstr "Courriel"
|
||||||
|
|
@ -271,8 +245,8 @@ msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "Empreinte GPG"
|
msgstr "Empreinte OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -286,12 +260,8 @@ msgstr "Courriel hors Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Nom d’utilisateur Salsa"
|
msgstr "Nom d’utilisateur Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Nom d’utilisateur Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Entrée manquante : %s"
|
msgstr "Entrée manquante : %s"
|
||||||
|
|
@ -307,15 +277,16 @@ msgstr "Logo Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can create "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"a set of customized links leading to a Debian Member's or package maintainer's "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ce service a été inspiré par <a href=\"https://wiki.debian.org/DDPortfolio\">la "
|
"Ce service a été inspiré par <a "
|
||||||
"page DDPortfolio du Wiki de Debian</a> de Stefano Zacchiroli. Vous pouvez créer "
|
"href=\"https://wiki.debian.org/DDPortfolio\">la page DDPortfolio du Wiki "
|
||||||
"un ensemble personnalisé de liens fournissant des informations sur un membre ou "
|
"de Debian</a> de Stefano Zacchiroli. Vous pouvez créer un ensemble "
|
||||||
"un mainteneur de paquet de Debian."
|
"personnalisé de liens fournissant des informations sur un membre ou un "
|
||||||
|
"mainteneur de paquet de Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -324,30 +295,32 @@ msgstr "AGPL - Logiciel libre"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by the "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"Free Software Foundation, either version 3 of the License, or (at your option) "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb repository "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"browser URL\">browse the source code</a> or clone it from <a href=\"%(cloneurl)s"
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\" title=\"git clone URL\">%(cloneurl)s</a> using <a href=\"https://git-scm.com/"
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\">git</a>. If you want to translate this service to your language you can "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"contribute at <a href=\"%(weblateurl)s\" title=\"Debian Member Portfolio Service "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
"at Weblate\">Weblate</a>."
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ce service est disponible sous les termes de la licence <a href=\""
|
"Ce service est disponible sous les termes de la licence <a "
|
||||||
"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"License</a> telle que publiée par la Free Software Foundation, soit la "
|
" License</a> telle que publiée par la Free Software Foundation, soit la "
|
||||||
"version 3 de la licence, ou (à votre choix) toute version ultérieure. Vous "
|
"version 3 de la licence, ou (à votre choix) toute version ultérieure. "
|
||||||
"pouvez <a href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">"
|
"Vous pouvez <a href=\"%(browseurl)s\" title=\"Gitweb repository browser "
|
||||||
"parcourir le code source</a> ou le cloner depuis <a href=\"%(cloneurl)s\" "
|
"URL\">parcourir le code source</a> ou le cloner depuis <a "
|
||||||
"title=\"git clone URL\">%(cloneurl)s</a> en utilisant <a href=\"http://git-"
|
"href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> en "
|
||||||
"scm.com/\">git</a>. Si vous voulez traduire ce service dans votre langage, "
|
"utilisant <a href=\"http://git-scm.com/\">git</a>. Si vous voulez "
|
||||||
"vous pouvez contribuer chez <a href=\"%(weblateurl)s\" title=\"Debian Member "
|
"traduire ce service dans votre langage, vous pouvez contribuer chez <a "
|
||||||
"Portfolio Service at Weblate\"> Weblate</a>."
|
"href=\"%(weblateurl)s\" title=\"Debian Member Portfolio Service at "
|
||||||
|
"Weblate\"> Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Copyright © 2009-2018 Jan Dittberner"
|
msgstr "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -370,8 +343,8 @@ msgid "Name:"
|
||||||
msgstr "Nom :"
|
msgstr "Nom :"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "Empreinte GPG :"
|
msgstr "Empreinte OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -386,22 +359,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Nom d’utilisateur Salsa :"
|
msgstr "Nom d’utilisateur Salsa :"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Nom d’utilisateur Alioth :"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Nom d’utilisateur Wiki :"
|
msgstr "Nom d’utilisateur Wiki :"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Numéro d’utilisateur Forum :"
|
msgstr "Numéro d’utilisateur Forum :"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Format de sortie :"
|
msgstr "Format de sortie :"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "Construire les URLs du portefeuille du membre de Debian"
|
msgstr "Construire les URLs du portefeuille du membre de Debian"
|
||||||
|
|
||||||
|
|
@ -428,3 +397,4 @@ msgstr "Erreur durant la création de l’URL :"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Recommencer"
|
msgstr "Recommencer"
|
||||||
|
|
||||||
|
|
|
||||||
385
debianmemberportfolio/translations/hi/LC_MESSAGES/messages.po
Normal file
385
debianmemberportfolio/translations/hi/LC_MESSAGES/messages.po
Normal file
|
|
@ -0,0 +1,385 @@
|
||||||
|
# German translations for the Debian Member Portfolio Service.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2009-2014 Jan Dittberner
|
||||||
|
# This file is distributed under the same license as the Debian Member
|
||||||
|
# Portfolio Service project.
|
||||||
|
# Translators:
|
||||||
|
# Jan Dittberner <jan@dittberner.info>, 2009-2014
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Debian Member Portfolio Service 0.6.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
|
"PO-Revision-Date: 2021-11-12 17:50+0000\n"
|
||||||
|
"Last-Translator: KushagraKarira <kushagrakarira@gmail.com>\n"
|
||||||
|
"Language: hi\n"
|
||||||
|
"Language-Team: Hindi <https://hosted.weblate.org/projects/debian-member-"
|
||||||
|
"portfolio-service/translations/hi/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.10.3\n"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/forms.py:64
|
||||||
|
msgid "JSON"
|
||||||
|
msgstr "जैसन"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/forms.py:64
|
||||||
|
msgid "HTML"
|
||||||
|
msgstr "एचटीएमएल"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:40
|
||||||
|
msgid "Overview"
|
||||||
|
msgstr "अवलोकन"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:41
|
||||||
|
msgid "Debian Member's Package Overview"
|
||||||
|
msgstr "डेबियन सदस्य का पैकेज अवलोकन"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:42
|
||||||
|
msgid ""
|
||||||
|
"Debian Member's Package Overview\n"
|
||||||
|
"... showing all email addresses"
|
||||||
|
msgstr ""
|
||||||
|
"डेबियन सदस्य का पैकेज अवलोकन\n"
|
||||||
|
"... सभी ईमेल पते दिखा रहा है"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:46
|
||||||
|
msgid "Bugs"
|
||||||
|
msgstr "बग"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:47
|
||||||
|
msgid ""
|
||||||
|
"bugs received\n"
|
||||||
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
msgstr ""
|
||||||
|
"बग प्राप्त \n"
|
||||||
|
"(नोट: सह-रखरखाव सूचीबद्ध नहीं हैं, देखें <a "
|
||||||
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:51
|
||||||
|
msgid "bugs reported"
|
||||||
|
msgstr "बग की सूचना दी"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:52
|
||||||
|
msgid "user tags"
|
||||||
|
msgstr "उपयोगकर्ता टैग"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:53
|
||||||
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\"> WNPP </a>"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:54
|
||||||
|
msgid "correspondent for bugs"
|
||||||
|
msgstr "बग के लिए संवाददाता"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:55
|
||||||
|
msgid "one year open bug history graph"
|
||||||
|
msgstr "एक साल का खुला बग इतिहास ग्राफ"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:58
|
||||||
|
msgid "Build"
|
||||||
|
msgstr "बिल्ड"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:59
|
||||||
|
#, fuzzy
|
||||||
|
msgid "buildd.d.o"
|
||||||
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:60
|
||||||
|
msgid "igloo"
|
||||||
|
msgstr "इग्लू"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:63
|
||||||
|
msgid "Quality Assurance"
|
||||||
|
msgstr "गुणवत्ता आश्वासन"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:64
|
||||||
|
msgid "maintainer dashboard"
|
||||||
|
msgstr "अनुरक्षक डैशबोर्ड"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:65
|
||||||
|
msgid "lintian reports"
|
||||||
|
msgstr "लिंटियन रिपोर्ट"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:66
|
||||||
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
|
msgstr "पूर्ण लिंटियन रिपोर्ट (यानी \"जानकारी\" स्तर के संदेशों सहित)"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:68
|
||||||
|
msgid "piuparts"
|
||||||
|
msgstr "पियुपार्ट्स"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:69
|
||||||
|
msgid "Debian Janitor"
|
||||||
|
msgstr "डेबियन चौकीदार"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:72
|
||||||
|
msgid "Mailing Lists"
|
||||||
|
msgstr "ईमेल की सूची"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:73
|
||||||
|
#, fuzzy
|
||||||
|
msgid "lists.d.o"
|
||||||
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:74
|
||||||
|
#, fuzzy
|
||||||
|
msgid "lists.a.d.o"
|
||||||
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:77
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "फ़ाइलें"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:78
|
||||||
|
msgid "people.d.o"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:79
|
||||||
|
msgid "oldpeople"
|
||||||
|
msgstr "वृध्द लोग"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:82
|
||||||
|
msgid "Membership"
|
||||||
|
msgstr "सदस्यता"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:83
|
||||||
|
msgid "NM"
|
||||||
|
msgstr "एनएम"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:84
|
||||||
|
msgid "DB information via finger"
|
||||||
|
msgstr "उंगली के माध्यम से डीबी जानकारी"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:85
|
||||||
|
msgid "DB information via HTTP"
|
||||||
|
msgstr "HTTP के माध्यम से डीबी जानकारी"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:86
|
||||||
|
msgid "Salsa"
|
||||||
|
msgstr "सालसा"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:87
|
||||||
|
msgid "Wiki"
|
||||||
|
msgstr "विकि"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:88
|
||||||
|
msgid "Forum"
|
||||||
|
msgstr "फ़ोरम"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:91
|
||||||
|
msgid "Miscellaneous"
|
||||||
|
msgstr "विविध"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:92
|
||||||
|
msgid "debtags"
|
||||||
|
msgstr "देनदारी"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:93
|
||||||
|
msgid "Planet Debian (name)"
|
||||||
|
msgstr "प्लेनेट डेबियन (नाम)"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:94
|
||||||
|
msgid "Planet Debian (username)"
|
||||||
|
msgstr "प्लैनेट डेबियन (उपयोगकर्ता नाम)"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:95
|
||||||
|
msgid "links"
|
||||||
|
msgstr "लिंक्स"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:96
|
||||||
|
msgid "Debian website"
|
||||||
|
msgstr "डेबियन वेबसाइट"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:97
|
||||||
|
msgid "Debian search"
|
||||||
|
msgstr "डेबियन खोज"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:98
|
||||||
|
msgid "OpenPGP public key via finger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:99
|
||||||
|
msgid "OpenPGP public key via HTTP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:100
|
||||||
|
msgid "NM, AM participation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:101
|
||||||
|
msgid "Contribution information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:106
|
||||||
|
msgid "owned debian.net domains"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:107
|
||||||
|
msgid ""
|
||||||
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
|
"database information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:109
|
||||||
|
msgid "Group membership information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
|
msgid "Email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:44
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
|
msgid "OpenPGP fingerprint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
msgid "Debian user name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:47
|
||||||
|
msgid "Non Debian email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:48
|
||||||
|
msgid "Salsa user name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
|
#, python-format
|
||||||
|
msgid "Missing input: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:24
|
||||||
|
#: debianmemberportfolio/templates/base.html:31
|
||||||
|
msgid "Debian Member Portfolio Service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:30
|
||||||
|
msgid "Debian Logo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
|
msgid ""
|
||||||
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
|
msgid "AGPL - Free Software"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"The service is available under the terms of the <a "
|
||||||
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
msgid "Enter your personal information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:29
|
||||||
|
msgid "Debian Member Portfolio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:31
|
||||||
|
msgid "Email address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:40
|
||||||
|
msgid "Show all form fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:43
|
||||||
|
msgid "Name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
|
msgid "OpenPGP fingerprint:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
msgid "Debian user name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:64
|
||||||
|
msgid "Non Debian email address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:71
|
||||||
|
msgid "Salsa user name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
|
msgid "Wiki user name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
|
msgid "Forum user id:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
|
msgid "Output format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:21
|
||||||
|
msgid "Your personal links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:25
|
||||||
|
msgid "Debian Member Porfolio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:28
|
||||||
|
msgid "Usage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:28
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:38
|
||||||
|
msgid "Error during URL creation:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
|
msgid "Restart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service\n"
|
"Project-Id-Version: Debian Member Portfolio Service\n"
|
||||||
"Report-Msgid-Bugs-To: atoz.chevara@yahoo.com\n"
|
"Report-Msgid-Bugs-To: atoz.chevara@yahoo.com\n"
|
||||||
"POT-Creation-Date: 2018-02-09 10:14+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2018-02-09 10:29+0100\n"
|
"PO-Revision-Date: 2021-07-12 01:32+0000\n"
|
||||||
"Last-Translator: Jan Dittberner <jan@dittberner.info>\n"
|
"Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
|
||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/debian-member-"
|
"Language-Team: Indonesian <https://hosted.weblate.org/projects/debian-"
|
||||||
"portfolio-service/translations/id/>\n"
|
"member-portfolio-service/translations/id/>\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.5.0\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Poedit 1.8.11\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,13 @@ msgstr "Kutu"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"bugs diterima\n"
|
"bugs diterima\n"
|
||||||
"(catatan: co-maintainers tidak tercantum, lihat <a href=\"https://bugs.debian."
|
"(catatan: co-maintainers tidak tercantum, lihat <a "
|
||||||
"org/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,201 +69,173 @@ msgid "user tags"
|
||||||
msgstr "label pengguna"
|
msgstr "label pengguna"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"semua pesan (yaitu, pencarian teks lengkap untuk nama pengembang pada semua "
|
|
||||||
"catatan bug)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "koresponden untuk bug"
|
msgstr "koresponden untuk bug"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "grafik perkembangan laporan bug terbuka lebih dari setahun"
|
msgstr "grafik perkembangan laporan bug terbuka lebih dari setahun"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Bangun"
|
msgstr "Bangun"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "igloo"
|
msgstr "igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Jaminan Mutu"
|
msgstr "Jaminan Mutu"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "dasbor maintainer"
|
msgstr "dasbor maintainer"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "laporan lintian"
|
msgstr "laporan lintian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "seluruh pesan lintian (i.e. termasuk pesan \"info\"-level)"
|
msgstr "seluruh pesan lintian (i.e. termasuk pesan \"info\"-level)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "sistem pelacakan patch Debian"
|
msgstr "Petugas Kebersihan Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian Url ChecKer"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Milis"
|
msgstr "Milis"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Berkas-berkas"
|
msgstr "Berkas-berkas"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Keanggotaan"
|
msgstr "Keanggotaan"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "informasi DB melalui finger"
|
msgstr "informasi DB melalui finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "informasi DB melalui HTTP"
|
msgstr "informasi DB melalui HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "profil FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Lain-Lain"
|
msgstr "Lain-Lain"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (nama)"
|
msgstr "Planet Debian (nama)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
#, fuzzy
|
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (nama pengguna)"
|
msgstr "Planet Debian (nama pengguna)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "tautan"
|
msgstr "tautan"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "website Debian"
|
msgstr "website Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "pencarian Debian"
|
msgstr "pencarian Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "kunci publik GPG melalui finger"
|
msgstr "kunci publik OpenPGP melalui finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "kunci publik GPG melalui HTTP"
|
msgstr "kunci publik OpenPGP melalui HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "partisipasi NM, AM"
|
msgstr "partisipasi NM, AM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
#, fuzzy
|
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Informasi kontribusi"
|
msgstr "Informasi kontribusi"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr "Informasi repologi"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Informasi dicapai melalui ssh (untuk Anggota Debian)"
|
msgstr "Informasi dicapai melalui ssh (untuk Anggota Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "domain debian.net sendiri"
|
msgstr "domain debian.net sendiri"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"informasi database <a href=\"https://wiki.debian.org/qa.debian.org/MIATeam"
|
"informasi database <a "
|
||||||
"\">MIA</a>"
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:115
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Informasi keanggotaan kelompok"
|
msgstr "Informasi keanggotaan kelompok"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Tambalan dari Ubuntu yang tersedia"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Alamat Email"
|
msgstr "Alamat Email"
|
||||||
|
|
@ -273,8 +245,8 @@ msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "sidik jari GPG"
|
msgstr "sidik jari OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -285,16 +257,11 @@ msgid "Non Debian email address"
|
||||||
msgstr "Selain alamat email Debian"
|
msgstr "Selain alamat email Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:48
|
#: debianmemberportfolio/model/urlbuilder.py:48
|
||||||
#, fuzzy
|
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "nama pengguna Salsa"
|
msgstr "nama pengguna Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "nama pengguna Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Tidak ada masukan: %s"
|
msgstr "Tidak ada masukan: %s"
|
||||||
|
|
@ -310,47 +277,50 @@ msgstr "Logo Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Layanan ini terinspirasi dari halaman <a href=\"https://wiki.debian.org/"
|
"Layanan ini terinspirasi dari halaman <a "
|
||||||
"DDPortfolio\">DDPortfolio Stefano Zacchiroli di Wiki Debian</a>. Anda dapat "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio Stefano "
|
||||||
"membuat sebuah link kustom yang mengarah ke Anggota Debian atau informasi "
|
"Zacchiroli di Wiki Debian</a>. Anda dapat membuat sebuah link kustom yang"
|
||||||
"mengenai pengelola paket Debian."
|
" mengarah ke Anggota Debian atau informasi mengenai pengelola paket "
|
||||||
|
"Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
msgstr "AGPL - Free Software"
|
msgstr "AGPL - Free Software"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, fuzzy, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Layanan ini tersedia di bawah persyaratan <a href=\"https://www.gnu.org/"
|
"Layanan ini tersedia di bawah persyaratan <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> seperti yang "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"diterbitkan oleh Free Software Foundation, baik versi 3 dari Lisensi, atau "
|
" License</a> seperti yang diterbitkan oleh Free Software Foundation, baik"
|
||||||
"(dengan pilihan Anda) versi lainnya. Anda dapat <a href=\"%(browseurl)s\" "
|
" versi 3 dari Lisensi, atau (dengan pilihan Anda) versi lainnya. Anda "
|
||||||
"title=\"Gitweb repository browser URL\">menelusuri kode sumber</a> atau klon "
|
"dapat <a href=\"%(browseurl)s\" title=\"Gitweb repository browser "
|
||||||
"dari <a href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> "
|
"URL\">menelusuri kode sumber</a> atau klon dari <a href=\"%(cloneurl)s\" "
|
||||||
"menggunakan <a href=\"http://git-scm.com/\">git</a>.\n"
|
"title=\"git clone URL\">%(cloneurl)s</a> menggunakan <a href=\"http"
|
||||||
"Jika anda ingin menerjemahkan layanan ini ke dalam bahasa anda, anda dapat "
|
"://git-scm.com/\">git</a>.\n"
|
||||||
"berkontribusi di <a href=\"%(weblateurl)s\" title=\"Debian Member Portfolio "
|
"Jika anda ingin menerjemahkan layanan ini ke dalam bahasa anda, anda "
|
||||||
"Service at Weblate\">Weblate</a>."
|
"dapat berkontribusi di <a href=\"%(weblateurl)s\" title=\"Debian Member "
|
||||||
|
"Portfolio Service at Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Hak Cipta © 2009-2018 Jan Dittberner"
|
msgstr "Hak Cipta © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -373,8 +343,8 @@ msgid "Name:"
|
||||||
msgstr "Nama:"
|
msgstr "Nama:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "sidik jari GPG:"
|
msgstr "sidik jari OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -385,27 +355,22 @@ msgid "Non Debian email address:"
|
||||||
msgstr "Selain alamat email Debian:"
|
msgstr "Selain alamat email Debian:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:71
|
#: debianmemberportfolio/templates/showform.html:71
|
||||||
#, fuzzy
|
|
||||||
msgid "Salsa user name:"
|
msgid "Salsa user name:"
|
||||||
msgstr "Nama pengguna Salsa:"
|
msgstr "Nama pengguna Salsa:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Nama pengguna Alioth:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Nama pengguna Wiki:"
|
msgstr "Nama pengguna Wiki:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "ID pengguna Forum:"
|
msgstr "ID pengguna Forum:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Format Keluaran:"
|
msgstr "Format Keluaran:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "Membangun URL Portfolio Anggota Debian"
|
msgstr "Membangun URL Portfolio Anggota Debian"
|
||||||
|
|
||||||
|
|
@ -414,7 +379,6 @@ msgid "Your personal links"
|
||||||
msgstr "Tautan pribadi anda"
|
msgstr "Tautan pribadi anda"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showurls.html:25
|
#: debianmemberportfolio/templates/showurls.html:25
|
||||||
#, fuzzy
|
|
||||||
msgid "Debian Member Porfolio"
|
msgid "Debian Member Porfolio"
|
||||||
msgstr "Portfolio Anggota Debian"
|
msgstr "Portfolio Anggota Debian"
|
||||||
|
|
||||||
|
|
@ -433,3 +397,4 @@ msgstr "Kesalahan selama pembuatan URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Mulai ulang"
|
msgstr "Mulai ulang"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-09-27 13:40+0000\n"
|
"PO-Revision-Date: 2020-09-27 13:40+0000\n"
|
||||||
"Last-Translator: Shuji Sado <sado@osdn.jp>\n"
|
"Last-Translator: Shuji Sado <sado@osdn.jp>\n"
|
||||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/ja/>\n"
|
|
||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
|
"Language-Team: Japanese <https://hosted.weblate.org/projects/debian-"
|
||||||
|
"member-portfolio-service/translations/ja/>\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 4.3-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,12 @@ msgstr "バグ"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"受領したバグ\n"
|
"受領したバグ\n"
|
||||||
"(注: 共同メンテナーはリストされていません。<a href=\"https://bugs.debian.org/cgi-bin/bugreport."
|
"(注: 共同メンテナーはリストされていません。<a href=\"https://bugs.debian.org/cgi-"
|
||||||
"cgi?bug=430986\">#430986</a>を参照)"
|
"bin/bugreport.cgi?bug=430986\">#430986</a>を参照)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,200 +68,171 @@ msgid "user tags"
|
||||||
msgstr "ユーザータグ"
|
msgstr "ユーザータグ"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr "すべてのメッセージ (i.e.、全てのバグのログの開発者名による全文検索)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "1年間にオープンしたバグの履歴グラフ"
|
msgstr "1年間にオープンしたバグの履歴グラフ"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "ビルド"
|
msgstr "ビルド"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "igloo"
|
msgstr "igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "品質保証"
|
msgstr "品質保証"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "メンテナダッシュボード"
|
msgstr "メンテナダッシュボード"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "Lintianレポート"
|
msgstr "Lintianレポート"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debianパッチ追跡システム"
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian Urlチェッカー"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "メーリングリスト"
|
msgstr "メーリングリスト"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "ファイル"
|
msgstr "ファイル"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "メンバーシップ"
|
msgstr "メンバーシップ"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "FOAF プロファイル"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "フォーラム"
|
msgstr "フォーラム"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "その他"
|
msgstr "その他"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (名前)"
|
msgstr "Planet Debian (名前)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (ユーザー名)"
|
msgstr "Planet Debian (ユーザー名)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "リンク"
|
msgstr "リンク"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Debian webサイト"
|
msgstr "Debian webサイト"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Debian検索"
|
msgstr "Debian検索"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "finger経由のGPG公開鍵"
|
msgstr "finger経由のOpenPGP公開鍵"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "HTTP経由のGPG公開鍵"
|
msgstr "HTTP経由のOpenPGP公開鍵"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "貢献情報"
|
msgstr "貢献情報"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr "Repology情報"
|
msgstr "Repology情報"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr "<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> データベース情報"
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> データベース情報"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Emailアドレス"
|
msgstr "Emailアドレス"
|
||||||
|
|
@ -272,7 +242,7 @@ msgid "Name"
|
||||||
msgstr "名前"
|
msgstr "名前"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
|
@ -287,12 +257,8 @@ msgstr "Debian以外のメールアドレス"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Salsaユーザー名"
|
msgstr "Salsaユーザー名"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Aliothユーザー名"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -308,14 +274,15 @@ msgstr "Debianロゴ"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"このサービスは、Debian Wiki の Stefano Zacchiroli さんによる <a href=\"https://wiki.debian."
|
"このサービスは、Debian Wiki の Stefano Zacchiroli さんによる <a "
|
||||||
"org/DDPortfolio\">DDPortfolio ページ</a>にヒントを得ています。 Debian メンバーやパッケージメンテナの "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio "
|
||||||
"Debian に関する情報につながるカスタマイズされたリンクのセットを作成することができます。"
|
"ページ</a>にヒントを得ています。 Debian メンバーやパッケージメンテナの Debian "
|
||||||
|
"に関する情報につながるカスタマイズされたリンクのセットを作成することができます。"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -324,19 +291,20 @@ msgstr "AGPL - フリーソフトウェア"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
|
@ -360,7 +328,7 @@ msgid "Name:"
|
||||||
msgstr "名前:"
|
msgstr "名前:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
|
@ -376,22 +344,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Salsaユーザー名:"
|
msgstr "Salsaユーザー名:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Aliothユーザー名:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Wikiユーザー名:"
|
msgstr "Wikiユーザー名:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "フォーラムのユーザーID:"
|
msgstr "フォーラムのユーザーID:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -418,3 +382,4 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-12-14 20:21+0000\n"
|
"PO-Revision-Date: 2019-12-14 20:21+0000\n"
|
||||||
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
|
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
|
||||||
"Language-Team: Marathi <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/mr/>\n"
|
|
||||||
"Language: mr\n"
|
"Language: mr\n"
|
||||||
|
"Language-Team: Marathi <https://hosted.weblate.org/projects/debian-"
|
||||||
|
"member-portfolio-service/translations/mr/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.10-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "एचटीएमएल"
|
msgstr "एचटीएमएल"
|
||||||
|
|
||||||
|
|
@ -53,8 +52,8 @@ msgstr "बग"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
|
|
@ -66,199 +65,171 @@ msgid "user tags"
|
||||||
msgstr "वापरकर्ता टॅग"
|
msgstr "वापरकर्ता टॅग"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr "सर्व संदेश (उदा. सर्व बग लॉगवरील विकसकाच्या नावासाठी संपूर्ण मजकूर शोध)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "बग साठी संवाददाता"
|
msgstr "बग साठी संवाददाता"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "एक वर्षाचा ओपन बग हिस्ट्री ग्राफ"
|
msgstr "एक वर्षाचा ओपन बग हिस्ट्री ग्राफ"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "बांधा"
|
msgstr "बांधा"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "इग्लू"
|
msgstr "इग्लू"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "गुणवत्ता हमी"
|
msgstr "गुणवत्ता हमी"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "देखभालकर्ता डॅशबोर्ड"
|
msgstr "देखभालकर्ता डॅशबोर्ड"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -268,7 +239,7 @@ msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
|
@ -283,12 +254,8 @@ msgstr ""
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -304,10 +271,10 @@ msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
|
|
@ -317,19 +284,20 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
|
@ -353,7 +321,7 @@ msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
|
@ -369,22 +337,18 @@ msgid "Salsa user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -411,3 +375,4 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-02-09 10:14+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-08-14 22:32+0000\n"
|
"PO-Revision-Date: 2021-08-22 10:34+0000\n"
|
||||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
"Last-Translator: Petter Reinholdtsen <pere-weblate@hungry.com>\n"
|
||||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/nb_NO/>\n"
|
|
||||||
"Language: nb\n"
|
"Language: nb\n"
|
||||||
|
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects"
|
||||||
|
"/debian-member-portfolio-service/translations/nb_NO/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,12 @@ msgstr "Feil"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"feilrapporter mottatt\n"
|
"feilrapporter mottatt\n"
|
||||||
"(merk: med-vedlikeholdere er ikke listet opp, se <a href=\"https://bugs."
|
"(merk: med-vedlikeholdere er ikke listet opp, se <a "
|
||||||
"debian.org/430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,199 +68,173 @@ msgid "user tags"
|
||||||
msgstr "brukermerker"
|
msgstr "brukermerker"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"alle meldinger (med andre ord, fulltekstsøk etter utviklernavnet i alle "
|
|
||||||
"feilrapporter)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "korrespondent for feilrapporter"
|
msgstr "korrespondent for feilrapporter"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "Graf over feilrapporter som har vært åpen mer enn et år"
|
msgstr "Graf over feilrapporter som har vært åpen mer enn et år"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Bygg"
|
msgstr "Bygg"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "iglo"
|
msgstr "iglo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Kvalitetssikring"
|
msgstr "Kvalitetssikring"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "Vedlikeholdersoversikt"
|
msgstr "Vedlikeholdersoversikt"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "lintian-rapporter"
|
msgstr "lintian-rapporter"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "Komplette lintian-rapporter (dvs. også meldinger med nivå «info»)"
|
msgstr "Komplette lintian-rapporter (dvs. også meldinger med nivå «info»)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debians sporingssystem for patcher"
|
msgstr "Debian-vaktmester"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian URL-sjekker"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "E-postlister"
|
msgstr "E-postlister"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Filer"
|
msgstr "Filer"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Medlemskap"
|
msgstr "Medlemskap"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "DB-informasjon via finger"
|
msgstr "DB-informasjon via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "DB-informasjon via HTTP"
|
msgstr "DB-informasjon via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "FOAF-profil"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Diverse"
|
msgstr "Diverse"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (navn)"
|
msgstr "Planet Debian (navn)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (brukernavn)"
|
msgstr "Planet Debian (brukernavn)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "lenker"
|
msgstr "lenker"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Debian-nettsiden"
|
msgstr "Debian-nettsiden"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Debian-søk"
|
msgstr "Debian-søk"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Offentlig GPG-nøkkel via finger"
|
msgstr "Offentlig OpenPGP-nøkkel via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Offentlig GPG-nøkkel via HTTP"
|
msgstr "Offentlig OpenPGP-nøkkel via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "NM-, AM-deltagelse"
|
msgstr "NM-, AM-deltagelse"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Bidragsinformasjon"
|
msgstr "Bidragsinformasjon"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr "Depotologiinformasjon"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Informasjon tilgjengelig via ssh (for Debian-medlemmer)"
|
msgstr "Informasjon tilgjengelig via ssh (for Debian-medlemmer)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "eide debian.net -domener"
|
msgstr "eide debian.net -domener"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Informasjon i <a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</"
|
"Informasjon i <a "
|
||||||
"a>-databasen"
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>-databasen"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:115
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Gruppemedlemskapsinformasjon"
|
msgstr "Gruppemedlemskapsinformasjon"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Tilgjengelige programfikser fra Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "E-postadresse"
|
msgstr "E-postadresse"
|
||||||
|
|
@ -271,8 +244,8 @@ msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "GPG-fingeravtrykk"
|
msgstr "OpenPGP-fingeravtrykk"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -286,12 +259,8 @@ msgstr "E-postadresser utenom Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Salsa-brukernavn"
|
msgstr "Salsa-brukernavn"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Alioth-brukernavn"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Manglende inndata: %s"
|
msgstr "Manglende inndata: %s"
|
||||||
|
|
@ -307,15 +276,15 @@ msgstr "Debian-logo"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Denne tjenesten er inspirert av Stefano Zacchiroli sin <a href=\"https://wiki"
|
"Denne tjenesten er inspirert av Stefano Zacchiroli sin <a "
|
||||||
".debian.org/DDPortfolio\"> DDPortfolio-side i Debian-wikien</a>. Du kan lage "
|
"href=\"https://wiki.debian.org/DDPortfolio\"> DDPortfolio-side i Debian-"
|
||||||
"et sett med tilpassede lenker som leder til et Debian-medlems eller -"
|
"wikien</a>. Du kan lage et sett med tilpassede lenker som leder til et "
|
||||||
"pakkevedlikeholders informasjon om Debian."
|
"Debian-medlems eller -pakkevedlikeholders informasjon om Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -324,29 +293,31 @@ msgstr "AGPL - Fri programvare"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tjenesten er tilgjengelig i tråd med vilkårene i <a href=\"https://www.gnu."
|
"Tjenesten er tilgjengelig i tråd med vilkårene i <a "
|
||||||
"org/licenses/agpl.html\">GNU Affero General Public License</a> som publisert "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"av Free Software Foundation, enten versjon 3 av lisensen eller (etter ditt "
|
" License</a> som publisert av Free Software Foundation, enten versjon 3 "
|
||||||
"valg) enhver senere versjon. Du kan <a href=\"%(browseurl)s\" title=\"Gitweb "
|
"av lisensen eller (etter ditt valg) enhver senere versjon. Du kan <a "
|
||||||
"repository browser URL\">se igjennom kildekoden</a> eller klode det fra <a "
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">se gjennom"
|
||||||
"href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> ved å bruke <a "
|
" kildekoden</a> eller lage en klone av det fra <a href=\"%(cloneurl)s\" "
|
||||||
"href=\"https://git-scm.com/\">git</a>. Hvis du ønsker a oversette denne "
|
"title=\"git clone URL\">%(cloneurl)s</a> ved å bruke <a href=\"https"
|
||||||
"tjenesten til ditt språk kan du bidra ved å bruke<a href=\"%(weblateurl)s\" "
|
"://git-scm.com/\">git</a>. Hvis du ønsker å oversette denne tjenesten til"
|
||||||
|
" ditt språk kan du bidra ved å bruke<a href=\"%(weblateurl)s\" "
|
||||||
"title=\"Debian Member Portfolio Service at Weblate\"> Weblate</a>."
|
"title=\"Debian Member Portfolio Service at Weblate\"> Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Kopirett © 2009-2018 Jan Dittberner"
|
msgstr "Kopirett © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -369,8 +340,8 @@ msgid "Name:"
|
||||||
msgstr "Navn:"
|
msgstr "Navn:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "GPG-fingeravtrykk:"
|
msgstr "OpenPGP-fingeravtrykk"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -385,22 +356,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Salsa-brukernavn:"
|
msgstr "Salsa-brukernavn:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Alioth-brukernavn:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Wiki-brukernavn:"
|
msgstr "Wiki-brukernavn:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Forum-brukerid:"
|
msgstr "Forum-brukerid:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Fremvisningsformat:"
|
msgstr "Fremvisningsformat:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "Bygg Debian-medlemsportfolio-URLer"
|
msgstr "Bygg Debian-medlemsportfolio-URLer"
|
||||||
|
|
||||||
|
|
@ -427,3 +394,4 @@ msgstr "Feil under oppretting av URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Start om igjen"
|
msgstr "Start om igjen"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-02-09 10:14+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-03-18 14:03+0000\n"
|
"PO-Revision-Date: 2021-07-03 10:30+0000\n"
|
||||||
"Last-Translator: Frans Spiesschaert <frans.spiesschaert@gmail.com>\n"
|
"Last-Translator: Heimen Stoffels <vistausss@fastmail.com>\n"
|
||||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/nl/>\n"
|
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
|
"Language-Team: Dutch <https://hosted.weblate.org/projects/debian-member-"
|
||||||
|
"portfolio-service/translations/nl/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.6-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,212 +52,192 @@ msgstr "Bugs"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"ontvangen bugs\n"
|
"ontvangen bugs\n"
|
||||||
"(let op: mede-beheerders staan niet op de lijst, zie\n"
|
"(let op: mede-beheerders staan niet op de lijst, zie <a "
|
||||||
"<a href=\"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430986\""
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
">#430986</a>"
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
msgstr "gerapporteerde bugs"
|
msgstr "gemelde bugs"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:52
|
#: debianmemberportfolio/views.py:52
|
||||||
msgid "user tags"
|
msgid "user tags"
|
||||||
msgstr "gebruikerslabels"
|
msgstr "gebruikerslabels"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"alle berichten (d.w.z. zoeken in volledige tekst op de naam van de "
|
|
||||||
"ontwikkelaar in alle buglogs)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "correspondent voor bugs"
|
msgstr "correspondent voor bugs"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "grafiek van de evolutie van bugs die één jaar openstaan"
|
msgstr "grafiek van de evolutie van bugs die één jaar openstaan"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Bouwen"
|
msgstr "Bouwen"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "igloo"
|
msgstr "igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Kwaliteitsverzekering"
|
msgstr "Kwaliteitsverzekering"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "beheerdersinstrumentenbord"
|
msgstr "beheerpaneel"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "lintian-rapporten"
|
msgstr "lintian-rapporten"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"volledige lintian-rapporten (d.w.z. inclusief berichten van niveau \"info\")"
|
"volledige lintian-rapporten (d.w.z. inclusief berichten van het niveau "
|
||||||
|
"‘info’)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debian patchvolgsysteem"
|
msgstr "Debian-conciërge"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian URL-controle"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Mailinglijsten"
|
msgstr "Mailinglijsten"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Bestanden"
|
msgstr "Bestanden"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oud-medewerkers"
|
msgstr "oud-medewerkers"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Lidmaatschap"
|
msgstr "Lidmaatschap"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "DB-informatie via finger"
|
msgstr "DB-informatie via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "DB-informatie via HTTP"
|
msgstr "DB-informatie via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "FOAF-profiel"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Diversen"
|
msgstr "Diversen"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (naam)"
|
msgstr "Planet Debian (naam)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (gebruikersnaam)"
|
msgstr "Planet Debian (gebruikersnaam)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "links"
|
msgstr "links"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Debian-website"
|
msgstr "Debian-website"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Debian-zoeken"
|
msgstr "Debian-zoeken"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "GPG openbare sleutel via finger"
|
msgstr "OpenPGP openbare sleutel via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "GPG openbare sleutel via HTTP"
|
msgstr "OpenPGP openbare sleutel via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "NM, AM-deelname"
|
msgstr "NM, AM-deelname"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Bijdrage-informatie"
|
msgstr "Bijdrage-informatie"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr "Repology-informatie"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Via ssh toegankelijke informatie (voor Debian-leden)"
|
msgstr "Via ssh toegankelijke informatie (voor Debian-leden)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "debian.net-domeinnamen in eigendom"
|
msgstr "debian.net-domeinnamen in eigendom"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid "<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database information"
|
msgid ""
|
||||||
msgstr "<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>-database-informatie"
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
|
"database information"
|
||||||
|
msgstr ""
|
||||||
|
"<a "
|
||||||
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>-databankinformatie"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:115
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Informatie over groepslidmaatschap"
|
msgstr "Informatie over groepslidmaatschap"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Beschikbare patches van Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "E-mailadres"
|
msgstr "E-mailadres"
|
||||||
|
|
@ -268,8 +247,8 @@ msgid "Name"
|
||||||
msgstr "Naam"
|
msgstr "Naam"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "GPG-vingerafdruk"
|
msgstr "OpenPGP-vingerafdruk"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -283,12 +262,8 @@ msgstr "E-mailadres buiten Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Salsa-gebruikersnaam"
|
msgstr "Salsa-gebruikersnaam"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Alioth-gebruikersnaam"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Ontbrekende invoer: %s"
|
msgstr "Ontbrekende invoer: %s"
|
||||||
|
|
@ -296,19 +271,24 @@ msgstr "Ontbrekende invoer: %s"
|
||||||
#: debianmemberportfolio/templates/base.html:24
|
#: debianmemberportfolio/templates/base.html:24
|
||||||
#: debianmemberportfolio/templates/base.html:31
|
#: debianmemberportfolio/templates/base.html:31
|
||||||
msgid "Debian Member Portfolio Service"
|
msgid "Debian Member Portfolio Service"
|
||||||
msgstr "Portfoliodienst van Debian-leden"
|
msgstr "Portfolio met Debian-leden"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:30
|
#: debianmemberportfolio/templates/base.html:30
|
||||||
msgid "Debian Logo"
|
msgid "Debian Logo"
|
||||||
msgstr "Debian-logo"
|
msgstr "Debian-logo"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid "This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can create a set of customized links leading to a Debian Member's or package maintainer's information regarding Debian."
|
msgid ""
|
||||||
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Deze dienst is geïnspireerd op Stefano Zacchiroli's <a href=\""
|
"Deze dienst is geïnspireerd op Stefano Zacchiroli's <a "
|
||||||
"https://wiki.debian.org/DDPortfolio\">DDPortfolio-pagina op de Debian-"
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio-pagina op de "
|
||||||
"wiki</a>. U kunt een set aangepaste links creëren die leiden naar Debian-"
|
"Debian-wiki</a>. U kunt een set aangepaste links creëren die leiden naar "
|
||||||
"gerelateerde informatie over een lid of pakketbeheerder van Debian."
|
"Debian-gerelateerde informatie over een lid of pakketbeheerder van "
|
||||||
|
"Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -316,22 +296,32 @@ msgstr "AGPL - Vrije software"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The service is available under the terms of the <a href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public License</a> as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href=\"https://git-scm.com/\">git</a>. If you want to translate this service to your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian Member Portfolio Service at Weblate\">Weblate</a>."
|
msgid ""
|
||||||
|
"The service is available under the terms of the <a "
|
||||||
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Deze dienst is beschikbaar onder de voorwaarden van de <a href=\""
|
"Deze dienst is beschikbaar onder de voorwaarden van de <a "
|
||||||
"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"License</a>, zoals gepubliceerd door de Free Software Foundation, zowel "
|
" License</a>, zoals gepubliceerd door de Free Software Foundation, zowel "
|
||||||
"versie 3, als (optioneel) een hogere versie. U kunt <a href=\"%(browseurl)s\""
|
"versie 3, als (optioneel) een hogere versie. U kunt <a "
|
||||||
" title=\"Gitweb repository browser URL\">door de broncode bladeren</a> of "
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">door de "
|
||||||
"deze klonen van <a href=\"%(cloneurl)s\" title=\"git clone URL\""
|
"broncode bladeren</a> of deze klonen van <a href=\"%(cloneurl)s\" "
|
||||||
">%(cloneurl)s</a> m.b.v. <a href=\"http://git-scm.com/\">git</a>. Als u deze "
|
"title=\"git clone URL\">%(cloneurl)s</a> m.b.v. <a href=\"http://git-"
|
||||||
"dienst wilt vertalen naar uw eigen taal, dan kunt u bijdragen op <a href=\""
|
"scm.com/\">git</a>. Als u deze dienst wilt vertalen naar uw eigen taal, "
|
||||||
"%(weblateurl)s\" title=\"Debian Member Portfolio Service at Weblate\""
|
"dan kunt u bijdragen op <a href=\"%(weblateurl)s\" title=\"Debian Member "
|
||||||
">Weblate</a>."
|
"Portfolio Service at Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Copyright © 2009-2018 Jan Dittberner"
|
msgstr "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -339,7 +329,7 @@ msgstr "Voer uw persoonlijke informatie in"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:29
|
#: debianmemberportfolio/templates/showform.html:29
|
||||||
msgid "Debian Member Portfolio"
|
msgid "Debian Member Portfolio"
|
||||||
msgstr "Portfolio van een lid van Debian"
|
msgstr "Portfolio van een Debian-lid"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:31
|
#: debianmemberportfolio/templates/showform.html:31
|
||||||
msgid "Email address:"
|
msgid "Email address:"
|
||||||
|
|
@ -347,15 +337,15 @@ msgstr "E-mailadres:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:40
|
#: debianmemberportfolio/templates/showform.html:40
|
||||||
msgid "Show all form fields"
|
msgid "Show all form fields"
|
||||||
msgstr "Alle velden van het formulier weergeven"
|
msgstr "Alle formuliervelden tonen"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:43
|
#: debianmemberportfolio/templates/showform.html:43
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr "Naam:"
|
msgstr "Naam:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "GPG-vingerafdruk:"
|
msgstr "OpenPGP-vingerafdruk"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -370,28 +360,24 @@ msgid "Salsa user name:"
|
||||||
msgstr "Salsa-gebruikersnaam:"
|
msgstr "Salsa-gebruikersnaam:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Alioth-gebruikersnaam:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Wiki-gebruikersnaam:"
|
msgstr "Wiki-gebruikersnaam:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Forum-gebruikersid:"
|
msgstr "Forum-gebruikersid:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Uitvoerformaat:"
|
msgstr "Uitvoerformaat:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "URL's bouwen voor het Debian-lid"
|
msgstr "URL's samenstellen voor het Debian-lid"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showurls.html:21
|
#: debianmemberportfolio/templates/showurls.html:21
|
||||||
msgid "Your personal links"
|
msgid "Your personal links"
|
||||||
msgstr "Uw persoonlijke links"
|
msgstr "Mijn persoonlijke links"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showurls.html:25
|
#: debianmemberportfolio/templates/showurls.html:25
|
||||||
msgid "Debian Member Porfolio"
|
msgid "Debian Member Porfolio"
|
||||||
|
|
@ -407,8 +393,9 @@ msgstr "URL"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showurls.html:38
|
#: debianmemberportfolio/templates/showurls.html:38
|
||||||
msgid "Error during URL creation:"
|
msgid "Error during URL creation:"
|
||||||
msgstr "Er is een fout opgetreden tijdens de URL-creatie:"
|
msgstr "Er is een fout opgetreden tijdens het samenstellen van de url:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Herbeginnen"
|
msgstr "Opnieuw beginnen"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,25 +9,24 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-10-27 06:59+0000\n"
|
"PO-Revision-Date: 2020-10-27 06:59+0000\n"
|
||||||
"Last-Translator: Jan Dittberner <jandd@debian.org>\n"
|
"Last-Translator: Jan Dittberner <jandd@debian.org>\n"
|
||||||
"Language-Team: Polish <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/pl/>\n"
|
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
|
"Language-Team: Polish <https://hosted.weblate.org/projects/debian-member-"
|
||||||
|
"portfolio-service/translations/pl/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && "
|
||||||
|
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"|| n%100>=20) ? 1 : 2;\n"
|
|
||||||
"X-Generator: Weblate 4.3.2-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -52,8 +51,8 @@ msgstr "Bugi"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
|
|
@ -65,199 +64,171 @@ msgid "user tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Pliki"
|
msgstr "Pliki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "profil FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -267,7 +238,7 @@ msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
|
@ -282,12 +253,8 @@ msgstr ""
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -303,10 +270,10 @@ msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
|
|
@ -316,19 +283,20 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
|
@ -352,7 +320,7 @@ msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
|
@ -368,22 +336,18 @@ msgid "Salsa user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -410,3 +374,4 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-09-22 18:40+0000\n"
|
"PO-Revision-Date: 2021-07-03 11:15+0200\n"
|
||||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/pt/>\n"
|
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
"Language-Team: Portuguese <https://hosted.weblate.org/projects/debian-"
|
||||||
|
"member-portfolio-service/translations/pt/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 4.3-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,13 @@ msgstr "Bugs"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bugs recebidos\n"
|
"Bugs recebidos\n"
|
||||||
"(nota: co-mantenedores não listados, veja <a href=\"https://bugs.debian.org/"
|
"(nota: co-mantenedores não listados, veja <a "
|
||||||
"cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,203 +69,173 @@ msgid "user tags"
|
||||||
msgstr "Tags de utilizador"
|
msgstr "Tags de utilizador"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"Todas as mensagens (Ex. pesquisa completa do texto para o nome do "
|
|
||||||
"programador em todos os logs de bug)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "correspondente para bugs"
|
msgstr "correspondente para bugs"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "Histórico gráfico de bugs abertos há um ano"
|
msgstr "Histórico gráfico de bugs abertos há um ano"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Construção"
|
msgstr "Construção"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "Iglu"
|
msgstr "Iglu"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Garantia de Qualidade"
|
msgstr "Garantia de Qualidade"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "painel do mantenedor"
|
msgstr "painel do mantenedor"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "relatórios lintian"
|
msgstr "relatórios lintian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "todos os relatórios lintian (Ex. incluindo mensagens \"info\"-level)"
|
msgstr "todos os relatórios lintian (Ex. incluindo mensagens \"info\"-level)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Sistema de rastreamento de patches Debian"
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Validador de Url do Debian"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Listas de Discussão"
|
msgstr "Listas de Discussão"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Ficheiros"
|
msgstr "Ficheiros"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Associação"
|
msgstr "Associação"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "Infomações DB via finger"
|
msgstr "Infomações DB via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "Informações DB via HTTP"
|
msgstr "Informações DB via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "perfil FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Fórum"
|
msgstr "Fórum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Miscelânea"
|
msgstr "Miscelânea"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (nome)"
|
msgstr "Planet Debian (nome)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Nome de utilizador Debian"
|
msgstr "Nome de utilizador Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "ligações"
|
msgstr "ligações"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Site do Debian"
|
msgstr "Site do Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Pesquisa Debian"
|
msgstr "Pesquisa Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Chave pública GPG via finger"
|
msgstr "Chave pública OpenPGP via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Chave pública GPG via HTTP"
|
msgstr "Chave pública OpenPGP via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "Participação NM, AM"
|
msgstr "Participação NM, AM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Insira as suas informações pessoais"
|
msgstr "Insira as suas informações pessoais"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr "Informação sobre Repology"
|
msgstr "Informação sobre Repology"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Informação alcançável via ssh (para membros Debian)"
|
msgstr "Informação alcançável via ssh (para membros Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "domínios debian.net adquiridos"
|
msgstr "domínios debian.net adquiridos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"informações de banco de dados"
|
"informações de banco de dados"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Informações de Grupos associados"
|
msgstr "Informações de Grupos associados"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Patches por Ubuntu disponíveis"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Endereços de email"
|
msgstr "Endereços de email"
|
||||||
|
|
@ -275,8 +245,8 @@ msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "Fingerprint GPG"
|
msgstr "Fingerprint OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -290,12 +260,8 @@ msgstr "Endereço de email não Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Nome de utilizador Debian"
|
msgstr "Nome de utilizador Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Nome de utilizador Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Entrada ausente: %s"
|
msgstr "Entrada ausente: %s"
|
||||||
|
|
@ -311,15 +277,16 @@ msgstr "Logo Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Este serviço tem sido inspirado por Stefano Zacchiroli's <a href=\"https"
|
"Este serviço tem sido inspirado por Stefano Zacchiroli's <a "
|
||||||
"://wiki.debian.org/DDPortfolio\">Página DDPortfolio na Debian Wiki</a>. Pode "
|
"href=\"https://wiki.debian.org/DDPortfolio\">Página DDPortfolio na Debian"
|
||||||
"criar um conjunto de ligações customizados apontando para informações, ou de "
|
" Wiki</a>. Pode criar um conjunto de ligações customizados apontando para"
|
||||||
"membro Debian, ou de mantenedor de pacotes a respeito de Debian."
|
" informações, ou de membro Debian, ou de mantenedor de pacotes a respeito"
|
||||||
|
" de Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -328,30 +295,32 @@ msgstr "AGPL - Sofware Livre"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O serviço está disponível sob os termos da <a href=\"https://www.gnu.org/"
|
"O serviço está disponível sob os termos da <a "
|
||||||
"licenses/agpl.html\">Licença Pública Geral Affero GNU</a> conforme publicado "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">Licença Pública Geral "
|
||||||
"pela the Free Software Foundation, tanto na versão 3 da licença, como (a seu "
|
"Affero GNU</a> conforme publicado pela the Free Software Foundation, "
|
||||||
"critério) qualquer versão mais recente. Pode <a href=\"%(browseurl)s\" title="
|
"tanto na versão 3 da licença, como (a seu critério) qualquer versão mais "
|
||||||
"\"Navegar na URL do repositório Gitweb\">visualizar o código fonte</a> ou "
|
"recente. Pode <a href=\"%(browseurl)s\" title=\"Navegar na URL do "
|
||||||
"cloná-lo<a href=\"%(cloneurl)s\" title=\"URL de clonagem do git\""
|
"repositório Gitweb\">visualizar o código fonte</a> ou cloná-lo<a "
|
||||||
">%(cloneurl)s</a> usando <a href=\"http://git-scm.com/\">git</a>. Se quiser "
|
"href=\"%(cloneurl)s\" title=\"URL de clonagem do git\">%(cloneurl)s</a> "
|
||||||
"traduzir este serviço para o seu idioma pode contribuir em <a href=\""
|
"usando <a href=\"http://git-scm.com/\">git</a>. Se quiser traduzir este "
|
||||||
"%(weblateurl)s\" title=\"Serviço de Portfolio dos Membros do Debian no "
|
"serviço para o seu idioma pode contribuir em <a href=\"%(weblateurl)s\" "
|
||||||
|
"title=\"Serviço de Portfolio dos Membros do Debian no "
|
||||||
"Weblate\">Weblate</a>."
|
"Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Direitos Autorais © 2009-2018 Jan Dittberner"
|
msgstr "Direitos Autorais © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -374,8 +343,8 @@ msgid "Name:"
|
||||||
msgstr "Nome:"
|
msgstr "Nome:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "Fingerprint GPG:"
|
msgstr "Fingerprint OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -390,22 +359,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "nome de utilizador Salsa:"
|
msgstr "nome de utilizador Salsa:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Nome de utilizador Alioth:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Nome de utilizador Wiki:"
|
msgstr "Nome de utilizador Wiki:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Id de utilizador do fórum:"
|
msgstr "Id de utilizador do fórum:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Formato de saída:"
|
msgstr "Formato de saída:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "URLs de Portfolio dos Membros Debian em Construção"
|
msgstr "URLs de Portfolio dos Membros Debian em Construção"
|
||||||
|
|
||||||
|
|
@ -432,3 +397,4 @@ msgstr "Erro durante a criação da URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Reiniciar"
|
msgstr "Reiniciar"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service\n"
|
"Project-Id-Version: Debian Member Portfolio Service\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2018-02-09 10:14+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-07-26 06:41+0000\n"
|
"PO-Revision-Date: 2021-08-16 13:34+0000\n"
|
||||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
"Last-Translator: Claudio Filho F Filho <filhocf@gmail.com>\n"
|
||||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/pt_BR/>\n"
|
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
|
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects"
|
||||||
|
"/debian-member-portfolio-service/translations/pt_BR/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,13 @@ msgstr "Bugs"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bugs recebidos\n"
|
"Bugs recebidos\n"
|
||||||
"(nota: co-mantenedores não listados, veja <a href=\"https://bugs.debian.org/"
|
"(nota: co-mantenedores não listados, veja <a "
|
||||||
"cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,199 +69,173 @@ msgid "user tags"
|
||||||
msgstr "Tags de usuário"
|
msgstr "Tags de usuário"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"Todas as mensagens (Ex. pesquisa completa do texto para o nome do "
|
|
||||||
"desenvolvedor em todos os logs de bug)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "correspondente para bugs"
|
msgstr "correspondente para bugs"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "Histórico gráfico de bugs abertos há um ano"
|
msgstr "Histórico gráfico de bugs abertos há um ano"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Construção"
|
msgstr "Construção"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "Iglu"
|
msgstr "Iglu"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Garantia de Qualidade"
|
msgstr "Garantia de Qualidade"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "painel do mantenedor"
|
msgstr "painel do mantenedor"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "relatórios lintian"
|
msgstr "relatórios lintian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "todos os relatórios lintian (Ex. incluindo mensagens \"info\"-level)"
|
msgstr "todos os relatórios lintian (Ex. incluindo mensagens \"info\"-level)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Sistema de rastreamento de patches Debian"
|
msgstr "Zelador Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Validador de Url do Debian"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Listas de Discussão"
|
msgstr "Listas de Discussão"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Arquivos"
|
msgstr "Arquivos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Associação"
|
msgstr "Associação"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "Infomações DB via finger"
|
msgstr "Infomações DB via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "Informações DB via HTTP"
|
msgstr "Informações DB via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "perfil FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Fórum"
|
msgstr "Fórum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Miscelânea"
|
msgstr "Miscelânea"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (nome)"
|
msgstr "Planet Debian (nome)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Nome de usuário Debian"
|
msgstr "Nome de usuário Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "links"
|
msgstr "links"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Site do Debian"
|
msgstr "Site do Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Pesquisa Debian"
|
msgstr "Pesquisa Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Chave pública GPG via finger"
|
msgstr "Chave pública OpenPGP via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Chave pública GPG via HTTP"
|
msgstr "Chave pública OpenPGP via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "Participação NM, AM"
|
msgstr "Participação NM, AM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Insira as suas informações pessoais"
|
msgstr "Insira as suas informações pessoais"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr "Informação sobre Repology"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Informação alcançável via ssh (para membros Debian)"
|
msgstr "Informação alcançável via ssh (para membros Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "domínios debian.net adquiridos"
|
msgstr "domínios debian.net adquiridos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> informações "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"de banco de dados"
|
"informações de banco de dados"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:115
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Informações de Grupos associados"
|
msgstr "Informações de Grupos associados"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Patches por Ubuntu disponíveis"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Endereços de email"
|
msgstr "Endereços de email"
|
||||||
|
|
@ -271,8 +245,8 @@ msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "Fingerprint GPG"
|
msgstr "Fingerprint OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -286,12 +260,8 @@ msgstr "Endereço de email não Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Nome de usuário Debian"
|
msgstr "Nome de usuário Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Nome de usuário Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Entrada ausente: %s"
|
msgstr "Entrada ausente: %s"
|
||||||
|
|
@ -307,15 +277,16 @@ msgstr "Logo Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Este serviço tem sido inspirado por Stefano Zacchiroli's <a href=\"https"
|
"Este serviço tem sido inspirado por Stefano Zacchiroli's <a "
|
||||||
"://wiki.debian.org/DDPortfolio\">Página DDPortfolio na Debian Wiki</a>. Você "
|
"href=\"https://wiki.debian.org/DDPortfolio\">Página DDPortfolio na Debian"
|
||||||
"pode criar um conjunto de links customizados apontando para informações, ou "
|
" Wiki</a>. Você pode criar um conjunto de links customizados apontando "
|
||||||
"de membro Debian, ou de mantenedor de pacotes a respeito de Debian."
|
"para informações, ou de membro Debian, ou de mantenedor de pacotes a "
|
||||||
|
"respeito de Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -324,30 +295,32 @@ msgstr "AGPL - Sofware Livre"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O serviço está disponível sob os termos da <a href=\"https://www.gnu.org/"
|
"O serviço está disponível sob os termos da <a "
|
||||||
"licenses/agpl.html\">Licença Pública Geral Affero GNU</a> conforme publicado "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">Licença Pública Geral "
|
||||||
"pela the Free Software Foundation, tanto na versão 3 da licença, como (a seu "
|
"Affero GNU</a> conforme publicado pela the Free Software Foundation, "
|
||||||
"critério) qualquer versão mais recente. Você pode <a href=\"%(browseurl)s\" "
|
"tanto na versão 3 da licença, como (a seu critério) qualquer versão mais "
|
||||||
"title=\"Navegar na URL do repositório Gitweb\">visualizar o código fonte</a> "
|
"recente. Você pode <a href=\"%(browseurl)s\" title=\"Navegar na URL do "
|
||||||
"ou cloná-lo<a href=\"%(cloneurl)s\" title=\"URL de clonagem do git\""
|
"repositório Gitweb\">visualizar o código fonte</a> ou cloná-lo<a "
|
||||||
">%(cloneurl)s</a> usando <a href=\"http://git-scm.com/\">git</a>. Se você "
|
"href=\"%(cloneurl)s\" title=\"URL de clonagem do git\">%(cloneurl)s</a> "
|
||||||
"quiser traduzir este serviço para o seu idioma você pode contribuir em <a "
|
"usando <a href=\"http://git-scm.com/\">git</a>. Se você quiser traduzir "
|
||||||
"href=\"%(weblateurl)s\" title=\"Serviço de Portfolio dos Membros do Debian "
|
"este serviço para o seu idioma você pode contribuir em <a "
|
||||||
"no Weblate\">Weblate</a>."
|
"href=\"%(weblateurl)s\" title=\"Serviço de Portfolio dos Membros do "
|
||||||
|
"Debian no Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Direitos Autorais © 2009-2018 Jan Dittberner"
|
msgstr "Direitos Autorais © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -370,8 +343,8 @@ msgid "Name:"
|
||||||
msgstr "Nome:"
|
msgstr "Nome:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "Fingerprint GPG:"
|
msgstr "Fingerprint OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -386,22 +359,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "nome de utilizador Salsa:"
|
msgstr "nome de utilizador Salsa:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Nome de usuário Alioth:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Nome de usuário Wiki:"
|
msgstr "Nome de usuário Wiki:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Id de usuário do fórum:"
|
msgstr "Id de usuário do fórum:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Formato de saída:"
|
msgstr "Formato de saída:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "URLs de Portfolio dos Membros Debian em Construção"
|
msgstr "URLs de Portfolio dos Membros Debian em Construção"
|
||||||
|
|
||||||
|
|
@ -428,3 +397,4 @@ msgstr "Erro durante a criação da URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Reiniciar"
|
msgstr "Reiniciar"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-08-23 21:36+0000\n"
|
"PO-Revision-Date: 2022-09-21 16:19+0000\n"
|
||||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
"Last-Translator: Manuela Silva <mmsrs@sky.com>\n"
|
||||||
"Language-Team: Portuguese (Portugal) <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/pt_PT/>\n"
|
|
||||||
"Language: pt_PT\n"
|
"Language: pt_PT\n"
|
||||||
|
"Language-Team: Portuguese (Portugal) <https://hosted.weblate.org/projects"
|
||||||
|
"/debian-member-portfolio-service/translations/pt_PT/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 4.2.1-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -44,239 +43,210 @@ msgid ""
|
||||||
"... showing all email addresses"
|
"... showing all email addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Visão geral dos Pacote dos Membros do Debian\n"
|
"Visão geral dos Pacote dos Membros do Debian\n"
|
||||||
"... exibindo todos os endereços de email"
|
"... exibindo todos os endereços de correio eletrónico"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:46
|
#: debianmemberportfolio/views.py:46
|
||||||
msgid "Bugs"
|
msgid "Bugs"
|
||||||
msgstr "Bugs"
|
msgstr "Erros"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bugs recebidos\n"
|
"Erros recebidos\n"
|
||||||
"(nota: co-mantenedores não listados, veja <a href=\"https://bugs.debian.org/"
|
"(nota: co-administradores não listados, consulte <a "
|
||||||
"cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
msgstr "Bugs reportados"
|
msgstr "Erros reportados"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:52
|
#: debianmemberportfolio/views.py:52
|
||||||
msgid "user tags"
|
msgid "user tags"
|
||||||
msgstr "Tags de utilizador"
|
msgstr "Etiquetas de utilizador"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"Todas as mensagens (Ex. pesquisa completa do texto para o nome do "
|
|
||||||
"programador em todos os logs de bug)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "correspondente para bugs"
|
msgstr "correspondente para erros"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "Histórico gráfico de bugs abertos há um ano"
|
msgstr "Gráfico do histórico de erros abertos há um ano"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Construção"
|
msgstr "Criação"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "Iglu"
|
msgstr "Iglu"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Garantia de Qualidade"
|
msgstr "Garantia de Qualidade"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "painel do mantenedor"
|
msgstr "painel do mantenedor"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "relatórios lintian"
|
msgstr "Relatórios lintian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "todos os relatórios lintian (Ex. incluindo mensagens \"info\"-level)"
|
msgstr "todos os relatórios lintian (Ex. incluindo mensagens \"info\"-level)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Sistema de rastreamento de patches Debian"
|
msgstr "Zelador Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Validador de Url do Debian"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Listas de Discussão"
|
msgstr "Listas de Discussão"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Ficheiros"
|
msgstr "Ficheiros"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "pessoasidosas"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Associação"
|
msgstr "Associação"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "Infomações DB via finger"
|
msgstr "Informação DB via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "Informações DB via HTTP"
|
msgstr "Informação DB via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "perfil FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Fórum"
|
msgstr "Fórum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Miscelânea"
|
msgstr "Diversos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (nome)"
|
msgstr "Planet Debian (nome)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Nome de utilizador Debian"
|
msgstr "Planet Debian (nome de utilizador)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "ligações"
|
msgstr "hiperligações"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Site do Debian"
|
msgstr "Site da Web Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Pesquisa Debian"
|
msgstr "Pesquisa Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Chave pública GPG via finger"
|
msgstr "Chave pública OpenPGP via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Chave pública GPG via HTTP"
|
msgstr "Chave pública OpenPGP via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "Participação NM, AM"
|
msgstr "Participação NM, AM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Insira as suas informações pessoais"
|
msgstr "Informação de contribuição"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr ""
|
msgstr "Informação sobre Repology"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Informação alcançável via ssh (para membros Debian)"
|
msgstr "Informação alcançável via ssh (para membros Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "domínios debian.net adquiridos"
|
msgstr "domínios debian.net adquiridos"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"informações de banco de dados"
|
"informação da base de dados"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Informações de Grupos associados"
|
msgstr "Informação dos membros do grupo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Patches por Ubuntu disponíveis"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Endereços de email"
|
msgstr "Endereços de correio eletrónico"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:44
|
#: debianmemberportfolio/model/urlbuilder.py:44
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "Fingerprint GPG"
|
msgstr "Fingerprint OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -290,12 +260,8 @@ msgstr "Endereço de email não Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Nome de utilizador Debian"
|
msgstr "Nome de utilizador Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Nome de utilizador Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Entrada ausente: %s"
|
msgstr "Entrada ausente: %s"
|
||||||
|
|
@ -311,15 +277,16 @@ msgstr "Logo Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Este serviço tem sido inspirado por Stefano Zacchiroli's <a href=\"https"
|
"Este serviço tem sido inspirado por Stefano Zacchiroli's <a "
|
||||||
"://wiki.debian.org/DDPortfolio\">Página DDPortfolio na Debian Wiki</a>. Pode "
|
"href=\"https://wiki.debian.org/DDPortfolio\">Página DDPortfolio na Debian"
|
||||||
"criar um conjunto de ligações customizados apontando para informações, ou de "
|
" Wiki</a>. Pode criar um conjunto de ligações customizados apontando para"
|
||||||
"membro Debian, ou de mantenedor de pacotes a respeito de Debian."
|
" informações, ou de membro Debian, ou de mantenedor de pacotes a respeito"
|
||||||
|
" de Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -328,30 +295,32 @@ msgstr "AGPL - Sofware Livre"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O serviço está disponível sob os termos da <a href=\"https://www.gnu.org/"
|
"O serviço está disponível sob os termos da <a "
|
||||||
"licenses/agpl.html\">Licença Pública Geral Affero GNU</a> conforme publicado "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">Licença Pública Geral "
|
||||||
"pela the Free Software Foundation, tanto na versão 3 da licença, como (a seu "
|
"Affero GNU</a> conforme publicado pela the Free Software Foundation, "
|
||||||
"critério) qualquer versão mais recente. Pode <a href=\"%(browseurl)s\" title="
|
"tanto na versão 3 da licença, como (a seu critério) qualquer versão mais "
|
||||||
"\"Navegar na URL do repositório Gitweb\">visualizar o código fonte</a> ou "
|
"recente. Pode <a href=\"%(browseurl)s\" title=\"Navegar na URL do "
|
||||||
"cloná-lo<a href=\"%(cloneurl)s\" title=\"URL de clonagem do git\""
|
"repositório Gitweb\">visualizar o código fonte</a> ou cloná-lo<a "
|
||||||
">%(cloneurl)s</a> usando <a href=\"http://git-scm.com/\">git</a>. Se quiser "
|
"href=\"%(cloneurl)s\" title=\"URL de clonagem do git\">%(cloneurl)s</a> "
|
||||||
"traduzir este serviço para o seu idioma pode contribuir em <a href=\""
|
"usando <a href=\"http://git-scm.com/\">git</a>. Se quiser traduzir este "
|
||||||
"%(weblateurl)s\" title=\"Serviço de Portfolio dos Membros do Debian no "
|
"serviço para o seu idioma pode contribuir em <a href=\"%(weblateurl)s\" "
|
||||||
|
"title=\"Serviço de Portfolio dos Membros do Debian no "
|
||||||
"Weblate\">Weblate</a>."
|
"Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Direitos Autorais © 2009-2018 Jan Dittberner"
|
msgstr "Direitos Autorais © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -374,8 +343,8 @@ msgid "Name:"
|
||||||
msgstr "Nome:"
|
msgstr "Nome:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "Fingerprint GPG:"
|
msgstr "Fingerprint OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -390,22 +359,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "nome de utilizador Salsa:"
|
msgstr "nome de utilizador Salsa:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Nome de utilizador Alioth:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Nome de utilizador Wiki:"
|
msgstr "Nome de utilizador Wiki:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Id de utilizador do fórum:"
|
msgstr "Id de utilizador do fórum:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Formato de saída:"
|
msgstr "Formato de saída:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "URLs de Portfolio dos Membros Debian em Construção"
|
msgstr "URLs de Portfolio dos Membros Debian em Construção"
|
||||||
|
|
||||||
|
|
@ -432,3 +397,4 @@ msgstr "Erro durante a criação da URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Reiniciar"
|
msgstr "Reiniciar"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,25 +9,24 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-09-09 18:36+0000\n"
|
"PO-Revision-Date: 2022-01-11 15:52+0000\n"
|
||||||
"Last-Translator: Nikita Epifanov <nikgreens@protonmail.com>\n"
|
"Last-Translator: Nikita Epifanov <nikgreens@protonmail.com>\n"
|
||||||
"Language-Team: Russian <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/ru/>\n"
|
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
|
"Language-Team: Russian <https://hosted.weblate.org/projects/debian-"
|
||||||
|
"member-portfolio-service/translations/ru/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
"X-Generator: Weblate 4.3-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -54,12 +53,13 @@ msgstr "Ошибки"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"полученные ошибки\n"
|
"полученные ошибки\n"
|
||||||
"(примечание: со-сопровождающие не указаны, см. <a href=\"https://bugs.debian."
|
"(примечание: со-сопровождающие не указаны, см. <a "
|
||||||
"org/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -70,203 +70,173 @@ msgid "user tags"
|
||||||
msgstr "теги пользователей"
|
msgstr "теги пользователей"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"все сообщения (т.е. полнотекстовый поиск имени разработчика по всем журналам "
|
|
||||||
"ошибок)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "корреспондент по вопросам ошибок"
|
msgstr "корреспондент по вопросам ошибок"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "график истории открытых ошибок за один год"
|
msgstr "график истории открытых ошибок за один год"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Сборка"
|
msgstr "Сборка"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "иглу"
|
msgstr "иглу"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Гарантия качества"
|
msgstr "Гарантия качества"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "панель мониторинга"
|
msgstr "панель мониторинга"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "Lintian отчеты"
|
msgstr "Lintian отчеты"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "полные отчеты Lintian (т. е. включая сообщения уровня \"информация\")"
|
msgstr "полные отчеты Lintian (т. е. включая сообщения уровня \"информация\")"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Система отслеживания патчей Debian"
|
msgstr "Debian Janitor"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian Url проверщик"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Списки рассылки"
|
msgstr "Списки рассылки"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Файлы"
|
msgstr "Файлы"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Членство"
|
msgstr "Членство"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "Информация о ДБ по отпечатку"
|
msgstr "Информация о ДБ по отпечатку"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "Информация о ДБ по HTTP"
|
msgstr "Информация о ДБ по HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "Профиль FOAF"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Форум"
|
msgstr "Форум"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Разное"
|
msgstr "Разное"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Планета Debian (имя)"
|
msgstr "Планета Debian (имя)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Планета Debian (имя пользователя)"
|
msgstr "Планета Debian (имя пользователя)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "ссылки"
|
msgstr "ссылки"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Сайт Debian"
|
msgstr "Сайт Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Поиск Debian"
|
msgstr "Поиск Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "Открытый ключ GPG через отпечаток"
|
msgstr "Открытый ключ OpenPGP через отпечаток"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "Открытый ключ GPG через HTTP"
|
msgstr "Открытый ключ OpenPGP через HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "NM, AM участие"
|
msgstr "NM, AM участие"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Информация о вкладе"
|
msgstr "Информация о вкладе"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr "Информация о репологии"
|
msgstr "Информация о репологии"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Информация доступна по ssh (для членов Debian)"
|
msgstr "Информация доступна по ssh (для членов Debian)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "собственные домены debian.net"
|
msgstr "собственные домены debian.net"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Информация из базы данных <a href=\"https://wiki.debian.org/qa.debian.org/"
|
"Информация из базы данных <a "
|
||||||
"MIATeam\">MIA</a>"
|
"href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Информация о членстве в группе"
|
msgstr "Информация о членстве в группе"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Доступные патчи из Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "Адрес электронной почты"
|
msgstr "Адрес электронной почты"
|
||||||
|
|
@ -276,8 +246,8 @@ msgid "Name"
|
||||||
msgstr "Имя"
|
msgstr "Имя"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "Отпечаток GPG"
|
msgstr "Отпечаток OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -291,12 +261,8 @@ msgstr "Электронный адрес, отличный от Debian"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Имя пользователя Salsa"
|
msgstr "Имя пользователя Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Имя пользователя Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Пропущенный ввод: %s"
|
msgstr "Пропущенный ввод: %s"
|
||||||
|
|
@ -312,15 +278,16 @@ msgstr "Логотип Debian"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Этот сервис был вдохновлен страницей Стефано Заккироли <a href=\"https://wiki"
|
"Этот сервис был вдохновлен страницей Стефано Заккироли <a "
|
||||||
".debian.org/DDPortfolio\">DDPortfolio в Debian Wiki</a>. Вы можете создать "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio в Debian "
|
||||||
"набор настраиваемых ссылок, ведущих к информации участника Debian или "
|
"Wiki</a>. Вы можете создать набор настраиваемых ссылок, ведущих к "
|
||||||
"сопровождающего пакета относительно Debian."
|
"информации участника Debian или сопровождающего пакета относительно "
|
||||||
|
"Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -329,30 +296,32 @@ msgstr "AGPL - Свободное программное обеспечение"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Служба доступна на условиях <a href=\"https://www.gnu.org/licenses/agpl."
|
"Служба доступна на условиях <a "
|
||||||
"html\">Стандартной общественной лицензии GNU</a> опубликованной Фондом "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">Стандартной общественной "
|
||||||
"свободного программного обеспечения, либо 3 версии Лицензии, либо (по вашему "
|
"лицензии GNU</a> опубликованной Фондом свободного программного "
|
||||||
"выбору) любой более поздней версии. Вы можете <a href=\"%(browseurl)s\" "
|
"обеспечения, либо 3 версии Лицензии, либо (по вашему выбору) любой более "
|
||||||
"title=\"Gitweb repository browser URL\">просмотреть исходный код</a> или "
|
"поздней версии. Вы можете <a href=\"%(browseurl)s\" title=\"Gitweb "
|
||||||
"клонировать его из <a href=\"%(cloneurl)s\" title=\"git clone URL\""
|
"repository browser URL\">просмотреть исходный код</a> или клонировать его"
|
||||||
">%(cloneurl)s</a> используя <a href=\"https://git-scm.com/\">git</a>. Если "
|
" из <a href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> "
|
||||||
"вы хотите перевести эту услугу на свой язык, вы можете внести свой вклад по "
|
"используя <a href=\"https://git-scm.com/\">git</a>. Если вы хотите "
|
||||||
"ссылке <a href=\"%(weblateurl)s\" title=\"Служба портфолио участников Debian "
|
"перевести эту услугу на свой язык, вы можете внести свой вклад по ссылке "
|
||||||
"в Weblate\">Weblate</a>."
|
"<a href=\"%(weblateurl)s\" title=\"Служба портфолио участников Debian в "
|
||||||
|
"Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Copyright © 2009-2018 Jan Dittberner"
|
msgstr "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -375,8 +344,8 @@ msgid "Name:"
|
||||||
msgstr "Имя:"
|
msgstr "Имя:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "Отпечаток GPG:"
|
msgstr "Отпечаток OpenPGP"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -391,22 +360,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Имя пользователя Salsa:"
|
msgstr "Имя пользователя Salsa:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Имя пользователя Alioth:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Имя пользователя Wiki:"
|
msgstr "Имя пользователя Wiki:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "ID пользователя форума:"
|
msgstr "ID пользователя форума:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Формат вывода:"
|
msgstr "Формат вывода:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "Создание URL-адресов портфолио участников Debian"
|
msgstr "Создание URL-адресов портфолио участников Debian"
|
||||||
|
|
||||||
|
|
@ -433,3 +398,4 @@ msgstr "Ошибка при создании URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Перезапустить"
|
msgstr "Перезапустить"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-10-17 17:52+0000\n"
|
"PO-Revision-Date: 2021-08-13 16:35+0000\n"
|
||||||
"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n"
|
"Last-Translator: Luna Jernberg <droidbittin@gmail.com>\n"
|
||||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/sv/>\n"
|
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
|
"Language-Team: Swedish <https://hosted.weblate.org/projects/debian-"
|
||||||
|
"member-portfolio-service/translations/sv/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.9\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,12 +52,13 @@ msgstr "Buggar"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"buggar mottagna\n"
|
"buggar mottagna\n"
|
||||||
"(Obs: medansvariga som inte finns listade, se <a href=\"https://bugs.debian."
|
"(Obs: medansvariga som inte finns listade, se <a "
|
||||||
"org/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"href=\"https://bugs.debian.org/cgi-"
|
||||||
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -69,203 +69,173 @@ msgid "user tags"
|
||||||
msgstr "användartaggar"
|
msgstr "användartaggar"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
"alla meddelanden (dvs. fulltextsökning efter utvecklarnamn i alla felloggar)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "korrespondent för buggar"
|
msgstr "korrespondent för buggar"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "ett års öppen bugghistorik diagram"
|
msgstr "ett års öppen bugghistorik diagram"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "Bygge"
|
msgstr "Bygge"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "bygged.d.o"
|
msgstr "bygged.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "igloo"
|
msgstr "igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "Kvalitetssäkring"
|
msgstr "Kvalitetssäkring"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "instrumentpanel för underhållare"
|
msgstr "instrumentpanel för underhållare"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "lintian rapporter"
|
msgstr "lintian rapporter"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr "fullständiga lintianrapporter (dvs. inklusive \"info\" -nivåmeddelanden)"
|
||||||
"fullständiga lintianrapporter (dvs. inklusive \"info\" -nivåmeddelanden)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debian patch-spårningssystem"
|
msgstr "Debian Vaktmästare"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian URL-kontroll"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "Sändlistor"
|
msgstr "Sändlistor"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "Filer"
|
msgstr "Filer"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "oldpeople"
|
msgstr "oldpeople"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "Alioth"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "Medlemskap"
|
msgstr "Medlemskap"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "DB-information via finger"
|
msgstr "DB-information via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "DB-information via HTTP"
|
msgstr "DB-information via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "FOAF-profil"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "Forum"
|
msgstr "Forum"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "Diverse"
|
msgstr "Diverse"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "debtags"
|
msgstr "debtags"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (namn)"
|
msgstr "Planet Debian (namn)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (användarnamn)"
|
msgstr "Planet Debian (användarnamn)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "länkar"
|
msgstr "länkar"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Debian webbplats"
|
msgstr "Debian webbplats"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Debian sökning"
|
msgstr "Debian sökning"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "GPG offentlig nyckel via finger"
|
msgstr "OpenPGP offentlig nyckel via finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "GPG offentlig nyckel via HTTP"
|
msgstr "OpenPGP offentlig nyckel via HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "NM, AM deltagande"
|
msgstr "NM, AM deltagande"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "Information om bidrag"
|
msgstr "Information om bidrag"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr "Information om repologi"
|
msgstr "Information om repologi"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "Information som kan nås via SSH (för Debianmedlemmar)"
|
msgstr "Information som kan nås via SSH (för Debianmedlemmar)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "ägda debian.net domäner"
|
msgstr "ägda debian.net domäner"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"databasinformation"
|
"databasinformation"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "Information om gruppmedlemskap"
|
msgstr "Information om gruppmedlemskap"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "Tillgängliga patchar från Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "E-postadress"
|
msgstr "E-postadress"
|
||||||
|
|
@ -275,8 +245,8 @@ msgid "Name"
|
||||||
msgstr "Namn"
|
msgstr "Namn"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "GPG-fingeravtryck"
|
msgstr "OpenPGP-fingeravtryck"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -290,12 +260,8 @@ msgstr "Icke Debian e-postadress"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Salsa användarnamn"
|
msgstr "Salsa användarnamn"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Alioth användarnamn"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "Saknad inmatning: %s"
|
msgstr "Saknad inmatning: %s"
|
||||||
|
|
@ -311,15 +277,15 @@ msgstr "Debian logotyp"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Den här tjänsten har inspirerats av Stefano Zacchirolis <a href=\""
|
"Den här tjänsten har inspirerats av Stefano Zacchirolis <a "
|
||||||
"https://wiki.debian.org/DDPortfolio\">DDPortfolio-sida i Debian Wiki</a>. Du "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio-sida i Debian "
|
||||||
"kan skapa en uppsättning anpassade länkar som leder till information om en "
|
"Wiki</a>. Du kan skapa en uppsättning anpassade länkar som leder till "
|
||||||
"Debian-medlem eller paketunderhållare om Debian."
|
"information om en Debian-medlem eller paketunderhållare om Debian."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -328,29 +294,31 @@ msgstr "AGPL - fri programvara"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tjänsten är tillgänglig under villkoren i <a href=\"https://www.gnu.org/"
|
"Tjänsten är tillgänglig under villkoren i <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> som publiceras av "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"Free Software Foundation, antingen version 3 i licensen, eller (efter eget "
|
" License</a> som publiceras av Free Software Foundation, antingen version"
|
||||||
"val) någon senare version. Du kan <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 i licensen, eller (efter eget val) någon senare version. Du kan <a "
|
||||||
"repository browser URL\">bläddra i källkoden</a> eller klona den från <a "
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">bläddra i "
|
||||||
"href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> med <a href=\""
|
"källkoden</a> eller klona den från <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"https://git-scm.com/\">git</a>. Om du vill översätta den här tjänsten till "
|
"clone URL\">%(cloneurl)s</a> med <a href=\"https://git-"
|
||||||
"ditt språk kan du bidra till <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. Om du vill översätta den här tjänsten till ditt språk"
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
" kan du bidra till <a href=\"%(weblateurl)s\" title=\"Debian Member "
|
||||||
|
"Portfolio Service at Weblate\">Weblate</a>."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Copyright © 2009-2018 Jan Dittberner"
|
msgstr "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -373,8 +341,8 @@ msgid "Name:"
|
||||||
msgstr "Namn:"
|
msgstr "Namn:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "GPG-fingeravtryck:"
|
msgstr "OpenPGP-fingeravtryck"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -389,22 +357,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Salsa användarnamn:"
|
msgstr "Salsa användarnamn:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Alioth användarnamn:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Wiki användarnamn:"
|
msgstr "Wiki användarnamn:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "Forum användar-id:"
|
msgstr "Forum användar-id:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "Utdataformat:"
|
msgstr "Utdataformat:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "Bygg webbadresser till Debian medlemsportfölj"
|
msgstr "Bygg webbadresser till Debian medlemsportfölj"
|
||||||
|
|
||||||
|
|
@ -431,3 +395,4 @@ msgstr "Fel under skapandet av URL:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "Starta om"
|
msgstr "Starta om"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,24 +8,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-02-09 10:14+0100\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2020-10-15 10:26+0000\n"
|
"PO-Revision-Date: 2021-07-20 07:33+0000\n"
|
||||||
"Last-Translator: tao wang <tonywang5@163.com>\n"
|
"Last-Translator: Zhou Nan <zhounan@nfschina.com>\n"
|
||||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/zh_Hans/>\n"
|
|
||||||
"Language: zh_CN\n"
|
"Language: zh_CN\n"
|
||||||
|
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects"
|
||||||
|
"/debian-member-portfolio-service/translations/zh_Hans/>\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 4.3-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -52,12 +51,12 @@ msgstr "缺陷"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"bugs 接收\n"
|
"bugs 接收\n"
|
||||||
"(注意: 合作维护者未列入, 详见 <a href=\"https://bugs.debian.org/cgi-bin/"
|
"(注意: 合作维护者未列入, 详见 <a href=\"https://bugs.debian.org/cgi-"
|
||||||
"bugreport.cgi?bug=430986\">#430986</a>)"
|
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
msgid "bugs reported"
|
msgid "bugs reported"
|
||||||
|
|
@ -68,197 +67,171 @@ msgid "user tags"
|
||||||
msgstr "用户标签"
|
msgstr "用户标签"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr "所有信息 (即,开发者名下所有缺陷日志的全文搜索)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr ""
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">需要支持的和未来应有的包(WNPP)</a>"
|
||||||
"<a href=\"https://wiki.debian.org/WNPP\">需要支持的和未来应有的包(WNPP)</a>"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr "bug的通信者"
|
msgstr "bug的通信者"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr "一年处理Bug历史图表"
|
msgstr "一年处理Bug历史图表"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "构建"
|
msgstr "构建"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "buildd.d.o"
|
msgstr "buildd.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "冰屋(igloo)"
|
msgstr "冰屋(igloo)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "质量保证"
|
msgstr "质量保证"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "维护者面板"
|
msgstr "维护者面板"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "Lintian报告"
|
msgstr "Lintian报告"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr "全部Lintian报告(即包括\"info\"级信息)"
|
msgstr "全部Lintian报告(即包括\"info\"级信息)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr "piuparts"
|
msgstr "piuparts"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debian补丁追踪系统(Debian patch tracking system)"
|
msgstr "Debian 守门人"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian链接检查器(Debian Url Checker)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "邮件列表"
|
msgstr "邮件列表"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr "lists.d.o"
|
msgstr "lists.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr "lists.a.d.o"
|
msgstr "lists.a.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "文件"
|
msgstr "文件"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr "people.d.o"
|
msgstr "people.d.o"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr "老人"
|
msgstr "老人"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr "北斗五(Alioth)"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr "成员关系"
|
msgstr "成员关系"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr "NM"
|
msgstr "NM"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr "DB信息,通过finger"
|
msgstr "DB信息,通过finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr "DB信息,通过HTTP"
|
msgstr "DB信息,通过HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr "FOAF档案"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr "Salsa"
|
msgstr "Salsa"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr "Wiki"
|
msgstr "Wiki"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr "论坛"
|
msgstr "论坛"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr "杂项"
|
msgstr "杂项"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr "包标签"
|
msgstr "包标签"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr "Planet Debian (名字)"
|
msgstr "Planet Debian (名字)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr "Planet Debian (用户名)"
|
msgstr "Planet Debian (用户名)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr "链接"
|
msgstr "链接"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr "Debian网站"
|
msgstr "Debian网站"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr "Debian搜索"
|
msgstr "Debian搜索"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr "GPG公钥,通过finger"
|
msgstr "OpenPGP公钥,通过finger"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr "GPG公钥,通过HTTP"
|
msgstr "OpenPGP公钥,通过HTTP"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr "NM, AM 参加"
|
msgstr "NM, AM 参加"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr "贡献信息"
|
msgstr "贡献信息"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:111
|
#: debianmemberportfolio/views.py:102
|
||||||
|
msgid "Repology information"
|
||||||
|
msgstr "Repology信息"
|
||||||
|
|
||||||
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr "信息可获取,通过ssh(DM专用)"
|
msgstr "信息可获取,通过ssh(DM专用)"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr "拥有 debian.net 领域"
|
msgstr "拥有 debian.net 领域"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr "<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> 数据库信息"
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> 数据库信息"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:115
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr "群组会员信息"
|
msgstr "群组会员信息"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:118
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr "Ubuntu"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr "来自Ubuntu的可用补丁"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr "邮件地址"
|
msgstr "邮件地址"
|
||||||
|
|
@ -268,8 +241,8 @@ msgid "Name"
|
||||||
msgstr "姓名"
|
msgstr "姓名"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr "GPG指纹"
|
msgstr "OpenPGP指纹"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
msgid "Debian user name"
|
msgid "Debian user name"
|
||||||
|
|
@ -283,12 +256,8 @@ msgstr "非Debian邮件地址"
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr "Salsa用户名"
|
msgstr "Salsa用户名"
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr "Alioth用户名"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr "缺少输入: %s"
|
msgstr "缺少输入: %s"
|
||||||
|
|
@ -304,14 +273,14 @@ msgstr "Debian Logo"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"这个服务由 Stefano Zacchiroli的 <a href=\"https://wiki.debian.org/DDPortfolio"
|
"这个服务由 Stefano Zacchiroli的 <a "
|
||||||
"\">DDPortfolio 的 Debian Wiki页面</a> 得到灵感. 你可以创建一个指向 Debian "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio 的 Debian "
|
||||||
"Member 的或包维护者的关于Debian的信息的定制链接集合."
|
"Wiki页面</a> 得到灵感. 你可以创建一个指向 Debian Member 的或包维护者的关于Debian的信息的定制链接集合."
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
msgid "AGPL - Free Software"
|
msgid "AGPL - Free Software"
|
||||||
|
|
@ -320,26 +289,29 @@ msgstr "AGPL - 自由软件"
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"这个服务在由自由软件基金会(FSF)发布的 <a href=\"https://www.gnu.org/licenses/agpl.html\">GNU "
|
"这个服务在由自由软件基金会(FSF)发布的 <a "
|
||||||
"Affero General Public License</a> 第三版或(可选)更高版本协议下可用,可以点击 <a href=\""
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"%(browseurl)s\" title=\"Gitweb repository browser URL\">查看源代码</a>,或从 <a href="
|
" License</a> 第三版或(可选)更高版本协议下可用,可以点击 <a href=\"%(browseurl)s\" "
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> 使用 <a href=\"http"
|
"title=\"Gitweb repository browser URL\">查看源代码</a>,或从 <a "
|
||||||
"://git-scm.com/\">git</a> 来克隆。如果想将这个服务翻译为你的语言,可以在这里投稿 <a href=\"%(weblateurl)"
|
"href=\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> 使用 <a "
|
||||||
"s\" title=\"Debian Member Portfolio Service at Weblate\">Weblate</a>。"
|
"href=\"http://git-scm.com/\">git</a> 来克隆。如果想将这个服务翻译为你的语言,可以在这里投稿 <a "
|
||||||
|
"href=\"%(weblateurl)s\" title=\"Debian Member Portfolio Service at "
|
||||||
|
"Weblate\">Weblate</a>。"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr "Copyright © 2009-2018 Jan Dittberner"
|
msgstr "Copyright © 2009-2022 Jan Dittberner"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
msgid "Enter your personal information"
|
msgid "Enter your personal information"
|
||||||
|
|
@ -362,8 +334,8 @@ msgid "Name:"
|
||||||
msgstr "姓名:"
|
msgstr "姓名:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr "GPG指纹:"
|
msgstr "OpenPGP指纹"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
msgid "Debian user name:"
|
msgid "Debian user name:"
|
||||||
|
|
@ -378,22 +350,18 @@ msgid "Salsa user name:"
|
||||||
msgstr "Salsa用户名:"
|
msgstr "Salsa用户名:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr "Alioth用户名:"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr "Wiki用户名:"
|
msgstr "Wiki用户名:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr "论坛用户id:"
|
msgstr "论坛用户id:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr "输出格式:"
|
msgstr "输出格式:"
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr "构建Debian Member Prortfolio链接"
|
msgstr "构建Debian Member Prortfolio链接"
|
||||||
|
|
||||||
|
|
@ -420,3 +388,4 @@ msgstr "在 URL 创建过程中的错误:"
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr "重启"
|
msgstr "重启"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
"Project-Id-Version: Debian Member Portfolio Service 0.3.1\n"
|
||||||
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
"Report-Msgid-Bugs-To: jan@dittberner.info\n"
|
||||||
"POT-Creation-Date: 2018-05-12 10:32+0200\n"
|
"POT-Creation-Date: 2022-09-24 14:17+0200\n"
|
||||||
"PO-Revision-Date: 2019-01-20 15:12+0000\n"
|
"PO-Revision-Date: 2019-01-20 15:12+0000\n"
|
||||||
"Last-Translator: Louies <louies0623@gmail.com>\n"
|
"Last-Translator: Louies <louies0623@gmail.com>\n"
|
||||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
|
||||||
"debian-member-portfolio-service/translations/zh_Hant/>\n"
|
|
||||||
"Language: zh_Hant\n"
|
"Language: zh_Hant\n"
|
||||||
|
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects"
|
||||||
|
"/debian-member-portfolio-service/translations/zh_Hant/>\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Generated-By: Babel 2.10.3\n"
|
||||||
"X-Generator: Weblate 3.4-dev\n"
|
|
||||||
"Generated-By: Babel 2.5.0\n"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: debianmemberportfolio/forms.py:67
|
#: debianmemberportfolio/forms.py:64
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
|
|
@ -53,8 +52,8 @@ msgstr "錯誤"
|
||||||
#: debianmemberportfolio/views.py:47
|
#: debianmemberportfolio/views.py:47
|
||||||
msgid ""
|
msgid ""
|
||||||
"bugs received\n"
|
"bugs received\n"
|
||||||
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org/cgi-"
|
"(note: co-maintainers not listed, see <a href=\"https://bugs.debian.org"
|
||||||
"bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
"/cgi-bin/bugreport.cgi?bug=430986\">#430986</a>)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:51
|
#: debianmemberportfolio/views.py:51
|
||||||
|
|
@ -66,199 +65,171 @@ msgid "user tags"
|
||||||
msgstr "用戶標籤"
|
msgstr "用戶標籤"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:53
|
#: debianmemberportfolio/views.py:53
|
||||||
msgid "all messages (i.e., full text search for developer name on all bug logs)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:55
|
|
||||||
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgid "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
msgstr "<a href=\"https://wiki.debian.org/WNPP\">WNPP</a>"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:56
|
#: debianmemberportfolio/views.py:54
|
||||||
msgid "correspondent for bugs"
|
msgid "correspondent for bugs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:57
|
#: debianmemberportfolio/views.py:55
|
||||||
msgid "one year open bug history graph"
|
msgid "one year open bug history graph"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:60
|
#: debianmemberportfolio/views.py:58
|
||||||
msgid "Build"
|
msgid "Build"
|
||||||
msgstr "建構"
|
msgstr "建構"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:61
|
#: debianmemberportfolio/views.py:59
|
||||||
msgid "buildd.d.o"
|
msgid "buildd.d.o"
|
||||||
msgstr "建構公司"
|
msgstr "建構公司"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:62
|
#: debianmemberportfolio/views.py:60
|
||||||
msgid "igloo"
|
msgid "igloo"
|
||||||
msgstr "igloo"
|
msgstr "igloo"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:65
|
#: debianmemberportfolio/views.py:63
|
||||||
msgid "Quality Assurance"
|
msgid "Quality Assurance"
|
||||||
msgstr "品質保證"
|
msgstr "品質保證"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:66
|
#: debianmemberportfolio/views.py:64
|
||||||
msgid "maintainer dashboard"
|
msgid "maintainer dashboard"
|
||||||
msgstr "維護人員儀錶板"
|
msgstr "維護人員儀錶板"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:67
|
#: debianmemberportfolio/views.py:65
|
||||||
msgid "lintian reports"
|
msgid "lintian reports"
|
||||||
msgstr "lintian 報導"
|
msgstr "lintian 報導"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:68
|
#: debianmemberportfolio/views.py:66
|
||||||
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
msgid "full lintian reports (i.e. including \"info\"-level messages)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:70
|
#: debianmemberportfolio/views.py:68
|
||||||
msgid "piuparts"
|
msgid "piuparts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:71
|
#: debianmemberportfolio/views.py:69
|
||||||
msgid "Debian patch tracking system"
|
msgid "Debian Janitor"
|
||||||
msgstr "Debian 補丁追踪系統"
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:72
|
#: debianmemberportfolio/views.py:72
|
||||||
msgid "Debian Url ChecKer"
|
|
||||||
msgstr "Debian URL檢查器"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:75
|
|
||||||
msgid "Mailing Lists"
|
msgid "Mailing Lists"
|
||||||
msgstr "郵遞清單"
|
msgstr "郵遞清單"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:76
|
#: debianmemberportfolio/views.py:73
|
||||||
msgid "lists.d.o"
|
msgid "lists.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:77
|
#: debianmemberportfolio/views.py:74
|
||||||
msgid "lists.a.d.o"
|
msgid "lists.a.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:78
|
#: debianmemberportfolio/views.py:77
|
||||||
msgid "gmane"
|
|
||||||
msgstr "gmane"
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:81
|
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr "檔案"
|
msgstr "檔案"
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:82
|
#: debianmemberportfolio/views.py:78
|
||||||
msgid "people.d.o"
|
msgid "people.d.o"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:83
|
#: debianmemberportfolio/views.py:79
|
||||||
msgid "oldpeople"
|
msgid "oldpeople"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:84 debianmemberportfolio/views.py:93
|
#: debianmemberportfolio/views.py:82
|
||||||
msgid "Alioth"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:87
|
|
||||||
msgid "Membership"
|
msgid "Membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:88
|
#: debianmemberportfolio/views.py:83
|
||||||
msgid "NM"
|
msgid "NM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:89
|
#: debianmemberportfolio/views.py:84
|
||||||
msgid "DB information via finger"
|
msgid "DB information via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:90
|
#: debianmemberportfolio/views.py:85
|
||||||
msgid "DB information via HTTP"
|
msgid "DB information via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:91
|
#: debianmemberportfolio/views.py:86
|
||||||
msgid "FOAF profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:92
|
|
||||||
msgid "Salsa"
|
msgid "Salsa"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:94
|
#: debianmemberportfolio/views.py:87
|
||||||
msgid "Wiki"
|
msgid "Wiki"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:95
|
#: debianmemberportfolio/views.py:88
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:98
|
#: debianmemberportfolio/views.py:91
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:99
|
#: debianmemberportfolio/views.py:92
|
||||||
msgid "debtags"
|
msgid "debtags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:100
|
#: debianmemberportfolio/views.py:93
|
||||||
msgid "Planet Debian (name)"
|
msgid "Planet Debian (name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:101
|
#: debianmemberportfolio/views.py:94
|
||||||
msgid "Planet Debian (username)"
|
msgid "Planet Debian (username)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:102
|
#: debianmemberportfolio/views.py:95
|
||||||
msgid "links"
|
msgid "links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:103
|
#: debianmemberportfolio/views.py:96
|
||||||
msgid "Debian website"
|
msgid "Debian website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:104
|
#: debianmemberportfolio/views.py:97
|
||||||
msgid "Debian search"
|
msgid "Debian search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:105
|
#: debianmemberportfolio/views.py:98
|
||||||
msgid "GPG public key via finger"
|
msgid "OpenPGP public key via finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:106
|
#: debianmemberportfolio/views.py:99
|
||||||
msgid "GPG public key via HTTP"
|
msgid "OpenPGP public key via HTTP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:107
|
#: debianmemberportfolio/views.py:100
|
||||||
msgid "NM, AM participation"
|
msgid "NM, AM participation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:108
|
#: debianmemberportfolio/views.py:101
|
||||||
msgid "Contribution information"
|
msgid "Contribution information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:109
|
#: debianmemberportfolio/views.py:102
|
||||||
msgid "Repology information"
|
msgid "Repology information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:112
|
#: debianmemberportfolio/views.py:105
|
||||||
msgid "Information reachable via ssh (for Debian Members)"
|
msgid "Information reachable via ssh (for Debian Members)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:113
|
#: debianmemberportfolio/views.py:106
|
||||||
msgid "owned debian.net domains"
|
msgid "owned debian.net domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:114
|
#: debianmemberportfolio/views.py:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> database "
|
"<a href=\"https://wiki.debian.org/qa.debian.org/MIATeam\">MIA</a> "
|
||||||
"information"
|
"database information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:116
|
#: debianmemberportfolio/views.py:109
|
||||||
msgid "Group membership information"
|
msgid "Group membership information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:119
|
|
||||||
msgid "Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/views.py:120
|
|
||||||
msgid "Available patches from Ubuntu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:43
|
#: debianmemberportfolio/model/urlbuilder.py:43
|
||||||
msgid "Email address"
|
msgid "Email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -268,7 +239,7 @@ msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:45
|
#: debianmemberportfolio/model/urlbuilder.py:45
|
||||||
msgid "GPG fingerprint"
|
msgid "OpenPGP fingerprint"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:46
|
#: debianmemberportfolio/model/urlbuilder.py:46
|
||||||
|
|
@ -283,12 +254,8 @@ msgstr ""
|
||||||
msgid "Salsa user name"
|
msgid "Salsa user name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:49
|
#: debianmemberportfolio/model/urlbuilder.py:109
|
||||||
msgid "Alioth user name"
|
#: debianmemberportfolio/model/urlbuilder.py:113
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:110
|
|
||||||
#: debianmemberportfolio/model/urlbuilder.py:114
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing input: %s"
|
msgid "Missing input: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -304,10 +271,10 @@ msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:32
|
#: debianmemberportfolio/templates/base.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"This service has been inspired by Stefano Zacchiroli's <a href=\"https://wiki."
|
"This service has been inspired by Stefano Zacchiroli's <a "
|
||||||
"debian.org/DDPortfolio\">DDPortfolio page in the Debian Wiki</a>. You can "
|
"href=\"https://wiki.debian.org/DDPortfolio\">DDPortfolio page in the "
|
||||||
"create a set of customized links leading to a Debian Member's or package "
|
"Debian Wiki</a>. You can create a set of customized links leading to a "
|
||||||
"maintainer's information regarding Debian."
|
"Debian Member's or package maintainer's information regarding Debian."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:39
|
#: debianmemberportfolio/templates/base.html:39
|
||||||
|
|
@ -317,19 +284,20 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/base.html:40
|
#: debianmemberportfolio/templates/base.html:40
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The service is available under the terms of the <a href=\"https://www.gnu.org/"
|
"The service is available under the terms of the <a "
|
||||||
"licenses/agpl.html\">GNU Affero General Public License</a> as published by "
|
"href=\"https://www.gnu.org/licenses/agpl.html\">GNU Affero General Public"
|
||||||
"the Free Software Foundation, either version 3 of the License, or (at your "
|
" License</a> as published by the Free Software Foundation, either version"
|
||||||
"option) any later version. You can <a href=\"%(browseurl)s\" title=\"Gitweb "
|
" 3 of the License, or (at your option) any later version. You can <a "
|
||||||
"repository browser URL\">browse the source code</a> or clone it from <a href="
|
"href=\"%(browseurl)s\" title=\"Gitweb repository browser URL\">browse the"
|
||||||
"\"%(cloneurl)s\" title=\"git clone URL\">%(cloneurl)s</a> using <a href="
|
" source code</a> or clone it from <a href=\"%(cloneurl)s\" title=\"git "
|
||||||
"\"https://git-scm.com/\">git</a>. If you want to translate this service to "
|
"clone URL\">%(cloneurl)s</a> using <a href=\"https://git-"
|
||||||
"your language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
"scm.com/\">git</a>. If you want to translate this service to your "
|
||||||
|
"language you can contribute at <a href=\"%(weblateurl)s\" title=\"Debian "
|
||||||
"Member Portfolio Service at Weblate\">Weblate</a>."
|
"Member Portfolio Service at Weblate\">Weblate</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/base.html:41
|
#: debianmemberportfolio/templates/base.html:41
|
||||||
msgid "Copyright © 2009-2018 Jan Dittberner"
|
msgid "Copyright © 2009-2022 Jan Dittberner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:22
|
#: debianmemberportfolio/templates/showform.html:22
|
||||||
|
|
@ -353,7 +321,7 @@ msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:50
|
#: debianmemberportfolio/templates/showform.html:50
|
||||||
msgid "GPG fingerprint:"
|
msgid "OpenPGP fingerprint:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:57
|
#: debianmemberportfolio/templates/showform.html:57
|
||||||
|
|
@ -369,22 +337,18 @@ msgid "Salsa user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:78
|
#: debianmemberportfolio/templates/showform.html:78
|
||||||
msgid "Alioth user name:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:85
|
|
||||||
msgid "Wiki user name:"
|
msgid "Wiki user name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:92
|
#: debianmemberportfolio/templates/showform.html:85
|
||||||
msgid "Forum user id:"
|
msgid "Forum user id:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:99
|
#: debianmemberportfolio/templates/showform.html:92
|
||||||
msgid "Output format:"
|
msgid "Output format:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: debianmemberportfolio/templates/showform.html:106
|
#: debianmemberportfolio/templates/showform.html:99
|
||||||
msgid "Build Debian Member Portfolio URLs"
|
msgid "Build Debian Member Portfolio URLs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -411,3 +375,4 @@ msgstr ""
|
||||||
#: debianmemberportfolio/templates/showurls.html:59
|
#: debianmemberportfolio/templates/showurls.html:59
|
||||||
msgid "Restart"
|
msgid "Restart"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# Debian Member Portfolio Service views
|
# Debian Member Portfolio Service views
|
||||||
#
|
#
|
||||||
# Copyright © 2015-2020 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2015-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -50,8 +50,6 @@ _LABELS = {
|
||||||
bug=430986">#430986</a>)'''),
|
bug=430986">#430986</a>)'''),
|
||||||
'reported': N_('bugs reported'),
|
'reported': N_('bugs reported'),
|
||||||
'usertags': N_('user tags'),
|
'usertags': N_('user tags'),
|
||||||
'searchall': N_('all messages (i.e., full text search for \
|
|
||||||
developer name on all bug logs)'),
|
|
||||||
'wnpp': N_('<a href="https://wiki.debian.org/WNPP">WNPP</a>'),
|
'wnpp': N_('<a href="https://wiki.debian.org/WNPP">WNPP</a>'),
|
||||||
'correspondent': N_('correspondent for bugs'),
|
'correspondent': N_('correspondent for bugs'),
|
||||||
'graph': N_('one year open bug history graph'),
|
'graph': N_('one year open bug history graph'),
|
||||||
|
|
@ -68,8 +66,6 @@ developer name on all bug logs)'),
|
||||||
'lintianfull': N_('full lintian reports (i.e. including \
|
'lintianfull': N_('full lintian reports (i.e. including \
|
||||||
"info"-level messages)'),
|
"info"-level messages)'),
|
||||||
'piuparts': N_('piuparts'),
|
'piuparts': N_('piuparts'),
|
||||||
'patchtracker': N_('Debian patch tracking system'),
|
|
||||||
'duck': N_('Debian Url ChecKer'),
|
|
||||||
'janitor': N_('Debian Janitor'),
|
'janitor': N_('Debian Janitor'),
|
||||||
},
|
},
|
||||||
'lists': {
|
'lists': {
|
||||||
|
|
@ -87,7 +83,6 @@ developer name on all bug logs)'),
|
||||||
'nm': N_('NM'),
|
'nm': N_('NM'),
|
||||||
'dbfinger': N_('DB information via finger'),
|
'dbfinger': N_('DB information via finger'),
|
||||||
'db': N_('DB information via HTTP'),
|
'db': N_('DB information via HTTP'),
|
||||||
'webid': N_('FOAF profile'),
|
|
||||||
'salsa': N_('Salsa'),
|
'salsa': N_('Salsa'),
|
||||||
'wiki': N_('Wiki'),
|
'wiki': N_('Wiki'),
|
||||||
'forum': N_('Forum'),
|
'forum': N_('Forum'),
|
||||||
|
|
@ -100,8 +95,8 @@ developer name on all bug logs)'),
|
||||||
'links': N_('links'),
|
'links': N_('links'),
|
||||||
'website': N_('Debian website'),
|
'website': N_('Debian website'),
|
||||||
'search': N_('Debian search'),
|
'search': N_('Debian search'),
|
||||||
'gpgfinger': N_('GPG public key via finger'),
|
'gpgfinger': N_('OpenPGP public key via finger'),
|
||||||
'gpgweb': N_('GPG public key via HTTP'),
|
'gpgweb': N_('OpenPGP public key via HTTP'),
|
||||||
'nm': N_('NM, AM participation'),
|
'nm': N_('NM, AM participation'),
|
||||||
'contrib': N_('Contribution information'),
|
'contrib': N_('Contribution information'),
|
||||||
'repology': N_('Repology information'),
|
'repology': N_('Repology information'),
|
||||||
|
|
@ -113,15 +108,11 @@ developer name on all bug logs)'),
|
||||||
'MIATeam">MIA</a> database information'),
|
'MIATeam">MIA</a> database information'),
|
||||||
'groupinfo': N_('Group membership information'),
|
'groupinfo': N_('Group membership information'),
|
||||||
},
|
},
|
||||||
'ubuntu': {
|
|
||||||
'label': N_('Ubuntu'),
|
|
||||||
'ubuntudiff': N_('Available patches from Ubuntu'),
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#: list of field name tuples for Debian Maintainers
|
#: list of field name tuples for Debian Maintainers
|
||||||
DM_TUPLES = (('name', 'name'),
|
DM_TUPLES = (('name', 'name'),
|
||||||
('gpgfp', 'gpgfp'),
|
('openpgpfp', 'openpgpfp'),
|
||||||
('nonddemail', 'email'))
|
('nonddemail', 'email'))
|
||||||
|
|
||||||
#: list of field name tuples for Debian Developers
|
#: list of field name tuples for Debian Developers
|
||||||
|
|
|
||||||
|
|
@ -22,41 +22,40 @@ import os
|
||||||
# If your extensions are in another directory, add it here. If the directory
|
# If your extensions are in another directory, add it here. If the directory
|
||||||
# is relative to the documentation root, use os.path.abspath to make it
|
# is relative to the documentation root, use os.path.abspath to make it
|
||||||
# absolute, like shown here.
|
# absolute, like shown here.
|
||||||
sys.path.append(
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")))
|
||||||
os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
|
|
||||||
|
|
||||||
# General configuration
|
# General configuration
|
||||||
# ---------------------
|
# ---------------------
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be
|
# Add any Sphinx extension module names here, as strings. They can be
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
||||||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
|
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ['_templates']
|
templates_path = ["_templates"]
|
||||||
|
|
||||||
# The encoding of source files.
|
# The encoding of source files.
|
||||||
#source_encoding = 'utf-8'
|
# source_encoding = 'utf-8'
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = 'Debian Member Portfolio Service'
|
project = "Debian Member Portfolio Service"
|
||||||
copyright = '2009-2020, Jan Dittberner'
|
copyright = "2009-2021, Jan Dittberner"
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.6.4'
|
version = "0.7.2"
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
language = 'en'
|
language = "en"
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
pygments_style = 'sphinx'
|
pygments_style = "sphinx"
|
||||||
|
|
||||||
|
|
||||||
# -----------------------
|
# -----------------------
|
||||||
|
|
@ -64,51 +63,55 @@ pygments_style = 'sphinx'
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
# Add any paths that contain custom static files (such as style sheets) here,
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
# relative to this directory. They are copied after the builtin static files,
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||||
html_static_path = ['_static']
|
html_static_path = ["_static"]
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
html_use_modindex = False
|
html_use_modindex = False
|
||||||
|
|
||||||
# If false, no index is generated.
|
# If false, no index is generated.
|
||||||
#html_use_index = True
|
# html_use_index = True
|
||||||
html_theme = 'alabaster'
|
html_theme = "alabaster"
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
# Output file base name for HTML help builder.
|
||||||
htmlhelp_basename = 'DebianMemberPortfolioServicedoc'
|
htmlhelp_basename = "DebianMemberPortfolioServicedoc"
|
||||||
|
|
||||||
# Options for LaTeX output
|
# Options for LaTeX output
|
||||||
# ------------------------
|
# ------------------------
|
||||||
|
|
||||||
# The paper size ('letter' or 'a4').
|
# The paper size ('letter' or 'a4').
|
||||||
#latex_paper_size = 'letter'
|
# latex_paper_size = 'letter'
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
# The font size ('10pt', '11pt' or '12pt').
|
||||||
#latex_font_size = '10pt'
|
# latex_font_size = '10pt'
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
# Grouping the document tree into LaTeX files. List of tuples
|
||||||
# (source start file, target name, title, author, document class
|
# (source start file, target name, title, author, document class
|
||||||
# [howto/manual]).
|
# [howto/manual]).
|
||||||
latex_documents = [
|
latex_documents = [
|
||||||
('index',
|
(
|
||||||
'DebianMemberPortfolioService.tex',
|
"index",
|
||||||
'Debian Member Portfolio Service Documentation',
|
"DebianMemberPortfolioService.tex",
|
||||||
'Jan Dittberner',
|
"Debian Member Portfolio Service Documentation",
|
||||||
'manual'),
|
"Jan Dittberner",
|
||||||
|
"manual",
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
# The name of an image file (relative to this directory) to place at the top of
|
||||||
# the title page.
|
# the title page.
|
||||||
#latex_logo = None
|
# latex_logo = None
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
||||||
# not chapters.
|
# not chapters.
|
||||||
#latex_use_parts = False
|
# latex_use_parts = False
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
# Additional stuff for the LaTeX preamble.
|
||||||
#latex_preamble = ''
|
# latex_preamble = ''
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#latex_appendices = []
|
# latex_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#latex_use_modindex = True
|
# latex_use_modindex = True
|
||||||
|
|
||||||
|
master_doc = "index"
|
||||||
|
|
|
||||||
|
|
@ -9,14 +9,36 @@ Code
|
||||||
* Jan Dittberner <jandd at debian dot org>
|
* Jan Dittberner <jandd at debian dot org>
|
||||||
* Paul Wise <pabs at debian dot org>
|
* Paul Wise <pabs at debian dot org>
|
||||||
* Olivier Berger <olivier.berger at telecom-sudparis dot eu>
|
* Olivier Berger <olivier.berger at telecom-sudparis dot eu>
|
||||||
|
* Juri Grabowski <git-commit at jugra dot de>
|
||||||
|
|
||||||
Translations
|
Translations
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* Jan Dittberner
|
* Adolfo Jayme Barrientos (Spanish, French, Portuguese (Brazil))
|
||||||
* Daniel Manzano (Brazilian Portuguese)
|
* Allan Nordhøy (Norwegian Bokmål)
|
||||||
|
* Boyuan Yang (Chinese (simplified))
|
||||||
|
* ButterflyOfFire (French, Portuguese (Brazil))
|
||||||
|
* Daniel Manzano (Portugues (Brazil))
|
||||||
|
* Frans Spiesschaert (Dutch)
|
||||||
|
* Heimen Stoffels (Dutch)
|
||||||
* Izharul Haq (Indonesian)
|
* Izharul Haq (Indonesian)
|
||||||
|
* Jan Dittberner (German, English)
|
||||||
|
* Manuela Silva (Portugues (Portugal))
|
||||||
|
* Mattias Münster (Swedish)
|
||||||
|
* Michal Biesiada (Polish)
|
||||||
|
* Nikita Epifanov (Russian)
|
||||||
|
* Olivier Humbert (French)
|
||||||
|
* Petter Reinholdtsen (Norwegian Bokmål)
|
||||||
|
* Prachi Joshi (Marathi)
|
||||||
|
* Reza Almanda (Indonesian)
|
||||||
|
* Shuji Sado (Japanese)
|
||||||
* Stéphane Aulery (French)
|
* Stéphane Aulery (French)
|
||||||
|
* Tao Wang (Chinese (simplified))
|
||||||
|
* Thanos Siourdakis (Greek)
|
||||||
|
* Tiago Naufragado (Portugues (Brazil))
|
||||||
|
* Wellington Terumi Uemura (Portugues (Brazil))
|
||||||
|
* chimez (Chinese (China))
|
||||||
|
* ssantos (Portugues (Portugal))
|
||||||
|
|
||||||
If you think your name is missing please tell me (Jan Dittberner) about your
|
If you think your name is missing please tell me (Jan Dittberner) about your
|
||||||
contribution and I'll add you.
|
contribution and I'll add you.
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@ Prepare for first startup
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The Debian Member Portfolio Service uses data from the Debian keyring to get
|
The Debian Member Portfolio Service uses data from the Debian keyring to get
|
||||||
information regarding PGP keys and names related to email addresses. Before you
|
information regarding OpenPGP keys and names related to email addresses. Before you
|
||||||
can run the service you need to fetch a copy of the keyring and prepare it for
|
can run the service you need to fetch a copy of the keyring and prepare it for
|
||||||
use by the code.
|
use by the code.
|
||||||
|
|
||||||
|
|
@ -82,7 +82,7 @@ When you have both installed you can run::
|
||||||
|
|
||||||
. ~/.virtualenvs/dmportfolio/bin/activate
|
. ~/.virtualenvs/dmportfolio/bin/activate
|
||||||
./synckeyrings.sh
|
./synckeyrings.sh
|
||||||
python debianmemberportfolio/model/keyringanalyzer.py
|
python3 debianmemberportfolio/model/keyringanalyzer.py
|
||||||
|
|
||||||
The first synchronizes the keyrings in :file:`$HOME/debian/keyring.debian.org`
|
The first synchronizes the keyrings in :file:`$HOME/debian/keyring.debian.org`
|
||||||
with files on the `keyring.debian.org <http://keyring.debian.org>`_ host. And
|
with files on the `keyring.debian.org <http://keyring.debian.org>`_ host. And
|
||||||
|
|
@ -137,7 +137,7 @@ Placeholder Replacement
|
||||||
%(emailnoq)s email address
|
%(emailnoq)s email address
|
||||||
%(firstchar)s first character of the email address
|
%(firstchar)s first character of the email address
|
||||||
%(forumsid)s forum user id
|
%(forumsid)s forum user id
|
||||||
%(gpgfp)s GNUPG/PGP key fingerprint
|
%(openpgpfp)s OpenPGP key fingerprint
|
||||||
%(name)s full name (i.e. John Smith)
|
%(name)s full name (i.e. John Smith)
|
||||||
%(username)s Debian user name
|
%(username)s Debian user name
|
||||||
%(wikihomepage)s full name in camel case (i.e. JohnSmith)
|
%(wikihomepage)s full name in camel case (i.e. JohnSmith)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
Flask==0.12.2
|
Flask==2.2.2
|
||||||
Jinja2==2.9.6
|
Jinja2==3.1.2
|
||||||
MarkupSafe==1.0
|
MarkupSafe==2.1.1
|
||||||
Werkzeug==0.12.2
|
Werkzeug==2.2.2
|
||||||
itsdangerous==0.24
|
itsdangerous==2.1.2
|
||||||
Babel==2.5.0
|
Babel==2.10.3
|
||||||
Flask-Babel==0.11.2
|
Flask-Babel==2.0.0
|
||||||
pytz==2017.2
|
pytz==2022.2.1
|
||||||
speaklater==1.3
|
speaklater==1.3
|
||||||
Flask-WTF==0.14.2
|
Flask-WTF==1.0.1
|
||||||
WTForms==2.1
|
WTForms==3.0.1
|
||||||
|
email-validator==1.3.0
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -2,7 +2,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# Debian Member Portfolio Service setup
|
# Debian Member Portfolio Service setup
|
||||||
# Copyright © 2009-2020 Jan Dittberner <jan@dittberner.info>
|
# Copyright © 2009-2022 Jan Dittberner <jan@dittberner.info>
|
||||||
#
|
#
|
||||||
# This file is part of the Debian Member Portfolio Service.
|
# This file is part of the Debian Member Portfolio Service.
|
||||||
#
|
#
|
||||||
|
|
@ -29,7 +29,7 @@ except ImportError:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='debianmemberportfolio',
|
name='debianmemberportfolio',
|
||||||
version='0.6.4',
|
version='0.7.3',
|
||||||
description='service to create Debian Member Portfolio URLs',
|
description='service to create Debian Member Portfolio URLs',
|
||||||
long_description="""This is a service implementation that returns a set of
|
long_description="""This is a service implementation that returns a set of
|
||||||
personalized URLs as outlined in https://wiki.debian.org/DDPortfolio. It
|
personalized URLs as outlined in https://wiki.debian.org/DDPortfolio. It
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue