Browse Source

add categories feature translation #26

main 2.5.0
ghost 1 year ago
parent
commit
ff565ac33b
  1. 1
      .env
  2. 30
      src/Twig/AppExtension.php
  3. 2
      templates/default/torrent/edit/categories.html.twig
  4. 2
      templates/default/torrent/info.html.twig
  5. 2
      templates/default/torrent/submit.html.twig
  6. 2
      templates/default/user/info.html.twig
  7. 2
      templates/default/user/settings.html.twig
  8. 52
      translations/messages+intl-icu.cs.xlf
  9. 52
      translations/messages+intl-icu.de.xlf
  10. 52
      translations/messages+intl-icu.en.xlf
  11. 52
      translations/messages+intl-icu.eo.xlf
  12. 52
      translations/messages+intl-icu.es.xlf
  13. 52
      translations/messages+intl-icu.fr.xlf
  14. 52
      translations/messages+intl-icu.he.xlf
  15. 52
      translations/messages+intl-icu.it.xlf
  16. 52
      translations/messages+intl-icu.ja.xlf
  17. 52
      translations/messages+intl-icu.ka.xlf
  18. 52
      translations/messages+intl-icu.lv.xlf
  19. 52
      translations/messages+intl-icu.nl.xlf
  20. 52
      translations/messages+intl-icu.pl.xlf
  21. 52
      translations/messages+intl-icu.pt.xlf
  22. 78
      translations/messages+intl-icu.ru.xlf
  23. 78
      translations/messages+intl-icu.uk.xlf

1
.env

@ -60,6 +60,7 @@ APP_LOCALE=en
APP_LOCALES=en|cs|nl|eo|fr|ja|ka|de|he|it|lv|pl|pt|ru|es|uk APP_LOCALES=en|cs|nl|eo|fr|ja|ka|de|he|it|lv|pl|pt|ru|es|uk
# Content categories, lowercase, enabled by default for new users # Content categories, lowercase, enabled by default for new users
# src/Twig/AppExtension.php:transCategory
APP_CATEGORIES=movie|series|tv|animation|music|game|audiobook|podcast|book|archive|picture|software|other APP_CATEGORIES=movie|series|tv|animation|music|game|audiobook|podcast|book|archive|picture|software|other
# Items per page on pagination # Items per page on pagination

30
src/Twig/AppExtension.php

@ -46,6 +46,13 @@ class AppExtension extends AbstractExtension
'urlToMarkdown' 'urlToMarkdown'
] ]
), ),
new TwigFilter(
'trans_category',
[
$this,
'transCategory'
]
),
]; ];
} }
@ -153,6 +160,29 @@ class AppExtension extends AbstractExtension
); );
} }
public function transCategory(
string $name
): string
{
switch ($name)
{
case 'movie': return $this->translator->trans('movie');
case 'series': return $this->translator->trans('series');
case 'tv': return $this->translator->trans('tv');
case 'animation': return $this->translator->trans('animation');
case 'music': return $this->translator->trans('music');
case 'game': return $this->translator->trans('game');
case 'audiobook': return $this->translator->trans('audiobook');
case 'podcast': return $this->translator->trans('podcast');
case 'book': return $this->translator->trans('book');
case 'archive': return $this->translator->trans('archive');
case 'picture': return $this->translator->trans('picture');
case 'software': return $this->translator->trans('software');
case 'other': return $this->translator->trans('other');
default: return $name;
}
}
private function plural(int $number, array $texts) private function plural(int $number, array $texts)
{ {
$cases = [2, 0, 1, 1, 1, 2]; $cases = [2, 0, 1, 1, 1, 2];

2
templates/default/torrent/edit/categories.html.twig

@ -32,7 +32,7 @@
<input type="checkbox" name="categories[]" id="{{ category }}" value="{{ category }}" /> <input type="checkbox" name="categories[]" id="{{ category }}" value="{{ category }}" />
{% endif %} {% endif %}
<label class="margin-l-4-px" for="{{ category }}"> <label class="margin-l-4-px" for="{{ category }}">
{{ category | u.title }} {{ category | trans_category | u.title }}
</label> </label>
</div> </div>
{% endfor %} {% endfor %}

2
templates/default/torrent/info.html.twig

@ -362,7 +362,7 @@
{% if torrent.categories %} {% if torrent.categories %}
<div class="padding-y-4-px"> <div class="padding-y-4-px">
{% set i = 0 %} {% set i = 0 %}
{% for category in torrent.categories | sort %}{% if i > 0 %},{% endif %} {{ category | u.title }}{% set i = i + 1 %}{% endfor %} {% for category in torrent.categories | sort %}{% if i > 0 %},{% endif %} {{ category | trans_category | u.title }}{% set i = i + 1 %}{% endfor %}
</div> </div>
{% endif %} {% endif %}
</div> </div>

2
templates/default/torrent/submit.html.twig

@ -72,7 +72,7 @@
<input type="checkbox" name="categories[]" id="{{ category }}" value="{{ category }}" /> <input type="checkbox" name="categories[]" id="{{ category }}" value="{{ category }}" />
{% endif %} {% endif %}
<label class="margin-l-4-px" for="{{ category }}"> <label class="margin-l-4-px" for="{{ category }}">
{{ category | u.title }} {{ category | trans_category | u.title }}
</label> </label>
</div> </div>
{% endfor %} {% endfor %}

2
templates/default/user/info.html.twig

@ -182,7 +182,7 @@
</td> </td>
<td class="width-80 line-height-20-px"> <td class="width-80 line-height-20-px">
{% set i = 0 %} {% set i = 0 %}
{% for category in user.categories | sort %}{% if i > 0 %},{% endif %} {{ category | u.title }}{% set i = i + 1 %}{% endfor %} {% for category in user.categories | sort %}{% if i > 0 %},{% endif %} {{ category | trans_category | u.title }}{% set i = i + 1 %}{% endfor %}
</td> </td>
</tr> </tr>
<tr> <tr>

2
templates/default/user/settings.html.twig

@ -116,7 +116,7 @@
<input name="categories[]" id="{{ category }}" type="checkbox" value="{{ category }}" /> <input name="categories[]" id="{{ category }}" type="checkbox" value="{{ category }}" />
{% endif %} {% endif %}
<label class="margin-x-4-px" for="{{ category }}"> <label class="margin-x-4-px" for="{{ category }}">
{{ category | u.title | trans }} {{ category | trans_category | u.title }}
</label> </label>
</div> </div>
{% endfor %} {% endfor %}

52
translations/messages+intl-icu.cs.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.de.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.en.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.eo.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.es.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.fr.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.he.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.it.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.ja.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.ka.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.lv.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.nl.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.pl.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

52
translations/messages+intl-icu.pt.xlf

@ -849,6 +849,58 @@
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>have added categories edition</target>
</trans-unit> </trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>movie</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>series</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>tv</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>animation</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>music</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>game</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>audiobook</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>podcast</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>book</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>archive</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>picture</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>software</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>other</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>

78
translations/messages+intl-icu.ru.xlf

@ -799,55 +799,107 @@
</trans-unit> </trans-unit>
<trans-unit id="uLHYlMa" resname="Categories"> <trans-unit id="uLHYlMa" resname="Categories">
<source>Categories</source> <source>Categories</source>
<target>Categories</target> <target>Категории</target>
</trans-unit> </trans-unit>
<trans-unit id="R2SmYMn" resname="At least one category required"> <trans-unit id="R2SmYMn" resname="At least one category required">
<source>At least one category required</source> <source>At least one category required</source>
<target>At least one category required</target> <target>Необходимо указать минимум одну категорию</target>
</trans-unit> </trans-unit>
<trans-unit id="QmNxufM" resname="Content category"> <trans-unit id="QmNxufM" resname="Content category">
<source>Content category</source> <source>Content category</source>
<target>Content category</target> <target>Категория содержимого</target>
</trans-unit> </trans-unit>
<trans-unit id="zRrq72V" resname="This torrent have selected categories"> <trans-unit id="zRrq72V" resname="This torrent have selected categories">
<source>This torrent have selected categories</source> <source>This torrent have selected categories</source>
<target>This torrent have selected categories</target> <target>Этот торрент содержит выбранные категории</target>
</trans-unit> </trans-unit>
<trans-unit id="o_ep6hc" resname="Edit categories"> <trans-unit id="o_ep6hc" resname="Edit categories">
<source>Edit categories</source> <source>Edit categories</source>
<target>Edit categories</target> <target>Редактировать категории</target>
</trans-unit> </trans-unit>
<trans-unit id="2SVm4J_" resname="Edit categories for torrent"> <trans-unit id="2SVm4J_" resname="Edit categories for torrent">
<source>Edit categories for torrent</source> <source>Edit categories for torrent</source>
<target>Edit categories for torrent</target> <target>Редактировать категории для торрента</target>
</trans-unit> </trans-unit>
<trans-unit id="yj3GEvR" resname="Locale"> <trans-unit id="yj3GEvR" resname="Locale">
<source>Locale</source> <source>Locale</source>
<target>Locale</target> <target>Локаль</target>
</trans-unit> </trans-unit>
<trans-unit id="KSwG8AR" resname="Category"> <trans-unit id="KSwG8AR" resname="Category">
<source>Category</source> <source>Category</source>
<target>Category</target> <target>Категория</target>
</trans-unit> </trans-unit>
<trans-unit id="AlYAkS1" resname="Torrent categories"> <trans-unit id="AlYAkS1" resname="Torrent categories">
<source>Torrent categories</source> <source>Torrent categories</source>
<target>Torrent categories</target> <target>Категории торрента</target>
</trans-unit> </trans-unit>
<trans-unit id="Yfrv1ti" resname="have deleted categories edition"> <trans-unit id="Yfrv1ti" resname="have deleted categories edition">
<source>have deleted categories edition</source> <source>have deleted categories edition</source>
<target>have deleted categories edition</target> <target>удалил редакцию категорий</target>
</trans-unit> </trans-unit>
<trans-unit id="LAnRgSg" resname="have disapproved categories edition"> <trans-unit id="LAnRgSg" resname="have disapproved categories edition">
<source>have disapproved categories edition</source> <source>have disapproved categories edition</source>
<target>have disapproved categories edition</target> <target>отклонил редакцию категорий</target>
</trans-unit> </trans-unit>
<trans-unit id="uF9AEqp" resname="have approved categories edition"> <trans-unit id="uF9AEqp" resname="have approved categories edition">
<source>have approved categories edition</source> <source>have approved categories edition</source>
<target>have approved categories edition</target> <target>утвердил редакцию категорий</target>
</trans-unit> </trans-unit>
<trans-unit id="oVNdrer" resname="have added categories edition"> <trans-unit id="oVNdrer" resname="have added categories edition">
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>добавил редакцию категорий</target>
</trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>фильм</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>сериал</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>ТВ шоу</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>анимация</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>музыка</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>игра</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>аудиокнига</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>подкаст</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>книга</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>архив</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>изображение</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>программа</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>другое</target>
</trans-unit> </trans-unit>
</body> </body>
</file> </file>

78
translations/messages+intl-icu.uk.xlf

@ -799,55 +799,107 @@
</trans-unit> </trans-unit>
<trans-unit id="uLHYlMa" resname="Categories"> <trans-unit id="uLHYlMa" resname="Categories">
<source>Categories</source> <source>Categories</source>
<target>Categories</target> <target>Категорії</target>
</trans-unit> </trans-unit>
<trans-unit id="R2SmYMn" resname="At least one category required"> <trans-unit id="R2SmYMn" resname="At least one category required">
<source>At least one category required</source> <source>At least one category required</source>
<target>At least one category required</target> <target>Потрібно вказати щонайменше одну категорію</target>
</trans-unit> </trans-unit>
<trans-unit id="QmNxufM" resname="Content category"> <trans-unit id="QmNxufM" resname="Content category">
<source>Content category</source> <source>Content category</source>
<target>Content category</target> <target>Категорія вмісту</target>
</trans-unit> </trans-unit>
<trans-unit id="zRrq72V" resname="This torrent have selected categories"> <trans-unit id="zRrq72V" resname="This torrent have selected categories">
<source>This torrent have selected categories</source> <source>This torrent have selected categories</source>
<target>This torrent have selected categories</target> <target>Цей торрент має виділені категорії</target>
</trans-unit> </trans-unit>
<trans-unit id="o_ep6hc" resname="Edit categories"> <trans-unit id="o_ep6hc" resname="Edit categories">
<source>Edit categories</source> <source>Edit categories</source>
<target>Edit categories</target> <target>Змінити категорії</target>
</trans-unit> </trans-unit>
<trans-unit id="2SVm4J_" resname="Edit categories for torrent"> <trans-unit id="2SVm4J_" resname="Edit categories for torrent">
<source>Edit categories for torrent</source> <source>Edit categories for torrent</source>
<target>Edit categories for torrent</target> <target>Редагувати категорії для торенту</target>
</trans-unit> </trans-unit>
<trans-unit id="yj3GEvR" resname="Locale"> <trans-unit id="yj3GEvR" resname="Locale">
<source>Locale</source> <source>Locale</source>
<target>Locale</target> <target>Локаль</target>
</trans-unit> </trans-unit>
<trans-unit id="KSwG8AR" resname="Category"> <trans-unit id="KSwG8AR" resname="Category">
<source>Category</source> <source>Category</source>
<target>Category</target> <target>Категорія</target>
</trans-unit> </trans-unit>
<trans-unit id="AlYAkS1" resname="Torrent categories"> <trans-unit id="AlYAkS1" resname="Torrent categories">
<source>Torrent categories</source> <source>Torrent categories</source>
<target>Torrent categories</target> <target>Категорії торенту</target>
</trans-unit> </trans-unit>
<trans-unit id="Yfrv1ti" resname="have deleted categories edition"> <trans-unit id="Yfrv1ti" resname="have deleted categories edition">
<source>have deleted categories edition</source> <source>have deleted categories edition</source>
<target>have deleted categories edition</target> <target>видалив редакцію категорій</target>
</trans-unit> </trans-unit>
<trans-unit id="LAnRgSg" resname="have disapproved categories edition"> <trans-unit id="LAnRgSg" resname="have disapproved categories edition">
<source>have disapproved categories edition</source> <source>have disapproved categories edition</source>
<target>have disapproved categories edition</target> <target>відхилив редакцію категорій</target>
</trans-unit> </trans-unit>
<trans-unit id="uF9AEqp" resname="have approved categories edition"> <trans-unit id="uF9AEqp" resname="have approved categories edition">
<source>have approved categories edition</source> <source>have approved categories edition</source>
<target>have approved categories edition</target> <target>затвердив редакцію категорій</target>
</trans-unit> </trans-unit>
<trans-unit id="oVNdrer" resname="have added categories edition"> <trans-unit id="oVNdrer" resname="have added categories edition">
<source>have added categories edition</source> <source>have added categories edition</source>
<target>have added categories edition</target> <target>додав редакцію категорій</target>
</trans-unit>
<trans-unit id="imujLJv" resname="movie">
<source>movie</source>
<target>кіно</target>
</trans-unit>
<trans-unit id="nNo46jo" resname="series">
<source>series</source>
<target>серіал</target>
</trans-unit>
<trans-unit id="pG5dK74" resname="tv">
<source>tv</source>
<target>ТБ шоу</target>
</trans-unit>
<trans-unit id="7CPO8DE" resname="animation">
<source>animation</source>
<target>анімація</target>
</trans-unit>
<trans-unit id="gPGJmE5" resname="music">
<source>music</source>
<target>музика</target>
</trans-unit>
<trans-unit id="bKXKt35" resname="game">
<source>game</source>
<target>гра</target>
</trans-unit>
<trans-unit id="PYW9Udx" resname="audiobook">
<source>audiobook</source>
<target>аудіокнига</target>
</trans-unit>
<trans-unit id="9ippfeB" resname="podcast">
<source>podcast</source>
<target>подкаст</target>
</trans-unit>
<trans-unit id="knGf4M_" resname="book">
<source>book</source>
<target>книга</target>
</trans-unit>
<trans-unit id="DrPja.s" resname="archive">
<source>archive</source>
<target>архів</target>
</trans-unit>
<trans-unit id="LOonTQv" resname="picture">
<source>picture</source>
<target>зображення</target>
</trans-unit>
<trans-unit id="NTkPVFP" resname="software">
<source>software</source>
<target>програма</target>
</trans-unit>
<trans-unit id="2SmKENG" resname="other">
<source>other</source>
<target>інше</target>
</trans-unit> </trans-unit>
</body> </body>
</file> </file>

Loading…
Cancel
Save