1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

Merge branch 'master' into kill-jappix

This commit is contained in:
Alexandre Aubin 2024-08-03 18:24:57 +02:00 committed by GitHub
commit 062cf7998a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
138 changed files with 7737 additions and 5770 deletions

View file

@ -13,6 +13,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.YUNOHOST_BOT_TOKEN }}
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:

View file

@ -14,25 +14,29 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
cd tools/readme_generator/
pip install -r requirements.txt
- name: Save old messges.pot for diffing later
run: |
cd tools/readme_generator/
cp messages.pot messages.pot.old
- name: Try to generate messages.pot
run: |
cd tools/readme_generator/
pybabel extract --ignore-dirs venv -F babel.cfg -o messages.pot .
- shell: pwsh
id: check_files_changed
- name: Check if files changed
run: |
$HasDiff = python .github/diff_pot_files.py tools/readme_generator/messages.pot.old tools/readme_generator/messages.pot
Write-Host "::set-output name=files_changed::$HasDiff"
HAS_DIFF=$(python .github/diff_pot_files.py tools/readme_generator/messages.pot.old tools/readme_generator/messages.pot)
echo "HAS_DIFF=$HAS_DIFF" >> $GITHUB_ENV
- name: Create Pull Request
if: steps.check_files_changed.outputs.files_changed == 'true'
if: ${{ env.HAS_DIFF == 'true' }}
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}

View file

@ -15,15 +15,8 @@ jobs:
with:
options: "."
continue-on-error: true
- shell: pwsh
id: check_files_changed
run: |
# Diff HEAD with the previous commit
$diff = git diff
$HasDiff = $diff.Length -gt 0
Write-Host "::set-output name=files_changed::$HasDiff"
- name: Create Pull Request
if: steps.check_files_changed.outputs.files_changed == 'true'
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}

View file

@ -11,15 +11,8 @@ jobs:
- uses: actions/checkout@v4
- uses: uncenter/setup-taplo@v1
- run: taplo fmt
- shell: pwsh
id: check_files_changed
run: |
# Diff HEAD with the previous commit
$diff = git diff
$HasDiff = $diff.Length -gt 0
Write-Host "::set-output name=files_changed::$HasDiff"
- name: Create Pull Request
if: steps.check_files_changed.outputs.files_changed == 'true'
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
@ -28,4 +21,4 @@ jobs:
body: |
This pull request uses the [Taplo](https://taplo.tamasfe.dev) formatter.
base: ${{ github.head_ref }} # Creates pull request onto pull request or commit branch
branch: actions/toml
branch: actions/toml

8
.gitignore vendored
View file

@ -11,14 +11,8 @@ __pycache__/
.mypy_cache/
# Github authentication files
/.github_*
/tools/.github_*
# yunohost specific cache/output dirs
.apps_cache
builds*
tools/bot-repo-cleanup/.github_token
tools/autoupdater-upgrader/.*
tools/autopatches/login
tools/autopatches/token

View file

@ -123,7 +123,7 @@ title.it = "Sostituita da unaltra app"
[alpha-software]
description.en = "Early development stage. May contain changing or unstable features, bugs, and security vulnerability."
description.eu = "Garapenaren hasierako fasean dago. Ezaugarri aldakor edo ezegonkorrak, erroreak eta segurtasuneko arazoak izan ditzazke."
description.eu = "Garapenaren hasierako fasean dago. Ezaugarri aldakor edo ezegonkorrak, erroreak eta segurtasun-arazoak izan ditzazke."
description.fr = "Le logiciel est au tout début de son développement. Il pourrait contenir des fonctionnalités changeantes ou instables, des bugs, et des failles de sécurité."
description.it = "Questo software è allinizio della sua fase di sviluppo. Potrebbe dunque essere instabile, contenere bug e vulnerabilità di sicurezza."
icon = "flask"

463
apps.toml

File diff suppressed because it is too large Load diff

View file

@ -89,6 +89,10 @@ title.it = "Pubblicazione"
title.fr = "Statistiques"
title.it = "Analisi del traffico"
[publishing.subtags.static_site_generator]
title.en = "Static site generator"
title.fr = "Générateur de site statique"
[communication]
description.en = "Chat, email, forum, meetings..."
description.es = "Chat, email, foro, reuniones en grupo..."

4
cron
View file

@ -7,8 +7,8 @@
# Every friday at 6 PM UTC
0 17 * * 5 root /bin/bash __BASEDIR__/maintenance.sh update_app_levels
# Every 6 hours
0 */6 * * * root /bin/bash __BASEDIR__/maintenance.sh fetch_main_dashboard
# Every 2 hours
0 */2 * * * root /bin/bash __BASEDIR__/maintenance.sh fetch_main_dashboard
# Every day at 2AM
0 2 * * * root /bin/bash __BASEDIR__/maintenance.sh fetch_level_history

View file

@ -192,6 +192,16 @@ potential_alternative_to = [ "Google Groups" ]
subtags = [ "email" ]
url = "https://github.com/yunohost-apps/mailman_ynh"
[matrix-puppet-discord]
added_date = 1674232499 # 2023/01/20
antifeatures = [ "deprecated-software" ]
category = "communication"
deprecated_date = 1711055457 # 2024/03/21
killed_date = 1717576274 # 2024/06/05
potential_alternative_to = [ "Discord" ]
subtags = [ "chat" ]
url = "https://github.com/YunoHost-Apps/matrix-puppet-discord_ynh"
[mediadrop]
added_date = 1554588215 # 2019/04/07
category = "multimedia"

View file

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
logos/dynamicqrcode.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
logos/microblogpub.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 597 B

BIN
logos/rclone.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

BIN
logos/zola.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -44,15 +44,25 @@ function git_pull_and_update_cron_and_restart_services_if_needed()
# Autoreadme
pushd tools/readme_generator >/dev/null
modified_after_service_start="$(find *.py translations/ templates/ -newermt "$(systemctl show --property=ActiveEnterTimestamp autoreadme | cut -d= -f2 | cut -d' ' -f2-3)")"
modified_after_service_start="$(find *.py translations/ templates/ -newermt "$(systemctl show --property=ActiveEnterTimestamp webhooks | cut -d= -f2 | cut -d' ' -f2-3)")"
if [ -n "$modified_after_service_start" ]
then
systemctl restart autoreadme
systemctl restart webhooks
sleep 3
fi
popd >/dev/null
systemctl --quiet is-active autoreadme || sendxmpppy "[autoreadme] Uhoh, failed to (re)start the autoreadme service?"
# Autoreadme
pushd tools/webhooks >/dev/null
modified_after_service_start="$(find *.py -newermt "$(systemctl show --property=ActiveEnterTimestamp webhooks | cut -d= -f2 | cut -d' ' -f2-3)")"
if [ -n "$modified_after_service_start" ]
then
systemctl restart webhooks
sleep 3
fi
popd >/dev/null
systemctl --quiet is-active webhooks || sendxmpppy "[autoreadme] Uhoh, failed to (re)start the autoreadme service?"
}
function rebuild_catalog()
@ -69,7 +79,7 @@ function autoupdate_app_sources()
date >> $log
git_pull_and_update_cron_and_restart_services_if_needed
tools/autoupdate_app_sources/venv/bin/python3 tools/autoupdate_app_sources/autoupdate_app_sources.py \
--edit --commit --pr --paste -j1 \
--latest-commit-weekly --edit --commit --pr --paste -j1 \
&> $log || sendxmpppy "[appsourcesautoupdate] App sources auto-update failed miserably"
}

View file

@ -0,0 +1,227 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/YunoHost/apps/master/schemas/config_panel.v1.schema.json",
"title": "Yunohost app config_panel.toml schema",
"version": "0",
"type": "object",
"$defs": {
"translated_string": {
"anyOf": [
{
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[a-z]{2}$": {
"type": "string"
}
},
"minProperties": 1
},
{
"type": "string"
}
]
},
"boolean_or_string": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"panel": {
"type": "object",
"properties": {
"name": {
"$ref": "#/$defs/translated_string"
},
"help": {
"$ref": "#/$defs/translated_string"
},
"services": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": {
"$ref": "#/$defs/section"
}
},
"section": {
"type": "object",
"properties": {
"name": {
"$ref": "#/$defs/translated_string"
},
"help": {
"$ref": "#/$defs/translated_string"
},
"services": {
"type": "array",
"items": {
"type": "string"
}
},
"visible": {
"$ref": "#/$defs/boolean_or_string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": {
"$ref": "#/$defs/option"
}
},
"option": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"string",
"text",
"select",
"tags",
"email",
"url",
"date",
"time",
"color",
"password",
"path",
"boolean",
"domain",
"user",
"group",
"number",
"range",
"alert",
"markdown",
"file",
"app",
"button"
]
},
"default": {
"type": [
"string",
"number",
"boolean"
]
},
"example": {
"type": [
"string",
"number",
"boolean"
]
},
"optional": {
"type": "boolean"
},
"ask": {
"$ref": "#/$defs/translated_string"
},
"help": {
"$ref": "#/$defs/translated_string"
},
"choices": {
"anyOf": [
{
"type": "object",
"required": [],
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9_]*$": {
"type": "string"
}
}
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"pattern": {
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"regexp": {
"type": "string",
"format": "regex"
},
"error": {
"type": "string"
}
}
},
"yes": {
"$ref": "#/$defs/boolean_or_string"
},
"no": {
"$ref": "#/$defs/boolean_or_string"
},
"visible": {
"$ref": "#/$defs/boolean_or_string"
},
"bind": {
"type": "string"
},
"style": {
"type": "string",
"enum": ["info", "danger", "success"]
},
"redact": {
"type": "boolean"
},
"enabled": {
"$ref": "#/$defs/boolean_or_string"
},
"readonly": {
"$ref": "#/$defs/boolean_or_string"
},
"accept": {
"type": "array",
"items": {
"type": "string"
}
},
"min": {
"type": "integer"
},
"max": {
"type": "integer"
}
}
}
},
"properties": {
"version": {
"description": "config_panel.toml format / version",
"type": "string",
"pattern": "^[0-9]*(\\.[0-9])*$"
},
"i18n": {
"description": "Translation domain",
"type": "string"
}
},
"additionalProperties": {
"$ref": "#/$defs/panel"
},
"required": [
"version"
]
}

View file

@ -151,6 +151,10 @@
"type": "string",
"pattern": "^>= ?[0-9]{1,2}(\\.[0-9]{1,2}){0,2}$"
},
"helpers_version": {
"type": "string",
"pattern": "^[0-9]*\\.[0-9]*$"
},
"architectures": {
"oneOf": [
{

View file

@ -91,6 +91,14 @@ def days_ago(timestamp):
return int((time.time() - timestamp) / (60 * 60 * 24))
@app.template_filter("hours_ago")
def hours_ago(timestamp):
d = datetime.now() - datetime.fromtimestamp(timestamp)
minutes, _ = divmod(d.total_seconds(), 60)
hours, minutes = divmod(minutes, 60)
return f"{int(hours)}:{int(minutes):02d}h"
@app.template_filter("format_datetime")
def format_datetime(value, format="%d %b %Y %I:%M %p"):
if value is None:
@ -464,7 +472,20 @@ Description: {description}
@app.route("/dash")
def dash():
return render_template("dash.html", data=get_dashboard_data(), stars=get_stars())
# Sort by popularity by default
stars = get_stars()
data = dict(
sorted(
get_dashboard_data().items(),
key=lambda app: len(stars.get(app[0], [])),
reverse=True,
)
)
return render_template(
"dash.html", data=data, stars=stars, last_data_update=get_dashboard_data.mtime
)
@app.route("/charts")

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\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"
@ -17,16 +17,16 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to"
" 'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -35,71 +35,71 @@ msgid ""
"minutes reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, "
"or repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, "
@ -107,14 +107,14 @@ msgid ""
"interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be "
@ -130,7 +130,7 @@ msgid ""
"href='%(url)s'>%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -246,15 +246,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -266,114 +266,119 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> "
"using <a class='text-blue-800' "
"using <a class='text-blue-800 dark:text-blue-400' "
"href='https://flask.palletsprojects.com'>Flask</a> and <a class='text-"
"blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"blue-800 dark:text-blue-400' "
"href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly "
"advise against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

View file

@ -1,6 +1,6 @@
Babel==2.14.0
blinker==1.8.1
certifi==2024.2.2
certifi==2024.7.4
cffi==1.16.0
charset-normalizer==3.3.2
click==8.1.7
@ -27,6 +27,6 @@ text-unidecode==1.3
toml==0.10.2
tomlkit==0.12.4
typing_extensions==4.11.0
urllib3==2.2.1
urllib3==2.2.2
Werkzeug==3.0.3
wrapt==1.16.0

View file

@ -8,17 +8,18 @@
<h1 class="text-2xl font-bold">
{{ _("App packaging dashboard") }}
</h1>
<p class="text-sm text-gray-700 mx-10 mt-2">{{ _("This is where packagers can monitor the status of automatic tests (CI) and ongoing major pull requests accross all apps. If you want to get started with app packaging in YunoHost, please check out the <a class='text-blue-500' href='https://yunohost.org/packaging_apps'>packaging documentation</a> and come say hi to us on the <a class='text-blue-500' href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!") }}</p>
<p class="text-sm text-gray-700 mx-2 md:mx-32 mt-2">{{ _("This is where packagers can monitor the status of automatic tests (CI) and ongoing major pull requests accross all apps. If you want to get started with app packaging in YunoHost, please check out the <a class='text-blue-500' href='https://yunohost.org/packaging_apps'>packaging documentation</a> and come say hi to us on the <a class='text-blue-500' href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!") }}</p>
</div>
<div class="mx-auto text-center py-4">
<div class="inline-block w-5/12">
<div class="text-center justify-center space-y-3 md:space-y-0 md:space-x-3 px-2 md:px-10 lg:px-20 flex flex-col flex-wrap md:flex-row pb-5">
<div>
{{ _("Filter") }}
<select
name="selectfilter"
id="selectfilter"
class="rounded-md border-gray-200 text-sm h-8 py-0"
class="rounded-md border-gray-200 text-sm h-8 py-0 max-w-72 sm:max-none"
>
<option {% if request.args.get("filter") in [None, "none"] %}selected{% endif %} value="none">{{ _("(None)") }}</option>
<option {% if request.args.get("filter") == "regressions_main_ci" %}selected{% endif %} value="regressions_main_ci">{{ _("Regressions on main CI") }}</option>
@ -27,24 +28,40 @@
<option {% if request.args.get("filter") == "regressions_bookworm" %}selected{% endif %} value="regressions_bookworm">{{ _("Major regressions on Bookworm CI") }}</option>
<option {% if request.args.get("filter") == "testings" %}selected{% endif %} value="testings">{{ _("Apps with testings PRs") }}</option>
<option {% if request.args.get("filter") == "autoupdate" %}selected{% endif %} value="autoupdate">{{ _("Apps with autoupdate PRs") }}</option>
<option {% if request.args.get("filter") == "nb_issues" %}selected{% endif %} value="nb_issues">{{ _("Apps with issues") }}</option>
<option {% if request.args.get("filter") == "packagingv1" %}selected{% endif %} value="packagingv1">{{ _("Packaging v1 apps") }}</option>
</select>
</div>
<div class="inline-block w-5/12">
<div>
{{ _("Sort by") }}
<select
name="selectsort"
id="selectsort"
class="rounded-md border-gray-200 text-sm h-8 py-0"
class="rounded-md border-gray-200 text-sm h-8 py-0 max-w-72 sm:max-none"
>
<option {% if request.args.get("sort") in [None, "alpha"] %}selected{% endif %} value="alpha">{{ _("Alphabetical") }}</option>
<option {% if request.args.get("sort") == "alpha" %}selected{% endif %} value="alpha">{{ _("Alphabetical") }}</option>
<option {% if request.args.get("sort") == "level" %}selected{% endif %} value="level">{{ _("Quality level") }}</option>
<option {% if request.args.get("sort") == "stars" %}selected{% endif %} value="stars">{{ _("Popularity stars") }}</option>
<option {% if request.args.get("sort") in [None, "stars"] %}selected{% endif %} value="stars">{{ _("Popularity stars") }}</option>
<option {% if request.args.get("sort") == "main_branch_update" %}selected{% endif %} value="main_branch_update">{{ _("Last update on main/master branch") }}</option>
<option {% if request.args.get("sort") == "testing_branch_update" %}selected{% endif %} value="testing_branch_update">{{ _("Last update on testing branch") }}</option>
<option {% if request.args.get("sort") == "nb_issues" %}selected{% endif %} value="nb_issues">{{ _("Number of opened issues") }}</option>
</select>
</div>
<div class="block w-fit mx-auto flex items-center px-2 pt-2 {% if not user %}text-gray-500{% endif %}" {% if not user %}title="{{ _('Requires to be logged-in') }}" aria-label="{{ _('Requires to be logged-in') }}"{% endif %}>
<div class="w-fit mx-auto flex items-center px-2 pt-2">
<label for="hidedeprecated" class="inline-block relative mr-2 h-4 w-7 cursor-pointer">
<span class="sr-only">{{ _("Hide deprecated/unmaintained apps") }}</span>
<input type="checkbox" id="hidedeprecated" class="peer sr-only" {% if request.args.get("hidedeprecated") %}checked{% endif %} >
<span class="absolute inset-0 rounded-full bg-gray-300 transition peer-checked:bg-green-500">
</span>
<span class="absolute inset-y-0 start-0 m-1 h-2 w-2 rounded-full bg-white transition-all peer-checked:start-3">
</span>
</label>
{{ _("Hide deprecated/unmaintained apps") }}
</div>
<div class="w-fit mx-auto flex items-center px-2 pt-2 {% if not user %}text-gray-500{% endif %}" {% if not user %}title="{{ _('Requires to be logged-in') }}" aria-label="{{ _('Requires to be logged-in') }}"{% endif %}>
<label for="starsonly" class="inline-block relative mr-2 h-4 w-7 cursor-pointer">
<span class="sr-only">{{ _("Show only apps you starred") }}</span>
<input type="checkbox" id="starsonly" class="peer sr-only" {% if user and request.args.get("starsonly") %}checked{% endif %} {% if not user%}disabled{% endif %} >
@ -57,17 +74,18 @@
</label>
{{ _("Show only apps you starred") }}
</div>
</div>
<table id="appTable" class="mx-auto">
<table id="appTable" class="mx-auto text-sm sm:text-base">
<tr class="h-40 md:h-20">
<th class="max-w-20 md:max-w-32">{{ _("App") }}</th>
<th class="max-w-24 md:max-w-32">{{ _("App") }}</th>
<th class="-rotate-90 md:-rotate-45 max-w-10 md:max-w-16 text-left text-nowrap">{{ _("Catalog") }}</th>
<th class="-rotate-90 md:-rotate-45 max-w-10 md:max-w-16 text-left text-nowrap">{{ _("Main CI") }}</th>
<th class="-rotate-90 md:-rotate-45 max-w-10 md:max-w-16 text-left text-nowrap">{{ _("Bookworm CI") }}</th>
<th class="-rotate-90 md:-rotate-45 max-w-10 md:max-w-16 text-left text-nowrap">{{ _("Testing PR") }}</th>
<th class="-rotate-90 md:-rotate-45 max-w-10 md:max-w-16 text-left text-nowrap">{{ _("Autoupdate PR") }}</th>
<th class="-rotate-90 md:-rotate-45 max-w-10 md:max-w-16 text-left text-nowrap">{{ _("Issues") }}</th>
<th></th>
</tr>
{% for app, infos in data.items() %}
@ -80,7 +98,10 @@
{% endif %}
<tr
class="app h-8 hover:bg-gray-100"
class="app h-8 hover:bg-gray-100
{% if "deprecated-software" in infos["antifeatures"] or "replaced-by-another-app" in infos["antifeatures"] or "package-not-maintained" in infos["antifeatures"] %}
opacity-50
{% endif %}"
data-app="{{ app }}"
data-popularity-stars="{{ this_app_stars }}"
data-starred="{{ user_starred_this_app }}"
@ -88,13 +109,18 @@
data-main-ci-level="{% if infos["ci_results"]["main"] %}{{ infos["ci_results"]["main"]["level"] }}{% else %}-1{% endif %}"
data-main-ci-daysago="{% if infos["ci_results"]["main"] %}{{ infos["ci_results"]["main"]["timestamp"] | days_ago }}{% else %}-9999{% endif %}"
data-nextdebian-ci-level="{% if infos["ci_results"]["nextdebian"] %}{{ infos["ci_results"]["nextdebian"]["level"] }}{% else %}-1{% endif %}"
data-last-update-master-daysago="{{ infos["ci_results"]["main"]["timestamp"] | days_ago }}"
data-last-update-testing-daysago="{% if infos["testing"] %}{{ infos["testing"]["timestamp_updated"] | days_ago }}{% endif %}"
data-last-update-autoupdate-daysago="{% if infos["ci-auto-update"] %}{{ infos["ci-auto-update"]["timestamp_updated"] | days_ago }}{% endif %}"
data-last-update-master="{{ infos["ci_results"]["main"]["timestamp"] }}"
data-last-update-testing="{% if infos["testing"] %}{{ infos["testing"]["timestamp_updated"] }}{% else %}-1{% endif %}"
data-last-update-autoupdate="{% if infos["ci-auto-update"] %}{{ infos["ci-auto-update"]["timestamp_updated"] }}{% else %}-1{% endif %}"
data-packaging-format="{{ infos["packaging_format"] }}"
data-deprecated="{% if "deprecated-software" in infos["antifeatures"] or "replaced-by-another-app" in infos["antifeatures"] or "package-not-maintained" in infos["antifeatures"] %}True{% else %}False{% endif %}"
data-nb-issues="{{ infos["nb_issues"] }}"
>
<td class="max-w-40 md:max-w-64 text-center text-blue-600 font-medium"><a href="{{ infos["url"] }}">{{ app }}</a></td>
<td class="font-bold">
<td class="truncate max-w-24 md:max-w-64 text-center text-blue-600 font-medium">
<a href="{{ infos["url"] }}">{{ app }}</a>
</td>
<td class="font-bold text-center">
<a href="{{ url_for('app_info', app_id=app) }}">
{{ infos["public_level"] }}
{% if infos["public_level"] == "?" %}
@ -105,7 +131,7 @@
{% endif %}
</a>
</td>
<td>
<td class="border-l-2 border-gray-100 text-center">
<a class="{% if infos["public_level"] == infos["ci_results"]["main"]["level"] or infos["ci_results"]["main"]["timestamp"] | days_ago > 30 %}opacity-50{% endif %}" href="https://ci-apps.yunohost.org/ci/apps/{{ app }}/">
{% if infos["public_level"] == infos["ci_results"]["main"]["level"] %}
=
@ -123,7 +149,7 @@
{% endif %}
</a>
</td>
<td>
<td class="text-center">
<a class="{% if infos["ci_results"]["nextdebian"] and ((infos["public_level"] == infos["ci_results"]["nextdebian"]["level"]) or (infos["ci_results"]["nextdebian"]["timestamp"] | days_ago) > 30) %}opacity-50{% endif %}" href="https://ci-apps-bookworm.yunohost.org/ci/apps/{{ app }}/">
{% if infos["ci_results"]["nextdebian"] %}
{% if infos["public_level"] == infos["ci_results"]["nextdebian"]["level"] %}
@ -145,7 +171,7 @@
{% endif %}
</a>
</td>
<td>
<td class="border-l-2 border-gray-100 text-center">
{% if "testing" in infos %}
<a href="{{ infos["testing"]["url"] }}">
<i class="fa fa-flask"></i>
@ -160,7 +186,7 @@
</a>
{% endif %}
</td>
<td>
<td class="border-r-2 border-gray-100 text-center">
{% if "ci-auto-update" in infos %}
<a href="{{ infos["ci-auto-update"]["url"] }}">
<i class="fa fa-arrow-up"></i>
@ -175,7 +201,14 @@
</a>
{% endif %}
</td>
<td class="text-sm">
<td class="border-r-2 border-gray-100 text-center">
{% if infos["nb_issues"] != 0 %}
<a href="{{ infos["url"] }}/issues">
{{ infos["nb_issues"] }}
</a>
{% endif %}
</td>
<td class="px-3 truncate text-sm max-w-16 sm:max-w-full">
{% if this_app_stars > 0 %}
<span class="text-xs border-purple-400 text-purple-600 px-1 py-0 border rounded">{{ this_app_stars }}
<i class="fa {% if not user_starred_this_app %}fa-star-o{% else %}fa-star{% endif %}" aria-hidden="true" title="{{ _("Popularity stars") }}"></i>
@ -202,6 +235,7 @@
<div id="nbEntriesFound" class="text-center text-gray-600 text-sm py-3"></div>
<div class="text-center text-gray-600 text-sm py-3">{{ _("Last data update %(time)s ago", time=last_data_update|hours_ago) }}</div>
<script type="text/javascript">
@ -211,6 +245,7 @@
let filterName = selectFilter.value.trim();
let nb_found = 0;
let starsOnly = toggleStarsonly.checked;
let hideDeprecated = toggleHidedeprecated.checked;
// Loop through the entries
for (var i = 0; i < entries.length; i++) {
@ -220,6 +255,11 @@
entries[i].classList.add("hidden");
continue;
}
if ((hideDeprecated) && (entries[i].dataset.deprecated != "False"))
{
entries[i].classList.add("hidden");
continue;
}
if (filterName == "none")
{
@ -276,7 +316,7 @@
}
else if (filterName == "testings")
{
if (entries[i].dataset.lastUpdateTestingDaysago)
if (parseInt(entries[i].dataset.lastUpdateTesting) > -1)
{
entries[i].classList.remove("hidden");
nb_found++;
@ -288,7 +328,7 @@
}
else if (filterName == "autoupdate")
{
if (entries[i].dataset.lastUpdateAutoupdateDaysago)
if (parseInt(entries[i].dataset.lastUpdateAutoupdate) > -1)
{
entries[i].classList.remove("hidden");
nb_found++;
@ -310,6 +350,18 @@
entries[i].classList.add("hidden");
}
}
else if (filterName == "nb_issues")
{
if (entries[i].dataset.nbIssues > 0)
{
entries[i].classList.remove("hidden");
nb_found++
}
else
{
entries[i].classList.add("hidden");
}
}
}
document.getElementById('nbEntriesFound').innerHTML = "(" + nb_found + " apps)";
@ -337,12 +389,12 @@
}
else if (sortBy === "main_branch_update") {
toSort.sort(function(a, b) {
return parseInt(a.dataset.lastUpdateMasterDaysago) < parseInt(b.dataset.lastUpdateMasterDaysago) ? 1 : -1;
return parseInt(a.dataset.lastUpdateMaster) < parseInt(b.dataset.lastUpdateMaster) ? 1 : -1;
});
}
else if (sortBy === "testing_branch_update") {
toSort.sort(function(a, b) {
return parseInt(a.dataset.lastUpdateTestingDaysago) < parseInt(b.dataset.lastUpdateTestingDaysago) ? 1 : -1;
return parseInt(a.dataset.lastUpdateTesting) < parseInt(b.dataset.lastUpdateTesting) ? 1 : -1;
});
}
else if (sortBy === "alpha") {
@ -350,6 +402,11 @@
return a.dataset.app > b.dataset.app ? 1 : -1;
});
}
else if (sortBy === "nb_issues") {
toSort.sort(function(a, b) {
return b.dataset.nbIssues - a.dataset.nbIssues;
});
}
for(var i = 0, l = toSort.length; i < l; i++) {
toSort[i].remove()
table.appendChild(toSort[i]);
@ -363,12 +420,14 @@
let sortBy = selectSort.value.trim();
let filterName = selectFilter.value.trim();
let starsOnly = toggleStarsonly.checked;
let hideDeprecated = toggleHidedeprecated.checked;
if ('URLSearchParams' in window) {
var queryArgs = new URLSearchParams(window.location.search)
if (filterName != "none") { queryArgs.set("filter", filterName) } else { queryArgs.delete("filter"); };
if (sortBy != "alpha") { queryArgs.set("sort", sortBy) } else { queryArgs.delete("sort"); };
if (sortBy != "stars") { queryArgs.set("sort", sortBy) } else { queryArgs.delete("sort"); };
if (starsOnly) { queryArgs.set("starsonly", true) } else { queryArgs.delete("starsonly"); };
if (hideDeprecated) { queryArgs.set("hidedeprecated", true) } else { queryArgs.delete("hidedeprecated"); };
let newUrl;
if (queryArgs.toString())
@ -390,6 +449,7 @@
let selectFilter = document.getElementById('selectfilter');
let selectSort = document.getElementById('selectsort');
let toggleStarsonly = document.getElementById('starsonly');
let toggleHidedeprecated = document.getElementById('hidedeprecated');
selectFilter.addEventListener('change', () => {
updateFilter();
@ -403,6 +463,10 @@
updateFilter();
});
toggleHidedeprecated.addEventListener('change', () => {
updateFilter();
});
updateFilter();
updateSort();

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:04+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ar <LL@li.org>\n"
@ -19,16 +19,16 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=0 && n%100<=2 ? 4 : 5);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -37,85 +37,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -123,7 +123,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -131,7 +131,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -148,7 +148,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -248,15 +248,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -268,113 +268,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -388,76 +393,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -476,108 +481,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:05+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: bn_BD <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:05+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: br <LL@li.org>\n"
@ -22,16 +22,16 @@ msgstr ""
"3 : n%1000000==0 ? 4 : 5);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -40,85 +40,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -126,7 +126,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -134,7 +134,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -151,7 +151,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -251,15 +251,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -271,113 +271,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -391,76 +396,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -479,108 +484,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-03-23 19:04+0000\n"
"Last-Translator: OniriCorpe <oniricorpe@disroot.org>\n"
"Language-Team: Catalan <https://translate.yunohost.org/projects/yunohost/"
@ -19,16 +19,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr "No es troba l'aplicació %(app_id)s"
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr "Heu d'iniciar sessió per poder destacar una aplicació"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -42,16 +42,16 @@ msgstr ""
"amb el fòrum, i més concretament: introduir almenys 5 temes, llegir almenys "
"30 publicacions i dedicar almenys 10 minuts llegint publicacions."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr "Heu d'iniciar sessió per enviar una aplicació a la llista de desitjos"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
"El testimoni CSRF no és vàlid; actualitzeu la pàgina i torneu-ho a provar"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
@ -59,47 +59,47 @@ msgstr ""
"La proposta d'addicions a la llista de desitjos està limitada a un cop cada "
"15 dies per usuari. Si us plau, torna-ho a provar d'aquí a uns dies."
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr "El nom de l'aplicació ha de tenir com a mínim 3 caràcters"
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr "El nom de l'aplicació ha de tenir menys de 30 caràcters"
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr "La descripció de l'aplicació ha de tenir almenys 5 caràcters"
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr "La descripció de l'aplicació ha de tenir menys de 100 caràcters"
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr "L'URL del dipòsit de codi amunt ha de tenir com a mínim 10 caràcters"
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr "L'URL del dipòsit de codi amunt ha de tenir menys de 150 caràcters"
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr "L'URL de la llicència ha de tenir com a mínim 10 caràcters"
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr "L'URL de la llicència ha de tenir menys de 250 caràcters"
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr "L'URL del lloc web ha de tenir menys de 150 caràcters"
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr "El nom de l'aplicació conté caràcters especials"
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
@ -108,12 +108,12 @@ msgstr ""
"màrqueting, termes difusos ni repetir que l'aplicació és «gratuïta» i "
"«autohostatjada»."
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
"No cal repetir el nom de l'aplicació. Centra't en el que fa l'aplicació."
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
@ -123,7 +123,7 @@ msgstr ""
"canvi, podeu <a href='%(url)s'>afegir una estrella a l'aplicació per mostrar "
"el vostre interès</a>."
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
@ -132,7 +132,7 @@ msgstr ""
"Una aplicació amb el nom %(slug)s ja existeix al catàleg, <a "
"href='%(url)s'>podeu veure la seva pàgina aquí</a>."
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -144,7 +144,7 @@ msgstr ""
"aquesta aplicació</a>? En cas contrari, si us plau, informeu el problema a "
"l'equip de YunoHost."
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -155,7 +155,7 @@ msgstr ""
"validat per l'equip de YunoHost. Podeu fer un seguiment del progrés aquí: <a "
"href='%(url)s'>%(url)s</a>"
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr "Malauradament s'ha denegat l'inici de sessió."
@ -174,7 +174,7 @@ msgstr ""
"les nostres proves automàtiques."
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -284,15 +284,15 @@ msgstr "Llicència del paquet YunoHost"
msgid "YunoHost app store"
msgstr "Botiga d'aplicacions YunoHost"
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr "Inici"
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr "Catàleg"
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr "Llista de desitjos"
@ -304,118 +304,124 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr "Documentació de YunoHost"
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr "Inicieu sessió mitjançant el fòrum de YunoHost"
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr "Tancar sessió"
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr "Canvia el menú"
#: templates/base.html:255
#: templates/base.html:264
#, fuzzy
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
"Fet amb <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> fent "
"servir <a class='text-blue-800' href='https://flask.palletsprojects."
"com'>Flask</a> i <a class='text-blue-800' href='https://tailwindcss."
"com/'>TailwindCSS</a>"
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr "Font"
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr "Condicions dels serveis"
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr "Catàleg d'aplicacions"
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr "Cercar"
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr "Buscar…"
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr "Totes les aplicacions"
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr "Ordenar per"
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr "Popularitat"
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr "Novetat"
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr "Alfabèticament"
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr "Requereix estar connectat"
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr "Mostra només les aplicacions que has destacat"
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr "Sense resultats."
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr "No trobes el que estàs buscant?"
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr "Fes una ullada a la llista de desitjos!"
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr "Aplicacions marcades actualment com a trencades"
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
"Aquestes són aplicacions que no han passat les nostres proves automàtiques."
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr "Aplicacions obsoletes"
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr "Aquestes són aplicacions que ja no es mantenen."
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -432,76 +438,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -520,110 +526,131 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
#, fuzzy
msgid "Popularity stars"
msgstr "Popularitat"
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
#, fuzzy
msgid "Deprecated"
msgstr "Aplicacions obsoletes"
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr "Botiga d'aplicacions"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ckb <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:09+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: cs <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:05+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: da <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

View file

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-03-23 19:04+0000\n"
"Last-Translator: OniriCorpe <oniricorpe@disroot.org>\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-06-27 16:54+0000\n"
"Last-Translator: Zwiebel <zwiebel@users.noreply.translate.yunohost.org>\n"
"Language-Team: German <https://translate.yunohost.org/projects/yunohost/apps/"
"de/>\n"
"Language: de\n"
@ -17,18 +17,19 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4.3\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr "App %(app_id)s nicht gefunden"
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr "Sie müssen angemeldet sein, um eine App markieren zu können"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -43,17 +44,17 @@ msgstr ""
"Beiträge gelesen und mindestens 10 Minuten damit verbracht haben, Beiträge "
"zu lesen."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr "Sie müssen angemeldet sein, um eine App auf die Wunschliste zu setzen"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
"Ungültiges CSRF-Token. Bitte aktualisieren Sie die Seite und versuchen Sie "
"es erneut"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
@ -62,49 +63,49 @@ msgstr ""
"pro Benutzer beschränkt. Bitte versuchen Sie es in ein paar Tagen noch "
"einmal."
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr "Der App-Name sollte mindestens 3 Zeichen lang sein"
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr "Der App-Name sollte weniger als 30 Zeichen lang sein"
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr "Die App-Beschreibung sollte mindestens 5 Zeichen lang sein"
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr "Die App-Beschreibung sollte weniger als 100 Zeichen umfassen"
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
"Die Upstream-Code-Repository-URL sollte mindestens 10 Zeichen lang sein"
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
"Die Upstream-Code-Repository-URL sollte weniger als 150 Zeichen lang sein"
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr "Die Lizenz-URL sollte mindestens 10 Zeichen lang sein"
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr "Die Lizenz-URL sollte weniger als 250 Zeichen lang sein"
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr "Die Website-URL sollte weniger als 150 Zeichen lang sein"
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr "Der App-Name enthält Sonderzeichen"
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
@ -113,13 +114,13 @@ msgstr ""
"unpräzise Begriffe zu verwenden oder zu wiederholen, dass die App 'frei' und "
"'selbsthostbar' ist."
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
"Bitte wiederholen Sie den Namen der Anwendung nicht. Es geht darum, was die "
"App tut."
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
@ -134,7 +135,7 @@ msgstr ""
# "
# | "you can <a href='%(url)s'>add a star to the app to show your
# interest</a>."
#: app.py:358
#: app.py:375
#, fuzzy, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
@ -144,7 +145,7 @@ msgstr ""
"Sie können stattdessen der App <a href='%(url)s'>einen Stern hinzufügen</a>, "
"um Ihr Interesse zu zeigen."
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -155,7 +156,7 @@ msgstr ""
"werden… Vielleicht gibt es bereits <a href='%(url)s'>einen wartenden PR für "
"diese App</a>? Andernfalls melden Sie das Problem bitte dem YunoHost-Team."
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -166,7 +167,7 @@ msgstr ""
"YunoHost-Team validiert werden. Sie können den Fortschritt hier verfolgen: "
"<a href='%(url)s'>%(url)s</a>"
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr "Leider wurde die Anmeldung verweigert."
@ -185,7 +186,7 @@ msgstr ""
"Tests nicht bestanden hat."
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -296,137 +297,142 @@ msgstr "YunoHost Paket-Lizenz"
msgid "YunoHost app store"
msgstr "YunoHost App-Store"
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr "Home"
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr "Katalog"
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr "Wunschliste"
#: templates/base.html:52
msgid "Packaging dashboard"
msgstr ""
msgstr "Packetierungsoberfläche"
#: templates/base.html:57
msgid "Charts & history"
msgstr ""
msgstr "Charts & Historie"
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr "YunoHost-Dokumentation"
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr "in Hellen-/Dunklenmodus wechseln"
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr "Login über YunoHost-Forum"
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr "Ausloggen"
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr "Menu umschalten"
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
"Hergestellt mit <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> "
"mit Hilfe von <a class='text-blue-800' href='https://flask.palletsprojects."
"com'>Flask</a> und <a class='text-blue-800' href='https://tailwindcss."
"com/'>TailwindCSS</a>"
"Bereitgestellt mit <i class='text-red-500 fa fa-heart-o' aria-label='love'></"
"i> mit Hilfe von <a class='text-blue-800' href='https://flask.palletsprojects"
".com'>Flask</a> und <a class='text-blue-800' href='https://tailwindcss.com/"
"'>TailwindCSS</a>"
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr "Quelle"
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr "Nutzungsbedingungen"
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr "Applikations-Katalog"
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr "Suche"
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr "Suchen nach…"
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr "Alle Apps"
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr "Sortieren nach"
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr "Popularität"
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr "Neueste"
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr "Alphabetisch"
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr "Erfordert eingeloggt zu sein"
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr "Zeige nur meine Favoriten"
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr "Keine Resultate gefunden."
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr "Finden Sie nicht, wonach Sie suchen?"
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr "Schauen Sie sich die Wunschliste an!"
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr "Applikationen, die gegenwärtig als defekt markiert sind"
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr "Das sind Apps, welche die automatischen Tests nicht bestanden haben."
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr "Veraltete Applikationen"
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr "Dies sind Apps, die nicht mehr betreut werden."
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -437,89 +443,89 @@ msgstr ""
#: templates/charts.html:5
msgid "Apps quality level from automatic tests"
msgstr ""
msgstr "automatisches App Qualitätslevel"
#: templates/charts.html:9
msgid "Apps quality level history"
msgstr ""
msgstr "App Qualitätslevel Historie"
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
msgstr "Historie"
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
msgstr "Hinzugefügt"
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
msgstr "Repariert"
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
msgstr "Defekt"
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
msgstr "Entfernt"
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
msgstr "Unbekannt"
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
msgstr "Level 0"
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
msgstr "Level 1"
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
msgstr "Level 2"
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
msgstr "Level 3"
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
msgstr "Level 4"
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
msgstr "Level 5"
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
msgstr "Level 6"
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
msgstr "Level 7"
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
msgstr "Level 8"
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
#: templates/dash.html:3 templates/dash.html:9
msgid "App packaging dashboard"
msgstr ""
msgstr "App Paketierungsübersicht"
#: templates/dash.html:11
msgid ""
@ -531,108 +537,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
msgid "(None)"
msgstr ""
msgstr "Filter"
#: templates/dash.html:24
msgid "(None)"
msgstr "(Nichts)"
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr "Apps mit Fehlern"
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
msgstr "Qualitätslevel"
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
#, fuzzy
msgid "Popularity stars"
msgstr "Popularität"
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr "Anzahl der Fehler"
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr "Fehler"
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
msgstr "Geringe Qualität"
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
msgstr "Inaktiv seit (%(days)s Tagen"
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
#, fuzzy
msgid "Deprecated"
msgstr "Veraltete Applikationen"
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr "Nicht betreut"
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:06+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: el <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:06+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: eo <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

View file

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-03-23 00:54+0000\n"
"Last-Translator: OniriCorpe <oniricorpe@disroot.org>\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-06-18 06:50+0000\n"
"Last-Translator: rosbeef andino <ra@3cmr.fr>\n"
"Language-Team: Spanish <https://translate.yunohost.org/projects/yunohost/"
"apps/es/>\n"
"Language: es\n"
@ -19,16 +19,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr "App %(app_id)s no encontrada"
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
msgstr "Debes iniciar sesión para poder iniciar una aplicación"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,109 +36,133 @@ msgid ""
"least 5 topics, reading at least 30 posts, and spending at least 10 minutes "
"reading posts."
msgstr ""
"Tenga en cuenta que, debido a varios abusos, restringimos el inicio de "
"sesión en la tienda de aplicaciones a usuarios de 'nivel de confianza 1'.<br/"
"><br/>El 'nivel de confianza 1' se obtiene después de interactuar un mínimo "
"con el foro, y más específicamente: ingresar al menos 5 temas, leer al menos "
"30 publicaciones y dedicar al menos 10 minutos a leer publicaciones."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
msgstr "Debes iniciar sesión para enviar una aplicación a la lista de deseos"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
msgstr "Token CSRF no válido. Actualice la página e inténtelo de nuevo"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
"Agregard un deseo esta limitado a uno cada quince días por usuario. Intente "
"mas tarde."
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
msgstr "El nombre de la aplicación debe contener por lo menos tres caracteres"
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
msgstr "El nombre de la aplicación debe contener menos de treinta caracteres"
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
"La descripción de la aplicación deber contener por lo menos cinco caracteres"
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
msgid "Website URL should be less than 150 characters"
msgstr ""
msgstr "La descripción de la aplicación de contener menos de 100 caracteres"
#: app.py:296
msgid "App name contains special characters"
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
"La URL del código fuente original deber contener por lo menos 10 caracteres"
#: app.py:303
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
"La URL del codigo fuente original debe contener menos de 150 caracteres"
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr "La URL de la licencia de contener por lo menos 10 caracteres"
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr "La URL de la licencia debe contener 250 caracteres máximo"
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr "La URL del sitio web debe contener 150 caracteres máximo"
#: app.py:313
msgid "App name contains special characters"
msgstr "El nombre de la aplicación contiene caracteres especiales"
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
"Por favor focalizarse en lo que hace la aplicación, sin usar formulaciones "
"marketing, palabras difusas, o repetir que la aplicación esta gratuita y "
"auto alojada."
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
"No es necesario repetir el nombre de la aplicación. Focalice en lo que hace "
"la aplicación."
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
"La aplicación %(slug)s ya existe. Puede <a href='%(url)s'>agregar una "
"estrella a esta app para mostrar su interes</a>."
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
"La aplicación %(slug)s ya existe. <a href='%(url)s'>puede ver su pagina "
"aquí</a>"
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
"there's already <a href='%(url)s'>a waiting PR for this app</a>? Else, "
"please report the issue to the YunoHost team."
msgstr ""
"Hubo un error al agregar la aplicación a la lista de deseo... ¿puede ser que "
"ya se esta <a href='%(url)s'>procesando su inclusion </a>? O intenta "
"contactar al equipo Yunohost"
#: app.py:433
#, python-format
#: app.py:450
#, fuzzy, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
"by the YunoHost team. You can track progress here: <a href='%(url)s'>"
"%(url)s</a>"
msgstr ""
"Su proposición fue agregada de manera satisfactoria. Esta a la espera de su "
"validación por parte del equipo YunoHost. Puede ver el avance aquí:%(url)s"
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
msgstr "Desafortunadamente , su inicio de sesión fue rechazado."
#: templates/app.html:10 templates/catalog.html:23
#, python-format
msgid "Logo for %(app)s"
msgstr ""
msgstr "Logo para %(app)s"
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42
@ -146,13 +170,17 @@ msgid ""
"This app is currently flagged as broken because it failed our automatic "
"tests."
msgstr ""
"Esta aplicación esta actualmente marcada como rota debido a que fallaron la "
"pruebas automáticas."
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
msgstr ""
"Esta situación es normalmente temporal hasta que un voluntario arregle el "
"incidente."
#: templates/app.html:37 templates/app.html:38 templates/catalog.html:46
#: templates/catalog.html:47
@ -160,311 +188,325 @@ msgid ""
"This app has been good quality according to our automatic tests over at "
"least one year."
msgstr ""
"Esta aplicación esta marcada como buena debido a que paso las pruebas "
"automáticas durante el ultimo año."
#: templates/app.html:81
msgid "Try the demo"
msgstr ""
msgstr "Probar"
#: templates/app.html:82
msgid "Demo"
msgstr ""
msgstr "Demo"
#: templates/app.html:85
msgid "Install with YunoHost"
msgstr ""
msgstr "Instalar con YunoHost"
#: templates/app.html:93
#, python-format
msgid "Current version: %(version)s"
msgstr ""
msgstr "Versión actual: %(version)s"
#: templates/app.html:95
#, python-format
msgid "Potential alternative to: %(alternatives)s"
msgstr ""
msgstr "Alternativa a : %(alternatives)s"
#: templates/app.html:101
#, python-format
msgid "Screenshot for %(app)s"
msgstr ""
msgstr "Captura de pantalla : %(app)s"
#: templates/app.html:106
#, python-format
msgid ""
"This app is only compatible with these specific architectures: %(archs)s"
msgstr ""
msgstr "Esta aplicación esta compatible con estas arquitecturas : %(archs)s"
#: templates/app.html:112
#, python-format
msgid "This app requires an unusual amount of RAM to install: %(ram)s"
msgstr ""
"Esta aplicación requiere una cantidad de RAM inusual para instalarse: %(ram)s"
#: templates/app.html:118
msgid "Important infos before installing"
msgstr ""
msgstr "Informaciones importantes que leer antes de instalar"
#: templates/app.html:124
msgid "Antifeatures"
msgstr ""
msgstr "Características no deseables"
#: templates/app.html:125
msgid "(This app has features you may not like)"
msgstr ""
msgstr "( Esta aplicación contiene características que podría no gustarle )"
#: templates/app.html:136
msgid "Useful links"
msgstr ""
msgstr "Vínculos útiles"
#: templates/app.html:139
#, python-format
msgid "App license: %(license)s"
msgstr ""
msgstr "Licencia: %(license)s"
#: templates/app.html:140
msgid " Official website"
msgstr ""
msgstr " Sitio web Oficial"
#: templates/app.html:141
msgid "Official admin documentation"
msgstr ""
msgstr "Documentación administrador oficial"
#: templates/app.html:142
msgid "Official user documentation"
msgstr ""
msgstr "Documentación usuario oficial"
#: templates/app.html:143
msgid "Official code repository"
msgstr ""
msgstr "Repositorio oficial del código"
#: templates/app.html:144
msgid "YunoHost package repository"
msgstr ""
msgstr "Repositorio YunoHost del paquete"
#: templates/app.html:145
msgid "YunoHost package license"
msgstr ""
msgstr "Licencia del paquete YunoHost"
#: templates/base.html:11
msgid "YunoHost app store"
msgstr ""
msgstr "Catalogo de aplicaciones YunoHost"
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
msgstr "Inicio"
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
msgstr "Catálogo"
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
msgstr "Lista de deseos"
#: templates/base.html:52
msgid "Packaging dashboard"
msgstr ""
msgstr "Tablero de integración"
#: templates/base.html:57
msgid "Charts & history"
msgstr ""
msgstr "Curvas y estadísticas"
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr "Documentacion YunoHost"
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
msgstr "Iniciar con el usuario del forum YunoHost"
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
msgstr "Tabla de integraciones"
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
msgstr "Salir"
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
msgstr "Desplegar el menu"
#: templates/base.html:255
#: templates/base.html:264
#, fuzzy
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
"Hecho con <i class='text-red-500 fa fa-heart-o' aria-label='love'> usando <a "
"class='text-blue-800' href='https://flask.palletsprojects.com'> Flask</a> y "
"<a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
msgstr "Fuente"
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
msgstr "Terminos de contrato"
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
msgstr "Catálogo de aplicaciones"
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
msgstr "Buscar"
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
msgstr "Buscar…"
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
msgstr "Todas"
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
msgstr "Ordenar por"
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
msgstr "Popularidad"
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
msgstr "Novedad"
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
msgstr "Alfabético"
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
msgstr "Necesita estar conectado"
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
msgstr "Mostrar solo aplicaciones que valoró"
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
msgstr "No hay resultados para esta búsqueda."
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
msgstr "¿No esta encontrando lo que buscas?"
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
msgstr "¡Verifica la lista de deseos!"
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
msgstr "Aplicaciones marcada como rotas"
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
msgstr "Estas aplicaciones fallaron a nuestras pruebas automáticas."
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
msgstr "Aplicaciones obsoletas"
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
msgstr "Estas aplicaciones non están mas mantenidas."
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
msgstr ""
"Esto significa que el desarrollador no las actualizara mas. Les aconsejamos "
"no instalar las y encontrar alternativas."
#: templates/charts.html:5
msgid "Apps quality level from automatic tests"
msgstr ""
msgstr "Calidad de la aplicación al pasar las pruebas automáticas"
#: templates/charts.html:9
msgid "Apps quality level history"
msgstr ""
msgstr "estadística históricas de la calidad de la aplicacion"
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
msgstr "Histórico"
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
msgstr "Agregado"
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
msgstr "Reparado"
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
msgstr "Roto"
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
msgstr "Borrado"
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
msgstr "Indefinido"
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
msgstr "Nivel 0"
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
msgstr "Nivel 1"
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
msgstr "Nivel 2"
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
msgstr "Nivel 3"
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
msgstr "Nivel 4"
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
msgstr "Nivel 5"
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
msgstr "Nivel 6"
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
msgstr "Nivel 7"
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
msgstr "Nivel 8"
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
msgstr "Nivel %(level)s:"
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
msgstr "Total:"
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
msgstr "Nivel %(level)s"
#: templates/dash.html:3 templates/dash.html:9
msgid "App packaging dashboard"
msgstr ""
msgstr "Tablero de integración de aplicaciones"
#: templates/dash.html:11
msgid ""
@ -475,150 +517,182 @@ msgid ""
"documentation</a> and come say hi to us on the <a class='text-blue-500' "
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
"Aquí los integradores pueden revisar el avance de las pruebas automáticas y "
"las solicitudes de modificaciones de todas las aplicaciones. Si quiere "
"participar, empieza por <a class='text-blue-500' href='https://yunohost.org/"
"packaging_apps'>la documentación de integración</a> y ¡ salúdanos en <a "
"class='text-blue-500' href='https://yunohost.org/chat_rooms'> la sala de "
"chat de integración de aplicación</a>!"
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
msgid "(None)"
msgstr ""
msgstr "Filtar"
#: templates/dash.html:24
msgid "Regressions on main CI"
msgstr ""
msgid "(None)"
msgstr "(ninguno)"
#: templates/dash.html:25
msgid "Broken / low quality apps"
msgstr ""
#, fuzzy
msgid "Regressions on main CI"
msgstr "Error en CI main"
#: templates/dash.html:26
msgid "Outdated tests on main CI"
msgstr ""
msgid "Broken / low quality apps"
msgstr "Aplicaciones Rota / calidad baja"
#: templates/dash.html:27
msgid "Major regressions on Bookworm CI"
msgstr ""
msgid "Outdated tests on main CI"
msgstr "Pruebas vencidas en CI main"
#: templates/dash.html:28
msgid "Apps with testings PRs"
msgstr ""
msgid "Major regressions on Bookworm CI"
msgstr "Error mayor en CI Bookworm"
#: templates/dash.html:29
msgid "Apps with autoupdate PRs"
msgstr ""
msgid "Apps with testings PRs"
msgstr "Aplicaciones con solicitudes de modificaciones en \"testing\""
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr "Aplicaciones con solicitudes de modificaciones automaticas"
#: templates/dash.html:31
#, fuzzy
msgid "Apps with issues"
msgstr "Aplicaciones con solicitudes de modificaciones automaticas"
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
msgid "Popularity stars"
msgstr ""
msgstr "Aplicaciones con el sistema de integración v1"
#: templates/dash.html:43
msgid "Quality level"
msgstr "Nivel de calidad"
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr "Valoración"
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
msgstr "Ultima actualización en la rama main/master"
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr "Ultima actualización el la rama testing"
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
msgstr "Aplicación"
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
msgstr "CI main"
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
msgstr "CI Bookworm"
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
msgstr "PR Testing"
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr "PR autoupdate"
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
msgstr "Rota"
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
msgstr "Calidad baja"
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
msgstr "pruebas vencidas (%(days)s)"
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
msgstr "Inactivo (%(days)s)"
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
msgstr "Integración v1"
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
msgstr "Obsoleto"
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr "Sin mantenedor"
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""
msgstr "Catálogo de aplicaciones"
#: templates/index.html:21
msgid "Browse all applications"
msgstr ""
msgstr "Todas las aplicaciones"
#: templates/wishlist.html:33 templates/wishlist_add.html:3
msgid "Suggest an app"
msgstr ""
msgstr "Sugerir una aplicación"
#: templates/wishlist_add.html:8
msgid "Suggest an application to be added to YunoHost's catalog"
msgstr ""
msgstr "Sugerir una aplicación para agregar al catálogo YunoHost"
#: templates/wishlist_add.html:29
msgid "You must first login to be allowed to submit an app to the wishlist"
msgstr ""
msgstr "Conectase antes de sugerir una aplicación"
#: templates/wishlist_add.html:40
msgid "Due to abuses, only one proposal every 15 days per user is allowed."
msgstr ""
"Debido a abusos, la sugestión esta limitada a una por usuario cada 15 días"
#: templates/wishlist_add.html:43
msgid ""
"Reviewing those proposals is tiring for volunteers, please don't yolo-send "
"every random nerdy stuff you find on the Internet."
msgstr ""
"La verificación de las sugestiones depende de voluntarios, por favor no "
"sugiere cualquier aplicaciones nerd que encuentre."
#: templates/wishlist.html:71 templates/wishlist_add.html:61
msgid "Name"
msgstr ""
msgstr "Nombre"
#: templates/wishlist_add.html:64
msgid "App's description"
msgstr ""
msgstr "Descripción de la aplicación"
#: templates/wishlist_add.html:66
msgid "Please be concise and focus on what the app does."
msgstr ""
msgstr "Por favor sea conciso y focalizase en lo que hace la aplicación"
#: templates/wishlist_add.html:66
msgid ""
@ -644,21 +718,24 @@ msgstr ""
#: templates/wishlist_add.html:75
msgid "Project website"
msgstr ""
msgstr "Sitio web del proyecto"
#: templates/wishlist_add.html:77
#, fuzzy
msgid ""
"Please *do not* just copy-paste the code repository URL. If the project has "
"no proper website, then leave the field empty."
msgstr ""
"Por favor no solo copiar la URL del repositorio de código. Si el proyecto no "
"tiene sitio deje en blanco."
#: templates/wishlist_add.html:84
msgid "Submit"
msgstr ""
msgstr "Enviar"
#: templates/wishlist.html:3 templates/wishlist.html:8
msgid "Application Wishlist"
msgstr ""
msgstr "Lista de deseo de aplicaciones"
#: templates/wishlist.html:10
msgid ""
@ -669,19 +746,24 @@ msgid ""
"to integrate it, and is merely a source of inspiration for packaging "
"volunteers."
msgstr ""
"La lista de deseo de aplicaciones existe para que todos pueda sugerir y "
"votar para las aplicaciones que desearían ver integrada en el catalogo "
"oficial YunoHost. Esto, no implica que la aplicación sea parte de un plan de "
"integración por el parte del proyecto YunoHost. Es principalmente una fuente "
"de inspiración para lo voluntarios que desearían integrar mas aplicaciones."
#: templates/wishlist.html:74
msgid "Description"
msgstr ""
msgstr "Descripción"
#: templates/wishlist.html:102 templates/wishlist.html:103
msgid "Official website"
msgstr ""
msgstr "Sitio web oficial"
#: templates/wishlist.html:115 templates/wishlist.html:116
msgid "Code repository"
msgstr ""
msgstr "Repositorio de codigo"
#: templates/wishlist.html:129 templates/wishlist.html:130
msgid "Star this app"
msgstr ""
msgstr "Valora esta aplicación"

View file

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-05-20 21:19+0000\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-07-01 17:54+0000\n"
"Last-Translator: xabirequejo <xabi.rn@gmail.com>\n"
"Language-Team: Basque <https://translate.yunohost.org/projects/yunohost/apps/"
"eu/>\n"
@ -20,16 +20,16 @@ msgstr ""
"X-Generator: Weblate 5.4.3\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr "Ez da %(app_id)s aplikazioa aurkitu"
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr "Saioa hasi behar duzu aplikazioei izarra jarri ahal izateko"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -43,15 +43,15 @@ msgstr ""
"bost gai sartu, 30 publikazio irakurri gutxienez, eta publikazioak "
"irakurtzen 10 minutu gutxienez ematen."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr "Saioa hasi behar duzu deria-zerrendan aplikazio bat gehitzeko"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr "CSRF token baliogabea; freskatu orrialdea eta saiatu berriro"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
@ -60,49 +60,49 @@ msgstr ""
"bakoitzak aplikazio bat proposa dezake hamabostean behin. Saiatu egun batzuk "
"barru."
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr "Aplikazioaren izenak hiru karaktere izan behar ditu gutxienez"
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr "Aplikazioaren izenak 30 karaktere izan ditzazke gehienez"
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr "Aplikazioaren deskribapenak bost karaktere izan behar ditu gutxienez"
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr "Aplikazioaren deskribapenak 100 karaktere izan ditzazke gehienez"
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
"Jatorrizko kode-gordailuaren URLak 10 karaktere izan behar ditu gutxienez"
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
"Jatorrizko kode-gordailuaren URLak 150 karaktere izan ditzazke gehienez"
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr "Lizentziaren URLak 10 karaktere izan behar ditu gutxienez"
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr "Lizentziaren URLak 250 karaktere izan ditzazke gehienez"
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr "Webgunearen URLak 150 karaktere izan ditzazke gehienez"
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr "Aplikazioaren izenak karaktere bereziak dauzka"
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
@ -111,13 +111,13 @@ msgstr ""
"gabe, eta ez errepikatu aplikazioa \"librea\" eta \"norberak ostatatzekoa\" "
"dela."
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
"Ez dago aplikazioaren izena errepikatu beharrik. Azpimarratu aplikazioak zer "
"egiten duen."
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
@ -127,7 +127,7 @@ msgstr ""
"gehitu ordez, <a href='%(url)s'>jarri izar bat aplikazioari zure interesa "
"erakusteko</a>."
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
@ -136,7 +136,7 @@ msgstr ""
"Lehendik ere dago %(slug)s izena duen aplikazioa katalogoan, <a "
"href='%(url)s'>hemen ikus dezakezu</a>."
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -147,7 +147,7 @@ msgstr ""
"lehendik ere <a href='%(url)s'>egina dago onespenaren zain</a>? Bestela "
"jakinarazi arazoa YunoHost taldeari."
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -158,7 +158,7 @@ msgstr ""
"baliozkotu behar du orain. Egoera hemen ikusi dezakezu: <a href='%(url)s'>"
"%(url)s</a>"
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr "Zoritxarrez saio hasiera ukatu da."
@ -176,7 +176,7 @@ msgstr ""
"Aplikazioa ez dabilela ageri da ez dituelako gure test automatikoak gainditu."
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -281,15 +281,15 @@ msgstr "YunoHost paketearen lizentzia"
msgid "YunoHost app store"
msgstr "YunoHost aplikazio denda"
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr "Hasiera"
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr "Katalogoa"
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr "Desira-zerrenda"
@ -301,118 +301,122 @@ msgstr "Paketearen aginte-mahaia"
msgid "Charts & history"
msgstr "Diagramak eta historia"
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr "YunoHost dokumentazioa"
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr "Modu argia / iluna"
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr "Hasi saioa YunoHosten foroa erabiliz"
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#, fuzzy
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr "Paketatze-aginteak"
msgstr "Paketatze-taula"
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr "Amaitu saioa"
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr "Menua bai/ez"
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
"<i class='text-red-500 fa fa-heart-o' aria-label='Maitasun'></i>ez egina <a "
"class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> eta "
"<a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a> "
"erabiliz"
"<i class='text-red-500 fa fa-heart-o' aria-label='love'></i>ez egina <a class"
"='text-blue-800 dark:text-blue-400' href='https://flask.palletsprojects."
"com'>Flask</a> eta <a class='text-blue-800 dark:text-blue-400' "
"href='https://tailwindcss.com/'>TailwindCSS</a> erabiliz"
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr "Iturburua"
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr "Zerbitzuen baldintzak"
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr "Aplikazioen katalogoa"
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr "Bilatu"
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr "Bilatu…"
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr "Aplikazio guztiak"
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr "Ordenatu"
msgstr "Ordenatu"
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr "Ospea"
msgstr "Izar kopuruaren arabera"
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr "Berritasuna"
msgstr "Berritasunaren arabera"
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr "Alfabetikoa"
msgstr "Alfabetoaren arabera"
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr "Saioa hasita izan behar da"
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr "Erakutsi izarra jarritako aplikazioak soilik"
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr "Ez da emaitzarik aurkitu."
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr "Ez duzu bilatzen ari zarena aurkitzen?"
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr "Begiratu desira-zerrenda!"
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr "Aplikazioa hondatuta gisa ageri da"
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr "Gure test automatikoak gainditu ez dituzten aplikazioak dira hauek."
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr "Utzitako aplikazioak"
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr "Aplikazio hauek ez dute mantenduko dituenik."
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -428,83 +432,83 @@ msgstr "Aplikazioen kalitate-maila test automatikoen arabera"
msgid "Apps quality level history"
msgstr "Aplikazioen kalitate-mailaren historia"
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr "Historia"
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr "Gehituta"
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr "Konponduta"
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr "Hondatuta"
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr "Kenduta"
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr "Ezezaguna"
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr "0. maila"
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr "1. maila"
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr "2. maila"
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr "3. maila"
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr "4. maila"
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr "5. maila"
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr "6. maila"
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr "7. maila"
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr "8. maila"
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr "%(level)s. maila:"
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr "Guztira:"
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr "%(level)s. maila"
#: templates/dash.html:3 templates/dash.html:9
msgid "App packaging dashboard"
msgstr "Aplikazioaren paketatze aginte-mahaia"
msgstr "Aplikazioeb paketatze aginte-mahaia"
#: templates/dash.html:11
msgid ""
@ -517,121 +521,134 @@ msgid ""
msgstr ""
"Paketatzaileek test automatikoen (CI) egoera eta aplikazio guztien PR "
"nagusien egoera monitorizatu dezakete hemen. YunoHosten aplikazioak "
"paketatzen hasi nahi baduzu, aztertu <a class='text-blue-500' "
"href='https://yunohost.org/packaging_apps'>paketatze-dokumentazioa</a> eta "
"zatoz agur esatera <a class='text-blue-500' href='https://yunohost.org/"
"paketatzen hasi nahi baduzu, aztertu <a class='text-blue-500' href='https://"
"yunohost.org/packaging_apps'>paketatze-dokumentazioa</a> eta zatoz agur "
"esatera <a class='text-blue-500' href='https://yunohost.org/"
"chat_rooms'>aplikazioen paketatze-txat-gelan</a>!"
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr "Iragazi"
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr "(Bat ere ez)"
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr "Erregresioa CI nagusian"
#: templates/dash.html:25
msgid "Broken / low quality apps"
msgstr "Hondatuta /kalitate txikiko aplikazioak"
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr "Hondatuta / kalitate txikiko aplikazioak"
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr "Zaharkitutako testak CI nagusian"
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr "Erregresio handia Bookworm CI-n"
#: templates/dash.html:28
#, fuzzy
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr "Probako PRak dituzten aplikazioak"
#: templates/dash.html:29
#, fuzzy
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr "Automatikoki eguneratzeko PRak dituzten aplikazioak"
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr "Arazoak dituzten aplikazioak"
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr "v1 paketatzea duten aplikazioak"
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr "Kalitate-maila"
#: templates/dash.html:42 templates/dash.html:173
#, fuzzy
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr "Ospea"
msgstr "Izar kopurua"
#: templates/dash.html:43
#, fuzzy
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr "main/master adabakiko azken eguneraketa"
#: templates/dash.html:44
#, fuzzy
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr "testing adabakiko azken eguneraketa"
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr "Arazo-kopurua"
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr "Ezkutatu utzitako / mantentzen ez diren aplikazioak"
#: templates/dash.html:82
msgid "App"
msgstr "Aplikazioa"
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr "CI nagusia"
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr "Bookworm CI-a"
#: templates/dash.html:69
#, fuzzy
#: templates/dash.html:86
msgid "Testing PR"
msgstr "Probako PRa"
#: templates/dash.html:70
#, fuzzy
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr "Automatikoki eguneratzeko PRa"
msgstr "Autoeguneratzeko PRa"
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr "Arazoak"
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr "Hondatuta"
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr "Kalitate txikia"
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr "Zaharkitutako testa (duela %(days)s egun)"
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr "Aktibitaterik gabe (duela %(days)s egun)"
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr "v1 paketatzea"
#: templates/dash.html:180
#, fuzzy
#: templates/dash.html:221
msgid "Deprecated"
msgstr "Utzitako aplikazioak"
msgstr "Utzita"
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr "Utzitako aplikazioa"
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr "Datuen azken eguneraketa duela %(time)s"
#: templates/index.html:10
msgid "Application Store"
msgstr "Aplikazio denda"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: fa <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:06+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: fi <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

View file

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-05-20 21:19+0000\n"
"Last-Translator: ppr <pouetpouetratatouille@gmail.com>\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-06-21 14:39+0000\n"
"Last-Translator: Nathanaël <nathanael+ynhweblate@isidorus.fr>\n"
"Language-Team: French <https://translate.yunohost.org/projects/yunohost/apps/"
"fr/>\n"
"Language: fr\n"
@ -20,16 +20,16 @@ msgstr ""
"X-Generator: Weblate 5.4.3\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr "L'app %(app_id)s n'a pas été trouvée"
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr "Veuillez vous connecter pour mettre une app en favoris"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -43,16 +43,16 @@ msgstr ""
"moins 5 fils de discussion, lire au moins 30 messages, et passer au moins 10 "
"minutes à lire des messages."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
"Veuillez vous connecter pour proposer une app pour la liste de souhaits"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr "Jeton CSRF invalide, prière de rafraîchir la page et de réessayer"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
@ -60,47 +60,47 @@ msgstr ""
"Proposer une app dans la liste de souhaits est limité à une fois tous les 15 "
"jours et par personne. Merci de réessayer dans quelques jours."
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr "Le nom d'app devrait contenir au moins 3 caractères"
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr "Le nom d'app devrait contenir moins de 30 caractères"
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr "La description de l'app devrait contenir au moins 5 caractères"
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr "La description de l'app devrait contenir moins de 100 caractères"
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr "L'URL du dépôt de code devrait contenir au moins 10 caractères"
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr "L'URL du dépôt de code devrait contenir moins de 150 caractères"
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr "L'URL de la licence devrait contenir au moins de 10 caractères"
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr "L'URL de la licence devrait contenir moins de 250 caractères"
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr "L'URL du site web devrait contenir moins de 150 caractères"
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr "Le nom de l'app contient des caractères spéciaux"
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
@ -108,13 +108,13 @@ msgstr ""
"S'il vous plaît décrivez ce que fait l'application sans utiliser de termes "
"marketing nébuleux ou répéter que l'app est 'libre' ou 'auto-hébergeable'."
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
"Pas besoin de répéter le nom de l'application. Prière de rester concis et de "
"se concentrer sur ce que l'app fait."
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
@ -124,7 +124,7 @@ msgstr ""
"pouvez <a href='%(url)s'>l'ajouter en favori</a> afin de montrer votre "
"intérêt."
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
@ -133,7 +133,7 @@ msgstr ""
"Une app nommée %(slug)s existe déjà dans le catalogue, <a "
"href='%(url)s'>vous pouvez voir sa page ici</a>."
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -144,7 +144,7 @@ msgstr ""
"souhaits… Peut-être qu'il y a <a href='%(url)s'>déjà une PR en attente pour "
"cette app</a>? Sinon, merci de signaler le problème à l'équipe YunoHost."
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -155,7 +155,7 @@ msgstr ""
"app. Elle doit maintenant être validée par l'équipe YunoHost. Vous pouvez "
"suivre cette demande ici: <a href='%(url)s'>%(url)s</a>"
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr "Malheureusement, la connexion a été refusée."
@ -174,7 +174,7 @@ msgstr ""
"elle ne passe pas nos tests automatisés."
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -282,15 +282,15 @@ msgstr "Licence du paquet YunoHost"
msgid "YunoHost app store"
msgstr "Store d'apps de YunoHost"
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr "Accueil"
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr "Catalogue"
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr "Liste de souhaits"
@ -302,117 +302,122 @@ msgstr "Tableau de bord du packaging"
msgid "Charts & history"
msgstr "Graphes & historique"
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr "Documentation YunoHost"
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr "Basculer entre les thèmes clair et sombre"
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr "Se connecter via le forum YunoHost"
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr "Tableaux de bord du packaging"
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr "Se déconnecter"
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr "Afficher le menu"
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
"Fait avec <i class='text-red-500 fa fa-heart-o' aria-label='amour'></i> à "
"l'aide de <a class='text-blue-800' href='https://flask.palletsprojects."
"com'>Flask</a> et <a class='text-blue-800' href='https://tailwindcss."
"com/'>TailwindCSS</a>"
"com'>Flask</a> et <a class='text-blue-800' href='https://tailwindcss.com/"
"'>TailwindCSS</a>"
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr "Source"
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr "Conditions des Services"
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr "Catalogue d'applications"
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr "Recherche"
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr "Rechercher…"
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr "Toutes les apps"
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr "Trier par"
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr "Popularité"
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr "Nouveauté"
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr "Alphabétique"
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr "Nécessite une connexion à votre compte du forum YunoHost"
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr "Montrer uniquement mes favoris"
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr "Aucun résultat trouvé."
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr "Vous ne trouvez pas ce que vous cherchez ?"
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr "Jetez un oeil à la liste de souhaits !"
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr "Applications actuellement marquées comme cassées"
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr "Il s'agit d'apps qui n'ont pas validé nos tests automatisés."
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr "Applications obsolètes"
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr "Il s'agit des applications qui ne sont plus maintenues."
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -429,76 +434,76 @@ msgstr "Niveau de qualité des apps dans les tests automatiques"
msgid "Apps quality level history"
msgstr "Historique du niveau de qualité des apps"
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr "Historique"
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr "Ajoutée"
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr "Réparée"
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr "Cassée"
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr "Retirée"
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr "Inconnu"
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr "Niveau 0"
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr "Niveau 1"
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr "Niveau 2"
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr "Niveau 3"
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr "Niveau 4"
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr "Niveau 5"
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr "Niveau 6"
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr "Niveau 7"
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr "Niveau 8"
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr "Niveau %(level)s:"
msgstr "Niveau %(level)s:"
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr "Total :"
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr "Niveau %(level)s"
@ -524,109 +529,129 @@ msgstr ""
"class='text-blue-500' href='https://yunohost.org/chat_rooms'>le chat du "
"packaging d'apps</a> !"
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr "Filtrer"
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr "(Aucun)"
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr "Régressions sur la CI principale"
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr "Apps cassées / mauvaise qualité"
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr "Tests périmés sur la CI principale"
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr "Régressions importantes sur la CI bookworm"
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr "Apps avec une PR de testing"
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr "Apps avec une PR d'autoupdate"
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr "Apps avec des issues"
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr "Apps en packaging v1"
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr "Niveau de qualité"
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr "Popularité"
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr "Dernière maj sur la branche principale/master"
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr "Dernière maj sur la branche testing"
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr "Nombre d'issues"
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr "Cacher les apps dépréciées/non maintenues"
#: templates/dash.html:82
msgid "App"
msgstr "App"
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr "CI principale"
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr "CI bookworm"
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr "PR testing"
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr "PR autoupdate"
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr "Issues"
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr "Cassée"
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr "Mauvaise qualité"
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr "Test périmé (%(days)s jours)"
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr "Inactif (%(days)s jours)"
#: templates/dash.html:177
#, fuzzy
#: templates/dash.html:218
msgid "Packaging v1"
msgstr "Packaging v1"
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr "Dépréciée"
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr "Non maintenue"
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr "Dernière mise à jour il y a %(time)s"
#: templates/index.html:10
msgid "Application Store"
msgstr "Store d'application"

View file

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-05-20 21:19+0000\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-06-23 03:54+0000\n"
"Last-Translator: \"José M.\" <correo@xmgz.eu>\n"
"Language-Team: Galician <https://translate.yunohost.org/projects/yunohost/"
"apps/gl/>\n"
@ -20,16 +20,16 @@ msgstr ""
"X-Generator: Weblate 5.4.3\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr "Non se atopa a app %(app_id)s"
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr "Tes que iniciar sesión para poder poñerlle estrela á app"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -43,15 +43,15 @@ msgstr ""
"entrar polo menos en 5 temas, ler polo menos 30 publicacións e ter estado "
"lendo publicacións durante 10 minutos polo menos."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr "Tes que iniciar sesión para poder enviar unha app á lista de desexos"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr "Token CSRF non válido, actualiza a páxina e volve intentalo"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
@ -59,49 +59,49 @@ msgstr ""
"As propostas de adicións á lista de desexos están limitadas a unha vez cada "
"15 días por usuaria. Inténtao outra vez nuns días."
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr "O nome ten que ter 3 caracteres como mínimo"
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr "O nome da app ten que ter menos de 30 caracteres"
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr "A descrición da app ten que ter 5 caracteres como mínimo"
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr "A descrición da app ten que ter menos de 100 caracteres"
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
"O URL do repositorio de orixe do código ten que ter 10 caracteres como mínimo"
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
"O URL do repositorio de orixe do código ten que ter menos de 150 caracteres"
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr "O URL da licenza ten que ter 10 caracteres como mínimo"
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr "O URL da licenza ten que ter menos de 250 caracteres"
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr "O URL da páxina web ten que ter menos de 150 caracteres"
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr "O nome da app contén caracteres especiais"
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
@ -109,11 +109,11 @@ msgstr ""
"Céntrate no que fai a app, se usar termos pouco concretos de márquetin ou "
"repetindo que a app é 'libre' e 'auto-hospedable'."
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr "Non é preciso repetir o nome da app. Céntrate no que fai."
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
@ -122,7 +122,7 @@ msgstr ""
"Xa existe unha entrada co nome %(slug)s, así que podes <a "
"href='%(url)s'>engadirlle unha estrela para mostrar interese</a>."
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
@ -131,7 +131,7 @@ msgstr ""
"Xa hai unha app no catálogo co nome %(slug)s, <a href='%(url)s'>aquí podes "
"ver a súa páxina</a>."
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -142,7 +142,7 @@ msgstr ""
"estar en <a href='%(url)s'>agarda unha petición para esta app</a>? Se non, "
"informa da incidencia ao equipo YunoHost."
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -153,7 +153,7 @@ msgstr ""
"polo equipo de YunoHost. Podes ver aquí o proceso: <a href='%(url)s'>"
"%(url)s</a>"
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr "É unha mágoa, pero rexeitouse o acceso."
@ -172,7 +172,7 @@ msgstr ""
"probas automatizadas."
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -279,15 +279,15 @@ msgstr "Licenza do paquete YunoHost"
msgid "YunoHost app store"
msgstr "Tenda de apps de YunoHost"
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr "Inicio"
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr "Catálogo"
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr "Lista de desexos"
@ -299,117 +299,122 @@ msgstr "Taboleiro do paquete"
msgid "Charts & history"
msgstr "Gráficos e historial"
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr "Documentación YunoHost"
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr "Cambiar modo escuro/claro"
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr "Accede usando o foro de YunoHost"
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr "Taboleiros"
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr "Pechar sesión"
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr "Mostrar menú"
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
"Creada con <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> "
"usando <a class='text-blue-800' href='https://flask.palletsprojects."
"com'>Flask</a> e <a class='text-blue-800' href='https://tailwindcss."
"com/'>TailwindCSS</a>"
"Creada <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> usando "
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> e <a class='text-blue-800 dark:text-blue-400' "
"href='https://tailwindcss.com/'>TailwindCSS</a>"
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr "Fonte"
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr "Termos dos Servizos"
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr "Catálogo de Aplicacións"
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr "Buscar"
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr "Buscar…"
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr "Todas as apps"
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr "Orde por"
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr "Popularidade"
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr "Máis recente"
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr "Alfabético"
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr "Require iniciar sesión"
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr "Mostrar só apps que lle puxeches estrela"
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr "Non hai resultados."
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr "Non atopas o que buscabas?"
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr "Mira na lista de desexos!"
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr "Aplicacións marcadas actualmente como estragadas"
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr "Estas son as apps que non superaron as nosas probas automatizadas."
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr "Aplicacións abandonadas"
msgstr "Aplicacións obsoletas"
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr "Estas son as apps que xa non teñen mantemento."
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -425,76 +430,76 @@ msgstr "Nivel de calidade das Apps de acordo cos test automáticos"
msgid "Apps quality level history"
msgstr "Historial do nivel de calidade das apps"
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr "Historial"
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr "Engadida"
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr "Reparada"
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr "Estragada"
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr "Retirada"
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr "Descoñecido"
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr "Nivel 0"
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr "Nivel 1"
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr "Nivel 2"
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr "Nivel 3"
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr "Nivel 4"
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr "Nivel 5"
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr "Nivel 6"
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr "Nivel 7"
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr "Nivel 8"
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr "Nivel %(level)s:"
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr "Total:"
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr "Nivel %(level)s"
@ -519,108 +524,129 @@ msgstr ""
"e saúdanos na <a class='text-blue-500' href='https://yunohost.org/"
"chat_rooms'>sala de conversa de empaquetado de apps</a>!"
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr "Filtrar"
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr "(Nada)"
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr "Regresións no CI principal"
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr "Apps estragadas / baixa calidade"
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr "Test caducados no CI principal"
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr "Regresións principais no CI de Bookworm"
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr "Apps con PRs para probar"
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr "Apps con PRs de autoactualización"
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr "Apps con incidencias"
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr "Apps con empaquetado v1"
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr "Nivel de calidade"
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr "Estrelas de popularidade"
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr "Última actualización da póla main/master"
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr "Última actualización da póla testing"
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr "Número de incidencias"
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr "Agochar apps sen mantemento/obsoletas"
#: templates/dash.html:82
msgid "App"
msgstr "App"
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr "CI principal"
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr "CI de Bookworm"
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr "PR para proba"
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr "PR de autoactualización"
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr "Incidencias"
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr "Estragada"
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr "Baixa calidade"
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr "Test caducado (fai %(days)s días)"
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr "Inactivo (fai %(days)s días)"
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr "Empaquetado v1"
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr "Antiga"
msgstr "Obsoleta"
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr "Sen mantemento"
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr "Última actualizacións dos datos fai %(time)s"
#: templates/index.html:10
msgid "Application Store"
msgstr "Tenda de Aplicacións"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:06+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: he <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:06+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: hi <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:06+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: hu <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: it <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ja <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: kab <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:05+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ko <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: lt <LL@li.org>\n"
@ -19,16 +19,16 @@ msgstr ""
"%100<10 || n%100>=20) ? 1 : 2);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -37,85 +37,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -123,7 +123,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -131,7 +131,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -148,7 +148,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -248,15 +248,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -268,113 +268,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -388,76 +393,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -476,108 +481,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: mk <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: nb_NO <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ne <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:07+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: nl <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: oc <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: pl <LL@li.org>\n"
@ -19,16 +19,16 @@ msgstr ""
"|| n%100>=20) ? 1 : 2);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -37,85 +37,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -123,7 +123,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -131,7 +131,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -148,7 +148,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -248,15 +248,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -268,113 +268,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -388,76 +393,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -476,108 +481,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

View file

@ -7,10 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: pt <LL@li.org>\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-06-06 14:54+0000\n"
"Last-Translator: Éric Gaspar <junk.eg@free.fr>\n"
"Language-Team: Portuguese <https://translate.yunohost.org/projects/yunohost/"
"apps/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,16 +19,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
msgstr "Você deve estar logado para poder marcar um aplicativo com estrela"
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -35,86 +36,92 @@ msgid ""
"least 5 topics, reading at least 30 posts, and spending at least 10 minutes "
"reading posts."
msgstr ""
"Observe que, devido a vários abusos, restringimos o login na app store para "
"usuários de 'nível de confiança 1'.<br/><br/>O 'nível de confiança 1' é "
"obtido após uma interação mínima com o fórum e, mais especificamente: "
"inserir pelo menos 5 tópicos, ler pelo menos 30 postagens e passar pelo "
"menos 10 minutos lendo postagens."
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
"Você deve estar logado para enviar um aplicativo para a lista de desejos"
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
msgstr "Token CSRF inválido. Atualize a página e tente novamente"
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +129,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +137,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +154,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +254,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +274,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +399,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +487,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: pt_BR <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ru <LL@li.org>\n"
@ -19,16 +19,16 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -37,85 +37,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -123,7 +123,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -131,7 +131,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -148,7 +148,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -248,15 +248,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -268,113 +268,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -388,76 +393,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -476,108 +481,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

View file

@ -7,27 +7,28 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-09 23:14+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: sk <LL@li.org>\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-06-11 20:38+0000\n"
"Last-Translator: Jose Riha <jose1711@gmail.com>\n"
"Language-Team: Slovak <https://translate.yunohost.org/projects/yunohost/apps/"
"sk/>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +37,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +123,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +131,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +148,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -208,7 +209,7 @@ msgstr ""
#: templates/app.html:125
msgid "(This app has features you may not like)"
msgstr ""
msgstr "(Táto aplikácia obsahuje funkcie, ktoré sa vám nemusia páčiť)"
#: templates/app.html:136
msgid "Useful links"
@ -247,15 +248,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +268,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +393,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +481,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:08+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: sl <LL@li.org>\n"
@ -19,16 +19,16 @@ msgstr ""
"%100==4 ? 2 : 3);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -37,85 +37,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -123,7 +123,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -131,7 +131,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -148,7 +148,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -248,15 +248,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -268,113 +268,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -388,76 +393,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -476,108 +481,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
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: 2024-05-09 23:14+0200\n"
"POT-Creation-Date: 2024-06-21 14:11+0200\n"
"PO-Revision-Date: 2024-02-21 06:09+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: sv <LL@li.org>\n"
@ -18,16 +18,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.14.0\n"
#: app.py:162
#: app.py:179
#, python-format
msgid "App %(app_id)s not found"
msgstr ""
#: app.py:165
#: app.py:182
msgid "You must be logged in to be able to star an app"
msgstr ""
#: app.py:167 app.py:212 app.py:530 templates/wishlist_add.html:33
#: app.py:184 app.py:229 app.py:634 templates/wishlist_add.html:33
msgid ""
"Note that, due to various abuses, we restricted login on the app store to "
"'trust level 1' users.<br/><br/>'Trust level 1' is obtained after "
@ -36,85 +36,85 @@ msgid ""
"reading posts."
msgstr ""
#: app.py:210
#: app.py:227
msgid "You must be logged in to submit an app to the wishlist"
msgstr ""
#: app.py:225
#: app.py:242
msgid "Invalid CSRF token, please refresh the page and try again"
msgstr ""
#: app.py:263
#: app.py:280
msgid ""
"Proposing wishlist additions is limited to once every 15 days per user. "
"Please try again in a few days."
msgstr ""
#: app.py:267
#: app.py:284
msgid "App name should be at least 3 characters"
msgstr ""
#: app.py:268
#: app.py:285
msgid "App name should be less than 30 characters"
msgstr ""
#: app.py:271
#: app.py:288
msgid "App description should be at least 5 characters"
msgstr ""
#: app.py:275
#: app.py:292
msgid "App description should be less than 100 characters"
msgstr ""
#: app.py:279
#: app.py:296
msgid "Upstream code repo URL should be at least 10 characters"
msgstr ""
#: app.py:283
#: app.py:300
msgid "Upstream code repo URL should be less than 150 characters"
msgstr ""
#: app.py:287
#: app.py:304
msgid "License URL should be at least 10 characters"
msgstr ""
#: app.py:291
#: app.py:308
msgid "License URL should be less than 250 characters"
msgstr ""
#: app.py:293
#: app.py:310
msgid "Website URL should be less than 150 characters"
msgstr ""
#: app.py:296
#: app.py:313
msgid "App name contains special characters"
msgstr ""
#: app.py:303
#: app.py:320
msgid ""
"Please focus on what the app does, without using marketing, fuzzy terms, or "
"repeating that the app is 'free' and 'self-hostable'."
msgstr ""
#: app.py:313
#: app.py:330
msgid "No need to repeat the name of the app. Focus on what the app does."
msgstr ""
#: app.py:343
#: app.py:360
#, python-format
msgid ""
"An entry with the name %(slug)s already exists in the wishlist, instead, you "
"can <a href='%(url)s'>add a star to the app to show your interest</a>."
msgstr ""
#: app.py:358
#: app.py:375
#, python-format
msgid ""
"An app with the name %(slug)s already exists in the catalog, <a "
"href='%(url)s'>you can see its page here</a>."
msgstr ""
#: app.py:383
#: app.py:400
#, python-format
msgid ""
"Failed to create the pull request to add the app to the wishlist… Maybe "
@ -122,7 +122,7 @@ msgid ""
"please report the issue to the YunoHost team."
msgstr ""
#: app.py:433
#: app.py:450
#, python-format
msgid ""
"Your proposed app has succesfully been submitted. It must now be validated "
@ -130,7 +130,7 @@ msgid ""
"%(url)s</a>"
msgstr ""
#: app.py:528
#: app.py:632
msgid "Unfortunately, login was denied."
msgstr ""
@ -147,7 +147,7 @@ msgid ""
msgstr ""
#: templates/app.html:30 templates/app.html:31 templates/catalog.html:41
#: templates/catalog.html:42 templates/catalog.html:170
#: templates/catalog.html:42 templates/catalog.html:172
msgid ""
"This is usually a temporary situation which requires packagers to fix "
"something in the app."
@ -247,15 +247,15 @@ msgstr ""
msgid "YunoHost app store"
msgstr ""
#: templates/base.html:31 templates/base.html:154 templates/index.html:3
#: templates/base.html:31 templates/base.html:163 templates/index.html:3
msgid "Home"
msgstr ""
#: templates/base.html:40 templates/base.html:163 templates/dash.html:66
#: templates/base.html:40 templates/base.html:172 templates/dash.html:83
msgid "Catalog"
msgstr ""
#: templates/base.html:46 templates/base.html:172
#: templates/base.html:46 templates/base.html:181
msgid "Wishlist"
msgstr ""
@ -267,113 +267,118 @@ msgstr ""
msgid "Charts & history"
msgstr ""
#: templates/base.html:71 templates/base.html:182
#: templates/base.html:71 templates/base.html:191
msgid "YunoHost documentation"
msgstr ""
#: templates/base.html:79 templates/base.html:192
#: templates/base.html:79 templates/base.html:80
msgid "Toggle light/dark mode"
msgstr ""
#: templates/base.html:88 templates/base.html:201
msgid "Login using YunoHost's forum"
msgstr ""
#: templates/base.html:111 templates/base.html:120 templates/base.html:220
#: templates/base.html:229
#: templates/base.html:120 templates/base.html:129 templates/base.html:229
#: templates/base.html:238
msgid "Packaging boards"
msgstr ""
#: templates/base.html:127 templates/base.html:237
#: templates/base.html:136 templates/base.html:246
msgid "Logout"
msgstr ""
#: templates/base.html:140
#: templates/base.html:149
msgid "Toggle menu"
msgstr ""
#: templates/base.html:255
#: templates/base.html:264
msgid ""
"Made with <i class='text-red-500 fa fa-heart-o' aria-label='love'></i> using "
"<a class='text-blue-800' href='https://flask.palletsprojects.com'>Flask</a> "
"and <a class='text-blue-800' href='https://tailwindcss.com/'>TailwindCSS</a>"
"<a class='text-blue-800 dark:text-blue-400' href='https://flask."
"palletsprojects.com'>Flask</a> and <a class='text-blue-800 dark:text-"
"blue-400' href='https://tailwindcss.com/'>TailwindCSS</a>"
msgstr ""
#: templates/base.html:256
#: templates/base.html:265
msgid "Source"
msgstr ""
#: templates/base.html:257
#: templates/base.html:266
msgid "Terms of Services"
msgstr ""
#: templates/catalog.html:75 templates/catalog.html:80
#: templates/catalog.html:77 templates/catalog.html:82
msgid "Application Catalog"
msgstr ""
#: templates/catalog.html:86 templates/wishlist.html:16
#: templates/catalog.html:88 templates/wishlist.html:16
msgid "Search"
msgstr ""
#: templates/catalog.html:91 templates/wishlist.html:21
#: templates/catalog.html:93 templates/wishlist.html:21
msgid "Search for…"
msgstr ""
#: templates/catalog.html:107
#: templates/catalog.html:109
msgid "All apps"
msgstr ""
#: templates/catalog.html:117 templates/dash.html:34 templates/wishlist.html:39
#: templates/catalog.html:119 templates/dash.html:36 templates/wishlist.html:39
msgid "Sort by"
msgstr ""
#: templates/catalog.html:123 templates/wishlist.html:45
#: templates/catalog.html:125 templates/wishlist.html:45
#: templates/wishlist.html:78
msgid "Popularity"
msgstr ""
#: templates/catalog.html:124
#: templates/catalog.html:126
msgid "Newest"
msgstr ""
#: templates/catalog.html:125 templates/dash.html:40 templates/wishlist.html:46
#: templates/catalog.html:127 templates/dash.html:42 templates/wishlist.html:46
msgid "Alphabetical"
msgstr ""
#: templates/catalog.html:128 templates/dash.html:47 templates/wishlist.html:49
#: templates/catalog.html:130 templates/dash.html:64 templates/wishlist.html:49
msgid "Requires to be logged-in"
msgstr ""
#: templates/catalog.html:130 templates/catalog.html:139 templates/dash.html:49
#: templates/dash.html:58 templates/wishlist.html:51 templates/wishlist.html:60
#: templates/catalog.html:132 templates/catalog.html:141 templates/dash.html:66
#: templates/dash.html:75 templates/wishlist.html:51 templates/wishlist.html:60
msgid "Show only apps you starred"
msgstr ""
#: templates/catalog.html:155 templates/wishlist.html:154
#: templates/catalog.html:157 templates/wishlist.html:154
msgid "No results found."
msgstr ""
#: templates/catalog.html:158
#: templates/catalog.html:160
msgid "Not finding what you are looking for?"
msgstr ""
#: templates/catalog.html:159
#: templates/catalog.html:161
msgid "Checkout the wishlist!"
msgstr ""
#: templates/catalog.html:166
#: templates/catalog.html:168
msgid "Applications currently flagged as broken"
msgstr ""
#: templates/catalog.html:169
#: templates/catalog.html:171
msgid "These are apps which failed our automatic tests."
msgstr ""
#: templates/catalog.html:184
#: templates/catalog.html:186
msgid "Deprecated applications"
msgstr ""
#: templates/catalog.html:187
#: templates/catalog.html:189
msgid "These are apps who are not maintained anymore."
msgstr ""
#: templates/catalog.html:188
#: templates/catalog.html:190
msgid ""
"This means that the developer will no longer update them. We strongly advise "
"against their installation and advise users to find alternatives."
@ -387,76 +392,76 @@ msgstr ""
msgid "Apps quality level history"
msgstr ""
#: templates/charts.html:14
#: templates/charts.html:15
msgid "History"
msgstr ""
#: templates/charts.html:22
#: templates/charts.html:27
msgid "Added"
msgstr ""
#: templates/charts.html:28
#: templates/charts.html:33
msgid "Repaired"
msgstr ""
#: templates/charts.html:34
#: templates/charts.html:39
msgid "Broke"
msgstr ""
#: templates/charts.html:40
#: templates/charts.html:45
msgid "Removed"
msgstr ""
#: templates/charts.html:80
#: templates/charts.html:93
msgid "Unknown"
msgstr ""
#: templates/charts.html:81
#: templates/charts.html:94
msgid "Level 0"
msgstr ""
#: templates/charts.html:82
#: templates/charts.html:95
msgid "Level 1"
msgstr ""
#: templates/charts.html:83
#: templates/charts.html:96
msgid "Level 2"
msgstr ""
#: templates/charts.html:84
#: templates/charts.html:97
msgid "Level 3"
msgstr ""
#: templates/charts.html:85
#: templates/charts.html:98
msgid "Level 4"
msgstr ""
#: templates/charts.html:86
#: templates/charts.html:99
msgid "Level 5"
msgstr ""
#: templates/charts.html:87
#: templates/charts.html:100
msgid "Level 6"
msgstr ""
#: templates/charts.html:88
#: templates/charts.html:101
msgid "Level 7"
msgstr ""
#: templates/charts.html:89
#: templates/charts.html:102
msgid "Level 8"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
#, python-format
msgid "Level %(level)s:"
msgstr ""
#: templates/charts.html:107
#: templates/charts.html:122
msgid "Total:"
msgstr ""
#: templates/charts.html:108
#: templates/charts.html:123
#, python-format
msgid "Level %(level)s"
msgstr ""
@ -475,108 +480,129 @@ msgid ""
"href='https://yunohost.org/chat_rooms'>app packaging chatroom</a>!"
msgstr ""
#: templates/dash.html:17
#: templates/dash.html:18
msgid "Filter"
msgstr ""
#: templates/dash.html:23
#: templates/dash.html:24
msgid "(None)"
msgstr ""
#: templates/dash.html:24
#: templates/dash.html:25
msgid "Regressions on main CI"
msgstr ""
#: templates/dash.html:25
#: templates/dash.html:26
msgid "Broken / low quality apps"
msgstr ""
#: templates/dash.html:26
#: templates/dash.html:27
msgid "Outdated tests on main CI"
msgstr ""
#: templates/dash.html:27
#: templates/dash.html:28
msgid "Major regressions on Bookworm CI"
msgstr ""
#: templates/dash.html:28
#: templates/dash.html:29
msgid "Apps with testings PRs"
msgstr ""
#: templates/dash.html:29
#: templates/dash.html:30
msgid "Apps with autoupdate PRs"
msgstr ""
#: templates/dash.html:30
#: templates/dash.html:31
msgid "Apps with issues"
msgstr ""
#: templates/dash.html:32
msgid "Packaging v1 apps"
msgstr ""
#: templates/dash.html:41
#: templates/dash.html:43
msgid "Quality level"
msgstr ""
#: templates/dash.html:42 templates/dash.html:173
#: templates/dash.html:44 templates/dash.html:214
msgid "Popularity stars"
msgstr ""
#: templates/dash.html:43
#: templates/dash.html:45
msgid "Last update on main/master branch"
msgstr ""
#: templates/dash.html:44
#: templates/dash.html:46
msgid "Last update on testing branch"
msgstr ""
#: templates/dash.html:65
#: templates/dash.html:47
msgid "Issues number"
msgstr ""
#: templates/dash.html:53 templates/dash.html:62
msgid "Hide deprecated/unmaintained apps"
msgstr ""
#: templates/dash.html:82
msgid "App"
msgstr ""
#: templates/dash.html:67
#: templates/dash.html:84
msgid "Main CI"
msgstr ""
#: templates/dash.html:68
#: templates/dash.html:85
msgid "Bookworm CI"
msgstr ""
#: templates/dash.html:69
#: templates/dash.html:86
msgid "Testing PR"
msgstr ""
#: templates/dash.html:70
#: templates/dash.html:87
msgid "Autoupdate PR"
msgstr ""
#: templates/dash.html:102 templates/dash.html:116 templates/dash.html:131
#: templates/dash.html:88
msgid "Issues"
msgstr ""
#: templates/dash.html:128 templates/dash.html:146 templates/dash.html:165
msgid "Broken"
msgstr ""
#: templates/dash.html:104 templates/dash.html:118 templates/dash.html:133
#: templates/dash.html:130 templates/dash.html:148 templates/dash.html:167
msgid "Low quality"
msgstr ""
#: templates/dash.html:112 templates/dash.html:127
#: templates/dash.html:142 templates/dash.html:161
#, python-format
msgid "Outdated test (%(days)s days ago)"
msgstr ""
#: templates/dash.html:150 templates/dash.html:165
#: templates/dash.html:184 templates/dash.html:199
#, python-format
msgid "Inactive (%(days)s days ago)"
msgstr ""
#: templates/dash.html:177
#: templates/dash.html:218
msgid "Packaging v1"
msgstr ""
#: templates/dash.html:180
#: templates/dash.html:221
msgid "Deprecated"
msgstr ""
#: templates/dash.html:183
#: templates/dash.html:224
msgid "Not maintained"
msgstr ""
#: templates/dash.html:238
#, python-format
msgid "Last data update %(time)s ago"
msgstr ""
#: templates/index.html:10
msgid "Application Store"
msgstr ""

Some files were not shown because too many files have changed in this diff Show more