-
+
YGG tracker
+ {#32
+
+ {{ '
Upload any torrent - download with Yggdrasil' | trans | format(path('torrent_submit')) | raw }}
+
+ #}
{% block header_search %}
{{ render(controller(
'App\\Controller\\SearchController::module',
{
- query : app.request.get('query'),
- type : app.request.get('type')
+ request: app.request
}
)) }}
{% endblock %}
diff --git a/templates/default/search/module.html.twig b/templates/default/search/module.html.twig
index 6677ce5..8b1b99b 100644
--- a/templates/default/search/module.html.twig
+++ b/templates/default/search/module.html.twig
@@ -1,4 +1,69 @@
\ No newline at end of file
diff --git a/templates/default/torrent/edit/categories.html.twig b/templates/default/torrent/edit/categories.html.twig
new file mode 100644
index 0000000..417828d
--- /dev/null
+++ b/templates/default/torrent/edit/categories.html.twig
@@ -0,0 +1,109 @@
+{% extends 'default/layout.html.twig' %}
+{% block title %}{{'Edit categories'|trans }} - {{'Torrent'|trans }} #{{ torrentId }} - {{ name }}{% endblock %}
+{% block main_content %}
+
+ {% for edition in editions %}
+
+ {% if edition.active %}
+ {{ edition.added | format_ago }}
+ {% else %}
+
+ {{ edition.added | format_ago }}
+
+ {% endif %}
+ {{ 'by'|trans }}
+
+
+
+
+ {% if session.moderator or session.owner %}
+
+
+
+
+
+
+ {% endif %}
+ {% if edition.approved %}
+ {% if session.moderator %}
+
+
+
+
+
+ {% else %}
+
+
+
+
+
+ {% endif %}
+ {% else %}
+ {% if session.moderator %}
+
+
+
+
+
+ {% else %}
+
+
+
+
+
+ {% endif %}
+ {% endif %}
+
+
+ {% endfor %}
+{% endblock %}
diff --git a/templates/default/torrent/edit/locales.html.twig b/templates/default/torrent/edit/locales.html.twig
index 1245721..dcab8db 100644
--- a/templates/default/torrent/edit/locales.html.twig
+++ b/templates/default/torrent/edit/locales.html.twig
@@ -24,7 +24,7 @@
- {% for locale in locales %}
+ {% for locale in locales | sort %}
{% if locale in form.locales.attribute.value %}
diff --git a/templates/default/torrent/edit/poster.html.twig b/templates/default/torrent/edit/poster.html.twig
new file mode 100644
index 0000000..e4ed5e9
--- /dev/null
+++ b/templates/default/torrent/edit/poster.html.twig
@@ -0,0 +1,121 @@
+{% extends 'default/layout.html.twig' %}
+{% block title %}{{ 'Edit torrent poster' | trans }} - {{ 'Torrent' | trans }} #{{ torrentId }} - {{ name }}{% endblock %}
+{% block main_content %}
+
+ {% for edition in editions %}
+
+ {% if edition.active %}
+ {{ edition.added | format_ago }}
+ {% else %}
+
+ {{ edition.added | format_ago }}
+
+ {% endif %}
+ {{ 'by' | trans }}
+
+
+
+
+ {% if session.moderator or session.owner %}
+
+
+
+
+
+
+ {% endif %}
+ {% if edition.approved %}
+ {% if session.moderator %}
+
+
+
+
+
+ {% else %}
+
+
+
+
+
+ {% endif %}
+ {% else %}
+ {% if session.moderator %}
+
+
+
+
+
+ {% else %}
+
+
+
+
+
+ {% endif %}
+ {% endif %}
+
+ {% if edition.active %}
+
+ {% endif %}
+
+ {% endfor %}
+{% endblock %}
diff --git a/templates/default/torrent/info.html.twig b/templates/default/torrent/info.html.twig
index f59c5a4..dda2a72 100644
--- a/templates/default/torrent/info.html.twig
+++ b/templates/default/torrent/info.html.twig
@@ -2,16 +2,18 @@
{% import _self as self %}
{% for key, value in tree %}
{% if value is iterable %}
-
-
- {{ key }}
-
+
+ {{ key }}
+
+
{{ self.recursive_file_tree(value) }}
{% else %}
-
- {{ key }}
-
+
+
+ {{ key }}
+
+
{{ value | format_bytes }}
@@ -27,7 +29,8 @@
{% endif %}
{% endblock %}
{% block main_content %}
-
+
{{ file.name }}
{#{{ 'Torrent' | trans }} #{{ torrent.id }}#}
@@ -78,7 +81,7 @@
- {% if session.moderator %}
+ {% if session.moderator or session.owner %}
@@ -88,19 +91,19 @@
- {{ 'Approved' | trans }}
+ {{ 'Enabled' | trans }}
- {% if torrent.approved %}
+ {% if torrent.status %}
{{ 'Yes' | trans }}
-
+
{% else %}
{{ 'No' | trans }}
-
+
@@ -108,6 +111,30 @@
{% endif %}
+ {% if session.moderator %}
+
+
+ {{ 'Approved' | trans }}
+
+
+ {% if torrent.approved %}
+ {{ 'Yes' | trans }}
+
+
+
+
+
+ {% else %}
+ {{ 'No' | trans }}
+
+
+
+
+
+ {% endif %}
+
+
+ {% endif %}
{% endif %}
@@ -193,13 +220,26 @@
{% endif %}
+
+
+ {{ 'Private' | trans }}
+
+
+ {% if file.private %}
+ {{ 'Yes' | trans }}
+ {% else %}
+ {{ 'No' | trans }}
+ {% endif %}
+
+
{% if file.source %}
{{ 'Source' | trans }}
- {{ file.source }}
+ {# strip all tags then apply whitelist markdown filters to prevent ping from remote #}
+ {{ file.source | trim | striptags | url_to_markdown | markdown_to_html | nl2br }}
{% endif %}
@@ -209,7 +249,8 @@
{{ 'Software' | trans }}
- {{ file.software }}
+ {# strip all tags then apply whitelist markdown filters to prevent ping from remote #}
+ {{ file.software | trim | striptags | url_to_markdown | markdown_to_html | nl2br }}
{% endif %}
@@ -219,7 +260,8 @@
{{ 'Comment' | trans }}
- {{ file.comment }}
+ {# strip all tags then apply whitelist markdown filters to prevent ping from remote #}
+ {{ file.comment | trim | striptags | url_to_markdown | markdown_to_html | nl2br }}
{% endif %}
@@ -290,7 +332,7 @@
{% for tracker, status in trackers %}
-
+
{% if status %}
{{ tracker }}
{% else %}
@@ -307,23 +349,41 @@
{% endfor %}
-
+
- {{ 'Locales' | trans }}
+ {{ 'Locale' | trans }}
{% if torrent.locales %}
- {% for i, locale in torrent.locales %}{% if i > 0 %},{% endif %} {{ locale|locale_name(locale)|u.title }}{% endfor %}
+ {% set i = 0 %}
+ {% for locale in torrent.locales | sort %}{% if i > 0 %},{% endif %} {{ locale | locale_name(locale) | u.title }}{% set i = i + 1 %}{% endfor %}
{% endif %}
-
+
+
+
+
+
+ {{ 'Category' | trans }}
+
+
+ {% if torrent.categories %}
+
+ {% set i = 0 %}
+ {% for category in torrent.categories | sort %}{% if i > 0 %},{% endif %} {{ category | trans_category | u.title }}{% set i = i + 1 %}{% endfor %}
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+ {{ 'Poster' | trans }}
+
+
+ {% if torrent.poster %}
+ {{ 'Yes' | trans }}
+ {% else %}
+ {{ 'No' | trans }}
+ {% endif %}
+
+
diff --git a/templates/default/torrent/list.html.twig b/templates/default/torrent/list.html.twig
index 909e0ee..93e27d1 100644
--- a/templates/default/torrent/list.html.twig
+++ b/templates/default/torrent/list.html.twig
@@ -5,11 +5,33 @@
{% if query %}
{{ 'Search results' | trans }}
-
-
-
-
-
+ {% if app.request.get('filter') %}
+
+
+
+
+
+
+
+
+
+
+ {% else %}
+
+
+
+
+
+
+
+
+
+
+ {% endif %}
{% else %}
{{ 'Recent uploads' | trans }}
@@ -24,7 +46,8 @@
{% if torrents %}
{% for torrent in torrents %}
-
+
@@ -33,10 +56,20 @@
{% if torrent.scrape.leechers > 0 and torrent.scrape.seeders == 0 %}
-
+
{{ 'wanted' | trans }}
-
+
+ {% endif %}
+ {% if torrent.status == false %}
+
+
+
+
+
+
{% endif %}
{% if torrent.approved == false %}
@@ -46,7 +79,7 @@
{% endif %}
{% if torrent.sensitive == true %}
-
+
@@ -70,22 +103,17 @@
{% if torrent.keywords %}
{% for keyword, quantity in torrent.keywords %}
-
+
#{{ keyword }}
{% endfor %}
{% endif %}
- {#
-
- {{ torrent.added | format_ago }}
- {{ 'by' | trans }}
-
-
-
-
- #}
{{ torrent.file.size | format_bytes }}
@@ -168,17 +196,31 @@
{% if query %}
{% if pagination.page > 1 %}
{% if pagination.page == 2 %}
-
+
{{ 'Back' | trans | lower }}
{% else %}
-
+
{{ 'Back' | trans | lower }}
{% endif %}
{% endif %}
{% if pagination.page < pagination.pages %}
-
+
{{ 'Next' | trans | lower }}
{% endif %}
diff --git a/templates/default/torrent/submit.html.twig b/templates/default/torrent/submit.html.twig
index 27f6a14..c36da9a 100644
--- a/templates/default/torrent/submit.html.twig
+++ b/templates/default/torrent/submit.html.twig
@@ -31,7 +31,7 @@
{% endfor %}
- {% for locale in locales %}
+ {% for locale in locales | sort %}
{% if locale in form.locales.attribute.value %}
@@ -48,9 +48,42 @@
#}
+
+
+
+ {{'Content category' | trans }}
+
+
+
+
+
+
+ {% for error in form.categories.error %}
+
+ {{ error }}
+
+ {% endfor %}
+
+ {% for category in categories | sort %}
+
+ {% if category in form.categories.attribute.value %}
+
+ {% else %}
+
+ {% endif %}
+
+ {{ category | trans_category | u.title }}
+
+
+ {% endfor %}
+ {#
+ {{'Other...'|trans }}
+ #}
+
+
-
+
{{'Sensitive'|trans }}
diff --git a/templates/default/user/info.html.twig b/templates/default/user/info.html.twig
index a3632ab..a22da9e 100644
--- a/templates/default/user/info.html.twig
+++ b/templates/default/user/info.html.twig
@@ -172,7 +172,29 @@
{{ 'Languages' | trans }}
- {% for i, locale in user.locales %}{% if i > 0 %},{% endif %} {{ locale|locale_name(locale)|u.title }}{% endfor %}
+ {% set i = 0 %}
+ {% for locale in user.locales | sort %}{% if i > 0 %},{% endif %} {{ locale | locale_name(locale) | u.title }}{% set i = i + 1 %}{% endfor %}
+
+
+
+
+ {{ 'Categories' | trans }}
+
+
+ {% set i = 0 %}
+ {% for category in user.categories | sort %}{% if i > 0 %},{% endif %} {{ category | trans_category | u.title }}{% set i = i + 1 %}{% endfor %}
+
+
+
+
+ {{ 'Posters' | trans }}
+
+
+ {% if user.posters %}
+ {{ 'Yes' | trans }}
+ {% else %}
+ {{ 'No' | trans }}
+ {% endif %}
diff --git a/templates/default/user/settings.html.twig b/templates/default/user/settings.html.twig
index 606b3fb..49fcbed 100644
--- a/templates/default/user/settings.html.twig
+++ b/templates/default/user/settings.html.twig
@@ -58,6 +58,23 @@
+
+
+ {{ 'Posters' | trans }}
+
+
+
+ {% if user.posters %}
+
+ {% else %}
+
+ {% endif %}
+
+ {{ 'Enabled' | trans }}
+
+
+
+
{{ 'Search' | trans }}
@@ -65,34 +82,60 @@
- {{ 'Content' | trans }}
+
+ {{ 'Locales' | trans }}
+
-
- {% for locale in locales %}
-
-
+
+
+ {{ 'Categories' | trans }}
+
+
+
+ {% for category in categories | sort %}
+
+ {% if category in user.categories %}
+
+ {% else %}
+
+ {% endif %}
+
+ {{ category | trans_category | u.title }}
+
+
+ {% endfor %}
+
+
+
+
{{ 'Sensitive' | trans }}
-
-
@@ -104,20 +147,22 @@
+ {% set i = 0 %}
{% for group, event in events %}
+ {% set i = i + 1 %}
-
+
{{ group }}
-
+
{% for key, value in event %}
-
+
{% if value in user.events %}
{% else %}
{% endif %}
-
+
{{ key }}
@@ -136,10 +181,13 @@
{% if user.yggdrasil %}
-
+
{% else %}
-
+
{% endif %}
+
+ {{ 'Enabled' | trans }}
+
diff --git a/translations/messages+intl-icu.cs.xlf b/translations/messages+intl-icu.cs.xlf
index 33c94c0..e661df7 100644
--- a/translations/messages+intl-icu.cs.xlf
+++ b/translations/messages+intl-icu.cs.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.de.xlf b/translations/messages+intl-icu.de.xlf
index 739d732..754006d 100644
--- a/translations/messages+intl-icu.de.xlf
+++ b/translations/messages+intl-icu.de.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.en.xlf b/translations/messages+intl-icu.en.xlf
index 53aec08..cbd0dc2 100644
--- a/translations/messages+intl-icu.en.xlf
+++ b/translations/messages+intl-icu.en.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.eo.xlf b/translations/messages+intl-icu.eo.xlf
index 8c9206b..5e611d1 100644
--- a/translations/messages+intl-icu.eo.xlf
+++ b/translations/messages+intl-icu.eo.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.es.xlf b/translations/messages+intl-icu.es.xlf
index b20f791..9638ae5 100644
--- a/translations/messages+intl-icu.es.xlf
+++ b/translations/messages+intl-icu.es.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.fr.xlf b/translations/messages+intl-icu.fr.xlf
index 6f1894a..daae954 100644
--- a/translations/messages+intl-icu.fr.xlf
+++ b/translations/messages+intl-icu.fr.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.he.xlf b/translations/messages+intl-icu.he.xlf
index b5c3202..a324b84 100644
--- a/translations/messages+intl-icu.he.xlf
+++ b/translations/messages+intl-icu.he.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.it.xlf b/translations/messages+intl-icu.it.xlf
index 64f52bc..e31236c 100644
--- a/translations/messages+intl-icu.it.xlf
+++ b/translations/messages+intl-icu.it.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.ja.xlf b/translations/messages+intl-icu.ja.xlf
new file mode 100644
index 0000000..56c715b
--- /dev/null
+++ b/translations/messages+intl-icu.ja.xlf
@@ -0,0 +1,918 @@
+
+
+
+
+
+
+ Users
+ Users
+
+
+ Joined
+ Joined
+
+
+ Approved
+ Approved
+
+
+ Disapproved
+ Disapproved
+
+
+ User statuses
+ User statuses
+
+
+ Enabled
+ Enabled
+
+
+ Disabled
+ Disabled
+
+
+ User moderators
+ User moderators
+
+
+ Added
+ Added
+
+
+ Removed
+ Removed
+
+
+ User stars
+ User stars
+
+
+ Torrents
+ Torrents
+
+
+ Torrent locales
+ Torrent locales
+
+
+ Deleted
+ Deleted
+
+
+ Torrent sensitive
+ Torrent sensitive
+
+
+ Torrent stars
+ Torrent stars
+
+
+ Torrent downloads
+ Torrent downloads
+
+
+ Files
+ Files
+
+
+ Magnet links
+ Magnet links
+
+
+ Access denied
+ Access denied
+
+
+ At least one locale required
+ At least one locale required
+
+
+ Torrent file out of size limit
+ Torrent file out of size limit
+
+
+ Torrent file already exists
+ Torrent file already exists
+
+
+ Could not parse torrent file
+ Could not parse torrent file
+
+
+ Torrent file required
+ Torrent file required
+
+
+ B
+ B
+
+
+ Kb
+ Kb
+
+
+ Mb
+ Mb
+
+
+ Gb
+ Gb
+
+
+ Tb
+ Tb
+
+
+ Pb
+ Pb
+
+
+ Eb
+ Eb
+
+
+ Zb
+ Zb
+
+
+ Yb
+ Yb
+
+
+ now
+ now
+
+
+ Keyword, file, hash...
+ Keyword, file, hash...
+
+
+ Search
+ Search
+
+
+ Recent uploads
+ Recent uploads
+
+
+ Active leechers waiting for seeders
+ Active leechers waiting for seeders
+
+
+ wanted
+ wanted
+
+
+ Waiting for approve
+ Waiting for approve
+
+
+ Size
+ Size
+
+
+ Seeders
+ Seeders
+
+
+ Peers
+ Peers
+
+
+ Leechers
+ Leechers
+
+
+ Open magnet link
+ Open magnet link
+
+
+ Total
+ Total
+
+
+ Download torrent file
+ Download torrent file
+
+
+ Star
+ Star
+
+
+ Nothing found
+ Nothing found
+
+
+ * share new torrent file to change it
+ * share new torrent file to change it
+
+
+ Submit
+ Submit
+
+
+ Submit torrent
+ Submit torrent
+
+
+ Content language
+ Content language
+
+
+ This torrent contains selected languages
+ This torrent contains selected languages
+
+
+ Sensitive
+ Sensitive
+
+
+ Mark torrent content as sensitive
+ Mark torrent content as sensitive
+
+
+ Edit locales
+ Edit locales
+
+
+ Torrent
+ Torrent
+
+
+ Edit locales for torrent
+ Edit locales for torrent
+
+
+ cancel
+ cancel
+
+
+ by
+ by
+
+
+ identicon
+ identicon
+
+
+ Delete
+ Delete
+
+
+ Disapprove
+ Disapprove
+
+
+ Approve
+ Approve
+
+
+ Edit sensitive status
+ Edit sensitive status
+
+
+ Edit sensitive status for torrent
+ Edit sensitive status for torrent
+
+
+ Page
+ Page
+
+
+ Moderation
+ Moderation
+
+
+ Yes
+ Yes
+
+
+ Toggle
+ Toggle
+
+
+ No
+ No
+
+
+ Common
+ Common
+
+
+ ID
+ ID
+
+
+ MD5
+ MD5
+
+
+ Info hash v1
+ Info hash v1
+
+
+ Info hash v2
+ Info hash v2
+
+
+ Created
+ Created
+
+
+ Pieces
+ Pieces
+
+
+ Source
+ Source
+
+
+ Software
+ Software
+
+
+ Comment
+ Comment
+
+
+ Contributors
+ Contributors
+
+
+ Scrape
+ Scrape
+
+
+ Trackers
+ Trackers
+
+
+ Filtered by settings
+ Filtered by settings
+
+
+ Edit
+ Edit
+
+
+ Locales
+ Locales
+
+
+ Recent activity
+ Recent activity
+
+
+ Back
+ Back
+
+
+ Next
+ Next
+
+
+ Settings
+ Settings
+
+
+ Interface
+ Interface
+
+
+ Theme
+ Theme
+
+
+ Language
+ Language
+
+
+ Join translation
+ Join translation
+
+
+ Activity
+ Activity
+
+
+ Downloads
+ Downloads
+
+
+ Yggdrasil only
+ Yggdrasil only
+
+
+ Save
+ Save
+
+
+ Home
+ Home
+
+
+ Profile
+ Profile
+
+
+ User
+ User
+
+
+ Bookmark
+ Bookmark
+
+
+ Address
+ Address
+
+
+ Address hidden for others
+ Address hidden for others
+
+
+ Access
+ Access
+
+
+ Status
+ Status
+
+
+ Active
+ Active
+
+
+ Moderator
+ Moderator
+
+
+ Languages
+ Languages
+
+
+ Events subscribed
+ Events subscribed
+
+
+ undefined event
+ undefined event
+
+
+ have downloaded torrent file
+ have downloaded torrent file
+
+
+ waiting for approve
+ waiting for approve
+
+
+ sensitive
+ sensitive
+
+
+ have downloaded magnet link
+ have downloaded magnet link
+
+
+ have disapproved torrent
+ have disapproved torrent
+
+
+ have approved torrent
+ have approved torrent
+
+
+ have added torrent
+ have added torrent
+
+
+ have deleted locales edition
+ have deleted locales edition
+
+
+ for torrent
+ for torrent
+
+
+ have disapproved locales edition
+ have disapproved locales edition
+
+
+ have approved locales edition
+ have approved locales edition
+
+
+ have added locales edition
+ have added locales edition
+
+
+ have removed star from torrent
+ have removed star from torrent
+
+
+ have added star for torrent
+ have added star for torrent
+
+
+ have deleted sensitive edition
+ have deleted sensitive edition
+
+
+ have disapproved sensitive edition
+ have disapproved sensitive edition
+
+
+ have approved sensitive edition
+ have approved sensitive edition
+
+
+ have added sensitive edition
+ have added sensitive edition
+
+
+ have disabled
+ have disabled
+
+
+ have disabled user
+ have disabled user
+
+
+ have enabled
+ have enabled
+
+
+ have enabled user
+ have enabled user
+
+
+ have disapproved
+ have disapproved
+
+
+ have disapproved user
+ have disapproved user
+
+
+ have approved
+ have approved
+
+
+ have approved user
+ have approved user
+
+
+ have joined
+ have joined
+
+
+ have removed moderator permissions from
+ have removed moderator permissions from
+
+
+ have removed moderator permissions from user
+ have removed moderator permissions from user
+
+
+ have granted moderator permissions to
+ have granted moderator permissions to
+
+
+ have granted moderator permissions to user
+ have granted moderator permissions to user
+
+
+ have removed star from
+ have removed star from
+
+
+ have removed star from user
+ have removed star from user
+
+
+ have added star for
+ have added star for
+
+
+ have added star for user
+ have added star for user
+
+
+ Error
+ Error
+
+
+ Oops!
+ Oops!
+
+
+ Internal server error
+ Internal server error
+
+
+ Report
+ Report
+
+
+ Not found
+ Not found
+
+
+ Page not found!
+ Page not found!
+
+
+ BitTorrent protocol version 2
+ BitTorrent protocol version 2
+
+
+ BitTorrent protocol version 1
+ BitTorrent protocol version 1
+
+
+ year ago
+ year ago
+
+
+ month ago
+ month ago
+
+
+ day ago
+ day ago
+
+
+ hour ago
+ hour ago
+
+
+ minute ago
+ minute ago
+
+
+ second ago
+ second ago
+
+
+ years ago
+ years ago
+
+
+ months ago
+ months ago
+
+
+ days ago
+ days ago
+
+
+ hours ago
+ hours ago
+
+
+ minutes ago
+ minutes ago
+
+
+ seconds ago
+ seconds ago
+
+
+ years ago
+ years ago
+
+
+ months ago
+ months ago
+
+
+ days ago
+ days ago
+
+
+ hours ago
+ hours ago
+
+
+ minutes ago
+ minutes ago
+
+
+ seconds ago
+ seconds ago
+
+
+ Search results
+ Search results
+
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
+
+
+
diff --git a/translations/messages+intl-icu.ka.xlf b/translations/messages+intl-icu.ka.xlf
index d7546df..944c10a 100644
--- a/translations/messages+intl-icu.ka.xlf
+++ b/translations/messages+intl-icu.ka.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.lv.xlf b/translations/messages+intl-icu.lv.xlf
index 58d1372..814cec1 100644
--- a/translations/messages+intl-icu.lv.xlf
+++ b/translations/messages+intl-icu.lv.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.nl.xlf b/translations/messages+intl-icu.nl.xlf
new file mode 100644
index 0000000..cb827de
--- /dev/null
+++ b/translations/messages+intl-icu.nl.xlf
@@ -0,0 +1,918 @@
+
+
+
+
+
+
+ Users
+ Users
+
+
+ Joined
+ Joined
+
+
+ Approved
+ Approved
+
+
+ Disapproved
+ Disapproved
+
+
+ User statuses
+ User statuses
+
+
+ Enabled
+ Enabled
+
+
+ Disabled
+ Disabled
+
+
+ User moderators
+ User moderators
+
+
+ Added
+ Added
+
+
+ Removed
+ Removed
+
+
+ User stars
+ User stars
+
+
+ Torrents
+ Torrents
+
+
+ Torrent locales
+ Torrent locales
+
+
+ Deleted
+ Deleted
+
+
+ Torrent sensitive
+ Torrent sensitive
+
+
+ Torrent stars
+ Torrent stars
+
+
+ Torrent downloads
+ Torrent downloads
+
+
+ Files
+ Files
+
+
+ Magnet links
+ Magnet links
+
+
+ Access denied
+ Access denied
+
+
+ At least one locale required
+ At least one locale required
+
+
+ Torrent file out of size limit
+ Torrent file out of size limit
+
+
+ Torrent file already exists
+ Torrent file already exists
+
+
+ Could not parse torrent file
+ Could not parse torrent file
+
+
+ Torrent file required
+ Torrent file required
+
+
+ B
+ B
+
+
+ Kb
+ Kb
+
+
+ Mb
+ Mb
+
+
+ Gb
+ Gb
+
+
+ Tb
+ Tb
+
+
+ Pb
+ Pb
+
+
+ Eb
+ Eb
+
+
+ Zb
+ Zb
+
+
+ Yb
+ Yb
+
+
+ now
+ now
+
+
+ Keyword, file, hash...
+ Keyword, file, hash...
+
+
+ Search
+ Search
+
+
+ Recent uploads
+ Recent uploads
+
+
+ Active leechers waiting for seeders
+ Active leechers waiting for seeders
+
+
+ wanted
+ wanted
+
+
+ Waiting for approve
+ Waiting for approve
+
+
+ Size
+ Size
+
+
+ Seeders
+ Seeders
+
+
+ Peers
+ Peers
+
+
+ Leechers
+ Leechers
+
+
+ Open magnet link
+ Open magnet link
+
+
+ Total
+ Total
+
+
+ Download torrent file
+ Download torrent file
+
+
+ Star
+ Star
+
+
+ Nothing found
+ Nothing found
+
+
+ * share new torrent file to change it
+ * share new torrent file to change it
+
+
+ Submit
+ Submit
+
+
+ Submit torrent
+ Submit torrent
+
+
+ Content language
+ Content language
+
+
+ This torrent contains selected languages
+ This torrent contains selected languages
+
+
+ Sensitive
+ Sensitive
+
+
+ Mark torrent content as sensitive
+ Mark torrent content as sensitive
+
+
+ Edit locales
+ Edit locales
+
+
+ Torrent
+ Torrent
+
+
+ Edit locales for torrent
+ Edit locales for torrent
+
+
+ cancel
+ cancel
+
+
+ by
+ by
+
+
+ identicon
+ identicon
+
+
+ Delete
+ Delete
+
+
+ Disapprove
+ Disapprove
+
+
+ Approve
+ Approve
+
+
+ Edit sensitive status
+ Edit sensitive status
+
+
+ Edit sensitive status for torrent
+ Edit sensitive status for torrent
+
+
+ Page
+ Page
+
+
+ Moderation
+ Moderation
+
+
+ Yes
+ Yes
+
+
+ Toggle
+ Toggle
+
+
+ No
+ No
+
+
+ Common
+ Common
+
+
+ ID
+ ID
+
+
+ MD5
+ MD5
+
+
+ Info hash v1
+ Info hash v1
+
+
+ Info hash v2
+ Info hash v2
+
+
+ Created
+ Created
+
+
+ Pieces
+ Pieces
+
+
+ Source
+ Source
+
+
+ Software
+ Software
+
+
+ Comment
+ Comment
+
+
+ Contributors
+ Contributors
+
+
+ Scrape
+ Scrape
+
+
+ Trackers
+ Trackers
+
+
+ Filtered by settings
+ Filtered by settings
+
+
+ Edit
+ Edit
+
+
+ Locales
+ Locales
+
+
+ Recent activity
+ Recent activity
+
+
+ Back
+ Back
+
+
+ Next
+ Next
+
+
+ Settings
+ Settings
+
+
+ Interface
+ Interface
+
+
+ Theme
+ Theme
+
+
+ Language
+ Language
+
+
+ Join translation
+ Join translation
+
+
+ Activity
+ Activity
+
+
+ Downloads
+ Downloads
+
+
+ Yggdrasil only
+ Yggdrasil only
+
+
+ Save
+ Save
+
+
+ Home
+ Home
+
+
+ Profile
+ Profile
+
+
+ User
+ User
+
+
+ Bookmark
+ Bookmark
+
+
+ Address
+ Address
+
+
+ Address hidden for others
+ Address hidden for others
+
+
+ Access
+ Access
+
+
+ Status
+ Status
+
+
+ Active
+ Active
+
+
+ Moderator
+ Moderator
+
+
+ Languages
+ Languages
+
+
+ Events subscribed
+ Events subscribed
+
+
+ undefined event
+ undefined event
+
+
+ have downloaded torrent file
+ have downloaded torrent file
+
+
+ waiting for approve
+ waiting for approve
+
+
+ sensitive
+ sensitive
+
+
+ have downloaded magnet link
+ have downloaded magnet link
+
+
+ have disapproved torrent
+ have disapproved torrent
+
+
+ have approved torrent
+ have approved torrent
+
+
+ have added torrent
+ have added torrent
+
+
+ have deleted locales edition
+ have deleted locales edition
+
+
+ for torrent
+ for torrent
+
+
+ have disapproved locales edition
+ have disapproved locales edition
+
+
+ have approved locales edition
+ have approved locales edition
+
+
+ have added locales edition
+ have added locales edition
+
+
+ have removed star from torrent
+ have removed star from torrent
+
+
+ have added star for torrent
+ have added star for torrent
+
+
+ have deleted sensitive edition
+ have deleted sensitive edition
+
+
+ have disapproved sensitive edition
+ have disapproved sensitive edition
+
+
+ have approved sensitive edition
+ have approved sensitive edition
+
+
+ have added sensitive edition
+ have added sensitive edition
+
+
+ have disabled
+ have disabled
+
+
+ have disabled user
+ have disabled user
+
+
+ have enabled
+ have enabled
+
+
+ have enabled user
+ have enabled user
+
+
+ have disapproved
+ have disapproved
+
+
+ have disapproved user
+ have disapproved user
+
+
+ have approved
+ have approved
+
+
+ have approved user
+ have approved user
+
+
+ have joined
+ have joined
+
+
+ have removed moderator permissions from
+ have removed moderator permissions from
+
+
+ have removed moderator permissions from user
+ have removed moderator permissions from user
+
+
+ have granted moderator permissions to
+ have granted moderator permissions to
+
+
+ have granted moderator permissions to user
+ have granted moderator permissions to user
+
+
+ have removed star from
+ have removed star from
+
+
+ have removed star from user
+ have removed star from user
+
+
+ have added star for
+ have added star for
+
+
+ have added star for user
+ have added star for user
+
+
+ Error
+ Error
+
+
+ Oops!
+ Oops!
+
+
+ Internal server error
+ Internal server error
+
+
+ Report
+ Report
+
+
+ Not found
+ Not found
+
+
+ Page not found!
+ Page not found!
+
+
+ BitTorrent protocol version 2
+ BitTorrent protocol version 2
+
+
+ BitTorrent protocol version 1
+ BitTorrent protocol version 1
+
+
+ year ago
+ year ago
+
+
+ month ago
+ month ago
+
+
+ day ago
+ day ago
+
+
+ hour ago
+ hour ago
+
+
+ minute ago
+ minute ago
+
+
+ second ago
+ second ago
+
+
+ years ago
+ years ago
+
+
+ months ago
+ months ago
+
+
+ days ago
+ days ago
+
+
+ hours ago
+ hours ago
+
+
+ minutes ago
+ minutes ago
+
+
+ seconds ago
+ seconds ago
+
+
+ years ago
+ years ago
+
+
+ months ago
+ months ago
+
+
+ days ago
+ days ago
+
+
+ hours ago
+ hours ago
+
+
+ minutes ago
+ minutes ago
+
+
+ seconds ago
+ seconds ago
+
+
+ Search results
+ Search results
+
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
+
+
+
diff --git a/translations/messages+intl-icu.pl.xlf b/translations/messages+intl-icu.pl.xlf
index 3e87d08..b9debc7 100644
--- a/translations/messages+intl-icu.pl.xlf
+++ b/translations/messages+intl-icu.pl.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.pt.xlf b/translations/messages+intl-icu.pt.xlf
index 46133ce..bc8dc0f 100644
--- a/translations/messages+intl-icu.pt.xlf
+++ b/translations/messages+intl-icu.pt.xlf
@@ -5,10 +5,6 @@
-
- File not found
- File not found
-
Users
Users
@@ -173,10 +169,6 @@
Waiting for approve
Waiting for approve
-
- Content visible for non sensitive users only
- Content visible for non sensitive users only
-
Size
Size
@@ -401,10 +393,6 @@
Join translation
Join translation
-
- Content
- Content
-
Activity
Activity
@@ -721,6 +709,210 @@
Search results
Search results
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Upload any torrent - download with Yggdrasil]]>
+
+
+ Wanted
+ Wanted
+
+
+ Seeders wanted for torrent
+ Seeders wanted for torrent
+
+
+ Hide
+ Hide
+
+
+ have disabled torrent
+ have disabled torrent
+
+
+ have enabled torrent
+ have enabled torrent
+
+
+ disabled
+ disabled
+
+
+ Poster file out of size limit
+ Poster file out of size limit
+
+
+ Image file not supported
+ Image file not supported
+
+
+ Poster file required
+ Poster file required
+
+
+ Edit torrent poster
+ Edit torrent poster
+
+
+ Edit poster for torrent
+ Edit poster for torrent
+
+
+ Poster
+ Poster
+
+
+ Posters
+ Posters
+
+
+ have deleted poster edition
+ have deleted poster edition
+
+
+ have disapproved poster edition
+ have disapproved poster edition
+
+
+ have approved poster edition
+ have approved poster edition
+
+
+ have added poster edition
+ have added poster edition
+
+
+ Torrent posters
+ Torrent posters
+
+
+ Center
+ Center
+
+
+ Top
+ Top
+
+
+ Bottom
+ Bottom
+
+
+ Categories
+ Categories
+
+
+ At least one category required
+ At least one category required
+
+
+ Content category
+ Content category
+
+
+ This torrent have selected categories
+ This torrent have selected categories
+
+
+ Edit categories
+ Edit categories
+
+
+ Edit categories for torrent
+ Edit categories for torrent
+
+
+ Locale
+ Locale
+
+
+ Category
+ Category
+
+
+ Torrent categories
+ Torrent categories
+
+
+ have deleted categories edition
+ have deleted categories edition
+
+
+ have disapproved categories edition
+ have disapproved categories edition
+
+
+ have approved categories edition
+ have approved categories edition
+
+
+ have added categories edition
+ have added categories edition
+
+
+ movie
+ movie
+
+
+ series
+ series
+
+
+ tv
+ tv
+
+
+ animation
+ animation
+
+
+ music
+ music
+
+
+ game
+ game
+
+
+ audiobook
+ audiobook
+
+
+ podcast
+ podcast
+
+
+ book
+ book
+
+
+ archive
+ archive
+
+
+ picture
+ picture
+
+
+ software
+ software
+
+
+ other
+ other
+
+
+ Hide filter
+ Hide filter
+
+
+ Show filter
+ Show filter
+
+
+ Private
+ Private
+
diff --git a/translations/messages+intl-icu.ru.xlf b/translations/messages+intl-icu.ru.xlf
index e0bc111..a452819 100644
--- a/translations/messages+intl-icu.ru.xlf
+++ b/translations/messages+intl-icu.ru.xlf
@@ -5,10 +5,6 @@
-
- File not found
- Файл не найден
-
Users
Пользователи
@@ -173,10 +169,6 @@
Waiting for approve
На рассмотрении
-
- Content visible for non sensitive users only
- Содержимое видимо только для нечувствительных пользователей
-
Size
Размер
@@ -401,10 +393,6 @@
Join translation
Присоединиться к переводам
-
- Content
- Содержимое
-
Activity
Активность
@@ -721,6 +709,210 @@
Search results
Результаты поиска
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Загрузить любой торрент - скачать с Yggdrasil]]>
+
+
+ Wanted
+ Розыск
+
+
+ Seeders wanted for torrent
+ Требуется раздача для торрента
+
+
+ Hide
+ Скрыть
+
+
+ have disabled torrent
+ отключил торрент
+
+
+ have enabled torrent
+ включил торрент
+
+
+ disabled
+ отключено
+
+
+ Poster file out of size limit
+ Размер файла постера превышает максимальный размер
+
+
+ Image file not supported
+ Формат изображения не поддерживается
+
+
+ Poster file required
+ Требуется указать файл постера
+
+
+ Edit torrent poster
+ Редактировать постер торрента
+
+
+ Edit poster for torrent
+ Редактировать постер для торрента
+
+
+ Poster
+ Постер
+
+
+ Posters
+ Постеры
+
+
+ have deleted poster edition
+ удалил редакцию постера
+
+
+ have disapproved poster edition
+ отклонил редакцию постера
+
+
+ have approved poster edition
+ утвердил редакцию постера
+
+
+ have added poster edition
+ добавил редакцию постера
+
+
+ Torrent posters
+ Постеры торрентов
+
+
+ Center
+ Центр
+
+
+ Top
+ Верх
+
+
+ Bottom
+ Низ
+
+
+ Categories
+ Категории
+
+
+ At least one category required
+ Необходимо указать минимум одну категорию
+
+
+ Content category
+ Категория содержимого
+
+
+ This torrent have selected categories
+ Этот торрент содержит выбранные категории
+
+
+ Edit categories
+ Редактировать категории
+
+
+ Edit categories for torrent
+ Редактировать категории для торрента
+
+
+ Locale
+ Локаль
+
+
+ Category
+ Категория
+
+
+ Torrent categories
+ Категории торрента
+
+
+ have deleted categories edition
+ удалил редакцию категорий
+
+
+ have disapproved categories edition
+ отклонил редакцию категорий
+
+
+ have approved categories edition
+ утвердил редакцию категорий
+
+
+ have added categories edition
+ добавил редакцию категорий
+
+
+ movie
+ фильм
+
+
+ series
+ сериал
+
+
+ tv
+ ТВ шоу
+
+
+ animation
+ анимация
+
+
+ music
+ музыка
+
+
+ game
+ игра
+
+
+ audiobook
+ аудиокнига
+
+
+ podcast
+ подкаст
+
+
+ book
+ книга
+
+
+ archive
+ архив
+
+
+ picture
+ изображение
+
+
+ software
+ программа
+
+
+ other
+ другое
+
+
+ Hide filter
+ Скрыть фильтр
+
+
+ Show filter
+ Показать фильтр
+
+
+ Private
+ Приватный
+
diff --git a/translations/messages+intl-icu.uk.xlf b/translations/messages+intl-icu.uk.xlf
index 802d8f2..ffea2ef 100644
--- a/translations/messages+intl-icu.uk.xlf
+++ b/translations/messages+intl-icu.uk.xlf
@@ -5,10 +5,6 @@
-
- File not found
- Файл не знайдено
-
Users
Користувачі
@@ -167,16 +163,12 @@
wanted
- розшукується
+ розшук
Waiting for approve
Очікує на підтвердження
-
- Content visible for non sensitive users only
- Контент видимий лише для нечутливих користувачів
-
Size
Розмір
@@ -401,10 +393,6 @@
Join translation
Приєднатись до перекладу
-
- Content
- Контент
-
Activity
Активність
@@ -721,6 +709,210 @@
Search results
Результати пошуку
+
+ <a href="%s">Upload</a> any torrent - download with Yggdrasil
+ Надіслати будь-який торент - завантажити з Yggdrasil]]>
+
+
+ Wanted
+ Розшук
+
+
+ Seeders wanted for torrent
+ Розшукуються роздачі для торенту
+
+
+ Hide
+ Приховати
+
+
+ have disabled torrent
+ вимкнув торент
+
+
+ have enabled torrent
+ увімкнув торент
+
+
+ disabled
+ вимкнено
+
+
+ Poster file out of size limit
+ Розмір файлу постера перевищує ліміти
+
+
+ Image file not supported
+ Формат зображення не підтримується
+
+
+ Poster file required
+ Необхідно вказати файл постера
+
+
+ Edit torrent poster
+ Редагувати постер торента
+
+
+ Edit poster for torrent
+ Редагувати постер для торента
+
+
+ Poster
+ Постер
+
+
+ Posters
+ Постери
+
+
+ have deleted poster edition
+ видалив редакцію постера
+
+
+ have disapproved poster edition
+ відхилив редакцію постера
+
+
+ have approved poster edition
+ додав редакцію постера
+
+
+ have added poster edition
+ додав редакцію постера
+
+
+ Torrent posters
+ Постери торентів
+
+
+ Center
+ Центр
+
+
+ Top
+ Верх
+
+
+ Bottom
+ Низ
+
+
+ Categories
+ Категорії
+
+
+ At least one category required
+ Потрібно вказати щонайменше одну категорію
+
+
+ Content category
+ Категорія вмісту
+
+
+ This torrent have selected categories
+ Цей торрент має виділені категорії
+
+
+ Edit categories
+ Змінити категорії
+
+
+ Edit categories for torrent
+ Редагувати категорії для торенту
+
+
+ Locale
+ Локаль
+
+
+ Category
+ Категорія
+
+
+ Torrent categories
+ Категорії торенту
+
+
+ have deleted categories edition
+ видалив редакцію категорій
+
+
+ have disapproved categories edition
+ відхилив редакцію категорій
+
+
+ have approved categories edition
+ затвердив редакцію категорій
+
+
+ have added categories edition
+ додав редакцію категорій
+
+
+ movie
+ кіно
+
+
+ series
+ серіал
+
+
+ tv
+ ТБ шоу
+
+
+ animation
+ анімація
+
+
+ music
+ музика
+
+
+ game
+ гра
+
+
+ audiobook
+ аудіокнига
+
+
+ podcast
+ подкаст
+
+
+ book
+ книга
+
+
+ archive
+ архів
+
+
+ picture
+ зображення
+
+
+ software
+ програма
+
+
+ other
+ інше
+
+
+ Hide filter
+ Приховати фільтр
+
+
+ Show filter
+ Показати фільтр
+
+
+ Private
+ Приватний
+