Tag index.html and base.html, test updating translation templates

This commit is contained in:
rubenwardy 2022-01-07 20:58:32 +00:00
parent 44b02cfb4e
commit b40bc8c20d
10 changed files with 314 additions and 220 deletions

View File

@ -1,13 +1,12 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %} {% block title %}
Page not found {{ _("Page not found") }}
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<h1>Page not found</h1> <h1>{{ self.title() }}</h1>
<p> <p>
That page could not be found. The link may be broken, the page may have been deleted, {{ _("That page could not be found. The link may be broken, the page may have been deleted, or you may not have access to it.") }}
or you may not have access to it.
</p> </p>
{% endblock %} {% endblock %}

View File

@ -121,16 +121,24 @@
<ul class="dropdown-menu dropdown-menu-right" role="menu"> <ul class="dropdown-menu dropdown-menu-right" role="menu">
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{ url_for('users.profile', username=current_user.username) }}">Profile</a> <a class="nav-link" href="{{ url_for('users.profile', username=current_user.username) }}">
{{ _("Profile") }}
</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{ url_for('todo.view_user', username=current_user.username) }}">To do list</a> <a class="nav-link" href="{{ url_for('todo.view_user', username=current_user.username) }}">
{{ _("To do list") }}
</a>
</li> </li>
{% if current_user.rank.atLeast(current_user.rank.EDITOR) or check_global_perm(current_user, "CREATE_TAG") %} {% if current_user.rank.atLeast(current_user.rank.EDITOR) or check_global_perm(current_user, "CREATE_TAG") %}
<li class="dropdown-divider"></li> <li class="dropdown-divider"></li>
{% endif %} {% endif %}
{% if current_user.rank.atLeast(current_user.rank.MODERATOR) %} {% if current_user.rank.atLeast(current_user.rank.MODERATOR) %}
<li class="nav-item"><a class="nav-link" href="{{ url_for('admin.audit') }}">{{ _("Audit Log") }}</a></li> <li class="nav-item">
<a class="nav-link" href="{{ url_for('admin.audit') }}">
{{ _("Audit Log") }}
</a>
</li>
{% if current_user.rank == current_user.rank.ADMIN %} {% if current_user.rank == current_user.rank.ADMIN %}
<li class="nav-item"><a class="nav-link" href="{{ url_for('admin.admin_page') }}">{{ _("Admin") }}</a></li> <li class="nav-item"><a class="nav-link" href="{{ url_for('admin.admin_page') }}">{{ _("Admin") }}</a></li>
{% else %} {% else %}
@ -149,7 +157,9 @@
{% endif %} {% endif %}
<li class="dropdown-divider"></li> <li class="dropdown-divider"></li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{ url_for('users.profile_edit', username=current_user.username) }}">Settings</a> <a class="nav-link" href="{{ url_for('users.profile_edit', username=current_user.username) }}">
{{ _("Settings") }}
</a>
</li> </li>
<li class="nav-item"><a class="nav-link" href="{{ url_for('users.logout') }}">{{ _("Sign out") }}</a></li> <li class="nav-item"><a class="nav-link" href="{{ url_for('users.logout') }}">{{ _("Sign out") }}</a></li>
</ul> </ul>
@ -225,7 +235,7 @@
<footer class="my-5"> <footer class="my-5">
<p class="pt-5 mb-1"> <p class="pt-5 mb-1">
ContentDB &copy; 2018-21 to <a href="https://rubenwardy.com/">rubenwardy</a> ContentDB &copy; 2018-22 to <a href="https://rubenwardy.com/">rubenwardy</a>
</p> </p>
<ul class="list-inline my-1"> <ul class="list-inline my-1">

View File

@ -66,7 +66,7 @@
</span> </span>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<span class="btn" title="{{ _("Reviews") }}"> <span class="btn" title="{{ _('Reviews') }}">
<i class="fas fa-star-half-alt"></i> <i class="fas fa-star-half-alt"></i>
<span class="count"> <span class="count">
+{{ package.reviews | selectattr("recommends") | list | length }} +{{ package.reviews | selectattr("recommends") | list | length }}
@ -93,7 +93,7 @@
<div class="text-right mb-5 text-muted" style="opacity: 0.4;"> <div class="text-right mb-5 text-muted" style="opacity: 0.4;">
<a href="/help/featured/" class="btn"> <a href="/help/featured/" class="btn">
<i class="fas fa-question-circle mr-1"></i> <i class="fas fa-question-circle mr-1"></i>
Featured {{ _("Featured") }}
</a> </a>
</div> </div>

View File

@ -116,7 +116,7 @@
{{ render_field(form.issueTracker, class_="pkg_meta") }} {{ render_field(form.issueTracker, class_="pkg_meta") }}
{{ render_field_prefix_button(form.forums, class_="pkg_meta", {{ render_field_prefix_button(form.forums, class_="pkg_meta",
pattern="[0-9]+", pattern="[0-9]+",
prefix=_("forum.minetest.net/viewtopic.php?t="), prefix="forum.minetest.net/viewtopic.php?t=",
placeholder=_("Tip: paste in a forum topic URL")) }} placeholder=_("Tip: paste in a forum topic URL")) }}
</fieldset> </fieldset>

View File

@ -1,4 +1,4 @@
# Translations template for PROJECT. # Spanish translations for PROJECT.
# Copyright (C) 2022 ORGANIZATION # Copyright (C) 2022 ORGANIZATION
# This file is distributed under the same license as the PROJECT project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
@ -7,17 +7,16 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-01-04 19:05+0000\n" "POT-Creation-Date: 2022-01-07 20:58+0000\n"
"PO-Revision-Date: 2022-01-06 19:53+0000\n" "PO-Revision-Date: 2022-01-06 19:53+0000\n"
"Last-Translator: Joaquín Villalba <joaco-mono@hotmail.com>\n" "Last-Translator: Joaquín Villalba <joaco-mono@hotmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/minetest/"
"contentdb/es/>\n"
"Language: es\n" "Language: es\n"
"Language-Team: Spanish "
"<https://hosted.weblate.org/projects/minetest/contentdb/es/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10.1\n"
"Generated-By: Babel 2.9.1\n" "Generated-By: Babel 2.9.1\n"
#: app/template_filters.py:52 #: app/template_filters.py:52
@ -111,11 +110,21 @@ msgstr ""
msgid "Has received %(downloads)d downloads across all packages." msgid "Has received %(downloads)d downloads across all packages."
msgstr "" msgstr ""
#: app/templates/404.html:4
msgid "Page not found"
msgstr ""
#: app/templates/404.html:10
msgid ""
"That page could not be found. The link may be broken, the page may have "
"been deleted, or you may not have access to it."
msgstr ""
#: app/templates/base.html:65 #: app/templates/base.html:65
msgid "Work Queue" msgid "Work Queue"
msgstr "" msgstr ""
#: app/templates/base.html:78 #: app/templates/base.html:78 app/templates/base.html:130
msgid "To do list" msgid "To do list"
msgstr "" msgstr ""
@ -127,67 +136,75 @@ msgstr ""
msgid "Add Package" msgid "Add Package"
msgstr "" msgstr ""
#: app/templates/base.html:130 #: app/templates/base.html:125
msgid "Profile"
msgstr ""
#: app/templates/base.html:139
msgid "Audit Log" msgid "Audit Log"
msgstr "" msgstr ""
#: app/templates/base.html:132 #: app/templates/base.html:143
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: app/templates/base.html:135 #: app/templates/base.html:146
msgid "License Editor" msgid "License Editor"
msgstr "" msgstr ""
#: app/templates/base.html:140 #: app/templates/base.html:151
msgid "Restore Package" msgid "Restore Package"
msgstr "" msgstr ""
#: app/templates/base.html:143 #: app/templates/base.html:154
msgid "Tag Editor" msgid "Tag Editor"
msgstr "" msgstr ""
#: app/templates/base.html:145 #: app/templates/base.html:156
msgid "Create Tag" msgid "Create Tag"
msgstr "" msgstr ""
#: app/templates/base.html:151 #: app/templates/base.html:161 app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/base.html:164
msgid "Sign out" msgid "Sign out"
msgstr "" msgstr ""
#: app/templates/base.html:155 #: app/templates/base.html:168
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr ""
#: app/templates/base.html:193 #: app/templates/base.html:242
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: app/templates/base.html:194 #: app/templates/base.html:243
msgid "Policy and Guidance" msgid "Policy and Guidance"
msgstr "" msgstr ""
#: app/templates/base.html:195 #: app/templates/base.html:244
msgid "API" msgid "API"
msgstr "" msgstr ""
#: app/templates/base.html:196 app/templates/users/register.html:43 #: app/templates/base.html:245 app/templates/users/register.html:43
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
#: app/templates/base.html:197 #: app/templates/base.html:246
msgid "Report / DMCA" msgid "Report / DMCA"
msgstr "" msgstr ""
#: app/templates/base.html:198 #: app/templates/base.html:247
msgid "Stats / Monitoring" msgid "Stats / Monitoring"
msgstr "" msgstr ""
#: app/templates/base.html:199 #: app/templates/base.html:248
msgid "User List" msgid "User List"
msgstr "" msgstr ""
#: app/templates/base.html:200 #: app/templates/base.html:249
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
@ -220,6 +237,10 @@ msgstr ""
msgid "Next" msgid "Next"
msgstr "" msgstr ""
#: app/templates/index.html:96
msgid "Featured"
msgstr ""
#: app/templates/index.html:101 app/templates/index.html:108 #: app/templates/index.html:101 app/templates/index.html:108
#: app/templates/index.html:115 app/templates/index.html:122 #: app/templates/index.html:115 app/templates/index.html:122
#: app/templates/index.html:129 app/templates/index.html:151 #: app/templates/index.html:129 app/templates/index.html:151
@ -678,10 +699,6 @@ msgstr ""
msgid "Importing... (This may take a while)" msgid "Importing... (This may take a while)"
msgstr "" msgstr ""
#: app/templates/packages/create_edit.html:119
msgid "forum.minetest.net/viewtopic.php?t="
msgstr ""
#: app/templates/packages/create_edit.html:120 #: app/templates/packages/create_edit.html:120
msgid "Tip: paste in a forum topic URL" msgid "Tip: paste in a forum topic URL"
msgstr "" msgstr ""
@ -739,10 +756,6 @@ msgstr ""
msgid "Create a release" msgid "Create a release"
msgstr "" msgstr ""
#: app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/packages/release_new.html:14 #: app/templates/packages/release_new.html:14
msgid "You have automatic releases enabled." msgid "You have automatic releases enabled."
msgstr "" msgstr ""
@ -1454,3 +1467,7 @@ msgstr ""
#: app/templates/users/unsubscribe.html:33 #: app/templates/users/unsubscribe.html:33
msgid "You may now unsubscribe." msgid "You may now unsubscribe."
msgstr "" msgstr ""
#~ msgid "forum.minetest.net/viewtopic.php?t="
#~ msgstr ""

View File

@ -1,4 +1,4 @@
# Translations template for PROJECT. # French translations for PROJECT.
# Copyright (C) 2022 ORGANIZATION # Copyright (C) 2022 ORGANIZATION
# This file is distributed under the same license as the PROJECT project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
@ -7,17 +7,16 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-01-04 19:05+0000\n" "POT-Creation-Date: 2022-01-07 20:58+0000\n"
"PO-Revision-Date: 2022-01-04 21:25+0000\n" "PO-Revision-Date: 2022-01-04 21:25+0000\n"
"Last-Translator: AFCMS <afcm.contact@gmail.com>\n" "Last-Translator: AFCMS <afcm.contact@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/minetest/"
"contentdb/fr/>\n"
"Language: fr\n" "Language: fr\n"
"Language-Team: French "
"<https://hosted.weblate.org/projects/minetest/contentdb/fr/>\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.10.1\n"
"Generated-By: Babel 2.9.1\n" "Generated-By: Babel 2.9.1\n"
#: app/template_filters.py:52 #: app/template_filters.py:52
@ -32,8 +31,7 @@ msgstr "Meilleur évaluateur"
#: app/blueprints/users/profile.py:113 #: app/blueprints/users/profile.py:113
#, python-format #, python-format
msgid "%(display_name)s has written the most helpful reviews on ContentDB." msgid "%(display_name)s has written the most helpful reviews on ContentDB."
msgstr "" msgstr "%(display_name)s a écrit les évaluations les plus utiles sur le ContentDB."
"%(display_name)s a écrit les évaluations les plus utiles sur le ContentDB."
#: app/blueprints/users/profile.py:118 #: app/blueprints/users/profile.py:118
msgid "2nd most helpful reviewer" msgid "2nd most helpful reviewer"
@ -56,8 +54,7 @@ msgstr "Top %(perc)s%% évaluateur"
#: app/blueprints/users/profile.py:126 #: app/blueprints/users/profile.py:126
#, python-format #, python-format
msgid "Only %(place)d users have written more helpful reviews." msgid "Only %(place)d users have written more helpful reviews."
msgstr "" msgstr "Seulement %(place)d utilisateurs ont écrit des évaluations plus utiles."
"Seulement %(place)d utilisateurs ont écrit des évaluations plus utiles."
#: app/blueprints/users/profile.py:131 #: app/blueprints/users/profile.py:131
msgid "Consider writing more helpful reviews to get a medal." msgid "Consider writing more helpful reviews to get a medal."
@ -113,11 +110,21 @@ msgstr ">50k téléchargements"
msgid "Has received %(downloads)d downloads across all packages." msgid "Has received %(downloads)d downloads across all packages."
msgstr "A reçu %(downloads)d téléchargements au total pour tous ses paquets." msgstr "A reçu %(downloads)d téléchargements au total pour tous ses paquets."
#: app/templates/404.html:4
msgid "Page not found"
msgstr ""
#: app/templates/404.html:10
msgid ""
"That page could not be found. The link may be broken, the page may have "
"been deleted, or you may not have access to it."
msgstr ""
#: app/templates/base.html:65 #: app/templates/base.html:65
msgid "Work Queue" msgid "Work Queue"
msgstr "File d'attente" msgstr "File d'attente"
#: app/templates/base.html:78 #: app/templates/base.html:78 app/templates/base.html:130
msgid "To do list" msgid "To do list"
msgstr "À faire" msgstr "À faire"
@ -129,68 +136,77 @@ msgstr "Notifications"
msgid "Add Package" msgid "Add Package"
msgstr "Créer un paquet" msgstr "Créer un paquet"
#: app/templates/base.html:130 #: app/templates/base.html:125
#, fuzzy
msgid "Profile"
msgstr "Modifier le profil"
#: app/templates/base.html:139
msgid "Audit Log" msgid "Audit Log"
msgstr "Journal d'audit" msgstr "Journal d'audit"
#: app/templates/base.html:132 #: app/templates/base.html:143
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: app/templates/base.html:135 #: app/templates/base.html:146
#, fuzzy #, fuzzy
msgid "License Editor" msgid "License Editor"
msgstr "Éditeur de licences" msgstr "Éditeur de licences"
#: app/templates/base.html:140 #: app/templates/base.html:151
msgid "Restore Package" msgid "Restore Package"
msgstr "Restaurer le paquet" msgstr "Restaurer le paquet"
#: app/templates/base.html:143 #: app/templates/base.html:154
msgid "Tag Editor" msgid "Tag Editor"
msgstr "Éditeur d'étiquettes" msgstr "Éditeur d'étiquettes"
#: app/templates/base.html:145 #: app/templates/base.html:156
msgid "Create Tag" msgid "Create Tag"
msgstr "Créer une étiquette" msgstr "Créer une étiquette"
#: app/templates/base.html:151 #: app/templates/base.html:161 app/templates/packages/release_new.html:12
msgid "Settings"
msgstr "Paramètres"
#: app/templates/base.html:164
msgid "Sign out" msgid "Sign out"
msgstr "Se déconnecter" msgstr "Se déconnecter"
#: app/templates/base.html:155 #: app/templates/base.html:168
msgid "Sign in" msgid "Sign in"
msgstr "Se connecter" msgstr "Se connecter"
#: app/templates/base.html:193 #: app/templates/base.html:242
msgid "Help" msgid "Help"
msgstr "Aide" msgstr "Aide"
#: app/templates/base.html:194 #: app/templates/base.html:243
msgid "Policy and Guidance" msgid "Policy and Guidance"
msgstr "Règles et Recommandations" msgstr "Règles et Recommandations"
#: app/templates/base.html:195 #: app/templates/base.html:244
msgid "API" msgid "API"
msgstr "API" msgstr "API"
#: app/templates/base.html:196 app/templates/users/register.html:43 #: app/templates/base.html:245 app/templates/users/register.html:43
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Politique de confidentialité" msgstr "Politique de confidentialité"
#: app/templates/base.html:197 #: app/templates/base.html:246
msgid "Report / DMCA" msgid "Report / DMCA"
msgstr "Signaler / DMCA" msgstr "Signaler / DMCA"
#: app/templates/base.html:198 #: app/templates/base.html:247
msgid "Stats / Monitoring" msgid "Stats / Monitoring"
msgstr "Statistiques / Monitoring" msgstr "Statistiques / Monitoring"
#: app/templates/base.html:199 #: app/templates/base.html:248
msgid "User List" msgid "User List"
msgstr "Liste des utilisateurs" msgstr "Liste des utilisateurs"
#: app/templates/base.html:200 #: app/templates/base.html:249
msgid "Source Code" msgid "Source Code"
msgstr "Code source" msgstr "Code source"
@ -223,6 +239,11 @@ msgstr "Précédent"
msgid "Next" msgid "Next"
msgstr "Suivant" msgstr "Suivant"
#: app/templates/index.html:96
#, fuzzy
msgid "Featured"
msgstr "Requis"
#: app/templates/index.html:101 app/templates/index.html:108 #: app/templates/index.html:101 app/templates/index.html:108
#: app/templates/index.html:115 app/templates/index.html:122 #: app/templates/index.html:115 app/templates/index.html:122
#: app/templates/index.html:129 app/templates/index.html:151 #: app/templates/index.html:129 app/templates/index.html:151
@ -366,8 +387,8 @@ msgstr "Les Tokens d'API permettent à des scripts d'agir en votre nom."
#: app/templates/api/create_edit_token.html:25 #: app/templates/api/create_edit_token.html:25
msgid "" msgid ""
"Be careful with what/whom you share tokens with, as you are responsible for " "Be careful with what/whom you share tokens with, as you are responsible "
"your account's actions." "for your account's actions."
msgstr "" msgstr ""
"Faites attention à qui et à quoi vous donnez vos Tokens, car vous êtes " "Faites attention à qui et à quoi vous donnez vos Tokens, car vous êtes "
"responsable des actions de votre compte." "responsable des actions de votre compte."
@ -602,8 +623,7 @@ msgstr "Laissez vide pour utiliser la branche par défaut"
#: app/templates/packages/bulk_update_conf.html:29 #: app/templates/packages/bulk_update_conf.html:29
#: app/templates/packages/update_config.html:35 #: app/templates/packages/update_config.html:35
msgid "" msgid "Currently, the branch name field is only used by the New Commit trigger."
"Currently, the branch name field is only used by the New Commit trigger."
msgstr "" msgstr ""
#: app/templates/packages/create_edit.html:5 #: app/templates/packages/create_edit.html:5
@ -635,11 +655,11 @@ msgstr "Lire plus"
#: app/templates/packages/create_edit.html:49 #: app/templates/packages/create_edit.html:49
#, python-format #, python-format
msgid "" msgid ""
"You can include a .cdb.json file in your %(type)s to update these details " "You can include a .cdb.json file in your %(type)s to update these details"
"automatically." " automatically."
msgstr "" msgstr ""
"Vous pouvez inclure un fichier .cdb.json dans votre %(type)s pour mettre à " "Vous pouvez inclure un fichier .cdb.json dans votre %(type)s pour mettre "
"jour ces détails automatiquement." "à jour ces détails automatiquement."
#: app/templates/packages/create_edit.html:55 #: app/templates/packages/create_edit.html:55
msgid "" msgid ""
@ -663,13 +683,13 @@ msgstr ""
#: app/templates/packages/create_edit.html:76 #: app/templates/packages/create_edit.html:76
msgid "Lower case letters (a-z), digits (0-9), and underscores (_) only" msgid "Lower case letters (a-z), digits (0-9), and underscores (_) only"
msgstr "" msgstr ""
"Lettres minuscules (a-z), chiffres (0-9) et caractères de soulignement (_) " "Lettres minuscules (a-z), chiffres (0-9) et caractères de soulignement "
"uniquement" "(_) uniquement"
#: app/templates/packages/create_edit.html:80 #: app/templates/packages/create_edit.html:80
msgid "" msgid ""
"Please choose 'Work in Progress' if your package is unstable, and shouldn't " "Please choose 'Work in Progress' if your package is unstable, and "
"be recommended to all players" "shouldn't be recommended to all players"
msgstr "" msgstr ""
"Veuillez choisir \"Travail en cours\" si votre paquet est instable et ne " "Veuillez choisir \"Travail en cours\" si votre paquet est instable et ne "
"devrait pas être recommandé à tous les joueurs" "devrait pas être recommandé à tous les joueurs"
@ -707,10 +727,6 @@ msgstr "Sauter l'importation automatique"
msgid "Importing... (This may take a while)" msgid "Importing... (This may take a while)"
msgstr "Importation... (Cela peut prendre un certain temps)" msgstr "Importation... (Cela peut prendre un certain temps)"
#: app/templates/packages/create_edit.html:119
msgid "forum.minetest.net/viewtopic.php?t="
msgstr ""
#: app/templates/packages/create_edit.html:120 #: app/templates/packages/create_edit.html:120
msgid "Tip: paste in a forum topic URL" msgid "Tip: paste in a forum topic URL"
msgstr "Conseil : collez l'URL d'un sujet de forum" msgstr "Conseil : collez l'URL d'un sujet de forum"
@ -756,8 +772,8 @@ msgstr "Ceci est permanent."
#: app/templates/packages/release_edit.html:79 #: app/templates/packages/release_edit.html:79
msgid "" msgid ""
"Any associated uploads will not be deleted immediately, but the release will " "Any associated uploads will not be deleted immediately, but the release "
"no longer be listed." "will no longer be listed."
msgstr "" msgstr ""
#: app/templates/packages/release_edit.html:84 #: app/templates/packages/release_edit.html:84
@ -769,10 +785,6 @@ msgstr ""
msgid "Create a release" msgid "Create a release"
msgstr "Publier une version" msgstr "Publier une version"
#: app/templates/packages/release_new.html:12
msgid "Settings"
msgstr "Paramètres"
#: app/templates/packages/release_new.html:14 #: app/templates/packages/release_new.html:14
msgid "You have automatic releases enabled." msgid "You have automatic releases enabled."
msgstr "Vous avez activé la publication de versions automatique." msgstr "Vous avez activé la publication de versions automatique."
@ -791,8 +803,8 @@ msgstr ""
#: app/templates/packages/release_new.html:26 #: app/templates/packages/release_new.html:26
msgid "" msgid ""
"You can create releases automatically when you push commits or tags to your " "You can create releases automatically when you push commits or tags to "
"repository." "your repository."
msgstr "" msgstr ""
"Vous pouvez créer des versions automatiquement lorsque vous envoyez des " "Vous pouvez créer des versions automatiquement lorsque vous envoyez des "
"commits ou des étiquettes à votre référentiel." "commits ou des étiquettes à votre référentiel."
@ -807,8 +819,8 @@ msgid ""
"Using Git would allow you to create releases automatically when you push " "Using Git would allow you to create releases automatically when you push "
"code or tags." "code or tags."
msgstr "" msgstr ""
"L'utilisation de Git vous permettrait de créer automatiquement des versions " "L'utilisation de Git vous permettrait de créer automatiquement des "
"lorsque vous diffusez du code ou des étiquettes." "versions lorsque vous diffusez du code ou des étiquettes."
#: app/templates/packages/release_wizard.html:4 #: app/templates/packages/release_wizard.html:4
msgid "How do you want to create releases?" msgid "How do you want to create releases?"
@ -825,23 +837,23 @@ msgstr ""
#: app/templates/packages/release_wizard.html:15 #: app/templates/packages/release_wizard.html:15
msgid "" msgid ""
"You need to create releases even if you use a rolling release development " "You need to create releases even if you use a rolling release development"
"cycle, as Minetest needs them to check for updates." " cycle, as Minetest needs them to check for updates."
msgstr "" msgstr ""
#: app/templates/packages/release_wizard.html:20 #: app/templates/packages/release_wizard.html:20
#: app/templates/packages/update_config.html:12 #: app/templates/packages/update_config.html:12
msgid "" msgid ""
"When you push a change to your Git repository, ContentDB can create a new " "When you push a change to your Git repository, ContentDB can create a new"
"release automatically or send you a reminder." " release automatically or send you a reminder."
msgstr "" msgstr ""
"Lorsque vous apportez un changement à votre dépôt Git, le ContentDB peut " "Lorsque vous apportez un changement à votre dépôt Git, le ContentDB peut "
"créer une nouvelle version automatiquement ou vous envoyer un rappel." "créer une nouvelle version automatiquement ou vous envoyer un rappel."
#: app/templates/packages/release_wizard.html:21 #: app/templates/packages/release_wizard.html:21
msgid "" msgid ""
"ContentDB will check your Git repository every day, but you can use webhooks " "ContentDB will check your Git repository every day, but you can use "
"or the API for faster updates." "webhooks or the API for faster updates."
msgstr "" msgstr ""
"Le ContentDB vérifiera votre dépôt Git tous les jours, mais vous pouvez " "Le ContentDB vérifiera votre dépôt Git tous les jours, mais vous pouvez "
"utiliser des webhooks ou l'API pour des mises à jour plus rapides." "utiliser des webhooks ou l'API pour des mises à jour plus rapides."
@ -949,14 +961,14 @@ msgid ""
"ContentDB will poll your Git repository every day, if your package is " "ContentDB will poll your Git repository every day, if your package is "
"approved." "approved."
msgstr "" msgstr ""
"Le ContentDB vérifiera votre dépôt Git tous les jours, si votre paquet est " "Le ContentDB vérifiera votre dépôt Git tous les jours, si votre paquet "
"approuvé." "est approuvé."
#: app/templates/packages/update_config.html:17 #: app/templates/packages/update_config.html:17
msgid "You should consider using webhooks or the API for faster releases." msgid "You should consider using webhooks or the API for faster releases."
msgstr "" msgstr ""
"Vous devriez envisager d'utiliser les webhooks ou l'API pour une création " "Vous devriez envisager d'utiliser les webhooks ou l'API pour une création"
"des versions plus rapide." " des versions plus rapide."
#: app/templates/packages/update_config.html:18 #: app/templates/packages/update_config.html:18
msgid "" msgid ""
@ -1211,13 +1223,13 @@ msgstr ""
#: app/templates/todo/user.html:57 #: app/templates/todo/user.html:57
msgid "" msgid ""
"Instead of marking packages as outdated, you can automatically create " "Instead of marking packages as outdated, you can automatically create "
"releases when New Commits or New Tags are pushed to Git by clicking 'Update " "releases when New Commits or New Tags are pushed to Git by clicking "
"Settings'." "'Update Settings'."
msgstr "" msgstr ""
"Au lieu de marquer les paquets comme périmés, vous pouvez créer " "Au lieu de marquer les paquets comme périmés, vous pouvez créer "
"automatiquement des versions lorsque de nouveaux commits ou de nouvelles " "automatiquement des versions lorsque de nouveaux commits ou de nouvelles "
"étiquettes sont poussés vers Git en cliquant sur « Mettre les paramètres à " "étiquettes sont poussés vers Git en cliquant sur « Mettre les paramètres "
"jour »." "à jour »."
#: app/templates/todo/user.html:59 #: app/templates/todo/user.html:59
msgid "" msgid ""
@ -1283,8 +1295,8 @@ msgstr "Veuillez contacter l'admin."
#: app/templates/users/change_set_password.html:26 #: app/templates/users/change_set_password.html:26
#: app/templates/users/register.html:24 #: app/templates/users/register.html:24
msgid "" msgid ""
"Your email is needed to recover your account if you forget your password and " "Your email is needed to recover your account if you forget your password "
"to send (configurable) notifications. " "and to send (configurable) notifications. "
msgstr "" msgstr ""
"Votre adresse électronique est nécessaire pour récupérer votre compte si " "Votre adresse électronique est nécessaire pour récupérer votre compte si "
"vous oubliez votre mot de passe et pour envoyer des notifications " "vous oubliez votre mot de passe et pour envoyer des notifications "
@ -1311,8 +1323,8 @@ msgstr "Confirmez votre compte"
#: app/templates/users/delete.html:17 #: app/templates/users/delete.html:17
#, python-format #, python-format
msgid "" msgid ""
"This will delete your account, removing %(threads)d threads and %(replies)d " "This will delete your account, removing %(threads)d threads and "
"replies." "%(replies)d replies."
msgstr "" msgstr ""
#: app/templates/users/delete.html:22 #: app/templates/users/delete.html:22
@ -1324,8 +1336,8 @@ msgstr ""
#: app/templates/users/delete.html:23 #: app/templates/users/delete.html:23
#, python-format #, python-format
msgid "" msgid ""
"Instead, your account will be deactivated and all personal information wiped " "Instead, your account will be deactivated and all personal information "
"- including %(threads)d threads and %(replies)d replies." "wiped - including %(threads)d threads and %(replies)d replies."
msgstr "" msgstr ""
#: app/templates/users/delete.html:25 #: app/templates/users/delete.html:25
@ -1339,8 +1351,7 @@ msgstr "Demander la réinitialisation du mot de passe"
#: app/templates/users/forums_no_such_user.html:14 #: app/templates/users/forums_no_such_user.html:14
#, python-format #, python-format
msgid "Unfortunately, %(username)s doesn't have an account on ContentDB yet." msgid "Unfortunately, %(username)s doesn't have an account on ContentDB yet."
msgstr "" msgstr "Malheureusement, %(username)s n'a pas encore de compte sur le ContentDB."
"Malheureusement, %(username)s n'a pas encore de compte sur le ContentDB."
#: app/templates/users/list.html:4 app/templates/users/list.html:8 #: app/templates/users/list.html:4 app/templates/users/list.html:8
msgid "Users" msgid "Users"
@ -1445,11 +1456,11 @@ msgstr "Seulement a-zA-Z0-9._ autorisé"
#: app/templates/users/register.html:17 #: app/templates/users/register.html:17
msgid "" msgid ""
"Only alphanumeric characters, periods, underscores, and minuses are allowed " "Only alphanumeric characters, periods, underscores, and minuses are "
"(a-zA-Z0-9._)" "allowed (a-zA-Z0-9._)"
msgstr "" msgstr ""
"Seuls les caractères alphanumériques, les points, les traits de soulignement " "Seuls les caractères alphanumériques, les points, les traits de "
"et les minuscules sont autorisés (a-zA-Z0-9._)" "soulignement et les minuscules sont autorisés (a-zA-Z0-9._)"
#: app/templates/users/register.html:20 #: app/templates/users/register.html:20
msgid "" msgid ""
@ -1486,8 +1497,8 @@ msgstr "Courriels et notifications"
#: app/templates/users/settings_email.html:19 #: app/templates/users/settings_email.html:19
msgid "" msgid ""
"Your email is needed to recover your account if you forget your password, " "Your email is needed to recover your account if you forget your password,"
"and to send (configurable) notifications." " and to send (configurable) notifications."
msgstr "" msgstr ""
"Votre adresse électronique est nécessaire pour récupérer votre compte si " "Votre adresse électronique est nécessaire pour récupérer votre compte si "
"vous oubliez votre mot de passe, et pour envoyer des notifications " "vous oubliez votre mot de passe, et pour envoyer des notifications "
@ -1500,22 +1511,23 @@ msgstr "Il y a au moins une vérification en cours."
#: app/templates/users/settings_email.html:33 #: app/templates/users/settings_email.html:33
msgid "Email notifications are currently turned off. Click 'save' to enable." msgid "Email notifications are currently turned off. Click 'save' to enable."
msgstr "" msgstr ""
"Les notifications par courriel sont actuellement désactivées. Cliquez sur " "Les notifications par courriel sont actuellement désactivées. Cliquez sur"
 enregistrer » ; pour les activer." " « enregistrer » ; pour les activer."
#: app/templates/users/unsubscribe.html:11 #: app/templates/users/unsubscribe.html:11
msgid "" msgid ""
"This will blacklist an email address, preventing ContentDB from ever sending " "This will blacklist an email address, preventing ContentDB from ever "
"emails to it - including password resets." "sending emails to it - including password resets."
msgstr "" msgstr ""
"Ceci mettra une adresse électronique sur liste noire, empêchant ContentDB de " "Ceci mettra une adresse électronique sur liste noire, empêchant ContentDB"
"lui envoyer des courriels  y compris des réinitialisations de mot de passe." " de lui envoyer des courriels  y compris des réinitialisations de mot de"
" passe."
#: app/templates/users/unsubscribe.html:20 #: app/templates/users/unsubscribe.html:20
msgid "Please enter the email address you wish to blacklist." msgid "Please enter the email address you wish to blacklist."
msgstr "" msgstr ""
"Veuillez saisir l'adresse électronique que vous souhaitez mettre sur liste " "Veuillez saisir l'adresse électronique que vous souhaitez mettre sur "
"noire." "liste noire."
#: app/templates/users/unsubscribe.html:21 #: app/templates/users/unsubscribe.html:21
msgid "You will then need to confirm the email" msgid "You will then need to confirm the email"
@ -1524,3 +1536,7 @@ msgstr "Vous devrez ensuite confirmer l'adresse courriel"
#: app/templates/users/unsubscribe.html:33 #: app/templates/users/unsubscribe.html:33
msgid "You may now unsubscribe." msgid "You may now unsubscribe."
msgstr "Vous pouvez maintenant vous désabonner." msgstr "Vous pouvez maintenant vous désabonner."
#~ msgid "forum.minetest.net/viewtopic.php?t="
#~ msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-01-04 19:05+0000\n" "POT-Creation-Date: 2022-01-07 20:58+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -108,11 +108,21 @@ msgstr ""
msgid "Has received %(downloads)d downloads across all packages." msgid "Has received %(downloads)d downloads across all packages."
msgstr "" msgstr ""
#: app/templates/404.html:4
msgid "Page not found"
msgstr ""
#: app/templates/404.html:10
msgid ""
"That page could not be found. The link may be broken, the page may have "
"been deleted, or you may not have access to it."
msgstr ""
#: app/templates/base.html:65 #: app/templates/base.html:65
msgid "Work Queue" msgid "Work Queue"
msgstr "" msgstr ""
#: app/templates/base.html:78 #: app/templates/base.html:78 app/templates/base.html:130
msgid "To do list" msgid "To do list"
msgstr "" msgstr ""
@ -124,67 +134,75 @@ msgstr ""
msgid "Add Package" msgid "Add Package"
msgstr "" msgstr ""
#: app/templates/base.html:130 #: app/templates/base.html:125
msgid "Profile"
msgstr ""
#: app/templates/base.html:139
msgid "Audit Log" msgid "Audit Log"
msgstr "" msgstr ""
#: app/templates/base.html:132 #: app/templates/base.html:143
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: app/templates/base.html:135 #: app/templates/base.html:146
msgid "License Editor" msgid "License Editor"
msgstr "" msgstr ""
#: app/templates/base.html:140 #: app/templates/base.html:151
msgid "Restore Package" msgid "Restore Package"
msgstr "" msgstr ""
#: app/templates/base.html:143 #: app/templates/base.html:154
msgid "Tag Editor" msgid "Tag Editor"
msgstr "" msgstr ""
#: app/templates/base.html:145 #: app/templates/base.html:156
msgid "Create Tag" msgid "Create Tag"
msgstr "" msgstr ""
#: app/templates/base.html:151 #: app/templates/base.html:161 app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/base.html:164
msgid "Sign out" msgid "Sign out"
msgstr "" msgstr ""
#: app/templates/base.html:155 #: app/templates/base.html:168
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr ""
#: app/templates/base.html:193 #: app/templates/base.html:242
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: app/templates/base.html:194 #: app/templates/base.html:243
msgid "Policy and Guidance" msgid "Policy and Guidance"
msgstr "" msgstr ""
#: app/templates/base.html:195 #: app/templates/base.html:244
msgid "API" msgid "API"
msgstr "" msgstr ""
#: app/templates/base.html:196 app/templates/users/register.html:43 #: app/templates/base.html:245 app/templates/users/register.html:43
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
#: app/templates/base.html:197 #: app/templates/base.html:246
msgid "Report / DMCA" msgid "Report / DMCA"
msgstr "" msgstr ""
#: app/templates/base.html:198 #: app/templates/base.html:247
msgid "Stats / Monitoring" msgid "Stats / Monitoring"
msgstr "" msgstr ""
#: app/templates/base.html:199 #: app/templates/base.html:248
msgid "User List" msgid "User List"
msgstr "" msgstr ""
#: app/templates/base.html:200 #: app/templates/base.html:249
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
@ -217,6 +235,10 @@ msgstr ""
msgid "Next" msgid "Next"
msgstr "" msgstr ""
#: app/templates/index.html:96
msgid "Featured"
msgstr ""
#: app/templates/index.html:101 app/templates/index.html:108 #: app/templates/index.html:101 app/templates/index.html:108
#: app/templates/index.html:115 app/templates/index.html:122 #: app/templates/index.html:115 app/templates/index.html:122
#: app/templates/index.html:129 app/templates/index.html:151 #: app/templates/index.html:129 app/templates/index.html:151
@ -675,10 +697,6 @@ msgstr ""
msgid "Importing... (This may take a while)" msgid "Importing... (This may take a while)"
msgstr "" msgstr ""
#: app/templates/packages/create_edit.html:119
msgid "forum.minetest.net/viewtopic.php?t="
msgstr ""
#: app/templates/packages/create_edit.html:120 #: app/templates/packages/create_edit.html:120
msgid "Tip: paste in a forum topic URL" msgid "Tip: paste in a forum topic URL"
msgstr "" msgstr ""
@ -736,10 +754,6 @@ msgstr ""
msgid "Create a release" msgid "Create a release"
msgstr "" msgstr ""
#: app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/packages/release_new.html:14 #: app/templates/packages/release_new.html:14
msgid "You have automatic releases enabled." msgid "You have automatic releases enabled."
msgstr "" msgstr ""

View File

@ -1,4 +1,4 @@
# Translations template for PROJECT. # Malay translations for PROJECT.
# Copyright (C) 2022 ORGANIZATION # Copyright (C) 2022 ORGANIZATION
# This file is distributed under the same license as the PROJECT project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
@ -7,17 +7,16 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-01-04 19:05+0000\n" "POT-Creation-Date: 2022-01-07 20:58+0000\n"
"PO-Revision-Date: 2022-01-06 19:53+0000\n" "PO-Revision-Date: 2022-01-06 19:53+0000\n"
"Last-Translator: rubenwardy <rw@rubenwardy.com>\n" "Last-Translator: rubenwardy <rw@rubenwardy.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/minetest/contentdb/"
"ms/>\n"
"Language: ms\n" "Language: ms\n"
"Language-Team: Malay "
"<https://hosted.weblate.org/projects/minetest/contentdb/ms/>\n"
"Plural-Forms: nplurals=1; plural=0\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.10.1\n"
"Generated-By: Babel 2.9.1\n" "Generated-By: Babel 2.9.1\n"
#: app/template_filters.py:52 #: app/template_filters.py:52
@ -111,11 +110,21 @@ msgstr ""
msgid "Has received %(downloads)d downloads across all packages." msgid "Has received %(downloads)d downloads across all packages."
msgstr "" msgstr ""
#: app/templates/404.html:4
msgid "Page not found"
msgstr ""
#: app/templates/404.html:10
msgid ""
"That page could not be found. The link may be broken, the page may have "
"been deleted, or you may not have access to it."
msgstr ""
#: app/templates/base.html:65 #: app/templates/base.html:65
msgid "Work Queue" msgid "Work Queue"
msgstr "" msgstr ""
#: app/templates/base.html:78 #: app/templates/base.html:78 app/templates/base.html:130
msgid "To do list" msgid "To do list"
msgstr "" msgstr ""
@ -127,67 +136,75 @@ msgstr ""
msgid "Add Package" msgid "Add Package"
msgstr "" msgstr ""
#: app/templates/base.html:130 #: app/templates/base.html:125
msgid "Profile"
msgstr ""
#: app/templates/base.html:139
msgid "Audit Log" msgid "Audit Log"
msgstr "" msgstr ""
#: app/templates/base.html:132 #: app/templates/base.html:143
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: app/templates/base.html:135 #: app/templates/base.html:146
msgid "License Editor" msgid "License Editor"
msgstr "" msgstr ""
#: app/templates/base.html:140 #: app/templates/base.html:151
msgid "Restore Package" msgid "Restore Package"
msgstr "" msgstr ""
#: app/templates/base.html:143 #: app/templates/base.html:154
msgid "Tag Editor" msgid "Tag Editor"
msgstr "" msgstr ""
#: app/templates/base.html:145 #: app/templates/base.html:156
msgid "Create Tag" msgid "Create Tag"
msgstr "" msgstr ""
#: app/templates/base.html:151 #: app/templates/base.html:161 app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/base.html:164
msgid "Sign out" msgid "Sign out"
msgstr "" msgstr ""
#: app/templates/base.html:155 #: app/templates/base.html:168
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr ""
#: app/templates/base.html:193 #: app/templates/base.html:242
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: app/templates/base.html:194 #: app/templates/base.html:243
msgid "Policy and Guidance" msgid "Policy and Guidance"
msgstr "" msgstr ""
#: app/templates/base.html:195 #: app/templates/base.html:244
msgid "API" msgid "API"
msgstr "" msgstr ""
#: app/templates/base.html:196 app/templates/users/register.html:43 #: app/templates/base.html:245 app/templates/users/register.html:43
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
#: app/templates/base.html:197 #: app/templates/base.html:246
msgid "Report / DMCA" msgid "Report / DMCA"
msgstr "" msgstr ""
#: app/templates/base.html:198 #: app/templates/base.html:247
msgid "Stats / Monitoring" msgid "Stats / Monitoring"
msgstr "" msgstr ""
#: app/templates/base.html:199 #: app/templates/base.html:248
msgid "User List" msgid "User List"
msgstr "" msgstr ""
#: app/templates/base.html:200 #: app/templates/base.html:249
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
@ -220,6 +237,10 @@ msgstr ""
msgid "Next" msgid "Next"
msgstr "" msgstr ""
#: app/templates/index.html:96
msgid "Featured"
msgstr ""
#: app/templates/index.html:101 app/templates/index.html:108 #: app/templates/index.html:101 app/templates/index.html:108
#: app/templates/index.html:115 app/templates/index.html:122 #: app/templates/index.html:115 app/templates/index.html:122
#: app/templates/index.html:129 app/templates/index.html:151 #: app/templates/index.html:129 app/templates/index.html:151
@ -678,10 +699,6 @@ msgstr ""
msgid "Importing... (This may take a while)" msgid "Importing... (This may take a while)"
msgstr "" msgstr ""
#: app/templates/packages/create_edit.html:119
msgid "forum.minetest.net/viewtopic.php?t="
msgstr ""
#: app/templates/packages/create_edit.html:120 #: app/templates/packages/create_edit.html:120
msgid "Tip: paste in a forum topic URL" msgid "Tip: paste in a forum topic URL"
msgstr "" msgstr ""
@ -739,10 +756,6 @@ msgstr ""
msgid "Create a release" msgid "Create a release"
msgstr "" msgstr ""
#: app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/packages/release_new.html:14 #: app/templates/packages/release_new.html:14
msgid "You have automatic releases enabled." msgid "You have automatic releases enabled."
msgstr "" msgstr ""
@ -1454,3 +1467,7 @@ msgstr ""
#: app/templates/users/unsubscribe.html:33 #: app/templates/users/unsubscribe.html:33
msgid "You may now unsubscribe." msgid "You may now unsubscribe."
msgstr "" msgstr ""
#~ msgid "forum.minetest.net/viewtopic.php?t="
#~ msgstr ""

View File

@ -1,4 +1,4 @@
# Translations template for PROJECT. # Norwegian Bokmål (Norway) translations for PROJECT.
# Copyright (C) 2022 ORGANIZATION # Copyright (C) 2022 ORGANIZATION
# This file is distributed under the same license as the PROJECT project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
@ -7,17 +7,16 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-01-04 19:05+0000\n" "POT-Creation-Date: 2022-01-07 20:58+0000\n"
"PO-Revision-Date: 2022-01-06 19:53+0000\n" "PO-Revision-Date: 2022-01-06 19:53+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
"minetest/contentdb/nb_NO/>\n"
"Language: nb_NO\n" "Language: nb_NO\n"
"Language-Team: Norwegian Bokmål "
"<https://hosted.weblate.org/projects/minetest/contentdb/nb_NO/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10.1\n"
"Generated-By: Babel 2.9.1\n" "Generated-By: Babel 2.9.1\n"
#: app/template_filters.py:52 #: app/template_filters.py:52
@ -111,11 +110,21 @@ msgstr ""
msgid "Has received %(downloads)d downloads across all packages." msgid "Has received %(downloads)d downloads across all packages."
msgstr "" msgstr ""
#: app/templates/404.html:4
msgid "Page not found"
msgstr ""
#: app/templates/404.html:10
msgid ""
"That page could not be found. The link may be broken, the page may have "
"been deleted, or you may not have access to it."
msgstr ""
#: app/templates/base.html:65 #: app/templates/base.html:65
msgid "Work Queue" msgid "Work Queue"
msgstr "" msgstr ""
#: app/templates/base.html:78 #: app/templates/base.html:78 app/templates/base.html:130
msgid "To do list" msgid "To do list"
msgstr "" msgstr ""
@ -127,67 +136,75 @@ msgstr ""
msgid "Add Package" msgid "Add Package"
msgstr "" msgstr ""
#: app/templates/base.html:130 #: app/templates/base.html:125
msgid "Profile"
msgstr ""
#: app/templates/base.html:139
msgid "Audit Log" msgid "Audit Log"
msgstr "" msgstr ""
#: app/templates/base.html:132 #: app/templates/base.html:143
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: app/templates/base.html:135 #: app/templates/base.html:146
msgid "License Editor" msgid "License Editor"
msgstr "" msgstr ""
#: app/templates/base.html:140 #: app/templates/base.html:151
msgid "Restore Package" msgid "Restore Package"
msgstr "" msgstr ""
#: app/templates/base.html:143 #: app/templates/base.html:154
msgid "Tag Editor" msgid "Tag Editor"
msgstr "" msgstr ""
#: app/templates/base.html:145 #: app/templates/base.html:156
msgid "Create Tag" msgid "Create Tag"
msgstr "" msgstr ""
#: app/templates/base.html:151 #: app/templates/base.html:161 app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/base.html:164
msgid "Sign out" msgid "Sign out"
msgstr "" msgstr ""
#: app/templates/base.html:155 #: app/templates/base.html:168
msgid "Sign in" msgid "Sign in"
msgstr "Logg inn" msgstr "Logg inn"
#: app/templates/base.html:193 #: app/templates/base.html:242
msgid "Help" msgid "Help"
msgstr "Hjelp" msgstr "Hjelp"
#: app/templates/base.html:194 #: app/templates/base.html:243
msgid "Policy and Guidance" msgid "Policy and Guidance"
msgstr "" msgstr ""
#: app/templates/base.html:195 #: app/templates/base.html:244
msgid "API" msgid "API"
msgstr "API" msgstr "API"
#: app/templates/base.html:196 app/templates/users/register.html:43 #: app/templates/base.html:245 app/templates/users/register.html:43
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Personvernspraksis" msgstr "Personvernspraksis"
#: app/templates/base.html:197 #: app/templates/base.html:246
msgid "Report / DMCA" msgid "Report / DMCA"
msgstr "" msgstr ""
#: app/templates/base.html:198 #: app/templates/base.html:247
msgid "Stats / Monitoring" msgid "Stats / Monitoring"
msgstr "" msgstr ""
#: app/templates/base.html:199 #: app/templates/base.html:248
msgid "User List" msgid "User List"
msgstr "Brukerliste" msgstr "Brukerliste"
#: app/templates/base.html:200 #: app/templates/base.html:249
msgid "Source Code" msgid "Source Code"
msgstr "Kildekode" msgstr "Kildekode"
@ -220,6 +237,10 @@ msgstr "Forrige"
msgid "Next" msgid "Next"
msgstr "Neste" msgstr "Neste"
#: app/templates/index.html:96
msgid "Featured"
msgstr ""
#: app/templates/index.html:101 app/templates/index.html:108 #: app/templates/index.html:101 app/templates/index.html:108
#: app/templates/index.html:115 app/templates/index.html:122 #: app/templates/index.html:115 app/templates/index.html:122
#: app/templates/index.html:129 app/templates/index.html:151 #: app/templates/index.html:129 app/templates/index.html:151
@ -678,10 +699,6 @@ msgstr ""
msgid "Importing... (This may take a while)" msgid "Importing... (This may take a while)"
msgstr "" msgstr ""
#: app/templates/packages/create_edit.html:119
msgid "forum.minetest.net/viewtopic.php?t="
msgstr ""
#: app/templates/packages/create_edit.html:120 #: app/templates/packages/create_edit.html:120
msgid "Tip: paste in a forum topic URL" msgid "Tip: paste in a forum topic URL"
msgstr "" msgstr ""
@ -739,10 +756,6 @@ msgstr ""
msgid "Create a release" msgid "Create a release"
msgstr "" msgstr ""
#: app/templates/packages/release_new.html:12
msgid "Settings"
msgstr ""
#: app/templates/packages/release_new.html:14 #: app/templates/packages/release_new.html:14
msgid "You have automatic releases enabled." msgid "You have automatic releases enabled."
msgstr "" msgstr ""
@ -1454,3 +1467,7 @@ msgstr ""
#: app/templates/users/unsubscribe.html:33 #: app/templates/users/unsubscribe.html:33
msgid "You may now unsubscribe." msgid "You may now unsubscribe."
msgstr "" msgstr ""
#~ msgid "forum.minetest.net/viewtopic.php?t="
#~ msgstr ""

4
utils/update_trans.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
pybabel extract -F babel.cfg -o translations/messages.pot .
pybabel update -i translations/messages.pot -d translations