mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-14 11:33:51 +01:00
parent
d7152485bb
commit
3ad003140f
@ -391,7 +391,7 @@ def move_to_state(package):
|
|||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
if package.state == PackageState.CHANGES_NEEDED:
|
if package.state == PackageState.CHANGES_NEEDED:
|
||||||
flash(gettext("Please comment what changes are needed in the review thread"), "warning")
|
flash(gettext("Please comment what changes are needed in the approval thread"), "warning")
|
||||||
if package.review_thread:
|
if package.review_thread:
|
||||||
return redirect(package.review_thread.getViewURL())
|
return redirect(package.review_thread.getViewURL())
|
||||||
else:
|
else:
|
||||||
|
@ -303,7 +303,7 @@ def new():
|
|||||||
|
|
||||||
# Only allow creating one thread when not approved
|
# Only allow creating one thread when not approved
|
||||||
elif is_review_thread and package.review_thread is not None:
|
elif is_review_thread and package.review_thread is not None:
|
||||||
flash(gettext("A review thread already exists!"), "danger")
|
flash(gettext("An approval thread already exists!"), "danger")
|
||||||
return redirect(package.review_thread.getViewURL())
|
return redirect(package.review_thread.getViewURL())
|
||||||
|
|
||||||
elif not current_user.canOpenThreadRL():
|
elif not current_user.canOpenThreadRL():
|
||||||
|
@ -163,11 +163,11 @@ class PackageState(enum.Enum):
|
|||||||
|
|
||||||
def verb(self):
|
def verb(self):
|
||||||
if self == self.READY_FOR_REVIEW:
|
if self == self.READY_FOR_REVIEW:
|
||||||
return "Submit for Review"
|
return lazy_gettext("Submit for Approval")
|
||||||
elif self == self.APPROVED:
|
elif self == self.APPROVED:
|
||||||
return "Approve"
|
return lazy_gettext("Approve")
|
||||||
elif self == self.DELETED:
|
elif self == self.DELETED:
|
||||||
return "Delete"
|
return lazy_gettext("Delete")
|
||||||
else:
|
else:
|
||||||
return self.value
|
return self.value
|
||||||
|
|
||||||
|
@ -14,11 +14,53 @@ $("textarea.markdown").each(function() {
|
|||||||
|
|
||||||
let timeout_id = null;
|
let timeout_id = null;
|
||||||
|
|
||||||
|
function urlInserter(url) {
|
||||||
|
return (editor) => {
|
||||||
|
var cm = editor.codemirror;
|
||||||
|
var stat = getState(cm);
|
||||||
|
var options = editor.options;
|
||||||
|
_replaceSelection(cm, stat.table, `[](${url})`);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
this.easy_mde = new EasyMDE({
|
this.easy_mde = new EasyMDE({
|
||||||
element: this,
|
element: this,
|
||||||
hideIcons: ["image"],
|
hideIcons: ["image"],
|
||||||
showIcons: ["code", "table"],
|
showIcons: ["code", "table"],
|
||||||
forceSync: true,
|
forceSync: true,
|
||||||
|
toolbar: [
|
||||||
|
"bold",
|
||||||
|
"italic",
|
||||||
|
"heading",
|
||||||
|
"|",
|
||||||
|
"code",
|
||||||
|
"quote",
|
||||||
|
"unordered-list",
|
||||||
|
"ordered-list",
|
||||||
|
"|",
|
||||||
|
"link",
|
||||||
|
"table",
|
||||||
|
"|",
|
||||||
|
"preview",
|
||||||
|
"side-by-side",
|
||||||
|
"fullscreen",
|
||||||
|
"|",
|
||||||
|
"guide",
|
||||||
|
{
|
||||||
|
name: "rules",
|
||||||
|
className: "fa fa-book",
|
||||||
|
title: "others buttons",
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: "rules",
|
||||||
|
action: urlInserter("/policy_and_guidance/#2-accepted-content"),
|
||||||
|
className: "fa fa-star",
|
||||||
|
title: "2. Accepted content",
|
||||||
|
text: "2. Accepted content",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
|
],
|
||||||
previewRender: (plainText, preview) => {
|
previewRender: (plainText, preview) => {
|
||||||
if (timeout_id) {
|
if (timeout_id) {
|
||||||
clearTimeout(timeout_id);
|
clearTimeout(timeout_id);
|
||||||
|
@ -107,8 +107,8 @@
|
|||||||
{{ _("Open Thread") }}
|
{{ _("Open Thread") }}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
{{ _("Package review thread") }}:
|
{{ _("Package approval thread") }}:
|
||||||
{{ _("You can open a thread if you have a question for the reviewer or package author.") }}
|
{{ _("You can open a thread if you have a question for the approver or package author.") }}
|
||||||
<div style="clear:both;"></div>
|
<div style="clear:both;"></div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
{{ ss.title }}
|
{{ ss.title }}
|
||||||
{% if not ss.approved %}
|
{% if not ss.approved %}
|
||||||
<div class="text-muted">
|
<div class="text-muted">
|
||||||
{{ _("Awaiting review") }}
|
{{ _("Awaiting approval") }}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</a></li>
|
</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><i>{{ _("No screenshots need reviewing.") }}</i></li>
|
<li><i>{{ _("No screenshots need approval.") }}</i></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for i in range(4) %}
|
{% for i in range(4) %}
|
||||||
<li class="packagetile flex-fill"></li>
|
<li class="packagetile flex-fill"></li>
|
||||||
@ -62,7 +62,7 @@
|
|||||||
{{ p.title }} by {{ p.author.display_name }}
|
{{ p.title }} by {{ p.author.display_name }}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li class="list-group-item"><i>{{ _("No packages need reviewing.") }}</i></li>
|
<li class="list-group-item"><i>{{ _("No packages need approval.") }}</i></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -87,7 +87,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li class="list-group-item"><i>{{ _("No releases need reviewing.") }}</i></li>
|
<li class="list-group-item"><i>{{ _("No releases need approval.") }}</i></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -180,7 +180,7 @@
|
|||||||
{{ p.title }} by {{ p.author.display_name }}
|
{{ p.title }} by {{ p.author.display_name }}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li class="list-group-item"><i>{{ _("No packages need reviewing.") }}</i></li>
|
<li class="list-group-item"><i>{{ _("No packages need approval.") }}</i></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-20 00:48+0000\n"
|
"PO-Revision-Date: 2022-01-20 00:48+0000\n"
|
||||||
"Last-Translator: Wuzzy <almikes@aol.com>\n"
|
"Last-Translator: Wuzzy <almikes@aol.com>\n"
|
||||||
"Language-Team: German <https://hosted.weblate.org/projects/minetest/"
|
|
||||||
"contentdb/de/>\n"
|
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
|
"Language-Team: German "
|
||||||
|
"<https://hosted.weblate.org/projects/minetest/contentdb/de/>\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"
|
|
||||||
"X-Generator: Weblate 4.11-dev\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
|
||||||
#: app/__init__.py:102
|
#: app/__init__.py:102
|
||||||
@ -212,9 +211,11 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "Sie haben nicht die Erlaubnis, das zu tun"
|
msgstr "Sie haben nicht die Erlaubnis, das zu tun"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bitte kommentieren Sie im Review-Thema, welche Änderungen erforderlich sind"
|
"Bitte kommentieren Sie im Review-Thema, welche Änderungen erforderlich "
|
||||||
|
"sind"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
#: app/blueprints/packages/packages.py:431
|
#: app/blueprints/packages/packages.py:431
|
||||||
@ -251,7 +252,7 @@ msgstr "Autorenname"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -374,13 +375,13 @@ msgstr "Gelöschte Update-Konfiguration"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Bitte erstellen Sie nun einen ersten Release"
|
msgstr "Bitte erstellen Sie nun einen ersten Release"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Kommentar"
|
msgstr "Kommentar"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Privat"
|
msgstr "Privat"
|
||||||
|
|
||||||
@ -416,64 +417,65 @@ msgstr "Titel/Untertitel"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Titelbild"
|
msgstr "Titelbild"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "Bereits abonniert!"
|
msgstr "Bereits abonniert!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Thema abonniert"
|
msgstr "Thema abonniert"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Deabonniert!"
|
msgstr "Deabonniert!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "Bereits nicht abonniert!"
|
msgstr "Bereits nicht abonniert!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Gesperrtes Thema"
|
msgstr "Gesperrtes Thema"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Entsperrtes Thema"
|
msgstr "Entsperrtes Thema"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr "Beitrag zur Eröffnung des Themas kann nicht gelöscht werden!"
|
msgstr "Beitrag zur Eröffnung des Themas kann nicht gelöscht werden!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "Sie können dieses Thema nicht kommentieren"
|
msgstr "Sie können dieses Thema nicht kommentieren"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Bitte warten Sie, bevor Sie erneut einen Kommentar abgeben"
|
msgstr "Bitte warten Sie, bevor Sie erneut einen Kommentar abgeben"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "Der Kommentar muss zwischen 3 und 2000 Zeichen lang sein."
|
msgstr "Der Kommentar muss zwischen 3 und 2000 Zeichen lang sein."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Offenes Thema"
|
msgstr "Offenes Thema"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "Nicht möglich, dieses Paket zu finden!"
|
msgstr "Nicht möglich, dieses Paket zu finden!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr "Thema kann nicht erstellt werden!"
|
msgstr "Thema kann nicht erstellt werden!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "Es gibt bereits ein Review-Thema!"
|
msgstr "Es gibt bereits ein Review-Thema!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Bitte warten Sie, bevor Sie ein neues Thema eröffnen"
|
msgstr "Bitte warten Sie, bevor Sie ein neues Thema eröffnen"
|
||||||
|
|
||||||
@ -644,8 +646,8 @@ msgid ""
|
|||||||
"Your email address has changed. If you didn't request this, please "
|
"Your email address has changed. If you didn't request this, please "
|
||||||
"contact an administrator."
|
"contact an administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ihre E-Mail-Adresse hat sich geändert. Wenn Sie dies nicht beantragt haben, "
|
"Ihre E-Mail-Adresse hat sich geändert. Wenn Sie dies nicht beantragt "
|
||||||
"wenden Sie sich bitte an einen Administrator."
|
"haben, wenden Sie sich bitte an einen Administrator."
|
||||||
|
|
||||||
#: app/blueprints/users/account.py:377
|
#: app/blueprints/users/account.py:377
|
||||||
msgid "You may now log in"
|
msgid "You may now log in"
|
||||||
@ -668,8 +670,8 @@ msgid ""
|
|||||||
"Invalid username - must only contain A-Za-z0-9._. Consider contacting an "
|
"Invalid username - must only contain A-Za-z0-9._. Consider contacting an "
|
||||||
"admin"
|
"admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ungültiger Benutzername – darf nur A-Za-z0-9._ enthalten. Wenden Sie sich an "
|
"Ungültiger Benutzername – darf nur A-Za-z0-9._ enthalten. Wenden Sie sich"
|
||||||
"einen Administrator"
|
" an einen Administrator"
|
||||||
|
|
||||||
#: app/blueprints/users/claim.py:51
|
#: app/blueprints/users/claim.py:51
|
||||||
msgid "User has already been claimed"
|
msgid "User has already been claimed"
|
||||||
@ -690,8 +692,7 @@ msgstr "Fehler beim Versuch, auf die Foren zuzugreifen: %(message)s"
|
|||||||
|
|
||||||
#: app/blueprints/users/claim.py:96
|
#: app/blueprints/users/claim.py:96
|
||||||
msgid "Unable to get forum signature - does the user exist?"
|
msgid "Unable to get forum signature - does the user exist?"
|
||||||
msgstr ""
|
msgstr "Signatur des Forums kann nicht abgerufen werden – existiert der Benutzer?"
|
||||||
"Signatur des Forums kann nicht abgerufen werden – existiert der Benutzer?"
|
|
||||||
|
|
||||||
#: app/blueprints/users/claim.py:111
|
#: app/blueprints/users/claim.py:111
|
||||||
msgid "Unable to login as user"
|
msgid "Unable to login as user"
|
||||||
@ -854,8 +855,8 @@ msgid ""
|
|||||||
"Name can only contain lower case letters (a-z), digits (0-9), and "
|
"Name can only contain lower case letters (a-z), digits (0-9), and "
|
||||||
"underscores (_)"
|
"underscores (_)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Namen dürfen nur Kleinbuchstaben (a-z), Ziffern (0-9) und Unterstriche (_) "
|
"Namen dürfen nur Kleinbuchstaben (a-z), Ziffern (0-9) und Unterstriche "
|
||||||
"enthalten"
|
"(_) enthalten"
|
||||||
|
|
||||||
#: app/logic/packages.py:107
|
#: app/logic/packages.py:107
|
||||||
msgid "You do not have permission to edit this package"
|
msgid "You do not have permission to edit this package"
|
||||||
@ -888,11 +889,11 @@ msgstr ""
|
|||||||
"Ungültiger Commit-Hash; es muss eine 40 Zeichen lange Hexadezimal-"
|
"Ungültiger Commit-Hash; es muss eine 40 Zeichen lange Hexadezimal-"
|
||||||
"Zeichenkette sein"
|
"Zeichenkette sein"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr "Zu viele Anfragen, bitte warten Sie, bevor Sie es erneut versuchen"
|
msgstr "Zu viele Anfragen, bitte warten Sie, bevor Sie es erneut versuchen"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr "eine PNG- oder JPG-Bilddatei"
|
msgstr "eine PNG- oder JPG-Bilddatei"
|
||||||
|
|
||||||
@ -929,6 +930,25 @@ msgstr "Spiele"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr "Texturenpakete"
|
msgstr "Texturenpakete"
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr "Warte auf Genehmigung."
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Genehmigt"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Löschen"
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr "Seite nicht gefunden"
|
msgstr "Seite nicht gefunden"
|
||||||
@ -1205,15 +1225,6 @@ msgstr "Bearbeiten – %(name)s"
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr "API-Token erstellen"
|
msgstr "API-Token erstellen"
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr "Löschen"
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr "API-Tokens ermöglichen es Skripten, in Ihrem Namen zu handeln."
|
msgstr "API-Tokens ermöglichen es Skripten, in Ihrem Namen zu handeln."
|
||||||
@ -1346,8 +1357,8 @@ msgstr "Falls nicht Sie das waren, können sie diese E-Mail löschen."
|
|||||||
#: app/templates/emails/verify.html:15
|
#: app/templates/emails/verify.html:15
|
||||||
msgid "If this was you, then please click this link to confirm the address:"
|
msgid "If this was you, then please click this link to confirm the address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Falls Sie das waren, klicken Sie bitte auf den folgenden Link, um die E-Mail-"
|
"Falls Sie das waren, klicken Sie bitte auf den folgenden Link, um die E"
|
||||||
"Adresse zu bestätigen:"
|
"-Mail-Adresse zu bestätigen:"
|
||||||
|
|
||||||
#: app/templates/emails/verify.html:19
|
#: app/templates/emails/verify.html:19
|
||||||
msgid "Confirm Email Address"
|
msgid "Confirm Email Address"
|
||||||
@ -1363,24 +1374,24 @@ msgid ""
|
|||||||
"You are receiving this email because someone (hopefully you) entered your"
|
"You are receiving this email because someone (hopefully you) entered your"
|
||||||
" email address as a user's email."
|
" email address as a user's email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-Adresse "
|
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-"
|
||||||
"als Benutzer-E-Mail hinterlegt hat."
|
"Adresse als Benutzer-E-Mail hinterlegt hat."
|
||||||
|
|
||||||
#: app/templates/emails/verify_unsubscribe.html:9
|
#: app/templates/emails/verify_unsubscribe.html:9
|
||||||
msgid ""
|
msgid ""
|
||||||
"We're sorry to see you go. You just need to do one more thing before your"
|
"We're sorry to see you go. You just need to do one more thing before your"
|
||||||
" email is blacklisted."
|
" email is blacklisted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Es tut uns leid, Sie gehen zu sehen. Sie müssen nur noch eine Sache machen, "
|
"Es tut uns leid, Sie gehen zu sehen. Sie müssen nur noch eine Sache "
|
||||||
"bevor Ihre E-Mail-Addresse auf die schwarze Liste gesetzt wird."
|
"machen, bevor Ihre E-Mail-Addresse auf die schwarze Liste gesetzt wird."
|
||||||
|
|
||||||
#: app/templates/emails/verify_unsubscribe.html:23
|
#: app/templates/emails/verify_unsubscribe.html:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"You are receiving this email because someone (hopefully you) entered your"
|
"You are receiving this email because someone (hopefully you) entered your"
|
||||||
" email address in the unsubscribe form."
|
" email address in the unsubscribe form."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-Adresse "
|
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-"
|
||||||
"im Abmelden-Formular eingegeben hat."
|
"Adresse im Abmelden-Formular eingegeben hat."
|
||||||
|
|
||||||
#: app/templates/macros/audit_log.html:13
|
#: app/templates/macros/audit_log.html:13
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -1420,7 +1431,8 @@ msgstr "Releases bearbeiten"
|
|||||||
#: app/templates/macros/package_approval.html:29
|
#: app/templates/macros/package_approval.html:29
|
||||||
msgid "You need to create a release before this package can be approved."
|
msgid "You need to create a release before this package can be approved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bevor dieses Paket genehmigt werden kann, müssen Sie einen Release erstellen."
|
"Bevor dieses Paket genehmigt werden kann, müssen Sie einen Release "
|
||||||
|
"erstellen."
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:31
|
#: app/templates/macros/package_approval.html:31
|
||||||
msgid "A release is required before this package can be approved."
|
msgid "A release is required before this package can be approved."
|
||||||
@ -1464,8 +1476,8 @@ msgstr "Bitte warten Sie, bis das Paket genehmigt wurde."
|
|||||||
#: app/templates/macros/package_approval.html:65
|
#: app/templates/macros/package_approval.html:65
|
||||||
msgid "You can now submit this package for approval if you're ready."
|
msgid "You can now submit this package for approval if you're ready."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie können nun dieses Paket für eine Genehmigung einreichen, wenn Sie bereit "
|
"Sie können nun dieses Paket für eine Genehmigung einreichen, wenn Sie "
|
||||||
"sind."
|
"bereit sind."
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:67
|
#: app/templates/macros/package_approval.html:67
|
||||||
msgid "This package can be submitted for approval when ready."
|
msgid "This package can be submitted for approval when ready."
|
||||||
@ -1483,20 +1495,22 @@ msgstr ""
|
|||||||
#, python-format
|
#, python-format
|
||||||
msgid "Please make sure that this package has the right to the names %(names)s"
|
msgid "Please make sure that this package has the right to the names %(names)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bitte stellen Sie sicher, dass dieses Paket Rechte für die Namen %(names)s "
|
"Bitte stellen Sie sicher, dass dieses Paket Rechte für die Namen "
|
||||||
"hat"
|
"%(names)s hat"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
#, fuzzy
|
||||||
|
msgid "Package approval thread"
|
||||||
msgstr "Paket-Review-Thema"
|
msgstr "Paket-Review-Thema"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie können ein Thema eröffnen, wenn Sie eine Frage an den Rezensenten oder "
|
"Sie können ein Thema eröffnen, wenn Sie eine Frage an den Rezensenten "
|
||||||
"Paketautoren haben."
|
"oder Paketautoren haben."
|
||||||
|
|
||||||
#: app/templates/macros/packagegridtile.html:25
|
#: app/templates/macros/packagegridtile.html:25
|
||||||
msgid "<b>Warning:</b> Non-free code and media."
|
msgid "<b>Warning:</b> Non-free code and media."
|
||||||
@ -1686,8 +1700,7 @@ msgstr "Bereitgestellt von"
|
|||||||
|
|
||||||
#: app/templates/metapackages/view.html:17
|
#: app/templates/metapackages/view.html:17
|
||||||
msgid "Unfortunately, this isn't on ContentDB yet! Here's some forum topic(s):"
|
msgid "Unfortunately, this isn't on ContentDB yet! Here's some forum topic(s):"
|
||||||
msgstr ""
|
msgstr "Leider ist dies noch nicht auf ContentDB! Hier sind ein paar Forenthemen:"
|
||||||
"Leider ist dies noch nicht auf ContentDB! Hier sind ein paar Forenthemen:"
|
|
||||||
|
|
||||||
#: app/templates/metapackages/view.html:24
|
#: app/templates/metapackages/view.html:24
|
||||||
#: app/templates/packages/similar.html:38 app/templates/packages/view.html:351
|
#: app/templates/packages/similar.html:38 app/templates/packages/view.html:351
|
||||||
@ -1838,14 +1851,14 @@ msgid ""
|
|||||||
"Please choose 'Work in Progress' if your package is unstable, and "
|
"Please choose 'Work in Progress' if your package is unstable, and "
|
||||||
"shouldn't be recommended to all players"
|
"shouldn't be recommended to all players"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bitte wählen Sie „In Arbeit“, wenn Ihr Paket instabil ist und nicht für alle "
|
"Bitte wählen Sie „In Arbeit“, wenn Ihr Paket instabil ist und nicht für "
|
||||||
"Spieler empfohlen werden sollte"
|
"alle Spieler empfohlen werden sollte"
|
||||||
|
|
||||||
#: app/templates/packages/create_edit.html:89
|
#: app/templates/packages/create_edit.html:89
|
||||||
msgid "If there is no media, set the Media License to the same as the License."
|
msgid "If there is no media, set the Media License to the same as the License."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Setzen Sie die Medienlizenz auf die gleiche Lizenz wie die normale Lizenz, "
|
"Setzen Sie die Medienlizenz auf die gleiche Lizenz wie die normale "
|
||||||
"sofern keine Medien vorhanden sind."
|
"Lizenz, sofern keine Medien vorhanden sind."
|
||||||
|
|
||||||
#: app/templates/packages/create_edit.html:95
|
#: app/templates/packages/create_edit.html:95
|
||||||
msgid "Repository and Links"
|
msgid "Repository and Links"
|
||||||
@ -1897,16 +1910,16 @@ msgid ""
|
|||||||
"releases and screenshots, and read private threads."
|
"releases and screenshots, and read private threads."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Abhängig von ihrem Rang werden sie in der Lage sein, das Paket zu "
|
"Abhängig von ihrem Rang werden sie in der Lage sein, das Paket zu "
|
||||||
"bearbeiten, Releases und Bildschirmfotos zu erstellen, und private Themen zu "
|
"bearbeiten, Releases und Bildschirmfotos zu erstellen, und private Themen"
|
||||||
"lesen."
|
" zu lesen."
|
||||||
|
|
||||||
#: app/templates/packages/edit_maintainers.html:13
|
#: app/templates/packages/edit_maintainers.html:13
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maintainers cannot add or remove other maintainers, but can remove "
|
"Maintainers cannot add or remove other maintainers, but can remove "
|
||||||
"themselves."
|
"themselves."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Betreuer können keine anderen Betreuer hinzufügen oder entfernen, aber sie "
|
"Betreuer können keine anderen Betreuer hinzufügen oder entfernen, aber "
|
||||||
"können sich selbst entfernen."
|
"sie können sich selbst entfernen."
|
||||||
|
|
||||||
#: app/templates/packages/list.html:21
|
#: app/templates/packages/list.html:21
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -1957,8 +1970,8 @@ msgid ""
|
|||||||
"\t\t\tfor max as this does not make sense - you can't predict the future."
|
"\t\t\tfor max as this does not make sense - you can't predict the future."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie können nicht die älteste Version für min oder die neueste Version\n"
|
"Sie können nicht die älteste Version für min oder die neueste Version\n"
|
||||||
"\t\t\tfür max wählen, da dies keinen Sinn macht – man kann die Zukunft nicht "
|
"\t\t\tfür max wählen, da dies keinen Sinn macht – man kann die Zukunft "
|
||||||
"vorhersagen."
|
"nicht vorhersagen."
|
||||||
|
|
||||||
#: app/templates/packages/release_bulk_change.html:38
|
#: app/templates/packages/release_bulk_change.html:38
|
||||||
#: app/templates/packages/release_edit.html:61
|
#: app/templates/packages/release_edit.html:61
|
||||||
@ -1994,8 +2007,8 @@ msgid ""
|
|||||||
"\t\t\tThis release will be hidden to clients outside of that range. "
|
"\t\t\tThis release will be hidden to clients outside of that range. "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Legen Sie die minimal und maximal unterstützten Minetest-Versionen fest.\n"
|
"Legen Sie die minimal und maximal unterstützten Minetest-Versionen fest.\n"
|
||||||
"\t\t\tDieser Release wird für Clients, die außerhalb dieses Bereichs liegen, "
|
"\t\t\tDieser Release wird für Clients, die außerhalb dieses Bereichs "
|
||||||
"nicht angezeigt. "
|
"liegen, nicht angezeigt. "
|
||||||
|
|
||||||
#: app/templates/packages/release_edit.html:63
|
#: app/templates/packages/release_edit.html:63
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -2043,8 +2056,8 @@ msgstr "Sie haben die Git-Update-Benachrichtigungen aktiviert."
|
|||||||
#: app/templates/packages/release_new.html:17
|
#: app/templates/packages/release_new.html:17
|
||||||
msgid "You can enable automatic updates in the update settings."
|
msgid "You can enable automatic updates in the update settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie können automatische Aktualisierungen in den Aktualisierungseinstellungen "
|
"Sie können automatische Aktualisierungen in den "
|
||||||
"aktivieren."
|
"Aktualisierungseinstellungen aktivieren."
|
||||||
|
|
||||||
#: app/templates/packages/release_new.html:23
|
#: app/templates/packages/release_new.html:23
|
||||||
msgid "Set up"
|
msgid "Set up"
|
||||||
@ -2069,8 +2082,8 @@ msgid ""
|
|||||||
"Using Git would allow you to create releases automatically when you push "
|
"Using Git would allow you to create releases automatically when you push "
|
||||||
"code or tags."
|
"code or tags."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Mit Git können Sie Releases automatisch erstellen, wenn Sie Code oder Tags "
|
"Mit Git können Sie Releases automatisch erstellen, wenn Sie Code oder "
|
||||||
"pushen."
|
"Tags pushen."
|
||||||
|
|
||||||
#: app/templates/packages/release_new.html:40
|
#: app/templates/packages/release_new.html:40
|
||||||
msgid "1. Name release"
|
msgid "1. Name release"
|
||||||
@ -2090,8 +2103,8 @@ msgid ""
|
|||||||
"and Releases Guide</a> for\n"
|
"and Releases Guide</a> for\n"
|
||||||
"\t\t\ttips on customising releases."
|
"\t\t\ttips on customising releases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Werfen Sie einen Blick in das <a href='/help/package_config/'>Handbuch zur "
|
"Werfen Sie einen Blick in das <a href='/help/package_config/'>Handbuch "
|
||||||
"Paketkonfiguration und Releases</a> für\n"
|
"zur Paketkonfiguration und Releases</a> für\n"
|
||||||
"\t\t\tTipps zum Anpassen von Releases."
|
"\t\t\tTipps zum Anpassen von Releases."
|
||||||
|
|
||||||
#: app/templates/packages/release_new.html:61
|
#: app/templates/packages/release_new.html:61
|
||||||
@ -2128,8 +2141,8 @@ msgid ""
|
|||||||
" cycle, as Minetest needs them to check for updates."
|
" cycle, as Minetest needs them to check for updates."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie müssen Releases erstellen, auch wenn Sie einen Rolling-Release-"
|
"Sie müssen Releases erstellen, auch wenn Sie einen Rolling-Release-"
|
||||||
"Entwicklungszyklus verwenden, da Minetest diese benötigt, um nach Updates zu "
|
"Entwicklungszyklus verwenden, da Minetest diese benötigt, um nach Updates"
|
||||||
"suchen."
|
" zu suchen."
|
||||||
|
|
||||||
#: app/templates/packages/release_wizard.html:20
|
#: app/templates/packages/release_wizard.html:20
|
||||||
#: app/templates/packages/update_config.html:12
|
#: app/templates/packages/update_config.html:12
|
||||||
@ -2270,8 +2283,8 @@ msgid ""
|
|||||||
"removing its effect on the package's rating."
|
"removing its effect on the package's rating."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dadurch wird die Rezension in ein Thema umgewandelt, wobei die Kommentare"
|
"Dadurch wird die Rezension in ein Thema umgewandelt, wobei die Kommentare"
|
||||||
"erhalten bleiben, aber ihre Wirkung auf die Bewertung des Pakets aufgehoben "
|
" erhalten bleiben, aber ihre Wirkung auf die Bewertung des Pakets "
|
||||||
"wird."
|
"aufgehoben wird."
|
||||||
|
|
||||||
#: app/templates/packages/review_votes.html:4
|
#: app/templates/packages/review_votes.html:4
|
||||||
#: app/templates/packages/view.html:287
|
#: app/templates/packages/view.html:287
|
||||||
@ -2299,13 +2312,12 @@ msgstr "Bild hinzufügen"
|
|||||||
|
|
||||||
#: app/templates/packages/screenshots.html:17
|
#: app/templates/packages/screenshots.html:17
|
||||||
msgid "Topmost screenshot will be used as the package thumbnail."
|
msgid "Topmost screenshot will be used as the package thumbnail."
|
||||||
msgstr ""
|
msgstr "Das oberste Bildschirmfoto wird als Vorschaubild für das Paket verwendet."
|
||||||
"Das oberste Bildschirmfoto wird als Vorschaubild für das Paket verwendet."
|
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
#, fuzzy
|
||||||
msgid "Awaiting review"
|
msgid "Awaiting approval"
|
||||||
msgstr "Review steht noch aus"
|
msgstr "Warte auf Genehmigung."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
msgid "No screenshots."
|
msgid "No screenshots."
|
||||||
@ -2365,8 +2377,8 @@ msgstr ""
|
|||||||
#: app/templates/packages/update_config.html:17
|
#: app/templates/packages/update_config.html:17
|
||||||
msgid "You should consider using webhooks or the API for faster releases."
|
msgid "You should consider using webhooks or the API for faster releases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie sollten die Verwendung von Webhooks oder der API für schnellere Releases "
|
"Sie sollten die Verwendung von Webhooks oder der API für schnellere "
|
||||||
"in Betracht ziehen."
|
"Releases in Betracht ziehen."
|
||||||
|
|
||||||
#: app/templates/packages/update_config.html:18
|
#: app/templates/packages/update_config.html:18
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -2374,8 +2386,8 @@ msgid ""
|
|||||||
"you've already created it manually or using webhooks/the API."
|
"you've already created it manually or using webhooks/the API."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Die Git-Update-Erkennung ist klug genug, um einen Release nicht erneut zu"
|
"Die Git-Update-Erkennung ist klug genug, um einen Release nicht erneut zu"
|
||||||
"erstellen, wenn Sie diese bereits manuell oder über Webhooks bzw. die API "
|
" erstellen, wenn Sie diese bereits manuell oder über Webhooks bzw. die "
|
||||||
"erstellt haben."
|
"API erstellt haben."
|
||||||
|
|
||||||
#: app/templates/packages/update_config.html:28
|
#: app/templates/packages/update_config.html:28
|
||||||
msgid "The trigger is the event that triggers the action."
|
msgid "The trigger is the event that triggers the action."
|
||||||
@ -2457,8 +2469,12 @@ msgid ""
|
|||||||
"This thread is only visible to the package owner and users of Approver "
|
"This thread is only visible to the package owner and users of Approver "
|
||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dieses Thema ist nur für den Paketeigentümer und Benutzer mit dem Rang eines "
|
"Dieses Thema ist nur für den Paketeigentümer und Benutzer mit dem Rang "
|
||||||
"Genehmigers oder höher sichtbar."
|
"eines Genehmigers oder höher sichtbar."
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr "Review steht noch aus"
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
@ -2653,11 +2669,13 @@ msgid "Approve All"
|
|||||||
msgstr "Alle genehmigen"
|
msgstr "Alle genehmigen"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No screenshots need approval."
|
||||||
msgstr "Keine Bildschirmfotos brauchen eine Überprüfung."
|
msgstr "Keine Bildschirmfotos brauchen eine Überprüfung."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No packages need approval."
|
||||||
msgstr "Keine Pakete brauchen eine Überprüfung."
|
msgstr "Keine Pakete brauchen eine Überprüfung."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2665,7 +2683,8 @@ msgid "Importing"
|
|||||||
msgstr "Importieren"
|
msgstr "Importieren"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No releases need approval."
|
||||||
msgstr "Keine Releases brauchen eine Überprüfung."
|
msgstr "Keine Releases brauchen eine Überprüfung."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -2801,8 +2820,8 @@ msgid ""
|
|||||||
"Consider changing the update settings to create releases automatically "
|
"Consider changing the update settings to create releases automatically "
|
||||||
"instead."
|
"instead."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Erwägen Sie, die Aktualisierungseinstellungen so zu ändern, dass stattdessen "
|
"Erwägen Sie, die Aktualisierungseinstellungen so zu ändern, dass "
|
||||||
"automatisch Releases erstellt werden."
|
"stattdessen automatisch Releases erstellt werden."
|
||||||
|
|
||||||
#: app/templates/todo/user.html:61
|
#: app/templates/todo/user.html:61
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -2811,16 +2830,16 @@ msgid ""
|
|||||||
"'Update Settings'."
|
"'Update Settings'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Anstatt Pakete als veraltet zu markieren, können Sie automatisch Releases"
|
"Anstatt Pakete als veraltet zu markieren, können Sie automatisch Releases"
|
||||||
"erstellen lassen, wenn neue Commits oder neue Tags mit Git gepusht werden, "
|
" erstellen lassen, wenn neue Commits oder neue Tags mit Git gepusht "
|
||||||
"indem Sie auf „Einstellungen aktualisieren“ klicken."
|
"werden, indem Sie auf „Einstellungen aktualisieren“ klicken."
|
||||||
|
|
||||||
#: app/templates/todo/user.html:63
|
#: app/templates/todo/user.html:63
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove a package from below, create a release or change the update "
|
"To remove a package from below, create a release or change the update "
|
||||||
"settings."
|
"settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Um ein Paket von unten zu entfernen, erstellen Sie ein neues Releases oder "
|
"Um ein Paket von unten zu entfernen, erstellen Sie ein neues Releases "
|
||||||
"ändern Sie die Aktualisierungseinstellungen."
|
"oder ändern Sie die Aktualisierungseinstellungen."
|
||||||
|
|
||||||
#: app/templates/todo/user.html:72
|
#: app/templates/todo/user.html:72
|
||||||
msgid "See All"
|
msgid "See All"
|
||||||
@ -2941,9 +2960,9 @@ msgid ""
|
|||||||
"Your email is needed to recover your account if you forget your password "
|
"Your email is needed to recover your account if you forget your password "
|
||||||
"and to send (configurable) notifications. "
|
"and to send (configurable) notifications. "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ihre E-Mail-Adresse wird benötigt, um Ihr Konto wiederherzustellen, wenn Sie "
|
"Ihre E-Mail-Adresse wird benötigt, um Ihr Konto wiederherzustellen, wenn "
|
||||||
"Ihr Passwort vergessen haben, und um (konfigurierbare) Benachrichtigungen zu "
|
"Sie Ihr Passwort vergessen haben, und um (konfigurierbare) "
|
||||||
"senden. "
|
"Benachrichtigungen zu senden. "
|
||||||
|
|
||||||
#: app/templates/users/change_set_password.html:29
|
#: app/templates/users/change_set_password.html:29
|
||||||
#: app/templates/users/register.html:25
|
#: app/templates/users/register.html:25
|
||||||
@ -3007,8 +3026,8 @@ msgid ""
|
|||||||
"You'll need to use prove that you have access to your forum account using"
|
"You'll need to use prove that you have access to your forum account using"
|
||||||
" one of the options below."
|
" one of the options below."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sie müssen nachweisen, dass Sie Zugang zu Ihrem Forenkonto haben, indem Sie "
|
"Sie müssen nachweisen, dass Sie Zugang zu Ihrem Forenkonto haben, indem "
|
||||||
"eine der folgenden Optionen verwenden."
|
"Sie eine der folgenden Optionen verwenden."
|
||||||
|
|
||||||
#: app/templates/users/claim_forums.html:14
|
#: app/templates/users/claim_forums.html:14
|
||||||
msgid "This is so ContentDB can link your account to your forum account."
|
msgid "This is so ContentDB can link your account to your forum account."
|
||||||
@ -3052,8 +3071,8 @@ msgid ""
|
|||||||
"Log into the forum and <a "
|
"Log into the forum and <a "
|
||||||
"href='https://forum.minetest.net/ucp.php?i=173'>do that here</a>."
|
"href='https://forum.minetest.net/ucp.php?i=173'>do that here</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Loggen Sie sich auf dem Forum ein und <a href='https://forum.minetest.net/"
|
"Loggen Sie sich auf dem Forum ein und <a "
|
||||||
"ucp.php?i=173'>tun Sie das hier</a>."
|
"href='https://forum.minetest.net/ucp.php?i=173'>tun Sie das hier</a>."
|
||||||
|
|
||||||
#: app/templates/users/claim_forums.html:47
|
#: app/templates/users/claim_forums.html:47
|
||||||
msgid "Next: log in with GitHub"
|
msgid "Next: log in with GitHub"
|
||||||
@ -3239,8 +3258,8 @@ msgstr "Profil-Informationen"
|
|||||||
#: app/templates/users/profile_edit.html:52
|
#: app/templates/users/profile_edit.html:52
|
||||||
msgid "Pretending to be another user is grounds for a permanent ban"
|
msgid "Pretending to be another user is grounds for a permanent ban"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sich als ein anderer Benutzer auszugeben, ist ein Grund für eine permanente "
|
"Sich als ein anderer Benutzer auszugeben, ist ein Grund für eine "
|
||||||
"Sperre"
|
"permanente Sperre"
|
||||||
|
|
||||||
#: app/templates/users/register.html:17
|
#: app/templates/users/register.html:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -3350,3 +3369,4 @@ msgstr ""
|
|||||||
|
|
||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-17 15:22+0000\n"
|
"PO-Revision-Date: 2022-01-17 15:22+0000\n"
|
||||||
"Last-Translator: Joaquín Villalba <joaco-mono@hotmail.com>\n"
|
"Last-Translator: Joaquín Villalba <joaco-mono@hotmail.com>\n"
|
||||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/minetest/"
|
|
||||||
"contentdb/es/>\n"
|
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
|
"Language-Team: Spanish "
|
||||||
|
"<https://hosted.weblate.org/projects/minetest/contentdb/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"
|
|
||||||
"X-Generator: Weblate 4.10.1\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
|
||||||
#: app/__init__.py:102
|
#: app/__init__.py:102
|
||||||
@ -212,7 +211,8 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "No tienes permiso para hacer eso"
|
msgstr "No tienes permiso para hacer eso"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr "Por favor, comente qué cambios son necesarios en el hilo de revisión"
|
msgstr "Por favor, comente qué cambios son necesarios en el hilo de revisión"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -252,7 +252,7 @@ msgstr "Nombre del autor"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -375,13 +375,13 @@ msgstr "Configuración de actualización eliminada"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Ahora, crea un lanzamiento inicial"
|
msgstr "Ahora, crea un lanzamiento inicial"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Comentar"
|
msgstr "Comentar"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Privado"
|
msgstr "Privado"
|
||||||
|
|
||||||
@ -417,64 +417,65 @@ msgstr "Título"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Imagen de portada"
|
msgstr "Imagen de portada"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "¡Ya está suscrito!"
|
msgstr "¡Ya está suscrito!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Suscrito al hilo"
|
msgstr "Suscrito al hilo"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Suscripción cancelada"
|
msgstr "Suscripción cancelada"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "¡Ya no estás suscrito!"
|
msgstr "¡Ya no estás suscrito!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Hilo bloqueado"
|
msgstr "Hilo bloqueado"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Hilo desbloqueado"
|
msgstr "Hilo desbloqueado"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "No puede comentar en este hilo"
|
msgstr "No puede comentar en este hilo"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Por favor espere para comentar de nuevo"
|
msgstr "Por favor espere para comentar de nuevo"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "El comentario debe tener entre 3 y 2000 caracteres."
|
msgstr "El comentario debe tener entre 3 y 2000 caracteres."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Crear Hilo"
|
msgstr "Crear Hilo"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "¡No se ha podido encontrar ese paquete!"
|
msgstr "¡No se ha podido encontrar ese paquete!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "¡Ya existe un hilo de evaluación!"
|
msgstr "¡Ya existe un hilo de evaluación!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Por favor espere antes de crear otro hilo"
|
msgstr "Por favor espere antes de crear otro hilo"
|
||||||
|
|
||||||
@ -558,12 +559,14 @@ msgstr "Respuesta del captcha incorrecta"
|
|||||||
#: app/blueprints/users/account.py:125
|
#: app/blueprints/users/account.py:125
|
||||||
msgid "An account already exists for that username but hasn't been claimed yet."
|
msgid "An account already exists for that username but hasn't been claimed yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ya existe una cuenta con ese nombre de usuario pero aún no ha sido reclamada."
|
"Ya existe una cuenta con ese nombre de usuario pero aún no ha sido "
|
||||||
|
"reclamada."
|
||||||
|
|
||||||
#: app/blueprints/users/account.py:128 app/blueprints/users/account.py:135
|
#: app/blueprints/users/account.py:128 app/blueprints/users/account.py:135
|
||||||
msgid "That username/display name is already in use, please choose another."
|
msgid "That username/display name is already in use, please choose another."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ese nombre de usuario/nombre a mostrar ya está en uso, por favor elija otro."
|
"Ese nombre de usuario/nombre a mostrar ya está en uso, por favor elija "
|
||||||
|
"otro."
|
||||||
|
|
||||||
#: app/blueprints/users/account.py:140 app/blueprints/users/account.py:267
|
#: app/blueprints/users/account.py:140 app/blueprints/users/account.py:267
|
||||||
msgid "Email already in use"
|
msgid "Email already in use"
|
||||||
@ -575,8 +578,9 @@ msgid ""
|
|||||||
"We were unable to create the account as the email is already in use by "
|
"We were unable to create the account as the email is already in use by "
|
||||||
"%(display_name)s. Try a different email address."
|
"%(display_name)s. Try a different email address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"No hemos podido crear la cuenta porque el correo electrónico ya está en uso "
|
"No hemos podido crear la cuenta porque el correo electrónico ya está en "
|
||||||
"por %(display_name)s. Pruebe con otra dirección de correo electrónico."
|
"uso por %(display_name)s. Pruebe con otra dirección de correo "
|
||||||
|
"electrónico."
|
||||||
|
|
||||||
#: app/blueprints/users/account.py:145 app/blueprints/users/account.py:262
|
#: app/blueprints/users/account.py:145 app/blueprints/users/account.py:262
|
||||||
#: app/blueprints/users/settings.py:133
|
#: app/blueprints/users/settings.py:133
|
||||||
@ -658,16 +662,16 @@ msgid ""
|
|||||||
"That email is now blacklisted. Please contact an admin if you wish to "
|
"That email is now blacklisted. Please contact an admin if you wish to "
|
||||||
"undo this."
|
"undo this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ese correo electrónico está ahora en la lista negra. Por favor contacte con "
|
"Ese correo electrónico está ahora en la lista negra. Por favor contacte "
|
||||||
"un administrador si desea deshacer esto."
|
"con un administrador si desea deshacer esto."
|
||||||
|
|
||||||
#: app/blueprints/users/claim.py:46 app/blueprints/users/claim.py:71
|
#: app/blueprints/users/claim.py:46 app/blueprints/users/claim.py:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Invalid username - must only contain A-Za-z0-9._. Consider contacting an "
|
"Invalid username - must only contain A-Za-z0-9._. Consider contacting an "
|
||||||
"admin"
|
"admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nombre de usuario inválido - debe contener únicamente A-Za-z0-9._. Considere "
|
"Nombre de usuario inválido - debe contener únicamente A-Za-z0-9._. "
|
||||||
"contactar con un administrador"
|
"Considere contactar con un administrador"
|
||||||
|
|
||||||
#: app/blueprints/users/claim.py:51
|
#: app/blueprints/users/claim.py:51
|
||||||
msgid "User has already been claimed"
|
msgid "User has already been claimed"
|
||||||
@ -875,11 +879,11 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -918,6 +922,24 @@ msgstr "Juegos"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr "Paquetes de texturas"
|
msgstr "Paquetes de texturas"
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Aprobado"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Borrar"
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1192,15 +1214,6 @@ msgstr "Editar - %(name)s"
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr "Crear token de API"
|
msgstr "Crear token de API"
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr "Borrar"
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr "Los tokens de la API permiten que los scripts actúen en tu nombre."
|
msgstr "Los tokens de la API permiten que los scripts actúen en tu nombre."
|
||||||
@ -1464,12 +1477,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2196,8 +2209,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2340,6 +2352,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2525,11 +2541,12 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
#, fuzzy
|
||||||
msgstr ""
|
msgid "No screenshots need approval."
|
||||||
|
msgstr "Sin capturas de pantalla."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2537,7 +2554,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3209,3 +3226,22 @@ msgstr ""
|
|||||||
|
|
||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can open a thread if you "
|
||||||
|
#~ "have a question for the reviewer "
|
||||||
|
#~ "or package author."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-19 07:54+0000\n"
|
"PO-Revision-Date: 2022-01-19 07:54+0000\n"
|
||||||
"Last-Translator: AFCMS <afcm.contact@gmail.com>\n"
|
"Last-Translator: AFCMS <afcm.contact@gmail.com>\n"
|
||||||
"Language-Team: French <https://hosted.weblate.org/projects/minetest/"
|
|
||||||
"contentdb/fr/>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
"Language-Team: French "
|
||||||
|
"<https://hosted.weblate.org/projects/minetest/contentdb/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"
|
|
||||||
"X-Generator: Weblate 4.11-dev\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
|
||||||
#: app/__init__.py:102
|
#: app/__init__.py:102
|
||||||
@ -216,7 +215,8 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "Vous n'avez pas la permission de faire cela"
|
msgstr "Vous n'avez pas la permission de faire cela"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr "Veuillez spécifier les changements nécessaires dans le fil de discussion"
|
msgstr "Veuillez spécifier les changements nécessaires dans le fil de discussion"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -256,7 +256,7 @@ msgstr "Nom de l'auteur"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -379,13 +379,13 @@ msgstr "Configuration de mise à jour supprimée"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Maintenant, veuillez créer une version initiale"
|
msgstr "Maintenant, veuillez créer une version initiale"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Commentaires"
|
msgstr "Commentaires"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Privée"
|
msgstr "Privée"
|
||||||
|
|
||||||
@ -421,64 +421,65 @@ msgstr "Titre/légende"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Image de couverture"
|
msgstr "Image de couverture"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "Déjà abonné !"
|
msgstr "Déjà abonné !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Abonné au fil de discussion"
|
msgstr "Abonné au fil de discussion"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Désabonné !"
|
msgstr "Désabonné !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "Déjà non abonné !"
|
msgstr "Déjà non abonné !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Fil verrouillé"
|
msgstr "Fil verrouillé"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Fil déverrouillé"
|
msgstr "Fil déverrouillé"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr "Impossible de supprimer le premier message d'un fil !"
|
msgstr "Impossible de supprimer le premier message d'un fil !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "Vous ne pouvez pas commenter ce fil de discussion"
|
msgstr "Vous ne pouvez pas commenter ce fil de discussion"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Veuillez attendre avant de commenter à nouveau"
|
msgstr "Veuillez attendre avant de commenter à nouveau"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "Un commentaire doit comporter entre 3 et 2000 caractères."
|
msgstr "Un commentaire doit comporter entre 3 et 2000 caractères."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Ouvrir un fil de discussion"
|
msgstr "Ouvrir un fil de discussion"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "Impossible de trouver ce paquet !"
|
msgstr "Impossible de trouver ce paquet !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr "Impossible de créer le fil de discussion !"
|
msgstr "Impossible de créer le fil de discussion !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "Un fil d'approbation existe déjà !"
|
msgstr "Un fil d'approbation existe déjà !"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Veuillez attendre avant de commenter à nouveau"
|
msgstr "Veuillez attendre avant de commenter à nouveau"
|
||||||
|
|
||||||
@ -695,7 +696,8 @@ msgstr "Erreur lors de l'accès au forum : %(message)s"
|
|||||||
#: app/blueprints/users/claim.py:96
|
#: app/blueprints/users/claim.py:96
|
||||||
msgid "Unable to get forum signature - does the user exist?"
|
msgid "Unable to get forum signature - does the user exist?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Impossible d'obtenir la signature du forum, est-ce que l'utilisateur existe ?"
|
"Impossible d'obtenir la signature du forum, est-ce que l'utilisateur "
|
||||||
|
"existe ?"
|
||||||
|
|
||||||
#: app/blueprints/users/claim.py:111
|
#: app/blueprints/users/claim.py:111
|
||||||
msgid "Unable to login as user"
|
msgid "Unable to login as user"
|
||||||
@ -854,8 +856,8 @@ msgid ""
|
|||||||
"Name can only contain lower case letters (a-z), digits (0-9), and "
|
"Name can only contain lower case letters (a-z), digits (0-9), and "
|
||||||
"underscores (_)"
|
"underscores (_)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lettres minuscules (a-z), chiffres (0-9) et caractères de soulignement (_) "
|
"Lettres minuscules (a-z), chiffres (0-9) et caractères de soulignement "
|
||||||
"uniquement"
|
"(_) uniquement"
|
||||||
|
|
||||||
#: app/logic/packages.py:107
|
#: app/logic/packages.py:107
|
||||||
msgid "You do not have permission to edit this package"
|
msgid "You do not have permission to edit this package"
|
||||||
@ -884,11 +886,11 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr "Trop de requêtes, veuillez attendre avant de réessayer"
|
msgstr "Trop de requêtes, veuillez attendre avant de réessayer"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr "une image PNG ou JPG"
|
msgstr "une image PNG ou JPG"
|
||||||
|
|
||||||
@ -925,6 +927,25 @@ msgstr "Jeux"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr "Packs de textures"
|
msgstr "Packs de textures"
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr "En attente de l'approbation."
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Approuvé"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Supprimer"
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr "Page introuvable"
|
msgstr "Page introuvable"
|
||||||
@ -1203,15 +1224,6 @@ msgstr "Modification - %(name)s"
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr "Créer un jeton API"
|
msgstr "Créer un jeton API"
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr "Supprimer"
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr "Les Tokens d'API permettent à des scripts d'agir en votre nom."
|
msgstr "Les Tokens d'API permettent à des scripts d'agir en votre nom."
|
||||||
@ -1480,12 +1492,13 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr "Veuillez vous assurer que ce paquet a les droit sur les noms %(names)s"
|
msgstr "Veuillez vous assurer que ce paquet a les droit sur les noms %(names)s"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez ouvrir un fil de discussion si vous avez une question à poser"
|
"Vous pouvez ouvrir un fil de discussion si vous avez une question à poser"
|
||||||
@ -1984,8 +1997,8 @@ msgid ""
|
|||||||
"You can <a href='/help/package_config/'>set this automatically</a> in the"
|
"You can <a href='/help/package_config/'>set this automatically</a> in the"
|
||||||
" .conf of your package."
|
" .conf of your package."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez <a href='/help/package_config/'>configurer cela automatiquement</"
|
"Vous pouvez <a href='/help/package_config/'>configurer cela "
|
||||||
"a> dans le .conf de votre paquet."
|
"automatiquement</a> dans le .conf de votre paquet."
|
||||||
|
|
||||||
#: app/templates/packages/release_edit.html:75
|
#: app/templates/packages/release_edit.html:75
|
||||||
msgid "Delete Release"
|
msgid "Delete Release"
|
||||||
@ -2000,8 +2013,8 @@ msgid ""
|
|||||||
"Any associated uploads will not be deleted immediately, but the release "
|
"Any associated uploads will not be deleted immediately, but the release "
|
||||||
"will no longer be listed."
|
"will no longer be listed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Les imports associés ne seront pas supprimé immédiatement, mais la version "
|
"Les imports associés ne seront pas supprimé immédiatement, mais la "
|
||||||
"ne sera plus référencée."
|
"version ne sera plus référencée."
|
||||||
|
|
||||||
#: app/templates/packages/release_edit.html:87
|
#: app/templates/packages/release_edit.html:87
|
||||||
msgid "You cannot delete the latest release; please create a newer one first."
|
msgid "You cannot delete the latest release; please create a newer one first."
|
||||||
@ -2025,8 +2038,8 @@ msgstr "Vos notifications de mise à jour Git sont activées."
|
|||||||
#: app/templates/packages/release_new.html:17
|
#: app/templates/packages/release_new.html:17
|
||||||
msgid "You can enable automatic updates in the update settings."
|
msgid "You can enable automatic updates in the update settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez activer les mise à jour automatiques dans les paramètres de mise "
|
"Vous pouvez activer les mise à jour automatiques dans les paramètres de "
|
||||||
"à jour."
|
"mise à jour."
|
||||||
|
|
||||||
#: app/templates/packages/release_new.html:23
|
#: app/templates/packages/release_new.html:23
|
||||||
msgid "Set up"
|
msgid "Set up"
|
||||||
@ -2072,8 +2085,8 @@ msgid ""
|
|||||||
"and Releases Guide</a> for\n"
|
"and Releases Guide</a> for\n"
|
||||||
"\t\t\ttips on customising releases."
|
"\t\t\ttips on customising releases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Regardez le <a href='/help/package_config/'>Guide de configuration de paquet "
|
"Regardez le <a href='/help/package_config/'>Guide de configuration de "
|
||||||
"et de version </a>\n"
|
"paquet et de version </a>\n"
|
||||||
"\t\t\tpour des conseils sur la customisation de version."
|
"\t\t\tpour des conseils sur la customisation de version."
|
||||||
|
|
||||||
#: app/templates/packages/release_new.html:61
|
#: app/templates/packages/release_new.html:61
|
||||||
@ -2086,8 +2099,8 @@ msgid ""
|
|||||||
"automatically</a>,\n"
|
"automatically</a>,\n"
|
||||||
"\t\t\twhich will override your selection."
|
"\t\t\twhich will override your selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Le .conf dans votre paquet peux <a href='/help/package_config/'>définir cela "
|
"Le .conf dans votre paquet peux <a href='/help/package_config/'>définir "
|
||||||
"automatiquement</a>,\n"
|
"cela automatiquement</a>,\n"
|
||||||
"\t\t\tce qui ignorera votre sélection."
|
"\t\t\tce qui ignorera votre sélection."
|
||||||
|
|
||||||
#: app/templates/packages/release_wizard.html:4
|
#: app/templates/packages/release_wizard.html:4
|
||||||
@ -2109,8 +2122,9 @@ msgid ""
|
|||||||
"You need to create releases even if you use a rolling release development"
|
"You need to create releases even if you use a rolling release development"
|
||||||
" cycle, as Minetest needs them to check for updates."
|
" cycle, as Minetest needs them to check for updates."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous devez créer des version même si vous utilisez un cycle de développement "
|
"Vous devez créer des version même si vous utilisez un cycle de "
|
||||||
"en continue, car Minetest en a besoin pour vérifier les mise à jour."
|
"développement en continue, car Minetest en a besoin pour vérifier les "
|
||||||
|
"mise à jour."
|
||||||
|
|
||||||
#: app/templates/packages/release_wizard.html:20
|
#: app/templates/packages/release_wizard.html:20
|
||||||
#: app/templates/packages/update_config.html:12
|
#: app/templates/packages/update_config.html:12
|
||||||
@ -2194,9 +2208,10 @@ msgid ""
|
|||||||
"future.\n"
|
"future.\n"
|
||||||
"\t\t\tThe Admin can restore removed packages, if needed."
|
"\t\t\tThe Admin can restore removed packages, if needed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pour éviter des pertes de données, vous ne pouvez pas supprimer des paquets "
|
"Pour éviter des pertes de données, vous ne pouvez pas supprimer des "
|
||||||
"de façon permanente.\n"
|
"paquets de façon permanente.\n"
|
||||||
"Vous pouvez cependant les masquer des autres utilisatrices et utilisateurs.\n"
|
"Vous pouvez cependant les masquer des autres utilisatrices et "
|
||||||
|
"utilisateurs.\n"
|
||||||
"Ils pourront être supprimés automatiquement par la suite.\n"
|
"Ils pourront être supprimés automatiquement par la suite.\n"
|
||||||
"Un Admin peux restaurer un paquet masqué, si nécessaire."
|
"Un Admin peux restaurer un paquet masqué, si nécessaire."
|
||||||
|
|
||||||
@ -2274,9 +2289,9 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr "La première image sera utilisée comme vignette du paquet."
|
msgstr "La première image sera utilisée comme vignette du paquet."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
#, fuzzy
|
||||||
msgid "Awaiting review"
|
msgid "Awaiting approval"
|
||||||
msgstr "En attente de révision"
|
msgstr "En attente de l'approbation."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
msgid "No screenshots."
|
msgid "No screenshots."
|
||||||
@ -2312,8 +2327,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: app/templates/packages/similar.html:14
|
#: app/templates/packages/similar.html:14
|
||||||
msgid "This package contains modnames that are present in the following packages:"
|
msgid "This package contains modnames that are present in the following packages:"
|
||||||
msgstr ""
|
msgstr "Ce paquet contient des noms de mods présents dans les paquets suivants :"
|
||||||
"Ce paquet contient des noms de mods présents dans les paquets suivants :"
|
|
||||||
|
|
||||||
#: app/templates/packages/similar.html:32
|
#: app/templates/packages/similar.html:32
|
||||||
msgid "Similar Forum Topics"
|
msgid "Similar Forum Topics"
|
||||||
@ -2424,8 +2438,12 @@ msgid ""
|
|||||||
"This thread is only visible to the package owner and users of Approver "
|
"This thread is only visible to the package owner and users of Approver "
|
||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ce fil est seulement visible du propriétaire du paquet et les utilisateurs "
|
"Ce fil est seulement visible du propriétaire du paquet et les "
|
||||||
"de rang \"Approver\" et supérieur."
|
"utilisateurs de rang \"Approver\" et supérieur."
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr "En attente de révision"
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
@ -2561,16 +2579,16 @@ msgid ""
|
|||||||
"If the package shouldn't be on CDB (eg: if it doesn't work at all), then "
|
"If the package shouldn't be on CDB (eg: if it doesn't work at all), then "
|
||||||
"you can let us know here."
|
"you can let us know here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si le paquet ne devrait pas être sur CDB (ex : ne fonctionne pas du tout), "
|
"Si le paquet ne devrait pas être sur CDB (ex : ne fonctionne pas du "
|
||||||
"vous pouvez nous le faire savoir ici."
|
"tout), vous pouvez nous le faire savoir ici."
|
||||||
|
|
||||||
#: app/templates/threads/new.html:40
|
#: app/templates/threads/new.html:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"Only you, the package author, and users of Approver rank and above can "
|
"Only you, the package author, and users of Approver rank and above can "
|
||||||
"read private threads."
|
"read private threads."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Seulement vous, l'auteur du paquet, et les utilisateurs de rang \"Approver\" "
|
"Seulement vous, l'auteur du paquet, et les utilisateurs de rang "
|
||||||
"et supérieur peuvent lire les fils privés."
|
"\"Approver\" et supérieur peuvent lire les fils privés."
|
||||||
|
|
||||||
#: app/templates/threads/user_comments.html:9
|
#: app/templates/threads/user_comments.html:9
|
||||||
#: app/templates/threads/user_comments.html:13
|
#: app/templates/threads/user_comments.html:13
|
||||||
@ -2605,8 +2623,8 @@ msgid ""
|
|||||||
"This thread is only visible to its creator, the package owner, and users "
|
"This thread is only visible to its creator, the package owner, and users "
|
||||||
"of Approver rank or above."
|
"of Approver rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ce fil est seulement visible de son créateur, le propriétaire du paquet, et "
|
"Ce fil est seulement visible de son créateur, le propriétaire du paquet, "
|
||||||
"les utilisateurs de rang \"Approver\" et supérieur."
|
"et les utilisateurs de rang \"Approver\" et supérieur."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:4 app/templates/todo/todo_base.html:17
|
#: app/templates/todo/editor.html:4 app/templates/todo/todo_base.html:17
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -2623,20 +2641,23 @@ msgid "Approve All"
|
|||||||
msgstr "Paquets non approuvés nécessitant une action"
|
msgstr "Paquets non approuvés nécessitant une action"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
#, fuzzy
|
||||||
msgstr ""
|
msgid "No screenshots need approval."
|
||||||
|
msgstr "Pas de capture d'écran."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
#, fuzzy
|
||||||
msgstr ""
|
msgid "No packages need approval."
|
||||||
|
msgstr "Aucun paquet disponible"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
msgid "Importing"
|
msgid "Importing"
|
||||||
msgstr "Importation"
|
msgstr "Importation"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
#, fuzzy
|
||||||
msgstr ""
|
msgid "No releases need approval."
|
||||||
|
msgstr "Aucune version disponible."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
msgid "All done!"
|
msgid "All done!"
|
||||||
@ -2766,8 +2787,8 @@ msgid ""
|
|||||||
"New: Git Update Detection has been set up on all packages to send "
|
"New: Git Update Detection has been set up on all packages to send "
|
||||||
"notifications."
|
"notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nouveau : la détection de mise à jour de Git à été configurée pour envoyer "
|
"Nouveau : la détection de mise à jour de Git à été configurée pour "
|
||||||
"des notifications pour tout les paquets."
|
"envoyer des notifications pour tout les paquets."
|
||||||
|
|
||||||
#: app/templates/todo/user.html:58
|
#: app/templates/todo/user.html:58
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -3018,8 +3039,7 @@ msgstr "Nom d'utilisateur sur le forum"
|
|||||||
|
|
||||||
#: app/templates/users/claim_forums.html:43
|
#: app/templates/users/claim_forums.html:43
|
||||||
msgid "You'll need to have the GitHub field in your forum profile filled out."
|
msgid "You'll need to have the GitHub field in your forum profile filled out."
|
||||||
msgstr ""
|
msgstr "Vous devrez avoir complété le champ GitHub dans votre profil sur le forum."
|
||||||
"Vous devrez avoir complété le champ GitHub dans votre profil sur le forum."
|
|
||||||
|
|
||||||
#: app/templates/users/claim_forums.html:44
|
#: app/templates/users/claim_forums.html:44
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -3070,8 +3090,8 @@ msgid ""
|
|||||||
"This will delete your account, removing %(threads)d threads and "
|
"This will delete your account, removing %(threads)d threads and "
|
||||||
"%(replies)d replies."
|
"%(replies)d replies."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cela va supprimer votre compte, ainsi que vos %(threads)d fils et %(replies)"
|
"Cela va supprimer votre compte, ainsi que vos %(threads)d fils et "
|
||||||
"d réponses."
|
"%(replies)d réponses."
|
||||||
|
|
||||||
#: app/templates/users/delete.html:22
|
#: app/templates/users/delete.html:22
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -3356,3 +3376,16 @@ msgstr ""
|
|||||||
|
|
||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-13 22:35+0000\n"
|
"PO-Revision-Date: 2022-01-13 22:35+0000\n"
|
||||||
"Last-Translator: pampogo kiraly <pampogo.kiraly@gmail.com>\n"
|
"Last-Translator: pampogo kiraly <pampogo.kiraly@gmail.com>\n"
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
@ -214,7 +214,7 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "Nincs erre engedélye"
|
msgstr "Nincs erre engedélye"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -253,7 +253,7 @@ msgstr "Szerző Neve"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -378,13 +378,13 @@ msgstr "Törölt frissítési konfiguráció"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Most kérjük, hozzon létre egy kezdeti verziót"
|
msgstr "Most kérjük, hozzon létre egy kezdeti verziót"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Megjegyzés"
|
msgstr "Megjegyzés"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Privát"
|
msgstr "Privát"
|
||||||
|
|
||||||
@ -422,65 +422,66 @@ msgstr "Cím/Felirat"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Borítókép"
|
msgstr "Borítókép"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "Már feliratkozott!"
|
msgstr "Már feliratkozott!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Feliratkozott a témára"
|
msgstr "Feliratkozott a témára"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Leiratkozott!"
|
msgstr "Leiratkozott!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "Már nincsen feliratkozva!"
|
msgstr "Már nincsen feliratkozva!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Lezárt téma"
|
msgstr "Lezárt téma"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Feloldott téma"
|
msgstr "Feloldott téma"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr "A téma nyitó hozzászólását nem lehet törölni!"
|
msgstr "A téma nyitó hozzászólását nem lehet törölni!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "Nem szólhat hozzá ehhez a témához"
|
msgstr "Nem szólhat hozzá ehhez a témához"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Kérjük, várjon, mielőtt újra hozzászólna"
|
msgstr "Kérjük, várjon, mielőtt újra hozzászólna"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "A hozzászólásnak 3 és 2000 karakter között kell lennie."
|
msgstr "A hozzászólásnak 3 és 2000 karakter között kell lennie."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Téma Megnyitása"
|
msgstr "Téma Megnyitása"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "A csomag nem található!"
|
msgstr "A csomag nem található!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr "Nem lehet létrehozni a témát!"
|
msgstr "Nem lehet létrehozni a témát!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "Már létezik egy értékelési téma!"
|
msgstr "Már létezik egy értékelési téma!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Kérjük, várjon, mielőtt újabb témát nyitna"
|
msgstr "Kérjük, várjon, mielőtt újabb témát nyitna"
|
||||||
|
|
||||||
@ -881,12 +882,12 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr "Kérjük, várjon, mielőtt újra hozzászólna"
|
msgstr "Kérjük, várjon, mielőtt újra hozzászólna"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -924,6 +925,24 @@ msgstr "Játékok"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Jóváhagyva"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Törlés"
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1198,15 +1217,6 @@ msgstr ""
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr "Törlés"
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1449,12 +1459,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2180,8 +2190,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2324,6 +2333,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2509,11 +2522,11 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
msgid "No screenshots need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2521,7 +2534,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3158,3 +3171,24 @@ msgstr ""
|
|||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Please comment what changes are needed in the review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can open a thread if you "
|
||||||
|
#~ "have a question for the reviewer "
|
||||||
|
#~ "or package author."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-12 20:50+0000\n"
|
"PO-Revision-Date: 2022-01-12 20:50+0000\n"
|
||||||
"Last-Translator: Muhammad Rifqi Priyo Susanto "
|
"Last-Translator: Muhammad Rifqi Priyo Susanto "
|
||||||
"<muhammadrifqipriyosusanto@gmail.com>\n"
|
"<muhammadrifqipriyosusanto@gmail.com>\n"
|
||||||
@ -212,7 +212,8 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "Anda tidak memiliki izin untuk melakukannya"
|
msgstr "Anda tidak memiliki izin untuk melakukannya"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr "Harap tuliskan perubahan yang dibutuhkan dalam utas ulasan"
|
msgstr "Harap tuliskan perubahan yang dibutuhkan dalam utas ulasan"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -250,7 +251,7 @@ msgstr "Nama Pembuat"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -371,13 +372,13 @@ msgstr "Konfigurasi pembaruan yang dihapus"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Sekarang, silakan buat rilis awalan"
|
msgstr "Sekarang, silakan buat rilis awalan"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Komentar"
|
msgstr "Komentar"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Pribadi"
|
msgstr "Pribadi"
|
||||||
|
|
||||||
@ -413,64 +414,65 @@ msgstr "Judul/Takarir"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Gambar Sampul"
|
msgstr "Gambar Sampul"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "Telah berlangganan!"
|
msgstr "Telah berlangganan!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Berlangganan ke utas"
|
msgstr "Berlangganan ke utas"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Berhenti langganan!"
|
msgstr "Berhenti langganan!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "Telah berhenti langganan!"
|
msgstr "Telah berhenti langganan!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Utas yang dikunci"
|
msgstr "Utas yang dikunci"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Utas yang tidak terkunci"
|
msgstr "Utas yang tidak terkunci"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr "Tidak dapat menghapus pos pembuka utas!"
|
msgstr "Tidak dapat menghapus pos pembuka utas!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "Anda tidak dapat berkomentar dalam utas ini"
|
msgstr "Anda tidak dapat berkomentar dalam utas ini"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Harap tunggu sebelum berkomentar lagi"
|
msgstr "Harap tunggu sebelum berkomentar lagi"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "Komentar harus terdiri dari 3 sampai 2.000 karakter."
|
msgstr "Komentar harus terdiri dari 3 sampai 2.000 karakter."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Buka Utas"
|
msgstr "Buka Utas"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "Tidak dapat mencari paket tersebut!"
|
msgstr "Tidak dapat mencari paket tersebut!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr "Tidak dapat membuat utas!"
|
msgstr "Tidak dapat membuat utas!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "Utas ulasan telah ada!"
|
msgstr "Utas ulasan telah ada!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Harap tunggu sebelum membuka utas baru"
|
msgstr "Harap tunggu sebelum membuka utas baru"
|
||||||
|
|
||||||
@ -869,12 +871,12 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr "Harap tunggu sebelum berkomentar lagi"
|
msgstr "Harap tunggu sebelum berkomentar lagi"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -913,6 +915,25 @@ msgstr "Permainan"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr "Paket Tekstur"
|
msgstr "Paket Tekstur"
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr "Menunggu persetujuan."
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Disetujui"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Hapus"
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr "Halaman tidak ditemukan"
|
msgstr "Halaman tidak ditemukan"
|
||||||
@ -1189,15 +1210,6 @@ msgstr "Sunting - %(name)s"
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr "Buat Token API"
|
msgstr "Buat Token API"
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr "Hapus"
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr "Token API membolehkan skrip untuk bertindak mewakili Anda."
|
msgstr "Token API membolehkan skrip untuk bertindak mewakili Anda."
|
||||||
@ -1460,12 +1472,14 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr "Harap pastikan paket ini memiliki izin untuk menggunakan nama %(names)s"
|
msgstr "Harap pastikan paket ini memiliki izin untuk menggunakan nama %(names)s"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
#, fuzzy
|
||||||
|
msgid "Package approval thread"
|
||||||
msgstr "Utas ulasan paket"
|
msgstr "Utas ulasan paket"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Anda dapat membuka utas jika memiliki pertanyaan terhadap pengulas atau "
|
"Anda dapat membuka utas jika memiliki pertanyaan terhadap pengulas atau "
|
||||||
@ -2255,9 +2269,9 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr "Tangkapan layar teratas akan dipakai sebagai thumbnail paket."
|
msgstr "Tangkapan layar teratas akan dipakai sebagai thumbnail paket."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
#, fuzzy
|
||||||
msgid "Awaiting review"
|
msgid "Awaiting approval"
|
||||||
msgstr "Menunggu tinjauan"
|
msgstr "Menunggu persetujuan."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
msgid "No screenshots."
|
msgid "No screenshots."
|
||||||
@ -2407,6 +2421,10 @@ msgstr ""
|
|||||||
"Utas ini hanya tersedia kepada pemilik paket dan pengguna dengan jabatan "
|
"Utas ini hanya tersedia kepada pemilik paket dan pengguna dengan jabatan "
|
||||||
"Penyetuju ke atas."
|
"Penyetuju ke atas."
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr "Menunggu tinjauan"
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr "Sunting Ulasan"
|
msgstr "Sunting Ulasan"
|
||||||
@ -2599,11 +2617,13 @@ msgid "Approve All"
|
|||||||
msgstr "Setujui Semua"
|
msgstr "Setujui Semua"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No screenshots need approval."
|
||||||
msgstr "Tidak ada tangkapan layar yang perlu ditinjau."
|
msgstr "Tidak ada tangkapan layar yang perlu ditinjau."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No packages need approval."
|
||||||
msgstr "Tidak ada paket yang perlu ditinjau."
|
msgstr "Tidak ada paket yang perlu ditinjau."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2611,7 +2631,8 @@ msgid "Importing"
|
|||||||
msgstr "Mengimpor"
|
msgstr "Mengimpor"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No releases need approval."
|
||||||
msgstr "Tidak ada rilis yang perlu ditinjau."
|
msgstr "Tidak ada rilis yang perlu ditinjau."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -207,7 +207,7 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -245,7 +245,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -366,13 +366,13 @@ msgstr ""
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -408,64 +408,64 @@ msgstr ""
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
msgid "An approval thread already exists!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -850,11 +850,11 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -891,6 +891,23 @@ msgstr ""
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1165,15 +1182,6 @@ msgstr ""
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1416,12 +1424,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2147,8 +2155,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2291,6 +2298,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2476,11 +2487,11 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
msgid "No screenshots need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2488,7 +2499,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
|
@ -7,18 +7,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-19 07:54+0000\n"
|
"PO-Revision-Date: 2022-01-19 07:54+0000\n"
|
||||||
"Last-Translator: Yaya - Nurul Azeera Hidayah @ Muhammad Nur Hidayat "
|
"Last-Translator: Yaya - Nurul Azeera Hidayah @ Muhammad Nur Hidayat "
|
||||||
"Yasuyoshi <translation@mnh48.moe>\n"
|
"Yasuyoshi <translation@mnh48.moe>\n"
|
||||||
"Language-Team: Malay <https://hosted.weblate.org/projects/minetest/contentdb/"
|
|
||||||
"ms/>\n"
|
|
||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
|
"Language-Team: Malay "
|
||||||
|
"<https://hosted.weblate.org/projects/minetest/contentdb/ms/>\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"
|
|
||||||
"X-Generator: Weblate 4.11-dev\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
|
||||||
#: app/__init__.py:102
|
#: app/__init__.py:102
|
||||||
@ -213,7 +212,8 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "Anda tiada kebenaran untuk berbuat sedemikian"
|
msgstr "Anda tiada kebenaran untuk berbuat sedemikian"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sila tulis komen mengenai perubahan apa yang diperlukan dalam bebenang "
|
"Sila tulis komen mengenai perubahan apa yang diperlukan dalam bebenang "
|
||||||
"ulasan"
|
"ulasan"
|
||||||
@ -253,7 +253,7 @@ msgstr "Nama Pencipta"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -374,13 +374,13 @@ msgstr "Konfigurasi kemas kini telah dipadam"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Sekarang, sila cipta sebuah terbitan awal"
|
msgstr "Sekarang, sila cipta sebuah terbitan awal"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Komen"
|
msgstr "Komen"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Peribadi"
|
msgstr "Peribadi"
|
||||||
|
|
||||||
@ -416,64 +416,65 @@ msgstr "Tajuk/Kapsyen"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Imej Kulit"
|
msgstr "Imej Kulit"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "Sudah dilanggan!"
|
msgstr "Sudah dilanggan!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Dilanggan ke bebenang"
|
msgstr "Dilanggan ke bebenang"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Buang langganan!"
|
msgstr "Buang langganan!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "Sudah dibuang langganan!"
|
msgstr "Sudah dibuang langganan!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Bebenang dikunci"
|
msgstr "Bebenang dikunci"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Bebenang dibuka kunci"
|
msgstr "Bebenang dibuka kunci"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr "Tidak boleh padam hantaran pembuka bebenang!"
|
msgstr "Tidak boleh padam hantaran pembuka bebenang!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "Anda tidak boleh tulis komen di bebenang ini"
|
msgstr "Anda tidak boleh tulis komen di bebenang ini"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Sila tunggu sebentar sebelum menulis komen lagi"
|
msgstr "Sila tunggu sebentar sebelum menulis komen lagi"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "Komen mestilah di antara 3 dan 2000 aksara panjangnya."
|
msgstr "Komen mestilah di antara 3 dan 2000 aksara panjangnya."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Buka Bebenang"
|
msgstr "Buka Bebenang"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "Tidak jumpa pakej tersebut!"
|
msgstr "Tidak jumpa pakej tersebut!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr "Tidak mampu cipta bebenang!"
|
msgstr "Tidak mampu cipta bebenang!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "Bebenang ulasan sudah wujud!"
|
msgstr "Bebenang ulasan sudah wujud!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Sila tunggu sebentar sebelum membuka bebenang yang lain"
|
msgstr "Sila tunggu sebentar sebelum membuka bebenang yang lain"
|
||||||
|
|
||||||
@ -850,8 +851,8 @@ msgid ""
|
|||||||
"Name can only contain lower case letters (a-z), digits (0-9), and "
|
"Name can only contain lower case letters (a-z), digits (0-9), and "
|
||||||
"underscores (_)"
|
"underscores (_)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nama hanya boleh mengandungi huruf kecil (a-z), digit (0-9), dan garis bawah "
|
"Nama hanya boleh mengandungi huruf kecil (a-z), digit (0-9), dan garis "
|
||||||
"(_) sahaja"
|
"bawah (_) sahaja"
|
||||||
|
|
||||||
#: app/logic/packages.py:107
|
#: app/logic/packages.py:107
|
||||||
msgid "You do not have permission to edit this package"
|
msgid "You do not have permission to edit this package"
|
||||||
@ -884,11 +885,11 @@ msgstr ""
|
|||||||
"Cincang serahan tidak sah; ia mestilah rentetan asas 16 dengan panjang 40"
|
"Cincang serahan tidak sah; ia mestilah rentetan asas 16 dengan panjang 40"
|
||||||
" aksara"
|
" aksara"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr "Terlalu banyak permintaan, sila tunggu sebentar sebelum mencuba lagi"
|
msgstr "Terlalu banyak permintaan, sila tunggu sebentar sebelum mencuba lagi"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr "suatu fail imej PNG atau JPG"
|
msgstr "suatu fail imej PNG atau JPG"
|
||||||
|
|
||||||
@ -925,6 +926,25 @@ msgstr "Permainan"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr "Pek Tekstur"
|
msgstr "Pek Tekstur"
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr "Menunggu kelulusan."
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Diluluskan"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Padam"
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr "Halaman tidak dijumpai"
|
msgstr "Halaman tidak dijumpai"
|
||||||
@ -1204,15 +1224,6 @@ msgstr "Edit - %(name)s"
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr "Cipta Token API"
|
msgstr "Cipta Token API"
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr "Padam"
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr "Token API membolehkan skrip untuk bertindak bagi pihak anda."
|
msgstr "Token API membolehkan skrip untuk bertindak bagi pihak anda."
|
||||||
@ -1473,12 +1484,14 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr "Sila pastikan pakej ini mempunyai hak ke atas nama %(names)s"
|
msgstr "Sila pastikan pakej ini mempunyai hak ke atas nama %(names)s"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
#, fuzzy
|
||||||
|
msgid "Package approval thread"
|
||||||
msgstr "Bebenang ulasan pakej"
|
msgstr "Bebenang ulasan pakej"
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Anda boleh buka bebenang sekiranya anda mempunyai soalan untuk pengulas "
|
"Anda boleh buka bebenang sekiranya anda mempunyai soalan untuk pengulas "
|
||||||
@ -2273,9 +2286,9 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr "Tangkap layar paling atas akan digunakan sebagai imej kenit pakej."
|
msgstr "Tangkap layar paling atas akan digunakan sebagai imej kenit pakej."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
#, fuzzy
|
||||||
msgid "Awaiting review"
|
msgid "Awaiting approval"
|
||||||
msgstr "Menunggu pemeriksaan"
|
msgstr "Menunggu kelulusan."
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
msgid "No screenshots."
|
msgid "No screenshots."
|
||||||
@ -2428,6 +2441,10 @@ msgstr ""
|
|||||||
"Bebenang ini hanya kelihatan kepada pemilik pakej dan pengguna berpangkat"
|
"Bebenang ini hanya kelihatan kepada pemilik pakej dan pengguna berpangkat"
|
||||||
" Pelulus ke atas."
|
" Pelulus ke atas."
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr "Menunggu pemeriksaan"
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr "Edit Ulasan"
|
msgstr "Edit Ulasan"
|
||||||
@ -2619,11 +2636,13 @@ msgid "Approve All"
|
|||||||
msgstr "Luluskan Semua"
|
msgstr "Luluskan Semua"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No screenshots need approval."
|
||||||
msgstr "Tiada tangkap layar yang perlu diperiksa."
|
msgstr "Tiada tangkap layar yang perlu diperiksa."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No packages need approval."
|
||||||
msgstr "Tiada pakej yang perlu diperiksa."
|
msgstr "Tiada pakej yang perlu diperiksa."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2631,7 +2650,8 @@ msgid "Importing"
|
|||||||
msgstr "Mengimport"
|
msgstr "Mengimport"
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
#, fuzzy
|
||||||
|
msgid "No releases need approval."
|
||||||
msgstr "Tiada terbitan yang perlu diperiksa."
|
msgstr "Tiada terbitan yang perlu diperiksa."
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3340,3 +3360,4 @@ msgstr ""
|
|||||||
|
|
||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-10 15:53+0000\n"
|
"PO-Revision-Date: 2022-01-10 15:53+0000\n"
|
||||||
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>\n"
|
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
@ -209,7 +209,7 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -247,7 +247,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -368,13 +368,13 @@ msgstr ""
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -410,64 +410,64 @@ msgstr ""
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
msgid "An approval thread already exists!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -852,11 +852,11 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -894,6 +894,23 @@ msgstr ""
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1168,15 +1185,6 @@ msgstr ""
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1419,12 +1427,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2150,8 +2158,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2294,6 +2301,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2480,11 +2491,11 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
msgid "No screenshots need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2492,7 +2503,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3162,3 +3173,27 @@ msgstr ""
|
|||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Please comment what changes are needed in the review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "A review thread already exists!"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can open a thread if you "
|
||||||
|
#~ "have a question for the reviewer "
|
||||||
|
#~ "or package author."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-10 15:53+0000\n"
|
"PO-Revision-Date: 2022-01-10 15:53+0000\n"
|
||||||
"Last-Translator: Mikitko <rudzik8@protonmail.com>\n"
|
"Last-Translator: Mikitko <rudzik8@protonmail.com>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -214,7 +214,8 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "У вас нету разрешения это делать"
|
msgstr "У вас нету разрешения это делать"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr "Пожалуйста, отметьте какие изменения требуются в review треде"
|
msgstr "Пожалуйста, отметьте какие изменения требуются в review треде"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -252,7 +253,7 @@ msgstr "Имя автора"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -375,13 +376,13 @@ msgstr "Удалить обновлённую конфигурацию"
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr "Теперь, создайте первый релиз"
|
msgstr "Теперь, создайте первый релиз"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Комментарий"
|
msgstr "Комментарий"
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "Приватный"
|
msgstr "Приватный"
|
||||||
|
|
||||||
@ -417,64 +418,65 @@ msgstr "Название/подпись"
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr "Изображение для обложки"
|
msgstr "Изображение для обложки"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr "Уже подписано!"
|
msgstr "Уже подписано!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr "Подписано на тред"
|
msgstr "Подписано на тред"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr "Подписка отменена!"
|
msgstr "Подписка отменена!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr "Уже не подписано!"
|
msgstr "Уже не подписано!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr "Закрытый тред"
|
msgstr "Закрытый тред"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr "Открытый тред"
|
msgstr "Открытый тред"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr "Не могу удалить пост, начинающий тред!"
|
msgstr "Не могу удалить пост, начинающий тред!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr "Вы не можете оставлять комментарии в этом треде"
|
msgstr "Вы не можете оставлять комментарии в этом треде"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr "Пожалуйста, подождите прежде чем снова комментировать"
|
msgstr "Пожалуйста, подождите прежде чем снова комментировать"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr "Комментарий должен быть размером от 3 до 2000 символов."
|
msgstr "Комментарий должен быть размером от 3 до 2000 символов."
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr "Открыть тред"
|
msgstr "Открыть тред"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr "Не получилось найти это дополнение!"
|
msgstr "Не получилось найти это дополнение!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr "Не получилось создать тред!"
|
msgstr "Не получилось создать тред!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
|
msgid "An approval thread already exists!"
|
||||||
msgstr "Review тред уже существует!"
|
msgstr "Review тред уже существует!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr "Пожалуйста, подождите прежде чем открывать ещё один тред"
|
msgstr "Пожалуйста, подождите прежде чем открывать ещё один тред"
|
||||||
|
|
||||||
@ -875,12 +877,12 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr "Пожалуйста, подождите прежде чем снова комментировать"
|
msgstr "Пожалуйста, подождите прежде чем снова комментировать"
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -919,6 +921,24 @@ msgstr "Игры"
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr "Текстур паки"
|
msgstr "Текстур паки"
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "Проверен"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr "Страница не найдена"
|
msgstr "Страница не найдена"
|
||||||
@ -1195,15 +1215,6 @@ msgstr ""
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1446,12 +1457,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2178,8 +2189,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2322,6 +2332,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2507,11 +2521,11 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
msgid "No screenshots need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2519,7 +2533,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3156,3 +3170,21 @@ msgstr ""
|
|||||||
#~ msgid "Unable to add protected tag {tag.title} to package"
|
#~ msgid "Unable to add protected tag {tag.title} to package"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can open a thread if you "
|
||||||
|
#~ "have a question for the reviewer "
|
||||||
|
#~ "or package author."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translations template for PROJECT.
|
# Turkish translations for PROJECT.
|
||||||
# Copyright (C) 2022 ORGANIZATION
|
# Copyright (C) 2022 ORGANIZATION
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the PROJECT project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-17 15:22+0000\n"
|
"PO-Revision-Date: 2022-01-17 15:22+0000\n"
|
||||||
"Last-Translator: Mehmet Ali <2045uuttb@relay.firefox.com>\n"
|
"Last-Translator: Mehmet Ali <2045uuttb@relay.firefox.com>\n"
|
||||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/minetest/"
|
|
||||||
"contentdb/tr/>\n"
|
|
||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
|
"Language-Team: Turkish "
|
||||||
|
"<https://hosted.weblate.org/projects/minetest/contentdb/tr/>\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"
|
|
||||||
"X-Generator: Weblate 4.10.1\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
|
||||||
#: app/__init__.py:102
|
#: app/__init__.py:102
|
||||||
@ -210,7 +209,7 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -248,7 +247,7 @@ msgstr "Yazar Adı"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -369,13 +368,13 @@ msgstr ""
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -411,64 +410,64 @@ msgstr ""
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
msgid "An approval thread already exists!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,11 +852,11 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -894,6 +893,23 @@ msgstr ""
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1168,15 +1184,6 @@ msgstr ""
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1419,12 +1426,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2150,8 +2157,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2294,6 +2300,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2479,11 +2489,11 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
msgid "No screenshots need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2491,7 +2501,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3111,3 +3121,28 @@ msgid ""
|
|||||||
"Please consider enabling email notifications, you can customise how much "
|
"Please consider enabling email notifications, you can customise how much "
|
||||||
"is sent"
|
"is sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Please comment what changes are needed in the review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "A review thread already exists!"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can open a thread if you "
|
||||||
|
#~ "have a question for the reviewer "
|
||||||
|
#~ "or package author."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translations template for PROJECT.
|
# Chinese (Traditional) translations for PROJECT.
|
||||||
# Copyright (C) 2022 ORGANIZATION
|
# Copyright (C) 2022 ORGANIZATION
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the PROJECT project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-01-14 18:27+0000\n"
|
"POT-Creation-Date: 2022-01-20 01:16+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-16 03:56+0000\n"
|
"PO-Revision-Date: 2022-01-16 03:56+0000\n"
|
||||||
"Last-Translator: Yiu Man Ho <yiufamily.hh@gmail.com>\n"
|
"Last-Translator: Yiu Man Ho <yiufamily.hh@gmail.com>\n"
|
||||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
|
||||||
"minetest/contentdb/zh_Hant/>\n"
|
|
||||||
"Language: zh_Hant\n"
|
"Language: zh_Hant\n"
|
||||||
|
"Language-Team: Chinese (Traditional) "
|
||||||
|
"<https://hosted.weblate.org/projects/minetest/contentdb/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"
|
|
||||||
"X-Generator: Weblate 4.10.1\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.9.1\n"
|
||||||
|
|
||||||
#: app/__init__.py:102
|
#: app/__init__.py:102
|
||||||
@ -210,7 +209,8 @@ msgid "You don't have permission to do that"
|
|||||||
msgstr "你沒有進行該操作的權限"
|
msgstr "你沒有進行該操作的權限"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:394
|
#: app/blueprints/packages/packages.py:394
|
||||||
msgid "Please comment what changes are needed in the review thread"
|
#, fuzzy
|
||||||
|
msgid "Please comment what changes are needed in the approval thread"
|
||||||
msgstr "請在評論中寫下需改變的事項"
|
msgstr "請在評論中寫下需改變的事項"
|
||||||
|
|
||||||
#: app/blueprints/packages/packages.py:415
|
#: app/blueprints/packages/packages.py:415
|
||||||
@ -248,7 +248,7 @@ msgstr "作者名稱"
|
|||||||
|
|
||||||
#: app/blueprints/packages/releases.py:52
|
#: app/blueprints/packages/releases.py:52
|
||||||
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
#: app/blueprints/packages/releases.py:63 app/blueprints/packages/reviews.py:42
|
||||||
#: app/blueprints/threads/__init__.py:262 app/templates/macros/reviews.html:128
|
#: app/blueprints/threads/__init__.py:272 app/templates/macros/reviews.html:128
|
||||||
#: app/templates/macros/topics.html:5
|
#: app/templates/macros/topics.html:5
|
||||||
#: app/templates/packages/release_edit.html:17
|
#: app/templates/packages/release_edit.html:17
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@ -369,13 +369,13 @@ msgstr ""
|
|||||||
msgid "Now, please create an initial release"
|
msgid "Now, please create an initial release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
|
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
|
||||||
#: app/blueprints/threads/__init__.py:175
|
#: app/blueprints/threads/__init__.py:176
|
||||||
#: app/blueprints/threads/__init__.py:263
|
#: app/blueprints/threads/__init__.py:273
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:264
|
#: app/blueprints/packages/reviews.py:44 app/blueprints/threads/__init__.py:274
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -411,64 +411,65 @@ msgstr ""
|
|||||||
msgid "Cover Image"
|
msgid "Cover Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:63
|
#: app/blueprints/threads/__init__.py:64
|
||||||
msgid "Already subscribed!"
|
msgid "Already subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:65
|
#: app/blueprints/threads/__init__.py:66
|
||||||
msgid "Subscribed to thread"
|
msgid "Subscribed to thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:80
|
#: app/blueprints/threads/__init__.py:81
|
||||||
msgid "Unsubscribed!"
|
msgid "Unsubscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:84
|
#: app/blueprints/threads/__init__.py:85
|
||||||
msgid "Already not subscribed!"
|
msgid "Already not subscribed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:103
|
#: app/blueprints/threads/__init__.py:104
|
||||||
msgid "Locked thread"
|
msgid "Locked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:106
|
#: app/blueprints/threads/__init__.py:107
|
||||||
msgid "Unlocked thread"
|
msgid "Unlocked thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:155
|
#: app/blueprints/threads/__init__.py:156
|
||||||
msgid "Cannot delete thread opening post!"
|
msgid "Cannot delete thread opening post!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:224
|
#: app/blueprints/threads/__init__.py:225
|
||||||
msgid "You cannot comment on this thread"
|
msgid "You cannot comment on this thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:228
|
#: app/blueprints/threads/__init__.py:229
|
||||||
msgid "Please wait before commenting again"
|
msgid "Please wait before commenting again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:256
|
#: app/blueprints/threads/__init__.py:266
|
||||||
msgid "Comment needs to be between 3 and 2000 characters."
|
msgid "Comment needs to be between 3 and 2000 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:265
|
#: app/blueprints/threads/__init__.py:275
|
||||||
#: app/templates/macros/package_approval.html:107
|
#: app/templates/macros/package_approval.html:107
|
||||||
msgid "Open Thread"
|
msgid "Open Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:277
|
#: app/blueprints/threads/__init__.py:287
|
||||||
msgid "Unable to find that package!"
|
msgid "Unable to find that package!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:291
|
#: app/blueprints/threads/__init__.py:301
|
||||||
msgid "Unable to create thread!"
|
msgid "Unable to create thread!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:296
|
#: app/blueprints/threads/__init__.py:306
|
||||||
msgid "A review thread already exists!"
|
#, fuzzy
|
||||||
msgstr ""
|
msgid "An approval thread already exists!"
|
||||||
|
msgstr "包已存在!"
|
||||||
|
|
||||||
#: app/blueprints/threads/__init__.py:300
|
#: app/blueprints/threads/__init__.py:310
|
||||||
msgid "Please wait before opening another thread"
|
msgid "Please wait before opening another thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,11 +854,11 @@ msgstr ""
|
|||||||
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
msgid "Invalid commit hash; it must be a 40 character long base16 string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:13
|
#: app/logic/screenshots.py:15
|
||||||
msgid "Too many requests, please wait before trying again"
|
msgid "Too many requests, please wait before trying again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/logic/screenshots.py:15
|
#: app/logic/screenshots.py:17
|
||||||
msgid "a PNG or JPG image file"
|
msgid "a PNG or JPG image file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -894,6 +895,24 @@ msgstr ""
|
|||||||
msgid "Texture Packs"
|
msgid "Texture Packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:166
|
||||||
|
msgid "Submit for Approval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/models/packages.py:168
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Approve"
|
||||||
|
msgstr "是否被批准"
|
||||||
|
|
||||||
|
#: app/models/packages.py:170 app/templates/api/create_edit_token.html:17
|
||||||
|
#: app/templates/packages/release_edit.html:80
|
||||||
|
#: app/templates/packages/review_create_edit.html:55
|
||||||
|
#: app/templates/threads/delete_reply.html:19
|
||||||
|
#: app/templates/threads/delete_thread.html:19
|
||||||
|
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/404.html:4
|
#: app/templates/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1168,15 +1187,6 @@ msgstr ""
|
|||||||
msgid "Create API Token"
|
msgid "Create API Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:17
|
|
||||||
#: app/templates/packages/release_edit.html:80
|
|
||||||
#: app/templates/packages/review_create_edit.html:55
|
|
||||||
#: app/templates/threads/delete_reply.html:19
|
|
||||||
#: app/templates/threads/delete_thread.html:19
|
|
||||||
#: app/templates/threads/view.html:40 app/templates/users/delete.html:34
|
|
||||||
msgid "Delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: app/templates/api/create_edit_token.html:24
|
#: app/templates/api/create_edit_token.html:24
|
||||||
msgid "API Tokens allow scripts to act on your behalf."
|
msgid "API Tokens allow scripts to act on your behalf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1419,12 +1429,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:110
|
#: app/templates/macros/package_approval.html:110
|
||||||
msgid "Package review thread"
|
msgid "Package approval thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/macros/package_approval.html:111
|
#: app/templates/macros/package_approval.html:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can open a thread if you have a question for the reviewer or package "
|
"You can open a thread if you have a question for the approver or package "
|
||||||
"author."
|
"author."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2150,8 +2160,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:36
|
#: app/templates/packages/screenshots.html:36
|
||||||
#: app/templates/packages/view.html:244
|
msgid "Awaiting approval"
|
||||||
msgid "Awaiting review"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/screenshots.html:54
|
#: app/templates/packages/screenshots.html:54
|
||||||
@ -2294,6 +2303,10 @@ msgid ""
|
|||||||
"rank or above."
|
"rank or above."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/templates/packages/view.html:244
|
||||||
|
msgid "Awaiting review"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
|
||||||
msgid "Edit Review"
|
msgid "Edit Review"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2479,11 +2492,11 @@ msgid "Approve All"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:33
|
#: app/templates/todo/editor.html:33
|
||||||
msgid "No screenshots need reviewing."
|
msgid "No screenshots need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
|
||||||
msgid "No packages need reviewing."
|
msgid "No packages need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:80
|
#: app/templates/todo/editor.html:80
|
||||||
@ -2491,7 +2504,7 @@ msgid "Importing"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:90
|
#: app/templates/todo/editor.html:90
|
||||||
msgid "No releases need reviewing."
|
msgid "No releases need approval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: app/templates/todo/editor.html:100
|
#: app/templates/todo/editor.html:100
|
||||||
@ -3111,3 +3124,25 @@ msgid ""
|
|||||||
"Please consider enabling email notifications, you can customise how much "
|
"Please consider enabling email notifications, you can customise how much "
|
||||||
"is sent"
|
"is sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "A review thread already exists!"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Package review thread"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can open a thread if you "
|
||||||
|
#~ "have a question for the reviewer "
|
||||||
|
#~ "or package author."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No screenshots need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No packages need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "No releases need reviewing."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user