Fix inconsistent naming of reviews vs approvals

Fixes #354
This commit is contained in:
rubenwardy 2022-01-20 01:18:10 +00:00
parent d7152485bb
commit 3ad003140f
18 changed files with 995 additions and 640 deletions

View File

@ -391,7 +391,7 @@ def move_to_state(package):
db.session.commit()
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:
return redirect(package.review_thread.getViewURL())
else:

View File

@ -303,7 +303,7 @@ def new():
# Only allow creating one thread when not approved
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())
elif not current_user.canOpenThreadRL():

View File

@ -163,11 +163,11 @@ class PackageState(enum.Enum):
def verb(self):
if self == self.READY_FOR_REVIEW:
return "Submit for Review"
return lazy_gettext("Submit for Approval")
elif self == self.APPROVED:
return "Approve"
return lazy_gettext("Approve")
elif self == self.DELETED:
return "Delete"
return lazy_gettext("Delete")
else:
return self.value

View File

@ -14,11 +14,53 @@ $("textarea.markdown").each(function() {
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({
element: this,
hideIcons: ["image"],
showIcons: ["code", "table"],
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) => {
if (timeout_id) {
clearTimeout(timeout_id);

View File

@ -107,8 +107,8 @@
{{ _("Open Thread") }}
</a>
{{ _("Package review thread") }}:
{{ _("You can open a thread if you have a question for the reviewer or package author.") }}
{{ _("Package approval thread") }}:
{{ _("You can open a thread if you have a question for the approver or package author.") }}
<div style="clear:both;"></div>
</div>
{% endif %}

View File

@ -33,7 +33,7 @@
{{ ss.title }}
{% if not ss.approved %}
<div class="text-muted">
{{ _("Awaiting review") }}
{{ _("Awaiting approval") }}
</div>
{% endif %}
</div>

View File

@ -30,7 +30,7 @@
</div>
</a></li>
{% else %}
<li><i>{{ _("No screenshots need reviewing.") }}</i></li>
<li><i>{{ _("No screenshots need approval.") }}</i></li>
{% endfor %}
{% for i in range(4) %}
<li class="packagetile flex-fill"></li>
@ -62,7 +62,7 @@
{{ p.title }} by {{ p.author.display_name }}
</a>
{% 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 %}
</div>
</div>
@ -87,7 +87,7 @@
</a>
</li>
{% 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 %}
</ul>
</div>
@ -180,7 +180,7 @@
{{ p.title }} by {{ p.author.display_name }}
</a>
{% 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 %}
</div>
</div>

View File

@ -7,17 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: Wuzzy <almikes@aol.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/minetest/"
"contentdb/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"
"Content-Type: text/plain; charset=utf-8\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"
#: 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"
#: 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 ""
"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:431
@ -251,7 +252,7 @@ msgstr "Autorenname"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -374,13 +375,13 @@ msgstr "Gelöschte Update-Konfiguration"
msgid "Now, please create an initial release"
msgstr "Bitte erstellen Sie nun einen ersten Release"
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Privat"
@ -416,64 +417,65 @@ msgstr "Titel/Untertitel"
msgid "Cover Image"
msgstr "Titelbild"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "Bereits abonniert!"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Thema abonniert"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Deabonniert!"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "Bereits nicht abonniert!"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Gesperrtes Thema"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr "Entsperrtes Thema"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
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"
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"
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."
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
msgid "Open Thread"
msgstr "Offenes Thema"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
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!"
msgstr "Thema kann nicht erstellt werden!"
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
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"
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 "
"contact an administrator."
msgstr ""
"Ihre E-Mail-Adresse hat sich geändert. Wenn Sie dies nicht beantragt haben, "
"wenden Sie sich bitte an einen Administrator."
"Ihre E-Mail-Adresse hat sich geändert. Wenn Sie dies nicht beantragt "
"haben, wenden Sie sich bitte an einen Administrator."
#: app/blueprints/users/account.py:377
msgid "You may now log in"
@ -668,8 +670,8 @@ msgid ""
"Invalid username - must only contain A-Za-z0-9._. Consider contacting an "
"admin"
msgstr ""
"Ungültiger Benutzername darf nur A-Za-z0-9._ enthalten. Wenden Sie sich an "
"einen Administrator"
"Ungültiger Benutzername darf nur A-Za-z0-9._ enthalten. Wenden Sie sich"
" an einen Administrator"
#: app/blueprints/users/claim.py:51
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
msgid "Unable to get forum signature - does the user exist?"
msgstr ""
"Signatur des Forums kann nicht abgerufen werden existiert der Benutzer?"
msgstr "Signatur des Forums kann nicht abgerufen werden existiert der Benutzer?"
#: app/blueprints/users/claim.py:111
msgid "Unable to login as user"
@ -854,8 +855,8 @@ msgid ""
"Name can only contain lower case letters (a-z), digits (0-9), and "
"underscores (_)"
msgstr ""
"Namen dürfen nur Kleinbuchstaben (a-z), Ziffern (0-9) und Unterstriche (_) "
"enthalten"
"Namen dürfen nur Kleinbuchstaben (a-z), Ziffern (0-9) und Unterstriche "
"(_) enthalten"
#: app/logic/packages.py:107
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-"
"Zeichenkette sein"
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
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"
msgstr "eine PNG- oder JPG-Bilddatei"
@ -929,6 +930,25 @@ msgstr "Spiele"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr "Seite nicht gefunden"
@ -1205,15 +1225,6 @@ msgstr "Bearbeiten %(name)s"
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
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
msgid "If this was you, then please click this link to confirm the address:"
msgstr ""
"Falls Sie das waren, klicken Sie bitte auf den folgenden Link, um die E-Mail-"
"Adresse zu bestätigen:"
"Falls Sie das waren, klicken Sie bitte auf den folgenden Link, um die E"
"-Mail-Adresse zu bestätigen:"
#: app/templates/emails/verify.html:19
msgid "Confirm Email Address"
@ -1363,24 +1374,24 @@ msgid ""
"You are receiving this email because someone (hopefully you) entered your"
" email address as a user's email."
msgstr ""
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-Adresse "
"als Benutzer-E-Mail hinterlegt hat."
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-"
"Adresse als Benutzer-E-Mail hinterlegt hat."
#: app/templates/emails/verify_unsubscribe.html:9
msgid ""
"We're sorry to see you go. You just need to do one more thing before your"
" email is blacklisted."
msgstr ""
"Es tut uns leid, Sie gehen zu sehen. Sie müssen nur noch eine Sache machen, "
"bevor Ihre E-Mail-Addresse auf die schwarze Liste gesetzt wird."
"Es tut uns leid, Sie gehen zu sehen. Sie müssen nur noch eine Sache "
"machen, bevor Ihre E-Mail-Addresse auf die schwarze Liste gesetzt wird."
#: app/templates/emails/verify_unsubscribe.html:23
msgid ""
"You are receiving this email because someone (hopefully you) entered your"
" email address in the unsubscribe form."
msgstr ""
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-Adresse "
"im Abmelden-Formular eingegeben hat."
"Sie empfangen diese E-Mail, weil jemand (hoffentlich Sie) die E-Mail-"
"Adresse im Abmelden-Formular eingegeben hat."
#: app/templates/macros/audit_log.html:13
#, python-format
@ -1420,7 +1431,8 @@ msgstr "Releases bearbeiten"
#: app/templates/macros/package_approval.html:29
msgid "You need to create a release before this package can be approved."
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
msgid "A release is required before this package can be approved."
@ -1464,14 +1476,14 @@ msgstr "Bitte warten Sie, bis das Paket genehmigt wurde."
#: app/templates/macros/package_approval.html:65
msgid "You can now submit this package for approval if you're ready."
msgstr ""
"Sie können nun dieses Paket für eine Genehmigung einreichen, wenn Sie bereit "
"sind."
"Sie können nun dieses Paket für eine Genehmigung einreichen, wenn Sie "
"bereit sind."
#: app/templates/macros/package_approval.html:67
msgid "This package can be submitted for approval when ready."
msgstr ""
"Dieses Paket kann für eine Genehmigung eingereicht werden, wenn es bereit "
"ist."
"Dieses Paket kann für eine Genehmigung eingereicht werden, wenn es bereit"
" ist."
#: app/templates/macros/package_approval.html:97
msgid "Please make sure that this package has the right to the names it uses."
@ -1483,20 +1495,22 @@ msgstr ""
#, python-format
msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
"Bitte stellen Sie sicher, dass dieses Paket Rechte für die Namen %(names)s "
"hat"
"Bitte stellen Sie sicher, dass dieses Paket Rechte für die Namen "
"%(names)s hat"
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
#, fuzzy
msgid "Package approval thread"
msgstr "Paket-Review-Thema"
#: app/templates/macros/package_approval.html:111
#, fuzzy
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."
msgstr ""
"Sie können ein Thema eröffnen, wenn Sie eine Frage an den Rezensenten oder "
"Paketautoren haben."
"Sie können ein Thema eröffnen, wenn Sie eine Frage an den Rezensenten "
"oder Paketautoren haben."
#: app/templates/macros/packagegridtile.html:25
msgid "<b>Warning:</b> Non-free code and media."
@ -1686,8 +1700,7 @@ msgstr "Bereitgestellt von"
#: app/templates/metapackages/view.html:17
msgid "Unfortunately, this isn't on ContentDB yet! Here's some forum topic(s):"
msgstr ""
"Leider ist dies noch nicht auf ContentDB! Hier sind ein paar Forenthemen:"
msgstr "Leider ist dies noch nicht auf ContentDB! Hier sind ein paar Forenthemen:"
#: app/templates/metapackages/view.html:24
#: app/templates/packages/similar.html:38 app/templates/packages/view.html:351
@ -1762,8 +1775,8 @@ msgstr "Massenweise Aktualisierungseinstellungen setzen"
#: app/templates/packages/bulk_update_conf.html:18
msgid "This will set the update settings for all packages with a Git repo."
msgstr ""
"Hierbei werden die Aktualisierungseinstellungen für alle Pakete mit einem "
"Git-Repository festgelegt."
"Hierbei werden die Aktualisierungseinstellungen für alle Pakete mit einem"
" Git-Repository festgelegt."
#: app/templates/packages/bulk_update_conf.html:27
#: app/templates/packages/release_new.html:50
@ -1838,14 +1851,14 @@ msgid ""
"Please choose 'Work in Progress' if your package is unstable, and "
"shouldn't be recommended to all players"
msgstr ""
"Bitte wählen Sie „In Arbeit“, wenn Ihr Paket instabil ist und nicht für alle "
"Spieler empfohlen werden sollte"
"Bitte wählen Sie „In Arbeit“, wenn Ihr Paket instabil ist und nicht für "
"alle Spieler empfohlen werden sollte"
#: app/templates/packages/create_edit.html:89
msgid "If there is no media, set the Media License to the same as the License."
msgstr ""
"Setzen Sie die Medienlizenz auf die gleiche Lizenz wie die normale Lizenz, "
"sofern keine Medien vorhanden sind."
"Setzen Sie die Medienlizenz auf die gleiche Lizenz wie die normale "
"Lizenz, sofern keine Medien vorhanden sind."
#: app/templates/packages/create_edit.html:95
msgid "Repository and Links"
@ -1897,16 +1910,16 @@ msgid ""
"releases and screenshots, and read private threads."
msgstr ""
"Abhängig von ihrem Rang werden sie in der Lage sein, das Paket zu "
"bearbeiten, Releases und Bildschirmfotos zu erstellen, und private Themen zu "
"lesen."
"bearbeiten, Releases und Bildschirmfotos zu erstellen, und private Themen"
" zu lesen."
#: app/templates/packages/edit_maintainers.html:13
msgid ""
"Maintainers cannot add or remove other maintainers, but can remove "
"themselves."
msgstr ""
"Betreuer können keine anderen Betreuer hinzufügen oder entfernen, aber sie "
"können sich selbst entfernen."
"Betreuer können keine anderen Betreuer hinzufügen oder entfernen, aber "
"sie können sich selbst entfernen."
#: app/templates/packages/list.html:21
#, python-format
@ -1932,8 +1945,8 @@ msgstr "Massenänderungsreleases"
#: app/templates/packages/release_bulk_change.html:11
msgid "Use this page to set the min and max of all releases for your package."
msgstr ""
"Verwenden Sie diese Seite, um die Min- und Max-Version aller Releases für "
"Ihr Paket festzulegen."
"Verwenden Sie diese Seite, um die Min- und Max-Version aller Releases für"
" Ihr Paket festzulegen."
#: app/templates/packages/release_bulk_change.html:29
#: app/templates/packages/release_edit.html:54
@ -1957,8 +1970,8 @@ msgid ""
"\t\t\tfor max as this does not make sense - you can't predict the future."
msgstr ""
"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 "
"vorhersagen."
"\t\t\tfür max wählen, da dies keinen Sinn macht man kann die Zukunft "
"nicht vorhersagen."
#: app/templates/packages/release_bulk_change.html:38
#: 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. "
msgstr ""
"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, "
"nicht angezeigt. "
"\t\t\tDieser Release wird für Clients, die außerhalb dieses Bereichs "
"liegen, nicht angezeigt. "
#: app/templates/packages/release_edit.html:63
msgid ""
@ -2024,8 +2037,8 @@ msgstr ""
#: app/templates/packages/release_edit.html:87
msgid "You cannot delete the latest release; please create a newer one first."
msgstr ""
"Sie können den neuesten Release nicht löschen, bitte erstellen Sie zuerst "
"ein neueres."
"Sie können den neuesten Release nicht löschen, bitte erstellen Sie zuerst"
" ein neueres."
#: app/templates/packages/release_new.html:4
#: app/templates/packages/release_new.html:8
@ -2043,8 +2056,8 @@ msgstr "Sie haben die Git-Update-Benachrichtigungen aktiviert."
#: app/templates/packages/release_new.html:17
msgid "You can enable automatic updates in the update settings."
msgstr ""
"Sie können automatische Aktualisierungen in den Aktualisierungseinstellungen "
"aktivieren."
"Sie können automatische Aktualisierungen in den "
"Aktualisierungseinstellungen aktivieren."
#: app/templates/packages/release_new.html:23
msgid "Set up"
@ -2069,8 +2082,8 @@ msgid ""
"Using Git would allow you to create releases automatically when you push "
"code or tags."
msgstr ""
"Mit Git können Sie Releases automatisch erstellen, wenn Sie Code oder Tags "
"pushen."
"Mit Git können Sie Releases automatisch erstellen, wenn Sie Code oder "
"Tags pushen."
#: app/templates/packages/release_new.html:40
msgid "1. Name release"
@ -2090,8 +2103,8 @@ msgid ""
"and Releases Guide</a> for\n"
"\t\t\ttips on customising releases."
msgstr ""
"Werfen Sie einen Blick in das <a href='/help/package_config/'>Handbuch zur "
"Paketkonfiguration und Releases</a> für\n"
"Werfen Sie einen Blick in das <a href='/help/package_config/'>Handbuch "
"zur Paketkonfiguration und Releases</a> für\n"
"\t\t\tTipps zum Anpassen von Releases."
#: app/templates/packages/release_new.html:61
@ -2128,8 +2141,8 @@ msgid ""
" cycle, as Minetest needs them to check for updates."
msgstr ""
"Sie müssen Releases erstellen, auch wenn Sie einen Rolling-Release-"
"Entwicklungszyklus verwenden, da Minetest diese benötigt, um nach Updates zu "
"suchen."
"Entwicklungszyklus verwenden, da Minetest diese benötigt, um nach Updates"
" zu suchen."
#: app/templates/packages/release_wizard.html:20
#: app/templates/packages/update_config.html:12
@ -2269,9 +2282,9 @@ msgid ""
"This will convert the review into a thread, keeping the comments but "
"removing its effect on the package's rating."
msgstr ""
"Dadurch wird die Rezension in ein Thema umgewandelt, wobei die Kommentare "
"erhalten bleiben, aber ihre Wirkung auf die Bewertung des Pakets aufgehoben "
"wird."
"Dadurch wird die Rezension in ein Thema umgewandelt, wobei die Kommentare"
" erhalten bleiben, aber ihre Wirkung auf die Bewertung des Pakets "
"aufgehoben wird."
#: app/templates/packages/review_votes.html:4
#: app/templates/packages/view.html:287
@ -2299,13 +2312,12 @@ msgstr "Bild hinzufügen"
#: app/templates/packages/screenshots.html:17
msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
"Das oberste Bildschirmfoto wird als Vorschaubild für das Paket verwendet."
msgstr "Das oberste Bildschirmfoto wird als Vorschaubild für das Paket verwendet."
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr "Review steht noch aus"
#, fuzzy
msgid "Awaiting approval"
msgstr "Warte auf Genehmigung."
#: app/templates/packages/screenshots.html:54
msgid "No screenshots."
@ -2365,17 +2377,17 @@ msgstr ""
#: app/templates/packages/update_config.html:17
msgid "You should consider using webhooks or the API for faster releases."
msgstr ""
"Sie sollten die Verwendung von Webhooks oder der API für schnellere Releases "
"in Betracht ziehen."
"Sie sollten die Verwendung von Webhooks oder der API für schnellere "
"Releases in Betracht ziehen."
#: app/templates/packages/update_config.html:18
msgid ""
"Git Update Detection is clever enough to not create a release again if "
"you've already created it manually or using webhooks/the API."
msgstr ""
"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 "
"erstellt haben."
"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 erstellt haben."
#: app/templates/packages/update_config.html:28
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 "
"rank or above."
msgstr ""
"Dieses Thema ist nur für den Paketeigentümer und Benutzer mit dem Rang eines "
"Genehmigers oder höher sichtbar."
"Dieses Thema ist nur für den Paketeigentümer und Benutzer mit dem Rang "
"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
msgid "Edit Review"
@ -2637,8 +2653,8 @@ msgid ""
"This thread is only visible to its creator, the package owner, and users "
"of Approver rank or above."
msgstr ""
"Dieses Thema ist nur für seinen Ersteller, den Paketbesitzer und Benutzer "
"mit dem Rang „Genehmiger“ oder höher sichtbar."
"Dieses Thema ist nur für seinen Ersteller, den Paketbesitzer und Benutzer"
" mit dem Rang „Genehmiger“ oder höher sichtbar."
#: app/templates/todo/editor.html:4 app/templates/todo/todo_base.html:17
msgid "Editor Work Queue"
@ -2653,11 +2669,13 @@ msgid "Approve All"
msgstr "Alle genehmigen"
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
#, fuzzy
msgid "No screenshots need approval."
msgstr "Keine Bildschirmfotos brauchen eine Überprüfung."
#: 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."
#: app/templates/todo/editor.html:80
@ -2665,7 +2683,8 @@ msgid "Importing"
msgstr "Importieren"
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
#, fuzzy
msgid "No releases need approval."
msgstr "Keine Releases brauchen eine Überprüfung."
#: app/templates/todo/editor.html:100
@ -2801,8 +2820,8 @@ msgid ""
"Consider changing the update settings to create releases automatically "
"instead."
msgstr ""
"Erwägen Sie, die Aktualisierungseinstellungen so zu ändern, dass stattdessen "
"automatisch Releases erstellt werden."
"Erwägen Sie, die Aktualisierungseinstellungen so zu ändern, dass "
"stattdessen automatisch Releases erstellt werden."
#: app/templates/todo/user.html:61
msgid ""
@ -2810,17 +2829,17 @@ msgid ""
"releases when New Commits or New Tags are pushed to Git by clicking "
"'Update Settings'."
msgstr ""
"Anstatt Pakete als veraltet zu markieren, können Sie automatisch Releases "
"erstellen lassen, wenn neue Commits oder neue Tags mit Git gepusht werden, "
"indem Sie auf „Einstellungen aktualisieren“ klicken."
"Anstatt Pakete als veraltet zu markieren, können Sie automatisch Releases"
" erstellen lassen, wenn neue Commits oder neue Tags mit Git gepusht "
"werden, indem Sie auf „Einstellungen aktualisieren“ klicken."
#: app/templates/todo/user.html:63
msgid ""
"To remove a package from below, create a release or change the update "
"settings."
msgstr ""
"Um ein Paket von unten zu entfernen, erstellen Sie ein neues Releases oder "
"ändern Sie die Aktualisierungseinstellungen."
"Um ein Paket von unten zu entfernen, erstellen Sie ein neues Releases "
"oder ändern Sie die Aktualisierungseinstellungen."
#: app/templates/todo/user.html:72
msgid "See All"
@ -2941,9 +2960,9 @@ msgid ""
"Your email is needed to recover your account if you forget your password "
"and to send (configurable) notifications. "
msgstr ""
"Ihre E-Mail-Adresse wird benötigt, um Ihr Konto wiederherzustellen, wenn Sie "
"Ihr Passwort vergessen haben, und um (konfigurierbare) Benachrichtigungen zu "
"senden. "
"Ihre E-Mail-Adresse wird benötigt, um Ihr Konto wiederherzustellen, wenn "
"Sie Ihr Passwort vergessen haben, und um (konfigurierbare) "
"Benachrichtigungen zu senden. "
#: app/templates/users/change_set_password.html:29
#: 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"
" one of the options below."
msgstr ""
"Sie müssen nachweisen, dass Sie Zugang zu Ihrem Forenkonto haben, indem Sie "
"eine der folgenden Optionen verwenden."
"Sie müssen nachweisen, dass Sie Zugang zu Ihrem Forenkonto haben, indem "
"Sie eine der folgenden Optionen verwenden."
#: app/templates/users/claim_forums.html:14
msgid "This is so ContentDB can link your account to your forum account."
@ -3052,8 +3071,8 @@ msgid ""
"Log into the forum and <a "
"href='https://forum.minetest.net/ucp.php?i=173'>do that here</a>."
msgstr ""
"Loggen Sie sich auf dem Forum ein und <a href='https://forum.minetest.net/"
"ucp.php?i=173'>tun Sie das hier</a>."
"Loggen Sie sich auf dem Forum ein und <a "
"href='https://forum.minetest.net/ucp.php?i=173'>tun Sie das hier</a>."
#: app/templates/users/claim_forums.html:47
msgid "Next: log in with GitHub"
@ -3100,8 +3119,8 @@ msgid ""
"This will delete your account, removing %(threads)d threads and "
"%(replies)d replies."
msgstr ""
"Dies wird Ihr Konto löschen, %(threads)d Themen und %(replies)d Antworten "
"entfernen."
"Dies wird Ihr Konto löschen, %(threads)d Themen und %(replies)d Antworten"
" entfernen."
#: app/templates/users/delete.html:22
msgid ""
@ -3117,8 +3136,8 @@ msgid ""
"Instead, your account will be deactivated and all personal information "
"wiped - including %(threads)d threads and %(replies)d replies."
msgstr ""
"Stattdessen wird Ihr Konto deaktiviert und alle persönlichen Daten werden "
"gelöscht einschließlich %(threads)d Themen und %(replies)d Antworten."
"Stattdessen wird Ihr Konto deaktiviert und alle persönlichen Daten werden"
" gelöscht einschließlich %(threads)d Themen und %(replies)d Antworten."
#: app/templates/users/delete.html:25
msgid "See the privacy policy for more information."
@ -3239,8 +3258,8 @@ msgstr "Profil-Informationen"
#: app/templates/users/profile_edit.html:52
msgid "Pretending to be another user is grounds for a permanent ban"
msgstr ""
"Sich als ein anderer Benutzer auszugeben, ist ein Grund für eine permanente "
"Sperre"
"Sich als ein anderer Benutzer auszugeben, ist ein Grund für eine "
"permanente Sperre"
#: app/templates/users/register.html:17
msgid ""
@ -3350,3 +3369,4 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ msgstr ""

View File

@ -7,17 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"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-Team: Spanish "
"<https://hosted.weblate.org/projects/minetest/contentdb/es/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10.1\n"
"Generated-By: Babel 2.9.1\n"
#: app/__init__.py:102
@ -212,7 +211,8 @@ msgid "You don't have permission to do that"
msgstr "No tienes permiso para hacer eso"
#: 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"
#: 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: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/packages/release_edit.html:17
msgid "Title"
@ -375,13 +375,13 @@ msgstr "Configuración de actualización eliminada"
msgid "Now, please create an initial release"
msgstr "Ahora, crea un lanzamiento inicial"
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Privado"
@ -417,64 +417,65 @@ msgstr "Título"
msgid "Cover Image"
msgstr "Imagen de portada"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "¡Ya está suscrito!"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Suscrito al hilo"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Suscripción cancelada"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "¡Ya no estás suscrito!"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Hilo bloqueado"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr "Hilo desbloqueado"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
msgstr ""
#: app/blueprints/threads/__init__.py:224
#: app/blueprints/threads/__init__.py:225
msgid "You cannot comment on this thread"
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"
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."
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
msgid "Open Thread"
msgstr "Crear Hilo"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
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!"
msgstr ""
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
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"
msgstr "Por favor espere antes de crear otro hilo"
@ -558,12 +559,14 @@ msgstr "Respuesta del captcha incorrecta"
#: app/blueprints/users/account.py:125
msgid "An account already exists for that username but hasn't been claimed yet."
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
msgid "That username/display name is already in use, please choose another."
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
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 "
"%(display_name)s. Try a different email address."
msgstr ""
"No hemos podido crear la cuenta porque el correo electrónico ya está en uso "
"por %(display_name)s. Pruebe con otra dirección de correo electrónico."
"No hemos podido crear la cuenta porque el correo electrónico ya está en "
"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/settings.py:133
@ -642,8 +646,8 @@ msgid ""
"Your email address has changed. If you didn't request this, please "
"contact an administrator."
msgstr ""
"Su dirección de correo electrónico ha cambiado. Si no ha solicitado esto, "
"por favor póngase en contacto con un administrador."
"Su dirección de correo electrónico ha cambiado. Si no ha solicitado esto,"
" por favor póngase en contacto con un administrador."
#: app/blueprints/users/account.py:377
msgid "You may now log in"
@ -658,16 +662,16 @@ msgid ""
"That email is now blacklisted. Please contact an admin if you wish to "
"undo this."
msgstr ""
"Ese correo electrónico está ahora en la lista negra. Por favor contacte con "
"un administrador si desea deshacer esto."
"Ese correo electrónico está ahora en la lista negra. Por favor contacte "
"con un administrador si desea deshacer esto."
#: app/blueprints/users/claim.py:46 app/blueprints/users/claim.py:71
msgid ""
"Invalid username - must only contain A-Za-z0-9._. Consider contacting an "
"admin"
msgstr ""
"Nombre de usuario inválido - debe contener únicamente A-Za-z0-9._. Considere "
"contactar con un administrador"
"Nombre de usuario inválido - debe contener únicamente A-Za-z0-9._. "
"Considere contactar con un administrador"
#: app/blueprints/users/claim.py:51
msgid "User has already been claimed"
@ -875,11 +879,11 @@ msgstr ""
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
msgstr ""
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -918,6 +922,24 @@ msgstr "Juegos"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr ""
@ -1192,15 +1214,6 @@ msgstr "Editar - %(name)s"
msgid "Create API Token"
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
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."
@ -1464,12 +1477,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2196,8 +2209,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2340,6 +2352,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2525,11 +2541,12 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgstr ""
#, fuzzy
msgid "No screenshots need approval."
msgstr "Sin capturas de pantalla."
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2537,7 +2554,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100
@ -3209,3 +3226,22 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ 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 ""

View File

@ -7,17 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: AFCMS <afcm.contact@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/minetest/"
"contentdb/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"
"Content-Type: text/plain; charset=utf-8\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"
#: 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"
#: 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"
#: 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: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/packages/release_edit.html:17
msgid "Title"
@ -379,13 +379,13 @@ msgstr "Configuration de mise à jour supprimée"
msgid "Now, please create an initial release"
msgstr "Maintenant, veuillez créer une version initiale"
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Privée"
@ -421,64 +421,65 @@ msgstr "Titre/légende"
msgid "Cover Image"
msgstr "Image de couverture"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "Déjà abonné !"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Abonné au fil de discussion"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Désabonné !"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "Déjà non abonné !"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Fil verrouillé"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr "Fil déverrouillé"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
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"
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"
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."
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
msgid "Open Thread"
msgstr "Ouvrir un fil de discussion"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr "Impossible de trouver ce paquet !"
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr "Impossible de créer le fil de discussion !"
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
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"
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
msgid "Unable to get forum signature - does the user exist?"
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
msgid "Unable to login as user"
@ -854,8 +856,8 @@ msgid ""
"Name can only contain lower case letters (a-z), digits (0-9), and "
"underscores (_)"
msgstr ""
"Lettres minuscules (a-z), chiffres (0-9) et caractères de soulignement (_) "
"uniquement"
"Lettres minuscules (a-z), chiffres (0-9) et caractères de soulignement "
"(_) uniquement"
#: app/logic/packages.py:107
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"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
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"
msgstr "une image PNG ou JPG"
@ -925,6 +927,25 @@ msgstr "Jeux"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr "Page introuvable"
@ -1203,15 +1224,6 @@ msgstr "Modification - %(name)s"
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
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"
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
#, fuzzy
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."
msgstr ""
"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"
" .conf of your package."
msgstr ""
"Vous pouvez <a href='/help/package_config/'>configurer cela automatiquement</"
"a> dans le .conf de votre paquet."
"Vous pouvez <a href='/help/package_config/'>configurer cela "
"automatiquement</a> dans le .conf de votre paquet."
#: app/templates/packages/release_edit.html:75
msgid "Delete Release"
@ -2000,8 +2013,8 @@ msgid ""
"Any associated uploads will not be deleted immediately, but the release "
"will no longer be listed."
msgstr ""
"Les imports associés ne seront pas supprimé immédiatement, mais la version "
"ne sera plus référencée."
"Les imports associés ne seront pas supprimé immédiatement, mais la "
"version ne sera plus référencée."
#: app/templates/packages/release_edit.html:87
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
msgid "You can enable automatic updates in the update settings."
msgstr ""
"Vous pouvez activer les mise à jour automatiques dans les paramètres de mise "
"à jour."
"Vous pouvez activer les mise à jour automatiques dans les paramètres de "
"mise à jour."
#: app/templates/packages/release_new.html:23
msgid "Set up"
@ -2072,8 +2085,8 @@ msgid ""
"and Releases Guide</a> for\n"
"\t\t\ttips on customising releases."
msgstr ""
"Regardez le <a href='/help/package_config/'>Guide de configuration de paquet "
"et de version </a>\n"
"Regardez le <a href='/help/package_config/'>Guide de configuration de "
"paquet et de version </a>\n"
"\t\t\tpour des conseils sur la customisation de version."
#: app/templates/packages/release_new.html:61
@ -2086,8 +2099,8 @@ msgid ""
"automatically</a>,\n"
"\t\t\twhich will override your selection."
msgstr ""
"Le .conf dans votre paquet peux <a href='/help/package_config/'>définir cela "
"automatiquement</a>,\n"
"Le .conf dans votre paquet peux <a href='/help/package_config/'>définir "
"cela automatiquement</a>,\n"
"\t\t\tce qui ignorera votre sélection."
#: 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"
" cycle, as Minetest needs them to check for updates."
msgstr ""
"Vous devez créer des version même si vous utilisez un cycle de développement "
"en continue, car Minetest en a besoin pour vérifier les mise à jour."
"Vous devez créer des version même si vous utilisez un cycle de "
"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/update_config.html:12
@ -2194,9 +2208,10 @@ msgid ""
"future.\n"
"\t\t\tThe Admin can restore removed packages, if needed."
msgstr ""
"Pour éviter des pertes de données, vous ne pouvez pas supprimer des paquets "
"de façon permanente.\n"
"Vous pouvez cependant les masquer des autres utilisatrices et utilisateurs.\n"
"Pour éviter des pertes de données, vous ne pouvez pas supprimer des "
"paquets de façon permanente.\n"
"Vous pouvez cependant les masquer des autres utilisatrices et "
"utilisateurs.\n"
"Ils pourront être supprimés automatiquement par la suite.\n"
"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."
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr "En attente de révision"
#, fuzzy
msgid "Awaiting approval"
msgstr "En attente de l'approbation."
#: app/templates/packages/screenshots.html:54
msgid "No screenshots."
@ -2312,8 +2327,7 @@ msgstr ""
#: app/templates/packages/similar.html:14
msgid "This package contains modnames that are present in the following packages:"
msgstr ""
"Ce paquet contient des noms de mods présents dans les paquets suivants :"
msgstr "Ce paquet contient des noms de mods présents dans les paquets suivants :"
#: app/templates/packages/similar.html:32
msgid "Similar Forum Topics"
@ -2424,8 +2438,12 @@ msgid ""
"This thread is only visible to the package owner and users of Approver "
"rank or above."
msgstr ""
"Ce fil est seulement visible du propriétaire du paquet et les utilisateurs "
"de rang \"Approver\" et supérieur."
"Ce fil est seulement visible du propriétaire du paquet et les "
"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
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 "
"you can let us know here."
msgstr ""
"Si le paquet ne devrait pas être sur CDB (ex : ne fonctionne pas du tout), "
"vous pouvez nous le faire savoir ici."
"Si le paquet ne devrait pas être sur CDB (ex : ne fonctionne pas du "
"tout), vous pouvez nous le faire savoir ici."
#: app/templates/threads/new.html:40
msgid ""
"Only you, the package author, and users of Approver rank and above can "
"read private threads."
msgstr ""
"Seulement vous, l'auteur du paquet, et les utilisateurs de rang \"Approver\" "
"et supérieur peuvent lire les fils privés."
"Seulement vous, l'auteur du paquet, et les utilisateurs de rang "
"\"Approver\" et supérieur peuvent lire les fils privés."
#: app/templates/threads/user_comments.html:9
#: 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 "
"of Approver rank or above."
msgstr ""
"Ce fil est seulement visible de son créateur, le propriétaire du paquet, et "
"les utilisateurs de rang \"Approver\" et supérieur."
"Ce fil est seulement visible de son créateur, le propriétaire du paquet, "
"et les utilisateurs de rang \"Approver\" et supérieur."
#: app/templates/todo/editor.html:4 app/templates/todo/todo_base.html:17
#, fuzzy
@ -2623,20 +2641,23 @@ msgid "Approve All"
msgstr "Paquets non approuvés nécessitant une action"
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgstr ""
#, fuzzy
msgid "No screenshots need approval."
msgstr "Pas de capture d'écran."
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgstr ""
#, fuzzy
msgid "No packages need approval."
msgstr "Aucun paquet disponible"
#: app/templates/todo/editor.html:80
msgid "Importing"
msgstr "Importation"
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgstr ""
#, fuzzy
msgid "No releases need approval."
msgstr "Aucune version disponible."
#: app/templates/todo/editor.html:100
msgid "All done!"
@ -2766,8 +2787,8 @@ msgid ""
"New: Git Update Detection has been set up on all packages to send "
"notifications."
msgstr ""
"Nouveau : la détection de mise à jour de Git à été configurée pour envoyer "
"des notifications pour tout les paquets."
"Nouveau : la détection de mise à jour de Git à été configurée pour "
"envoyer des notifications pour tout les paquets."
#: app/templates/todo/user.html:58
msgid ""
@ -2820,8 +2841,8 @@ msgstr ""
#, fuzzy
msgid "Congrats! You don't have any topics which aren't on CDB."
msgstr ""
"Félicitation ! Vous n'avez aucune discussion de forum qui ne soit pas sur "
"CDB."
"Félicitation ! Vous n'avez aucune discussion de forum qui ne soit pas sur"
" CDB."
#: app/templates/users/account.html:4
#, python-format
@ -2982,8 +3003,8 @@ msgid ""
"You'll need to use prove that you have access to your forum account using"
" one of the options below."
msgstr ""
"Vous devrez prouver que vous avez accès à votre compte forum en utilisant "
"l'une des options ci-dessous."
"Vous devrez prouver que vous avez accès à votre compte forum en utilisant"
" l'une des options ci-dessous."
#: app/templates/users/claim_forums.html:14
msgid "This is so ContentDB can link your account to your forum account."
@ -3018,8 +3039,7 @@ msgstr "Nom d'utilisateur sur le forum"
#: app/templates/users/claim_forums.html:43
msgid "You'll need to have the GitHub field in your forum profile filled out."
msgstr ""
"Vous devrez avoir complété le champ GitHub dans votre profil sur le forum."
msgstr "Vous devrez avoir complété le champ GitHub dans votre profil sur le forum."
#: app/templates/users/claim_forums.html:44
msgid ""
@ -3070,8 +3090,8 @@ msgid ""
"This will delete your account, removing %(threads)d threads and "
"%(replies)d replies."
msgstr ""
"Cela va supprimer votre compte, ainsi que vos %(threads)d fils et %(replies)"
"d réponses."
"Cela va supprimer votre compte, ainsi que vos %(threads)d fils et "
"%(replies)d réponses."
#: app/templates/users/delete.html:22
msgid ""
@ -3356,3 +3376,16 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ msgstr ""
#~ msgid "Package review thread"
#~ msgstr ""
#~ msgid "No screenshots need reviewing."
#~ msgstr ""
#~ msgid "No packages need reviewing."
#~ msgstr ""
#~ msgid "No releases need reviewing."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: pampogo kiraly <pampogo.kiraly@gmail.com>\n"
"Language: hu\n"
@ -214,7 +214,7 @@ msgid "You don't have permission to do that"
msgstr "Nincs erre engedélye"
#: 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 ""
#: app/blueprints/packages/packages.py:415
@ -253,7 +253,7 @@ msgstr "Szerző Neve"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -378,13 +378,13 @@ msgstr "Törölt frissítési konfiguráció"
msgid "Now, please create an initial release"
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/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Privát"
@ -422,65 +422,66 @@ msgstr "Cím/Felirat"
msgid "Cover Image"
msgstr "Borítókép"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "Már feliratkozott!"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Feliratkozott a témára"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Leiratkozott!"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "Már nincsen feliratkozva!"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Lezárt téma"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
#, fuzzy
msgid "Unlocked thread"
msgstr "Feloldott téma"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
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"
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"
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."
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
msgid "Open Thread"
msgstr "Téma Megnyitása"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr "A csomag nem található!"
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr "Nem lehet létrehozni a témát!"
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
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"
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"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
#, fuzzy
msgid "Too many requests, please wait before trying again"
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"
msgstr ""
@ -924,6 +925,24 @@ msgstr "Játékok"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr ""
@ -1198,15 +1217,6 @@ msgstr ""
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
msgstr ""
@ -1449,12 +1459,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2180,8 +2190,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2324,6 +2333,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2509,11 +2522,11 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgid "No screenshots need approval."
msgstr ""
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2521,7 +2534,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100
@ -3158,3 +3171,24 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ 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 ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: Muhammad Rifqi Priyo Susanto "
"<muhammadrifqipriyosusanto@gmail.com>\n"
@ -212,7 +212,8 @@ msgid "You don't have permission to do that"
msgstr "Anda tidak memiliki izin untuk melakukannya"
#: 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"
#: app/blueprints/packages/packages.py:415
@ -250,7 +251,7 @@ msgstr "Nama Pembuat"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -371,13 +372,13 @@ msgstr "Konfigurasi pembaruan yang dihapus"
msgid "Now, please create an initial release"
msgstr "Sekarang, silakan buat rilis awalan"
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Pribadi"
@ -413,64 +414,65 @@ msgstr "Judul/Takarir"
msgid "Cover Image"
msgstr "Gambar Sampul"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "Telah berlangganan!"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Berlangganan ke utas"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Berhenti langganan!"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "Telah berhenti langganan!"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Utas yang dikunci"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr "Utas yang tidak terkunci"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
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"
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"
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."
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
msgid "Open Thread"
msgstr "Buka Utas"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr "Tidak dapat mencari paket tersebut!"
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr "Tidak dapat membuat utas!"
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
msgstr "Utas ulasan telah ada!"
#: app/blueprints/threads/__init__.py:300
#: app/blueprints/threads/__init__.py:310
msgid "Please wait before opening another thread"
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"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
#, fuzzy
msgid "Too many requests, please wait before trying again"
msgstr "Harap tunggu sebelum berkomentar lagi"
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -913,6 +915,25 @@ msgstr "Permainan"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr "Halaman tidak ditemukan"
@ -1189,15 +1210,6 @@ msgstr "Sunting - %(name)s"
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
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"
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
#, fuzzy
msgid "Package approval thread"
msgstr "Utas ulasan paket"
#: app/templates/macros/package_approval.html:111
#, fuzzy
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."
msgstr ""
"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."
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr "Menunggu tinjauan"
#, fuzzy
msgid "Awaiting approval"
msgstr "Menunggu persetujuan."
#: app/templates/packages/screenshots.html:54
msgid "No screenshots."
@ -2407,6 +2421,10 @@ msgstr ""
"Utas ini hanya tersedia kepada pemilik paket dan pengguna dengan jabatan "
"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
msgid "Edit Review"
msgstr "Sunting Ulasan"
@ -2599,11 +2617,13 @@ msgid "Approve All"
msgstr "Setujui Semua"
#: 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."
#: 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."
#: app/templates/todo/editor.html:80
@ -2611,7 +2631,8 @@ msgid "Importing"
msgstr "Mengimpor"
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
#, fuzzy
msgid "No releases need approval."
msgstr "Tidak ada rilis yang perlu ditinjau."
#: app/templates/todo/editor.html:100

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -207,7 +207,7 @@ msgid "You don't have permission to do that"
msgstr ""
#: 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 ""
#: app/blueprints/packages/packages.py:415
@ -245,7 +245,7 @@ msgstr ""
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -366,13 +366,13 @@ msgstr ""
msgid "Now, please create an initial release"
msgstr ""
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr ""
@ -408,64 +408,64 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr ""
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
msgstr ""
#: app/blueprints/threads/__init__.py:224
#: app/blueprints/threads/__init__.py:225
msgid "You cannot comment on this thread"
msgstr ""
#: app/blueprints/threads/__init__.py:228
#: app/blueprints/threads/__init__.py:229
msgid "Please wait before commenting again"
msgstr ""
#: app/blueprints/threads/__init__.py:256
#: app/blueprints/threads/__init__.py:266
msgid "Comment needs to be between 3 and 2000 characters."
msgstr ""
#: app/blueprints/threads/__init__.py:265
#: app/blueprints/threads/__init__.py:275
#: app/templates/macros/package_approval.html:107
msgid "Open Thread"
msgstr ""
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr ""
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr ""
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
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"
msgstr ""
@ -850,11 +850,11 @@ msgstr ""
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
msgstr ""
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -891,6 +891,23 @@ msgstr ""
msgid "Texture Packs"
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
msgid "Page not found"
msgstr ""
@ -1165,15 +1182,6 @@ msgstr ""
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
msgstr ""
@ -1416,12 +1424,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2147,8 +2155,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2291,6 +2298,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2476,11 +2487,11 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgid "No screenshots need approval."
msgstr ""
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2488,7 +2499,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100

View File

@ -7,18 +7,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: Yaya - Nurul Azeera Hidayah @ Muhammad Nur Hidayat "
"Yasuyoshi <translation@mnh48.moe>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/minetest/contentdb/"
"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"
"Content-Type: text/plain; charset=utf-8\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"
#: app/__init__.py:102
@ -213,7 +212,8 @@ msgid "You don't have permission to do that"
msgstr "Anda tiada kebenaran untuk berbuat sedemikian"
#: 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 ""
"Sila tulis komen mengenai perubahan apa yang diperlukan dalam bebenang "
"ulasan"
@ -253,7 +253,7 @@ msgstr "Nama Pencipta"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -374,13 +374,13 @@ msgstr "Konfigurasi kemas kini telah dipadam"
msgid "Now, please create an initial release"
msgstr "Sekarang, sila cipta sebuah terbitan awal"
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Peribadi"
@ -416,64 +416,65 @@ msgstr "Tajuk/Kapsyen"
msgid "Cover Image"
msgstr "Imej Kulit"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "Sudah dilanggan!"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Dilanggan ke bebenang"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Buang langganan!"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "Sudah dibuang langganan!"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Bebenang dikunci"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr "Bebenang dibuka kunci"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
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"
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"
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."
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
msgid "Open Thread"
msgstr "Buka Bebenang"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr "Tidak jumpa pakej tersebut!"
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr "Tidak mampu cipta bebenang!"
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
msgstr "Bebenang ulasan sudah wujud!"
#: app/blueprints/threads/__init__.py:300
#: app/blueprints/threads/__init__.py:310
msgid "Please wait before opening another thread"
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 "
"underscores (_)"
msgstr ""
"Nama hanya boleh mengandungi huruf kecil (a-z), digit (0-9), dan garis bawah "
"(_) sahaja"
"Nama hanya boleh mengandungi huruf kecil (a-z), digit (0-9), dan garis "
"bawah (_) sahaja"
#: app/logic/packages.py:107
msgid "You do not have permission to edit this package"
@ -875,20 +876,20 @@ msgid ""
"You've created too many releases for this package in the last 5 minutes, "
"please wait before trying again"
msgstr ""
"Anda telah mencipta terlalu banyak terbitan untuk pakej ini dalam 5 minit "
"lepas, sila tunggu sebentar sebelum mencuba lagi"
"Anda telah mencipta terlalu banyak terbitan untuk pakej ini dalam 5 minit"
" lepas, sila tunggu sebentar sebelum mencuba lagi"
#: app/logic/releases.py:74
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
"Cincang serahan tidak sah; ia mestilah rentetan asas 16 dengan panjang 40 "
"aksara"
"Cincang serahan tidak sah; ia mestilah rentetan asas 16 dengan panjang 40"
" aksara"
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
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"
msgstr "suatu fail imej PNG atau JPG"
@ -925,6 +926,25 @@ msgstr "Permainan"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr "Halaman tidak dijumpai"
@ -1204,15 +1224,6 @@ msgstr "Edit - %(name)s"
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
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"
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
#, fuzzy
msgid "Package approval thread"
msgstr "Bebenang ulasan pakej"
#: app/templates/macros/package_approval.html:111
#, fuzzy
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."
msgstr ""
"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."
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr "Menunggu pemeriksaan"
#, fuzzy
msgid "Awaiting approval"
msgstr "Menunggu kelulusan."
#: app/templates/packages/screenshots.html:54
msgid "No screenshots."
@ -2428,6 +2441,10 @@ msgstr ""
"Bebenang ini hanya kelihatan kepada pemilik pakej dan pengguna berpangkat"
" 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
msgid "Edit Review"
msgstr "Edit Ulasan"
@ -2619,11 +2636,13 @@ msgid "Approve All"
msgstr "Luluskan Semua"
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
#, fuzzy
msgid "No screenshots need approval."
msgstr "Tiada tangkap layar yang perlu diperiksa."
#: 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."
#: app/templates/todo/editor.html:80
@ -2631,7 +2650,8 @@ msgid "Importing"
msgstr "Mengimport"
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
#, fuzzy
msgid "No releases need approval."
msgstr "Tiada terbitan yang perlu diperiksa."
#: app/templates/todo/editor.html:100
@ -3340,3 +3360,4 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>\n"
"Language: nb_NO\n"
@ -209,7 +209,7 @@ msgid "You don't have permission to do that"
msgstr ""
#: 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 ""
#: app/blueprints/packages/packages.py:415
@ -247,7 +247,7 @@ msgstr ""
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -368,13 +368,13 @@ msgstr ""
msgid "Now, please create an initial release"
msgstr ""
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr ""
@ -410,64 +410,64 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr ""
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
msgstr ""
#: app/blueprints/threads/__init__.py:224
#: app/blueprints/threads/__init__.py:225
msgid "You cannot comment on this thread"
msgstr ""
#: app/blueprints/threads/__init__.py:228
#: app/blueprints/threads/__init__.py:229
msgid "Please wait before commenting again"
msgstr ""
#: app/blueprints/threads/__init__.py:256
#: app/blueprints/threads/__init__.py:266
msgid "Comment needs to be between 3 and 2000 characters."
msgstr ""
#: app/blueprints/threads/__init__.py:265
#: app/blueprints/threads/__init__.py:275
#: app/templates/macros/package_approval.html:107
msgid "Open Thread"
msgstr ""
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr ""
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr ""
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
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"
msgstr ""
@ -852,11 +852,11 @@ msgstr ""
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
msgstr ""
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -894,6 +894,23 @@ msgstr ""
msgid "Texture Packs"
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
msgid "Page not found"
msgstr ""
@ -1168,15 +1185,6 @@ msgstr ""
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
msgstr ""
@ -1419,12 +1427,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2150,8 +2158,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2294,6 +2301,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2480,11 +2491,11 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgid "No screenshots need approval."
msgstr ""
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2492,7 +2503,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100
@ -3162,3 +3173,27 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ 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 ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"Last-Translator: Mikitko <rudzik8@protonmail.com>\n"
"Language: ru\n"
@ -214,7 +214,8 @@ msgid "You don't have permission to do that"
msgstr "У вас нету разрешения это делать"
#: 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 треде"
#: app/blueprints/packages/packages.py:415
@ -252,7 +253,7 @@ msgstr "Имя автора"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -375,13 +376,13 @@ msgstr "Удалить обновлённую конфигурацию"
msgid "Now, please create an initial release"
msgstr "Теперь, создайте первый релиз"
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr "Приватный"
@ -417,64 +418,65 @@ msgstr "Название/подпись"
msgid "Cover Image"
msgstr "Изображение для обложки"
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr "Уже подписано!"
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr "Подписано на тред"
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr "Подписка отменена!"
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr "Уже не подписано!"
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr "Закрытый тред"
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr "Открытый тред"
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
msgstr "Не могу удалить пост, начинающий тред!"
#: app/blueprints/threads/__init__.py:224
#: app/blueprints/threads/__init__.py:225
msgid "You cannot comment on this thread"
msgstr "Вы не можете оставлять комментарии в этом треде"
#: app/blueprints/threads/__init__.py:228
#: app/blueprints/threads/__init__.py:229
msgid "Please wait before commenting again"
msgstr "Пожалуйста, подождите прежде чем снова комментировать"
#: app/blueprints/threads/__init__.py:256
#: app/blueprints/threads/__init__.py:266
msgid "Comment needs to be between 3 and 2000 characters."
msgstr "Комментарий должен быть размером от 3 до 2000 символов."
#: app/blueprints/threads/__init__.py:265
#: app/blueprints/threads/__init__.py:275
#: app/templates/macros/package_approval.html:107
msgid "Open Thread"
msgstr "Открыть тред"
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr "Не получилось найти это дополнение!"
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr "Не получилось создать тред!"
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
#, fuzzy
msgid "An approval thread already exists!"
msgstr "Review тред уже существует!"
#: app/blueprints/threads/__init__.py:300
#: app/blueprints/threads/__init__.py:310
msgid "Please wait before opening another thread"
msgstr "Пожалуйста, подождите прежде чем открывать ещё один тред"
@ -875,12 +877,12 @@ msgstr ""
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
#, fuzzy
msgid "Too many requests, please wait before trying again"
msgstr "Пожалуйста, подождите прежде чем снова комментировать"
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -919,6 +921,24 @@ msgstr "Игры"
msgid "Texture Packs"
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
msgid "Page not found"
msgstr "Страница не найдена"
@ -1195,15 +1215,6 @@ msgstr ""
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
msgstr ""
@ -1446,12 +1457,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2178,8 +2189,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2322,6 +2332,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2507,11 +2521,11 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgid "No screenshots need approval."
msgstr ""
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2519,7 +2533,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100
@ -3156,3 +3170,21 @@ msgstr ""
#~ msgid "Unable to add protected tag {tag.title} to package"
#~ 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 ""

View File

@ -1,4 +1,4 @@
# Translations template for PROJECT.
# Turkish translations for PROJECT.
# Copyright (C) 2022 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
@ -7,17 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"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-Team: Turkish "
"<https://hosted.weblate.org/projects/minetest/contentdb/tr/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10.1\n"
"Generated-By: Babel 2.9.1\n"
#: app/__init__.py:102
@ -210,7 +209,7 @@ msgid "You don't have permission to do that"
msgstr ""
#: 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 ""
#: app/blueprints/packages/packages.py:415
@ -248,7 +247,7 @@ msgstr "Yazar Adı"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -369,13 +368,13 @@ msgstr ""
msgid "Now, please create an initial release"
msgstr ""
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr ""
@ -411,64 +410,64 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr ""
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
msgstr ""
#: app/blueprints/threads/__init__.py:224
#: app/blueprints/threads/__init__.py:225
msgid "You cannot comment on this thread"
msgstr ""
#: app/blueprints/threads/__init__.py:228
#: app/blueprints/threads/__init__.py:229
msgid "Please wait before commenting again"
msgstr ""
#: app/blueprints/threads/__init__.py:256
#: app/blueprints/threads/__init__.py:266
msgid "Comment needs to be between 3 and 2000 characters."
msgstr ""
#: app/blueprints/threads/__init__.py:265
#: app/blueprints/threads/__init__.py:275
#: app/templates/macros/package_approval.html:107
msgid "Open Thread"
msgstr ""
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr ""
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr ""
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
#: app/blueprints/threads/__init__.py:306
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"
msgstr ""
@ -853,11 +852,11 @@ msgstr ""
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
msgstr ""
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -894,6 +893,23 @@ msgstr ""
msgid "Texture Packs"
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
msgid "Page not found"
msgstr ""
@ -1168,15 +1184,6 @@ msgstr ""
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
msgstr ""
@ -1419,12 +1426,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2150,8 +2157,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2294,6 +2300,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2479,11 +2489,11 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgid "No screenshots need approval."
msgstr ""
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2491,7 +2501,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100
@ -3111,3 +3121,28 @@ msgid ""
"Please consider enabling email notifications, you can customise how much "
"is sent"
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 ""

View File

@ -1,4 +1,4 @@
# Translations template for PROJECT.
# Chinese (Traditional) translations for PROJECT.
# Copyright (C) 2022 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
@ -7,17 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\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"
"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-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"
"Content-Type: text/plain; charset=utf-8\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"
#: app/__init__.py:102
@ -210,7 +209,8 @@ msgid "You don't have permission to do that"
msgstr "你沒有進行該操作的權限"
#: 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 "請在評論中寫下需改變的事項"
#: app/blueprints/packages/packages.py:415
@ -248,7 +248,7 @@ msgstr "作者名稱"
#: app/blueprints/packages/releases.py:52
#: 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/packages/release_edit.html:17
msgid "Title"
@ -369,13 +369,13 @@ msgstr ""
msgid "Now, please create an initial release"
msgstr ""
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:174
#: app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:263
#: app/blueprints/packages/reviews.py:43 app/blueprints/threads/__init__.py:175
#: app/blueprints/threads/__init__.py:176
#: app/blueprints/threads/__init__.py:273
msgid "Comment"
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"
msgstr ""
@ -411,64 +411,65 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: app/blueprints/threads/__init__.py:63
#: app/blueprints/threads/__init__.py:64
msgid "Already subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:65
#: app/blueprints/threads/__init__.py:66
msgid "Subscribed to thread"
msgstr ""
#: app/blueprints/threads/__init__.py:80
#: app/blueprints/threads/__init__.py:81
msgid "Unsubscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:84
#: app/blueprints/threads/__init__.py:85
msgid "Already not subscribed!"
msgstr ""
#: app/blueprints/threads/__init__.py:103
#: app/blueprints/threads/__init__.py:104
msgid "Locked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:106
#: app/blueprints/threads/__init__.py:107
msgid "Unlocked thread"
msgstr ""
#: app/blueprints/threads/__init__.py:155
#: app/blueprints/threads/__init__.py:156
msgid "Cannot delete thread opening post!"
msgstr ""
#: app/blueprints/threads/__init__.py:224
#: app/blueprints/threads/__init__.py:225
msgid "You cannot comment on this thread"
msgstr ""
#: app/blueprints/threads/__init__.py:228
#: app/blueprints/threads/__init__.py:229
msgid "Please wait before commenting again"
msgstr ""
#: app/blueprints/threads/__init__.py:256
#: app/blueprints/threads/__init__.py:266
msgid "Comment needs to be between 3 and 2000 characters."
msgstr ""
#: app/blueprints/threads/__init__.py:265
#: app/blueprints/threads/__init__.py:275
#: app/templates/macros/package_approval.html:107
msgid "Open Thread"
msgstr ""
#: app/blueprints/threads/__init__.py:277
#: app/blueprints/threads/__init__.py:287
msgid "Unable to find that package!"
msgstr ""
#: app/blueprints/threads/__init__.py:291
#: app/blueprints/threads/__init__.py:301
msgid "Unable to create thread!"
msgstr ""
#: app/blueprints/threads/__init__.py:296
msgid "A review thread already exists!"
msgstr ""
#: app/blueprints/threads/__init__.py:306
#, fuzzy
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"
msgstr ""
@ -853,11 +854,11 @@ msgstr ""
msgid "Invalid commit hash; it must be a 40 character long base16 string"
msgstr ""
#: app/logic/screenshots.py:13
#: app/logic/screenshots.py:15
msgid "Too many requests, please wait before trying again"
msgstr ""
#: app/logic/screenshots.py:15
#: app/logic/screenshots.py:17
msgid "a PNG or JPG image file"
msgstr ""
@ -894,6 +895,24 @@ msgstr ""
msgid "Texture Packs"
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
msgid "Page not found"
msgstr ""
@ -1168,15 +1187,6 @@ msgstr ""
msgid "Create API Token"
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
msgid "API Tokens allow scripts to act on your behalf."
msgstr ""
@ -1419,12 +1429,12 @@ msgid "Please make sure that this package has the right to the names %(names)s"
msgstr ""
#: app/templates/macros/package_approval.html:110
msgid "Package review thread"
msgid "Package approval thread"
msgstr ""
#: app/templates/macros/package_approval.html:111
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."
msgstr ""
@ -2150,8 +2160,7 @@ msgid "Topmost screenshot will be used as the package thumbnail."
msgstr ""
#: app/templates/packages/screenshots.html:36
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgid "Awaiting approval"
msgstr ""
#: app/templates/packages/screenshots.html:54
@ -2294,6 +2303,10 @@ msgid ""
"rank or above."
msgstr ""
#: app/templates/packages/view.html:244
msgid "Awaiting review"
msgstr ""
#: app/templates/packages/view.html:272 app/templates/threads/view.html:61
msgid "Edit Review"
msgstr ""
@ -2479,11 +2492,11 @@ msgid "Approve All"
msgstr ""
#: app/templates/todo/editor.html:33
msgid "No screenshots need reviewing."
msgid "No screenshots need approval."
msgstr ""
#: app/templates/todo/editor.html:65 app/templates/todo/editor.html:183
msgid "No packages need reviewing."
msgid "No packages need approval."
msgstr ""
#: app/templates/todo/editor.html:80
@ -2491,7 +2504,7 @@ msgid "Importing"
msgstr ""
#: app/templates/todo/editor.html:90
msgid "No releases need reviewing."
msgid "No releases need approval."
msgstr ""
#: app/templates/todo/editor.html:100
@ -3111,3 +3124,25 @@ msgid ""
"Please consider enabling email notifications, you can customise how much "
"is sent"
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 ""