diff -Nru ubuntu-release-upgrader-18.04.18/debian/changelog ubuntu-release-upgrader-18.04.19/debian/changelog --- ubuntu-release-upgrader-18.04.18/debian/changelog 2018-05-02 19:43:44.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/debian/changelog 2018-05-03 13:55:34.000000000 +0000 @@ -1,3 +1,10 @@ +ubuntu-release-upgrader (1:18.04.19) bionic; urgency=medium + + * Add upgrade telemetry information (LP: #1755456) + * Updated translations + + -- Didier Roche Thu, 03 May 2018 15:55:34 +0200 + ubuntu-release-upgrader (1:18.04.18) bionic; urgency=medium * data/removal_blacklist.cfg: Drop unity, ubuntu-gnome-desktop, and diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeController.py ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeController.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeController.py 2018-03-20 17:28:36.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeController.py 2018-05-03 13:55:34.000000000 +0000 @@ -33,6 +33,7 @@ import copy from configparser import NoOptionError from configparser import ConfigParser as SafeConfigParser +from .telemetry import get as get_telemetry from .utils import (country_mirror, url_downloadable, check_and_fix_xbit, @@ -45,14 +46,7 @@ from string import Template from urllib.parse import urlsplit -from .DistUpgradeView import ( - STEP_PREPARE, - STEP_MODIFY_SOURCES, - STEP_FETCH, - STEP_INSTALL, - STEP_CLEANUP, - STEP_REBOOT, -) +from .DistUpgradeView import Step from .DistUpgradeCache import MyCache from .DistUpgradeConfigParser import DistUpgradeConfig from .DistUpgradeQuirks import DistUpgradeQuirks @@ -866,6 +860,7 @@ "'software-properties' tool or " "your package manager." )) + get_telemetry().set_using_third_party_sources(self.sources_disabled) return True def _logChanges(self): @@ -1760,7 +1755,7 @@ def fullUpgrade(self): # sanity check (check for ubuntu-desktop, brokenCache etc) self._view.updateStatus(_("Checking package manager")) - self._view.setStep(STEP_PREPARE) + self._view.setStep(Step.PREPARE) if not self.prepare(): logging.error("self.prepare() failed") @@ -1829,7 +1824,7 @@ self.abort() # update sources.list - self._view.setStep(STEP_MODIFY_SOURCES) + self._view.setStep(Step.MODIFY_SOURCES) self._view.updateStatus(_("Updating repository information")) if not self.updateSourcesList(): self.abort() @@ -1901,14 +1896,14 @@ self.abort() # fetch the stuff - self._view.setStep(STEP_FETCH) + self._view.setStep(Step.FETCH) self._view.updateStatus(_("Fetching")) if not self.doDistUpgradeFetching(): self._enableAptCronJob() self.abort() # now do the upgrade - self._view.setStep(STEP_INSTALL) + self._view.setStep(Step.INSTALL) self._view.updateStatus(_("Upgrading")) if not self.doDistUpgrade(): # run the post install scripts (for stuff like UUID conversion) @@ -1922,7 +1917,7 @@ sys.exit(1) # do post-upgrade stuff - self._view.setStep(STEP_CLEANUP) + self._view.setStep(Step.CLEANUP) self._view.updateStatus(_("Searching for obsolete software")) self.doPostUpgrade() @@ -1935,8 +1930,9 @@ os.unlink("/var/lib/ubuntu-release-upgrader/release-upgrade-available") # done, ask for reboot - self._view.setStep(STEP_REBOOT) + self._view.setStep(Step.REBOOT) self._view.updateStatus(_("System upgrade is complete.")) + get_telemetry().done() # FIXME should we look into /var/run/reboot-required here? if (not inside_chroot() and self._view.confirmRestart()): @@ -1950,20 +1946,20 @@ def doPartialUpgrade(self): " partial upgrade mode, useful for repairing " - self._view.setStep(STEP_PREPARE) - self._view.hideStep(STEP_MODIFY_SOURCES) - self._view.hideStep(STEP_REBOOT) + self._view.setStep(Step.PREPARE) + self._view.hideStep(Step.MODIFY_SOURCES) + self._view.hideStep(Step.REBOOT) self._partialUpgrade = True self.prepare() if not self.doPostInitialUpdate(): return False if not self.askDistUpgrade(): return False - self._view.setStep(STEP_FETCH) + self._view.setStep(Step.FETCH) self._view.updateStatus(_("Fetching")) if not self.doDistUpgradeFetching(): return False - self._view.setStep(STEP_INSTALL) + self._view.setStep(Step.INSTALL) self._view.updateStatus(_("Upgrading")) if not self.doDistUpgrade(): self._view.information(_("Upgrade complete"), @@ -1971,7 +1967,7 @@ "were errors during the upgrade " "process.")) return False - self._view.setStep(STEP_CLEANUP) + self._view.setStep(Step.CLEANUP) if not self.doPostUpgrade(): self._view.information(_("Upgrade complete"), _("The upgrade has completed but there " diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewGtk3.py ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewGtk3.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewGtk3.py 2017-05-18 17:38:50.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewGtk3.py 2018-05-03 13:55:34.000000000 +0000 @@ -52,6 +52,7 @@ from .DistUpgradeApport import run_apport, apport_crash from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress +from .telemetry import get as get_telemetry from .SimpleGtk3builderApp import SimpleGtkbuilderApp import gettext @@ -70,7 +71,7 @@ """ update is called regularly so that the gui can be redrawn """ if text: self.status.set_text(text) - self.progress.set_fraction(step/float(self.totalSteps)) + self.progress.set_fraction(step.value/float(self.totalSteps)) while Gtk.events_pending(): Gtk.main_iteration() def ask_cdrom_name(self): @@ -452,6 +453,8 @@ # check if we have a display etc Gtk.init_check(sys.argv) + get_telemetry().set_updater_type('GTK') + try: locale.bindtextdomain("ubuntu-release-upgrader",localedir) gettext.textdomain("ubuntu-release-upgrader") @@ -472,7 +475,7 @@ # terminal stuff self.create_terminal() - self.prev_step = 0 # keep a record of the latest step + self.prev_step = None # keep a record of the latest step # we don't use this currently #self.window_main.set_keep_above(True) self.icontheme = Gtk.IconTheme.get_default() @@ -598,44 +601,45 @@ def updateStatus(self, msg): self.label_status.set_text("%s" % msg) def hideStep(self, step): - image = getattr(self,"image_step%i" % step) - label = getattr(self,"label_step%i" % step) - #arrow = getattr(self,"arrow_step%i" % step) + image = getattr(self,"image_step%i" % step.value) + label = getattr(self,"label_step%i" % step.value) + #arrow = getattr(self,"arrow_step%i" % step.value) image.hide() label.hide() def showStep(self, step): - image = getattr(self,"image_step%i" % step) - label = getattr(self,"label_step%i" % step) + image = getattr(self,"image_step%i" % step.value) + label = getattr(self,"label_step%i" % step.value) image.show() label.show() def abort(self): size = Gtk.IconSize.MENU step = self.prev_step - if step > 0: - image = getattr(self,"image_step%i" % step) - arrow = getattr(self,"arrow_step%i" % step) + if step: + image = getattr(self,"image_step%i" % step.value) + arrow = getattr(self,"arrow_step%i" % step.value) image.set_from_stock(Gtk.STOCK_CANCEL, size) image.show() arrow.hide() def setStep(self, step): + super(DistUpgradeViewGtk3, self).setStep(step) if self.icontheme.rescan_if_needed(): logging.debug("icon theme changed, re-reading") # first update the "previous" step as completed size = Gtk.IconSize.MENU attrlist=Pango.AttrList() if self.prev_step: - image = getattr(self,"image_step%i" % self.prev_step) - label = getattr(self,"label_step%i" % self.prev_step) - arrow = getattr(self,"arrow_step%i" % self.prev_step) + image = getattr(self,"image_step%i" % self.prev_step.value) + label = getattr(self,"label_step%i" % self.prev_step.value) + arrow = getattr(self,"arrow_step%i" % self.prev_step.value) label.set_property("attributes",attrlist) image.set_from_stock(Gtk.STOCK_APPLY, size) image.show() arrow.hide() self.prev_step = step # show the an arrow for the current step and make the label bold - image = getattr(self,"image_step%i" % step) - label = getattr(self,"label_step%i" % step) - arrow = getattr(self,"arrow_step%i" % step) + image = getattr(self,"image_step%i" % step.value) + label = getattr(self,"label_step%i" % step.value) + arrow = getattr(self,"arrow_step%i" % step.value) # check if that step was not hidden with hideStep() if not label.get_property("visible"): return diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewKDE.py ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewKDE.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewKDE.py 2018-02-05 16:39:02.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewKDE.py 2018-05-03 13:55:34.000000000 +0000 @@ -62,6 +62,7 @@ from .DistUpgradeApport import run_apport, apport_crash from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress +from .telemetry import get as get_telemetry import select import gettext @@ -251,7 +252,7 @@ """ update is called regularly so that the gui can be redrawn """ if text: self.status.setText(text) - self.progressbar.setValue(step/float(self.totalSteps)) + self.progressbar.setValue(step.value/float(self.totalSteps)) QApplication.processEvents() def ask_cdrom_name(self): @@ -560,6 +561,8 @@ """KDE frontend of the distUpgrade tool""" def __init__(self, datadir=None, logdir=None): DistUpgradeView.__init__(self) + + get_telemetry().set_updater_type('KDE') # silence the PyQt4 logger logger = logging.getLogger("PyQt4") logger.setLevel(logging.INFO) @@ -613,7 +616,7 @@ self.window_main.setParent(self) self.window_main.show() - self.prev_step = 0 # keep a record of the latest step + self.prev_step = None # keep a record of the latest step self._opCacheProgress = KDEOpProgress(self.window_main.progressbar_cache, self.window_main.progress_text) self._acquireProgress = KDEAcquireProgressAdapter(self) @@ -733,15 +736,15 @@ self.window_main.label_status.setText(msg) def hideStep(self, step): - image = getattr(self.window_main,"image_step%i" % step) - label = getattr(self.window_main,"label_step%i" % step) + image = getattr(self.window_main,"image_step%i" % step.value) + label = getattr(self.window_main,"label_step%i" % step.value) image.hide() label.hide() def abort(self): step = self.prev_step - if step > 0: - image = getattr(self.window_main,"image_step%i" % step) + if step: + image = getattr(self.window_main,"image_step%i" % step.value) cancelIcon = _icon("dialog-cancel", fallbacks=["/usr/share/icons/oxygen/16x16/actions/dialog-cancel.png", "/usr/lib/kde4/share/icons/oxygen/16x16/actions/dialog-cancel.png", @@ -750,6 +753,7 @@ image.show() def setStep(self, step): + super(DistUpgradeViewKDE , self).setStep(step) okIcon = _icon("dialog-ok", fallbacks=["/usr/share/icons/oxygen/16x16/actions/dialog-ok.png", "/usr/lib/kde4/share/icons/oxygen/16x16/actions/dialog-ok.png", @@ -760,15 +764,15 @@ "/usr/share/icons/crystalsvg/16x16/actions/1rightarrow.png"]) if self.prev_step: - image = getattr(self.window_main,"image_step%i" % self.prev_step) - label = getattr(self.window_main,"label_step%i" % self.prev_step) + image = getattr(self.window_main,"image_step%i" % self.prev_step.value) + label = getattr(self.window_main,"label_step%i" % self.prev_step.value) image.setPixmap(okIcon.pixmap(16, 16)) image.show() ##arrow.hide() self.prev_step = step # show the an arrow for the current step and make the label bold - image = getattr(self.window_main,"image_step%i" % step) - label = getattr(self.window_main,"label_step%i" % step) + image = getattr(self.window_main,"image_step%i" % step.value) + label = getattr(self.window_main,"label_step%i" % step.value) image.setPixmap(arrowIcon.pixmap(16, 16)) image.show() label.setText("" + label.text() + "") diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewNonInteractive.py ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewNonInteractive.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewNonInteractive.py 2017-05-18 17:38:50.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewNonInteractive.py 2018-05-03 13:55:34.000000000 +0000 @@ -36,6 +36,7 @@ from subprocess import PIPE, Popen from .DistUpgradeView import DistUpgradeView, InstallProgress, AcquireProgress +from .telemetry import get as get_telemetry from .DistUpgradeConfigParser import DistUpgradeConfig @@ -251,6 +252,7 @@ " non-interactive version of the upgrade view " def __init__(self, datadir=None, logdir=None): DistUpgradeView.__init__(self) + get_telemetry().set_updater_type('NonInteractive') self.config = DistUpgradeConfig(".") self._acquireProgress = NonInteractiveAcquireProgress() self._installProgress = NonInteractiveInstallProgress(logdir) @@ -286,6 +288,7 @@ 4. Post upgrade stuff 5. Complete """ + super(DistUpgradeViewNonInteractive, self).setStep(step) pass def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeView.py ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeView.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeView.py 2017-05-18 17:41:09.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeView.py 2018-05-03 13:55:34.000000000 +0000 @@ -21,7 +21,9 @@ from .DistUpgradeGettext import gettext as _ from .DistUpgradeGettext import ngettext +from .telemetry import get as get_telemetry import apt +from enum import Enum import errno import os import apt_pkg @@ -252,13 +254,14 @@ def hide(self): pass -(STEP_PREPARE, - STEP_MODIFY_SOURCES, - STEP_FETCH, - STEP_INSTALL, - STEP_CLEANUP, - STEP_REBOOT, - STEP_N) = range(1,8) +class Step(Enum): + PREPARE = 1 + MODIFY_SOURCES = 2 + FETCH = 3 + INSTALL = 4 + CLEANUP = 5 + REBOOT = 6 + N = 7 # Declare these translatable strings from the .ui files here so that # xgettext picks them up. @@ -304,6 +307,7 @@ 4. Post upgrade stuff 5. Complete """ + get_telemetry().add_stage(step.name) pass def hideStep(self, step): " hide a certain step from the GUI " diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewText.py ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewText.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/DistUpgradeViewText.py 2017-05-18 17:38:50.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/DistUpgradeViewText.py 2018-05-03 13:55:34.000000000 +0000 @@ -36,6 +36,7 @@ ENCODING, InstallProgress, ) +from .telemetry import get as get_telemetry import apt.progress import gettext @@ -88,7 +89,7 @@ def update(self, text, step): """ update is called regularly so that the gui can be redrawn """ if text: - print("%s (%f)" % (text, step/float(self.totalSteps)*100)) + print("%s (%f)" % (text, step.value/float(self.totalSteps)*100)) def ask_cdrom_name(self): return (False, "") def change_cdrom(self): @@ -101,6 +102,7 @@ def __init__(self, datadir=None, logdir=None): # indicate that we benefit from using gnu screen self.needs_screen = True + get_telemetry().set_updater_type('Text') # its important to have a debconf frontend for # packages like "quagga" if "DEBIAN_FRONTEND" not in os.environ: @@ -116,7 +118,7 @@ except Exception as e: logging.warning("Error setting locales (%s)" % e) - self.last_step = 0 # keep a record of the latest step + self.last_step = None # keep a record of the latest step self._opCacheProgress = apt.progress.text.OpProgress() self._acquireProgress = TextAcquireProgress() self._cdromProgress = TextCdromProgressAdapter() @@ -162,6 +164,7 @@ print() print(_("Aborting")) def setStep(self, step): + super(DistUpgradeViewText, self).setStep(step) self.last_step = step def showDemotions(self, summary, msg, demotions): self.information(summary, msg, diff -Nru ubuntu-release-upgrader-18.04.18/DistUpgrade/telemetry.py ubuntu-release-upgrader-18.04.19/DistUpgrade/telemetry.py --- ubuntu-release-upgrader-18.04.18/DistUpgrade/telemetry.py 1970-01-01 00:00:00.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/DistUpgrade/telemetry.py 2018-05-03 13:55:34.000000000 +0000 @@ -0,0 +1,102 @@ +# -*- coding: utf-8; Mode: Python; indent-tabs-mode: nil; tab-width: 4 -*- + +# Copyright (C) 2018 Canonical Ltd. +# +# Functions useful for the final install.py script and for ubiquity +# plugins to use +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +import logging +import json +import os +import stat +import subprocess + + +def get(): + """Return a singleton _Telemetry instance.""" + if _Telemetry._telemetry is None: + _Telemetry._telemetry = _Telemetry() + return _Telemetry._telemetry + + +class _Telemetry(): + + _telemetry = None + + def __init__(self): + self._metrics = {} + self._stages_hist = {} + self._start_time = self._get_current_uptime() + self._metrics["From"] = subprocess.Popen( + ["lsb_release", "-r", "-s"], stdout=subprocess.PIPE, + universal_newlines=True).communicate()[0].strip() + self.add_stage('start') + self._dest_path = '/var/log/upgrade/telemetry' + try: + with open('/var/log/installer/media-info') as f: + self._metrics['InstallMedia'] = f.readline() + except FileNotFoundError: + pass + + def _get_current_uptime(self): + """Get current uptime info. None if we couldn't fetch it.""" + uptime = None + try: + with open('/proc/uptime') as f: + uptime = float(f.read().split()[0]) + except (FileNotFoundError, OSError, ValueError) as e: + logging.warning("Exception while fetching current uptime: " + + str(e)) + return uptime + + def add_stage(self, stage_name): + """Record installer stage with current time""" + now = self._get_current_uptime() + if self._start_time is None or now is None: + return + self._stages_hist[int(now - self._start_time)] = stage_name + + def set_updater_type(self, updater_type): + """Record updater type""" + self._metrics['Type'] = updater_type + + def set_using_third_party_sources(self, using): + """Record if the user had third party sources""" + self._metrics['ThirdPartySources'] = using + + def done(self): + """Close telemetry collection + + Save to destination file""" + + self._metrics['Stages'] = self._stages_hist + + target_dir = os.path.dirname(self._dest_path) + try: + if not os.path.exists(target_dir): + os.makedirs(target_dir) + with open(self._dest_path, 'w') as f: + json.dump(self._metrics, f) + os.chmod(self._dest_path, + stat.S_IRUSR | stat.S_IWUSR | + stat.S_IRGRP | stat.S_IROTH) + except OSError as e: + logging.warning("Exception while storing telemetry data: " + + str(e)) + +# vim:ai:et:sts=4:tw=80:sw=4: diff -Nru ubuntu-release-upgrader-18.04.18/po/af.po ubuntu-release-upgrader-18.04.19/po/af.po --- ubuntu-release-upgrader-18.04.18/po/af.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/af.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: af\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/am.po ubuntu-release-upgrader-18.04.19/po/am.po --- ubuntu-release-upgrader-18.04.18/po/am.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/am.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: am\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/an.po ubuntu-release-upgrader-18.04.19/po/an.po --- ubuntu-release-upgrader-18.04.18/po/an.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/an.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: an\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ar.po ubuntu-release-upgrader-18.04.19/po/ar.po --- ubuntu-release-upgrader-18.04.18/po/ar.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ar.po 2018-05-03 13:55:34.000000000 +0000 @@ -18,8 +18,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= " "3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ast.po ubuntu-release-upgrader-18.04.19/po/ast.po --- ubuntu-release-upgrader-18.04.18/po/ast.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ast.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ast\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/az.po ubuntu-release-upgrader-18.04.19/po/az.po --- ubuntu-release-upgrader-18.04.18/po/az.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/az.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: az\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/be.po ubuntu-release-upgrader-18.04.19/po/be.po --- ubuntu-release-upgrader-18.04.18/po/be.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/be.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: be\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/bg.po ubuntu-release-upgrader-18.04.19/po/bg.po --- ubuntu-release-upgrader-18.04.18/po/bg.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/bg.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: bg\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/bn.po ubuntu-release-upgrader-18.04.19/po/bn.po --- ubuntu-release-upgrader-18.04.18/po/bn.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/bn.po 2018-05-03 13:55:34.000000000 +0000 @@ -19,8 +19,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: en\n" "X-Language: bn_BD\n" "X-Poedit-Language: Bengali\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/bo.po ubuntu-release-upgrader-18.04.19/po/bo.po --- ubuntu-release-upgrader-18.04.18/po/bo.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/bo.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: bo\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/br.po ubuntu-release-upgrader-18.04.19/po/br.po --- ubuntu-release-upgrader-18.04.18/po/br.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/br.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: br\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/bs.po ubuntu-release-upgrader-18.04.19/po/bs.po --- ubuntu-release-upgrader-18.04.18/po/bs.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/bs.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: bs\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ca.po ubuntu-release-upgrader-18.04.19/po/ca.po --- ubuntu-release-upgrader-18.04.18/po/ca.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ca.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ca\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ca@valencia.po ubuntu-release-upgrader-18.04.19/po/ca@valencia.po --- ubuntu-release-upgrader-18.04.18/po/ca@valencia.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ca@valencia.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ca\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ceb.po ubuntu-release-upgrader-18.04.19/po/ceb.po --- ubuntu-release-upgrader-18.04.18/po/ceb.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ceb.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ceb\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ce.po ubuntu-release-upgrader-18.04.19/po/ce.po --- ubuntu-release-upgrader-18.04.18/po/ce.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ce.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ce\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ckb.po ubuntu-release-upgrader-18.04.19/po/ckb.po --- ubuntu-release-upgrader-18.04.18/po/ckb.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ckb.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/crh.po ubuntu-release-upgrader-18.04.19/po/crh.po --- ubuntu-release-upgrader-18.04.18/po/crh.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/crh.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/csb.po ubuntu-release-upgrader-18.04.19/po/csb.po --- ubuntu-release-upgrader-18.04.18/po/csb.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/csb.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: csb\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/cs.po ubuntu-release-upgrader-18.04.19/po/cs.po --- ubuntu-release-upgrader-18.04.18/po/cs.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/cs.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: cs\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/cv.po ubuntu-release-upgrader-18.04.19/po/cv.po --- ubuntu-release-upgrader-18.04.18/po/cv.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/cv.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: cv\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/cy.po ubuntu-release-upgrader-18.04.19/po/cy.po --- ubuntu-release-upgrader-18.04.18/po/cy.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/cy.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? " "2 : 3;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: cy\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/da.po ubuntu-release-upgrader-18.04.19/po/da.po --- ubuntu-release-upgrader-18.04.18/po/da.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/da.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: da\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/de.po ubuntu-release-upgrader-18.04.19/po/de.po --- ubuntu-release-upgrader-18.04.18/po/de.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/de.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/dv.po ubuntu-release-upgrader-18.04.19/po/dv.po --- ubuntu-release-upgrader-18.04.18/po/dv.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/dv.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: dv\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/el.po ubuntu-release-upgrader-18.04.19/po/el.po --- ubuntu-release-upgrader-18.04.18/po/el.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/el.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: el\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/en_AU.po ubuntu-release-upgrader-18.04.19/po/en_AU.po --- ubuntu-release-upgrader-18.04.18/po/en_AU.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/en_AU.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/en_CA.po ubuntu-release-upgrader-18.04.19/po/en_CA.po --- ubuntu-release-upgrader-18.04.18/po/en_CA.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/en_CA.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/en_GB.po ubuntu-release-upgrader-18.04.19/po/en_GB.po --- ubuntu-release-upgrader-18.04.18/po/en_GB.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/en_GB.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/eo.po ubuntu-release-upgrader-18.04.19/po/eo.po --- ubuntu-release-upgrader-18.04.18/po/eo.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/eo.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: eo\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/es.po ubuntu-release-upgrader-18.04.19/po/es.po --- ubuntu-release-upgrader-18.04.18/po/es.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/es.po 2018-05-03 13:55:34.000000000 +0000 @@ -18,8 +18,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: es\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/et.po ubuntu-release-upgrader-18.04.19/po/et.po --- ubuntu-release-upgrader-18.04.18/po/et.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/et.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: et\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/eu.po ubuntu-release-upgrader-18.04.19/po/eu.po --- ubuntu-release-upgrader-18.04.18/po/eu.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/eu.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: eu\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fa.po ubuntu-release-upgrader-18.04.19/po/fa.po --- ubuntu-release-upgrader-18.04.18/po/fa.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fa.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: fa\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fil.po ubuntu-release-upgrader-18.04.19/po/fil.po --- ubuntu-release-upgrader-18.04.18/po/fil.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fil.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: fil\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fi.po ubuntu-release-upgrader-18.04.19/po/fi.po --- ubuntu-release-upgrader-18.04.18/po/fi.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fi.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: fi\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fo.po ubuntu-release-upgrader-18.04.19/po/fo.po --- ubuntu-release-upgrader-18.04.18/po/fo.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fo.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: fo\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fr_CA.po ubuntu-release-upgrader-18.04.19/po/fr_CA.po --- ubuntu-release-upgrader-18.04.18/po/fr_CA.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fr_CA.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fr.po ubuntu-release-upgrader-18.04.19/po/fr.po --- ubuntu-release-upgrader-18.04.18/po/fr.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fr.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: fr\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fur.po ubuntu-release-upgrader-18.04.19/po/fur.po --- ubuntu-release-upgrader-18.04.18/po/fur.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fur.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: fur\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/fy.po ubuntu-release-upgrader-18.04.19/po/fy.po --- ubuntu-release-upgrader-18.04.18/po/fy.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/fy.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ga.po ubuntu-release-upgrader-18.04.19/po/ga.po --- ubuntu-release-upgrader-18.04.18/po/ga.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ga.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ga\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/gd.po ubuntu-release-upgrader-18.04.19/po/gd.po --- ubuntu-release-upgrader-18.04.18/po/gd.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/gd.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " "(n > 2 && n < 20) ? 2 : 3;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/gl.po ubuntu-release-upgrader-18.04.19/po/gl.po --- ubuntu-release-upgrader-18.04.18/po/gl.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/gl.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/gu.po ubuntu-release-upgrader-18.04.19/po/gu.po --- ubuntu-release-upgrader-18.04.18/po/gu.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/gu.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: gu\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/gv.po ubuntu-release-upgrader-18.04.19/po/gv.po --- ubuntu-release-upgrader-18.04.18/po/gv.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/gv.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : (n == 2 ? 1 : 2);\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: gv\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/he.po ubuntu-release-upgrader-18.04.19/po/he.po --- ubuntu-release-upgrader-18.04.18/po/he.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/he.po 2018-05-03 13:55:34.000000000 +0000 @@ -18,8 +18,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: he\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/hi.po ubuntu-release-upgrader-18.04.19/po/hi.po --- ubuntu-release-upgrader-18.04.18/po/hi.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/hi.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: hi\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/hr.po ubuntu-release-upgrader-18.04.19/po/hr.po --- ubuntu-release-upgrader-18.04.18/po/hr.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/hr.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: hr\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/hu.po ubuntu-release-upgrader-18.04.19/po/hu.po --- ubuntu-release-upgrader-18.04.18/po/hu.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/hu.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: hu\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/hy.po ubuntu-release-upgrader-18.04.19/po/hy.po --- ubuntu-release-upgrader-18.04.18/po/hy.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/hy.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: hy\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ia.po ubuntu-release-upgrader-18.04.19/po/ia.po --- ubuntu-release-upgrader-18.04.18/po/ia.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ia.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:215 ../DistUpgrade/distro.py:446 diff -Nru ubuntu-release-upgrader-18.04.18/po/id.po ubuntu-release-upgrader-18.04.19/po/id.po --- ubuntu-release-upgrader-18.04.18/po/id.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/id.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: id\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/is.po ubuntu-release-upgrader-18.04.19/po/is.po --- ubuntu-release-upgrader-18.04.18/po/is.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/is.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: is\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/it.po ubuntu-release-upgrader-18.04.19/po/it.po --- ubuntu-release-upgrader-18.04.18/po/it.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/it.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: it\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ja.po ubuntu-release-upgrader-18.04.19/po/ja.po --- ubuntu-release-upgrader-18.04.18/po/ja.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ja.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/jv.po ubuntu-release-upgrader-18.04.19/po/jv.po --- ubuntu-release-upgrader-18.04.18/po/jv.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/jv.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: jv\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ka.po ubuntu-release-upgrader-18.04.19/po/ka.po --- ubuntu-release-upgrader-18.04.18/po/ka.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ka.po 2018-05-03 13:55:34.000000000 +0000 @@ -19,8 +19,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ka\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/kk.po ubuntu-release-upgrader-18.04.19/po/kk.po --- ubuntu-release-upgrader-18.04.18/po/kk.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/kk.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: kk\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/km.po ubuntu-release-upgrader-18.04.19/po/km.po --- ubuntu-release-upgrader-18.04.18/po/km.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/km.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" "X-Language: km-KH\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/kn.po ubuntu-release-upgrader-18.04.19/po/kn.po --- ubuntu-release-upgrader-18.04.18/po/kn.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/kn.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: kn\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ko.po ubuntu-release-upgrader-18.04.19/po/ko.po --- ubuntu-release-upgrader-18.04.18/po/ko.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ko.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ko\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ku.po ubuntu-release-upgrader-18.04.19/po/ku.po --- ubuntu-release-upgrader-18.04.18/po/ku.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ku.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ku\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ky.po ubuntu-release-upgrader-18.04.19/po/ky.po --- ubuntu-release-upgrader-18.04.18/po/ky.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ky.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ky\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/lb.po ubuntu-release-upgrader-18.04.19/po/lb.po --- ubuntu-release-upgrader-18.04.18/po/lb.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/lb.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ln.po ubuntu-release-upgrader-18.04.19/po/ln.po --- ubuntu-release-upgrader-18.04.18/po/ln.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ln.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:215 ../DistUpgrade/distro.py:446 diff -Nru ubuntu-release-upgrader-18.04.18/po/lo.po ubuntu-release-upgrader-18.04.19/po/lo.po --- ubuntu-release-upgrader-18.04.18/po/lo.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/lo.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/lt.po ubuntu-release-upgrader-18.04.19/po/lt.po --- ubuntu-release-upgrader-18.04.18/po/lt.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/lt.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "(n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: lt\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/lv.po ubuntu-release-upgrader-18.04.19/po/lv.po --- ubuntu-release-upgrader-18.04.18/po/lv.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/lv.po 2018-05-03 13:55:34.000000000 +0000 @@ -18,8 +18,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: lv\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/mhr.po ubuntu-release-upgrader-18.04.19/po/mhr.po --- ubuntu-release-upgrader-18.04.18/po/mhr.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/mhr.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/mk.po ubuntu-release-upgrader-18.04.19/po/mk.po --- ubuntu-release-upgrader-18.04.18/po/mk.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/mk.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: mk\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ml.po ubuntu-release-upgrader-18.04.19/po/ml.po --- ubuntu-release-upgrader-18.04.18/po/ml.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ml.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ml\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/mn.po ubuntu-release-upgrader-18.04.19/po/mn.po --- ubuntu-release-upgrader-18.04.18/po/mn.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/mn.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: mn\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/mr.po ubuntu-release-upgrader-18.04.19/po/mr.po --- ubuntu-release-upgrader-18.04.18/po/mr.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/mr.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: mr\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ms.po ubuntu-release-upgrader-18.04.19/po/ms.po --- ubuntu-release-upgrader-18.04.18/po/ms.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ms.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "X-Poedit-Country: MALAYSIA\n" "Language: ms\n" "X-Poedit-Language: Malay\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/mus.po ubuntu-release-upgrader-18.04.19/po/mus.po --- ubuntu-release-upgrader-18.04.18/po/mus.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/mus.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/my.po ubuntu-release-upgrader-18.04.19/po/my.po --- ubuntu-release-upgrader-18.04.18/po/my.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/my.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: my\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/nb.po ubuntu-release-upgrader-18.04.19/po/nb.po --- ubuntu-release-upgrader-18.04.18/po/nb.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/nb.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: nb\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/nds.po ubuntu-release-upgrader-18.04.19/po/nds.po --- ubuntu-release-upgrader-18.04.18/po/nds.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/nds.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ne.po ubuntu-release-upgrader-18.04.19/po/ne.po --- ubuntu-release-upgrader-18.04.18/po/ne.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ne.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ne\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/nl.po ubuntu-release-upgrader-18.04.19/po/nl.po --- ubuntu-release-upgrader-18.04.18/po/nl.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/nl.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/nn.po ubuntu-release-upgrader-18.04.19/po/nn.po --- ubuntu-release-upgrader-18.04.18/po/nn.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/nn.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: nn\n" "X-Language: nn_NO\n" "X-Source-Language: C\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/oc.po ubuntu-release-upgrader-18.04.19/po/oc.po --- ubuntu-release-upgrader-18.04.18/po/oc.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/oc.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/om.po ubuntu-release-upgrader-18.04.19/po/om.po --- ubuntu-release-upgrader-18.04.18/po/om.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/om.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:215 ../DistUpgrade/distro.py:446 diff -Nru ubuntu-release-upgrader-18.04.18/po/pam.po ubuntu-release-upgrader-18.04.19/po/pam.po --- ubuntu-release-upgrader-18.04.18/po/pam.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/pam.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:215 ../DistUpgrade/distro.py:446 diff -Nru ubuntu-release-upgrader-18.04.18/po/pa.po ubuntu-release-upgrader-18.04.19/po/pa.po --- ubuntu-release-upgrader-18.04.18/po/pa.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/pa.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/pl.po ubuntu-release-upgrader-18.04.19/po/pl.po --- ubuntu-release-upgrader-18.04.18/po/pl.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/pl.po 2018-05-03 13:55:34.000000000 +0000 @@ -22,8 +22,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: pl\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ps.po ubuntu-release-upgrader-18.04.19/po/ps.po --- ubuntu-release-upgrader-18.04.18/po/ps.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ps.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/pt_BR.po ubuntu-release-upgrader-18.04.19/po/pt_BR.po --- ubuntu-release-upgrader-18.04.18/po/pt_BR.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/pt_BR.po 2018-05-03 13:55:34.000000000 +0000 @@ -13,8 +13,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "X-Poedit-Country: BRAZIL\n" "Language: \n" "X-Poedit-Language: Portuguese\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/pt.po ubuntu-release-upgrader-18.04.19/po/pt.po --- ubuntu-release-upgrader-18.04.18/po/pt.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/pt.po 2018-05-03 13:55:34.000000000 +0000 @@ -14,8 +14,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/qu.po ubuntu-release-upgrader-18.04.19/po/qu.po --- ubuntu-release-upgrader-18.04.18/po/qu.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/qu.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: qu\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ro.po ubuntu-release-upgrader-18.04.19/po/ro.po --- ubuntu-release-upgrader-18.04.18/po/ro.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ro.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 " "== 0) && (n != 0))) ? 2: 1));\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ro\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ru.po ubuntu-release-upgrader-18.04.19/po/ru.po --- ubuntu-release-upgrader-18.04.18/po/ru.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ru.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ru\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/rw.po ubuntu-release-upgrader-18.04.19/po/rw.po --- ubuntu-release-upgrader-18.04.18/po/rw.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/rw.po 2018-05-03 13:55:34.000000000 +0000 @@ -23,8 +23,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: rw\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/sco.po ubuntu-release-upgrader-18.04.19/po/sco.po --- ubuntu-release-upgrader-18.04.18/po/sco.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sco.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/sc.po ubuntu-release-upgrader-18.04.19/po/sc.po --- ubuntu-release-upgrader-18.04.18/po/sc.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sc.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: sc\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/sd.po ubuntu-release-upgrader-18.04.19/po/sd.po --- ubuntu-release-upgrader-18.04.18/po/sd.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sd.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: sd\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/se.po ubuntu-release-upgrader-18.04.19/po/se.po --- ubuntu-release-upgrader-18.04.18/po/se.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/se.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: se\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/shn.po ubuntu-release-upgrader-18.04.19/po/shn.po --- ubuntu-release-upgrader-18.04.18/po/shn.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/shn.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n == 1) ? 0 : 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: shn\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/si.po ubuntu-release-upgrader-18.04.19/po/si.po --- ubuntu-release-upgrader-18.04.18/po/si.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/si.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/sk.po ubuntu-release-upgrader-18.04.19/po/sk.po --- ubuntu-release-upgrader-18.04.18/po/sk.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sk.po 2018-05-03 13:55:34.000000000 +0000 @@ -19,8 +19,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/sl.po ubuntu-release-upgrader-18.04.19/po/sl.po --- ubuntu-release-upgrader-18.04.18/po/sl.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sl.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " "n%100==4 ? 3 : 0);\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "X-Poedit-Country: SLOVENIA\n" "Language: sl\n" "X-Poedit-Language: Slovenian\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/sq.po ubuntu-release-upgrader-18.04.19/po/sq.po --- ubuntu-release-upgrader-18.04.18/po/sq.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sq.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:36+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:32+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: sq\n" "X-Poedit-Bookmarks: 126,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" diff -Nru ubuntu-release-upgrader-18.04.18/po/sr.po ubuntu-release-upgrader-18.04.19/po/sr.po --- ubuntu-release-upgrader-18.04.18/po/sr.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sr.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: sr\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/sv.po ubuntu-release-upgrader-18.04.19/po/sv.po --- ubuntu-release-upgrader-18.04.18/po/sv.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/sv.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: sv\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/szl.po ubuntu-release-upgrader-18.04.19/po/szl.po --- ubuntu-release-upgrader-18.04.18/po/szl.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/szl.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>=2 && n<=4 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:215 ../DistUpgrade/distro.py:446 diff -Nru ubuntu-release-upgrader-18.04.18/po/ta_LK.po ubuntu-release-upgrader-18.04.19/po/ta_LK.po --- ubuntu-release-upgrader-18.04.18/po/ta_LK.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ta_LK.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ta.po ubuntu-release-upgrader-18.04.19/po/ta.po --- ubuntu-release-upgrader-18.04.18/po/ta.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ta.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ta\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/te.po ubuntu-release-upgrader-18.04.19/po/te.po --- ubuntu-release-upgrader-18.04.18/po/te.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/te.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: te\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/tg.po ubuntu-release-upgrader-18.04.19/po/tg.po --- ubuntu-release-upgrader-18.04.18/po/tg.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/tg.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: tg\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/th.po ubuntu-release-upgrader-18.04.19/po/th.po --- ubuntu-release-upgrader-18.04.18/po/th.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/th.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: th\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/tl.po ubuntu-release-upgrader-18.04.19/po/tl.po --- ubuntu-release-upgrader-18.04.18/po/tl.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/tl.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: tl\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/tr.po ubuntu-release-upgrader-18.04.19/po/tr.po --- ubuntu-release-upgrader-18.04.18/po/tr.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/tr.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: tr\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ug.po ubuntu-release-upgrader-18.04.19/po/ug.po --- ubuntu-release-upgrader-18.04.18/po/ug.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ug.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:33+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/uk.po ubuntu-release-upgrader-18.04.19/po/uk.po --- ubuntu-release-upgrader-18.04.18/po/uk.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/uk.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: uk\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/ur.po ubuntu-release-upgrader-18.04.19/po/ur.po --- ubuntu-release-upgrader-18.04.18/po/ur.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/ur.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: ur\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/uz.po ubuntu-release-upgrader-18.04.19/po/uz.po --- ubuntu-release-upgrader-18.04.18/po/uz.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/uz.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:37+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: uz\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/vi.po ubuntu-release-upgrader-18.04.19/po/vi.po --- ubuntu-release-upgrader-18.04.18/po/vi.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/vi.po 2018-05-03 13:55:34.000000000 +0000 @@ -14,8 +14,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: vi\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/xh.po ubuntu-release-upgrader-18.04.19/po/xh.po --- ubuntu-release-upgrader-18.04.18/po/xh.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/xh.po 2018-05-03 13:55:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: xh\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/zh_CN.po ubuntu-release-upgrader-18.04.19/po/zh_CN.po --- ubuntu-release-upgrader-18.04.18/po/zh_CN.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/zh_CN.po 2018-05-03 13:55:34.000000000 +0000 @@ -17,8 +17,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/zh_HK.po ubuntu-release-upgrader-18.04.19/po/zh_HK.po --- ubuntu-release-upgrader-18.04.18/po/zh_HK.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/zh_HK.po 2018-05-03 13:55:34.000000000 +0000 @@ -10,8 +10,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: zh_HK\n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/zh_TW.po ubuntu-release-upgrader-18.04.19/po/zh_TW.po --- ubuntu-release-upgrader-18.04.18/po/zh_TW.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/zh_TW.po 2018-05-03 13:55:34.000000000 +0000 @@ -10,8 +10,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: \n" #. TRANSLATORS: %s is a country diff -Nru ubuntu-release-upgrader-18.04.18/po/zu.po ubuntu-release-upgrader-18.04.19/po/zu.po --- ubuntu-release-upgrader-18.04.18/po/zu.po 2018-05-02 17:48:06.000000000 +0000 +++ ubuntu-release-upgrader-18.04.19/po/zu.po 2018-05-03 13:55:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2018-04-25 05:38+0000\n" -"X-Generator: Launchpad (build 18623)\n" +"X-Launchpad-Export-Date: 2018-05-10 05:34+0000\n" +"X-Generator: Launchpad (build 18640)\n" "Language: zu\n" #. TRANSLATORS: %s is a country