Browse Source

fix time ago strings interpretation

main
ghost 1 year ago
parent
commit
1f51c56c0d
  1. 29
      src/Twig/AppExtension.php
  2. 102
      translations/messages+intl-icu.cs.xlf
  3. 102
      translations/messages+intl-icu.de.xlf
  4. 102
      translations/messages+intl-icu.en.xlf
  5. 102
      translations/messages+intl-icu.eo.xlf
  6. 102
      translations/messages+intl-icu.es.xlf
  7. 102
      translations/messages+intl-icu.fr.xlf
  8. 102
      translations/messages+intl-icu.he.xlf
  9. 102
      translations/messages+intl-icu.it.xlf
  10. 102
      translations/messages+intl-icu.ka.xlf
  11. 102
      translations/messages+intl-icu.lv.xlf
  12. 102
      translations/messages+intl-icu.pl.xlf
  13. 102
      translations/messages+intl-icu.pt.xlf
  14. 102
      translations/messages+intl-icu.ru.xlf
  15. 102
      translations/messages+intl-icu.uk.xlf

29
src/Twig/AppExtension.php

@ -77,21 +77,21 @@ class AppExtension extends AbstractExtension @@ -77,21 +77,21 @@ class AppExtension extends AbstractExtension
$values =
[
365 * 24 * 60 * 60 => $this->translator->trans('year'),
30 * 24 * 60 * 60 => $this->translator->trans('month'),
24 * 60 * 60 => $this->translator->trans('day'),
60 * 60 => $this->translator->trans('hour'),
60 => $this->translator->trans('minute'),
1 => $this->translator->trans('second')
365 * 24 * 60 * 60 => $this->translator->trans('year ago'),
30 * 24 * 60 * 60 => $this->translator->trans('month ago'),
24 * 60 * 60 => $this->translator->trans('day ago'),
60 * 60 => $this->translator->trans('hour ago'),
60 => $this->translator->trans('minute ago'),
1 => $this->translator->trans('second ago')
];
$plural = [
$this->translator->trans('year') => $this->translator->trans('years'),
$this->translator->trans('month') => $this->translator->trans('months'),
$this->translator->trans('day') => $this->translator->trans('days'),
$this->translator->trans('hour') => $this->translator->trans('hours'),
$this->translator->trans('minute') => $this->translator->trans('minutes'),
$this->translator->trans('second') => $this->translator->trans('seconds')
$this->translator->trans('year ago') => $this->translator->trans('years ago'),
$this->translator->trans('month ago') => $this->translator->trans('months ago'),
$this->translator->trans('day ago') => $this->translator->trans('days ago'),
$this->translator->trans('hour ago') => $this->translator->trans('hours ago'),
$this->translator->trans('minute ago') => $this->translator->trans('minutes ago'),
$this->translator->trans('second ago') => $this->translator->trans('seconds ago')
];
foreach ($values as $key => $value)
@ -103,10 +103,9 @@ class AppExtension extends AbstractExtension @@ -103,10 +103,9 @@ class AppExtension extends AbstractExtension
$round = round($result);
return sprintf(
'%s %s %s',
'%s %s',
$round,
$round > 1 ? $plural[$value] : $value,
$this->translator->trans('ago')
$round > 1 ? $plural[$value] : $value
);
}
}

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>now</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>year</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>month</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>day</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>hour</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>minute</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>second</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>years</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>months</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>days</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>hours</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>minutes</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>seconds</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>ago</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Keyword, file, hash...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent protocol version 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Contains</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

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

@ -149,58 +149,6 @@ @@ -149,58 +149,6 @@
<source>now</source>
<target>щойно</target>
</trans-unit>
<trans-unit id="TLTqJVg" resname="year">
<source>year</source>
<target>рік</target>
</trans-unit>
<trans-unit id="pcfRcZ4" resname="month">
<source>month</source>
<target>місяць</target>
</trans-unit>
<trans-unit id="lEwn5bl" resname="day">
<source>day</source>
<target>день</target>
</trans-unit>
<trans-unit id="msCt1HX" resname="hour">
<source>hour</source>
<target>година</target>
</trans-unit>
<trans-unit id="KM3SDq8" resname="minute">
<source>minute</source>
<target>хвилина</target>
</trans-unit>
<trans-unit id="FjZ6rLZ" resname="second">
<source>second</source>
<target>секунда</target>
</trans-unit>
<trans-unit id="HFCZOwC" resname="years">
<source>years</source>
<target>роки</target>
</trans-unit>
<trans-unit id="FoN0M0Q" resname="months">
<source>months</source>
<target>місяці</target>
</trans-unit>
<trans-unit id="q1EATp1" resname="days">
<source>days</source>
<target>дні</target>
</trans-unit>
<trans-unit id="QEMUsfS" resname="hours">
<source>hours</source>
<target>години</target>
</trans-unit>
<trans-unit id="kOY9hfo" resname="minutes">
<source>minutes</source>
<target>хвилини</target>
</trans-unit>
<trans-unit id="WfAG1jv" resname="seconds">
<source>seconds</source>
<target>секунди</target>
</trans-unit>
<trans-unit id="HY4I.WM" resname="ago">
<source>ago</source>
<target>тому</target>
</trans-unit>
<trans-unit id="aw2VQXS" resname="Keyword, file, hash...">
<source>Keyword, file, hash...</source>
<target>Ключове слово, файл, хеш...</target>
@ -697,9 +645,53 @@ @@ -697,9 +645,53 @@
<source>BitTorrent protocol version 1</source>
<target>BitTorrent протокол версії 1</target>
</trans-unit>
<trans-unit id="Lq7LPQz" resname="Contains">
<source>Contains</source>
<target>Містить</target>
<trans-unit id="FEgqWb_" resname="year ago">
<source>year ago</source>
<target>year ago</target>
</trans-unit>
<trans-unit id="pfk9V_Q" resname="month ago">
<source>month ago</source>
<target>month ago</target>
</trans-unit>
<trans-unit id="5rpeYTJ" resname="day ago">
<source>day ago</source>
<target>day ago</target>
</trans-unit>
<trans-unit id="hM62aMH" resname="hour ago">
<source>hour ago</source>
<target>hour ago</target>
</trans-unit>
<trans-unit id="r2QgE4i" resname="minute ago">
<source>minute ago</source>
<target>minute ago</target>
</trans-unit>
<trans-unit id="RbqRzDS" resname="second ago">
<source>second ago</source>
<target>second ago</target>
</trans-unit>
<trans-unit id="TQof7nK" resname="years ago">
<source>years ago</source>
<target>years ago</target>
</trans-unit>
<trans-unit id="fEGjy26" resname="months ago">
<source>months ago</source>
<target>months ago</target>
</trans-unit>
<trans-unit id="N9rZHfe" resname="days ago">
<source>days ago</source>
<target>days ago</target>
</trans-unit>
<trans-unit id="JQ76A_T" resname="hours ago">
<source>hours ago</source>
<target>hours ago</target>
</trans-unit>
<trans-unit id="HhrazP8" resname="minutes ago">
<source>minutes ago</source>
<target>minutes ago</target>
</trans-unit>
<trans-unit id="IsfvBWU" resname="seconds ago">
<source>seconds ago</source>
<target>seconds ago</target>
</trans-unit>
</body>
</file>

Loading…
Cancel
Save