From 970a81e8b72c349a25f7c1e8fb636cc3b21c8776 Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Sun, 13 Nov 2016 19:37:18 +0200 Subject: [PATCH 1/7] Add man page --- man/calamares.1 | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 man/calamares.1 diff --git a/man/calamares.1 b/man/calamares.1 new file mode 100644 index 000000000..87ade04e3 --- /dev/null +++ b/man/calamares.1 @@ -0,0 +1,33 @@ +.TH CALAMARES "1" +.SH NAME +calamares \- distribution-independent system installer +.SH SYNOPSIS +.B calamares +[\fI\,options\/\fR] +.SH DESCRIPTION +.B calamares +is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations. It is the first installer with an automated “Replace Partition” option, which makes it easy to reuse a partition over and over for distribution testing. Calamares is designed to be customizable by distribution maintainers without need for cumbersome patching, thanks to third party branding and external modules support. +.SH OPTIONS +.TP +\fB\-h\fR, \fB\-\-help\fR +Displays this help. +.TP +\fB\-v\fR, \fB\-\-version\fR +Displays version information. +.TP +\fB\-d\fR, \fB\-\-debug\fR +Verbose output for debugging purposes. +.TP +\fB\-c\fR, \fB\-\-config\fR +Configuration directory to use, for testing purposes. +.SH "SEE ALSO" +The +.B calamares +website: https://calamares.io +.SH "BUGS" +Please report any bugs to https://calamares.io/bugs +.SH AUTHORS +.B calamares +is written by Teo Mrnjavac +.LP +This man page is written by Jonathan Carter From 48b3699a0fe86759eb267263a8e7773c97c02abb Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Wed, 29 Mar 2017 21:47:15 +0200 Subject: [PATCH 2/7] Fixed pep8 whining in module services Added myself to copyright --- src/modules/services/main.py | 62 ++++++++++++++++++++++++++---------- 1 file changed, 46 insertions(+), 16 deletions(-) diff --git a/src/modules/services/main.py b/src/modules/services/main.py index e195faff4..03d82554a 100644 --- a/src/modules/services/main.py +++ b/src/modules/services/main.py @@ -5,6 +5,7 @@ # # Copyright 2014, Philip Müller # Copyright 2014, Teo Mrnjavac +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +24,9 @@ import libcalamares def run(): - """ Setup systemd services """ + """ + Setup systemd services + """ services = libcalamares.job.configuration['services'] targets = libcalamares.job.configuration['targets'] disable = libcalamares.job.configuration['disable'] @@ -35,37 +38,64 @@ def run(): # enable services for svc in services: - ec = libcalamares.utils.target_env_call(['systemctl', 'enable', '{}.service'.format(svc['name'])]) + ec = libcalamares.utils.target_env_call( + ['systemctl', 'enable', '{}.service'.format(svc['name'])] + ) if ec != 0: if svc['mandatory']: - return "Cannot enable systemd service {}".format(svc['name']), \ - "systemctl enable call in chroot returned error code {}".format(ec) + return ("Cannot enable systemd service {}".format(svc['name']), + "systemctl enable call in chroot returned error code " + "{}".format(ec) + ) else: - libcalamares.utils.debug("Cannot enable systemd service {}".format(svc['name'])) - libcalamares.utils.debug("systemctl enable call in chroot returned error code {}".format(ec)) + libcalamares.utils.debug( + "Cannot enable systemd service {}".format(svc['name']) + ) + libcalamares.utils.debug( + "systemctl enable call in chroot returned error code " + "{}".format(ec) + ) # enable targets for tgt in targets: - ec = libcalamares.utils.target_env_call(['systemctl', 'enable', '{}.target'.format(tgt['name'])]) + ec = libcalamares.utils.target_env_call( + ['systemctl', 'enable', '{}.target'.format(tgt['name'])] + ) if ec != 0: if tgt['mandatory']: - return "Cannot enable systemd target {}".format(tgt['name']), \ - "systemctl enable call in chroot returned error code {}".format(ec) + return ("Cannot enable systemd target {}".format(tgt['name']), + "systemctl enable call in chroot returned error code" + "{}".format(ec) + ) else: - libcalamares.utils.debug("Cannot enable systemd target {}".format(tgt['name'])) - libcalamares.utils.debug("systemctl enable call in chroot returned error code {}".format(ec)) + libcalamares.utils.debug( + "Cannot enable systemd target {}".format(tgt['name']) + ) + libcalamares.utils.debug( + "systemctl enable call in chroot returned error code " + "{}".format(ec) + ) for dbl in disable: - ec = libcalamares.utils.target_env_call(['systemctl', 'disable', '{}.service'.format(dbl['name'])]) + ec = libcalamares.utils.target_env_call( + ['systemctl', 'disable', '{}.service'.format(dbl['name'])] + ) if ec != 0: if dbl['mandatory']: - return "Cannot disable systemd service {}".format(dbl['name']), \ - "systemctl disable call in chroot returned error code {}".format(ec) + return ("Cannot disable systemd service" + "{}".format(dbl['name']), + "systemctl disable call in chroot returned error code" + "{}".format(ec)) else: - libcalamares.utils.debug("Cannot disable systemd service {}".format(dbl['name'])) - libcalamares.utils.debug("systemctl disable call in chroot returned error code {}".format(ec)) + libcalamares.utils.debug( + "Cannot disable systemd service {}".format(dbl['name']) + ) + libcalamares.utils.debug( + "systemctl disable call in chroot returned error code " + "{}".format(ec) + ) return None From f9695cabac242fbbbaad790b7e1a9bfcf590ab7b Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Thu, 30 Mar 2017 00:03:54 +0200 Subject: [PATCH 3/7] Fixed pep8 whining in module displaymanager Added myself to copyright --- src/modules/displaymanager/main.py | 365 ++++++++++++++++++++++------- 1 file changed, 276 insertions(+), 89 deletions(-) diff --git a/src/modules/displaymanager/main.py b/src/modules/displaymanager/main.py index 0418f4a89..3f7ffe0f6 100644 --- a/src/modules/displaymanager/main.py +++ b/src/modules/displaymanager/main.py @@ -6,6 +6,7 @@ # Copyright 2014-2016, Philip Müller # Copyright 2014-2015, Teo Mrnjavac # Copyright 2014, Kevin Kofler +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,7 +28,9 @@ import libcalamares import configparser -DesktopEnvironment = collections.namedtuple('DesktopEnvironment', ['executable', 'desktop_file']) +DesktopEnvironment = collections.namedtuple( + 'DesktopEnvironment', ['executable', 'desktop_file'] + ) desktop_environments = [ DesktopEnvironment('/usr/bin/startkde', 'plasma'), # KDE Plasma 5 @@ -51,35 +54,46 @@ desktop_environments = [ def find_desktop_environment(root_mount_point): - """ Checks which desktop environment is currently installed. + """ + Checks which desktop environment is currently installed. :param root_mount_point: :return: """ for desktop_environment in desktop_environments: - if os.path.exists( - "{!s}{!s}".format(root_mount_point, desktop_environment.executable)) \ - and os.path.exists("{!s}/usr/share/xsessions/{!s}.desktop".format(root_mount_point, - desktop_environment.desktop_file)): + if (os.path.exists("{!s}{!s}".format( + root_mount_point, desktop_environment.executable + ) + ) and os.path.exists( + "{!s}/usr/share/xsessions/{!s}.desktop".format( + root_mount_point, desktop_environment.desktop_file + ) + )): return desktop_environment - return None def have_dm(dm_name, root_mount_point): - """ Checks if display manager is properly installed. + """ + Checks if display manager is properly installed. :param dm_name: :param root_mount_point: :return: """ - return os.path.exists( - "{!s}/usr/bin/{!s}".format(root_mount_point, dm_name)) or os.path.exists( - "{!s}/usr/sbin/{!s}".format(root_mount_point, dm_name)) + bin_path = "{!s}/usr/bin/{!s}".format(root_mount_point, dm_name) + sbin_path = "{!s}/usr/sbin/{!s}".format(root_mount_point, dm_name) + return (os.path.exists(bin_path) + or os.path.exists(sbin_path) + ) -def set_autologin(username, displaymanagers, default_desktop_environment, root_mount_point): - """ Enables automatic login for the installed desktop managers. +def set_autologin(username, + displaymanagers, + default_desktop_environment, + root_mount_point): + """ + Enables automatic login for the installed desktop managers. :param username: :param displaymanagers: @@ -103,14 +117,23 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m for line in text: if '[daemon]' in line: if do_autologin: - line = "[daemon]\nAutomaticLogin={!s}\nAutomaticLoginEnable=True\n".format(username) + line = ( + "[daemon]\n" + "AutomaticLogin={!s}\n" + "AutomaticLoginEnable=True\n".format(username) + ) else: - line = "[daemon]\nAutomaticLoginEnable=False\n" + line = ( + "[daemon]\n" + "AutomaticLoginEnable=False\n" + ) mdm_conf.write(line) else: with open(mdm_conf_path, 'w') as mdm_conf: - mdm_conf.write('# Calamares - Configure automatic login for user\n') + mdm_conf.write( + '# Calamares - Configure automatic login for user\n' + ) mdm_conf.write('[daemon]\n') if do_autologin: @@ -131,14 +154,20 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m for line in text: if '[daemon]' in line: if do_autologin: - line = "[daemon]\nAutomaticLogin={!s}\nAutomaticLoginEnable=True\n".format(username) + line = ( + "[daemon]\n" + "AutomaticLogin={!s}\n" + "AutomaticLoginEnable=True\n".format(username) + ) else: line = "[daemon]\nAutomaticLoginEnable=False\n" gdm_conf.write(line) else: with open(gdm_conf_path, 'w') as gdm_conf: - gdm_conf.write('# Calamares - Enable automatic login for user\n') + gdm_conf.write( + '# Calamares - Enable automatic login for user\n' + ) gdm_conf.write('[daemon]\n') if do_autologin: @@ -147,19 +176,40 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m else: gdm_conf.write('AutomaticLoginEnable=False\n') - if do_autologin and os.path.exists("{!s}/var/lib/AccountsService/users".format(root_mount_point)): - os.system("echo \"[User]\" > {!s}/var/lib/AccountsService/users/{!s}".format(root_mount_point, username)) + if (do_autologin + and os.path.exists("{!s}/var/lib/AccountsService/users".format( + root_mount_point + ) + )): + os.system( + "echo \"[User]\" > " + "{!s}/var/lib/AccountsService/users/{!s}".format( + root_mount_point, + username + ) + ) if default_desktop_environment is not None: - os.system("echo \"XSession={!s}\" >> {!s}/var/lib/AccountsService/users/{!s}".format( - default_desktop_environment.desktop_file, root_mount_point, username)) + os.system( + "echo \"XSession={!s}\" >> " + "{!s}/var/lib/AccountsService/users/{!s}".format( + default_desktop_environment.desktop_file, + root_mount_point, username + ) + ) - os.system("echo \"Icon=\" >> {!s}/var/lib/AccountsService/users/{!s}".format( - root_mount_point, username)) + os.system( + "echo \"Icon=\" >> " + "{!s}/var/lib/AccountsService/users/{!s}".format( + root_mount_point, username + ) + ) if "kdm" in displaymanagers: # Systems with KDM as Desktop Manager - kdm_conf_path = os.path.join(root_mount_point, "usr/share/config/kdm/kdmrc") + kdm_conf_path = os.path.join( + root_mount_point, "usr/share/config/kdm/kdmrc" + ) text = [] if os.path.exists(kdm_conf_path): @@ -179,7 +229,10 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m kdm_conf.write(line) else: - return "Cannot write KDM configuration file", "KDM config file {!s} does not exist".format(kdm_conf_path) + return ( + "Cannot write KDM configuration file", + "KDM config file {!s} does not exist".format(kdm_conf_path) + ) if "lxdm" in displaymanagers: # Systems with LXDM as Desktop Manager @@ -200,14 +253,19 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m lxdm_conf.write(line) else: - return "Cannot write LXDM configuration file", "LXDM config file {!s} does not exist".format(lxdm_conf_path) + return ( + "Cannot write LXDM configuration file", + "LXDM config file {!s} does not exist".format(lxdm_conf_path) + ) if "lightdm" in displaymanagers: # Systems with LightDM as Desktop Manager # Ideally, we should use configparser for the ini conf file, # but we just do a simple text replacement for now, as it # worksforme(tm) - lightdm_conf_path = os.path.join(root_mount_point, "etc/lightdm/lightdm.conf") + lightdm_conf_path = os.path.join( + root_mount_point, "etc/lightdm/lightdm.conf" + ) text = [] if os.path.exists(lightdm_conf_path): @@ -224,7 +282,12 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m lightdm_conf.write(line) else: - return "Cannot write LightDM configuration file", "LightDM config file {!s} does not exist".format(lightdm_conf_path) + return ( + "Cannot write LightDM configuration file", + "LightDM config file {!s} does not exist".format( + lightdm_conf_path + ) + ) if "slim" in displaymanagers: # Systems with Slim as Desktop Manager @@ -248,7 +311,10 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m slim_conf.write(line) else: - return "Cannot write SLIM configuration file", "SLIM config file {!s} does not exist".format(slim_conf_path) + return ( + "Cannot write SLIM configuration file", + "SLIM config file {!s} does not exist".format(slim_conf_path) + ) if "sddm" in displaymanagers: # Systems with Sddm as Desktop Manager @@ -270,7 +336,11 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m sddm_config.remove_option('Autologin', 'User') if default_desktop_environment is not None: - sddm_config.set('Autologin', 'Session', default_desktop_environment.desktop_file) + sddm_config.set( + 'Autologin', + 'Session', + default_desktop_environment.desktop_file + ) with open(sddm_conf_path, 'w') as sddm_config_file: sddm_config.write(sddm_config_file, space_around_delimiters=False) @@ -279,12 +349,15 @@ def set_autologin(username, displaymanagers, default_desktop_environment, root_m def run(): - """ Configure display managers. + """ + Configure display managers. - We acquire a list of displaymanagers, either from config or (overridden) from globalstorage. - This module will try to set up (including autologin) all the displaymanagers in the list, in that specific order. - Most distros will probably only ship one displaymanager. - If a displaymanager is in the list but not installed, a debugging message is printed and the entry ignored. + We acquire a list of displaymanagers, either from config or (overridden) + from globalstorage. This module will try to set up (including autologin) + all the displaymanagers in the list, in that specific order. Most distros + will probably only ship one displaymanager. + If a displaymanager is in the list but not installed, a debugging message + is printed and the entry ignored. """ if "displaymanagers" in libcalamares.job.configuration: displaymanagers = libcalamares.job.configuration["displaymanagers"] @@ -293,18 +366,24 @@ def run(): displaymanagers = libcalamares.globalstorage.value("displayManagers") if displaymanagers is None: - return "No display managers selected for the displaymanager module.", \ - "The displaymanagers list is empty or undefined in both globalstorage and displaymanager.conf." + return ( + "No display managers selected for the displaymanager module.", + "The displaymanagers list is empty or undefined in both" + "globalstorage and displaymanager.conf." + ) username = libcalamares.globalstorage.value("autologinUser") root_mount_point = libcalamares.globalstorage.value("rootMountPoint") if "default_desktop_environment" in libcalamares.job.configuration: entry = libcalamares.job.configuration["defaultDesktopEnvironment"] - default_desktop_environment = DesktopEnvironment(entry["executable"], - entry["desktopFile"]) + default_desktop_environment = DesktopEnvironment( + entry["executable"], entry["desktopFile"] + ) else: - default_desktop_environment = find_desktop_environment(root_mount_point) + default_desktop_environment = find_desktop_environment( + root_mount_point + ) if "basicSetup" in libcalamares.job.configuration: enable_basic_setup = libcalamares.job.configuration["basicSetup"] @@ -327,27 +406,56 @@ def run(): if "lightdm" in displaymanagers: if have_dm("lightdm", root_mount_point): if enable_basic_setup: - libcalamares.utils.target_env_call(['mkdir', '-p', '/run/lightdm']) + libcalamares.utils.target_env_call( + ['mkdir', '-p', '/run/lightdm'] + ) - if libcalamares.utils.target_env_call(['getent', 'group', 'lightdm']) != 0: - libcalamares.utils.target_env_call(['groupadd', '-g', '620', 'lightdm']) + if libcalamares.utils.target_env_call( + ['getent', 'group', 'lightdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['groupadd', '-g', '620', 'lightdm'] + ) - if libcalamares.utils.target_env_call(['getent', 'passwd', 'lightdm']) != 0: - libcalamares.utils.target_env_call(['useradd', '-c', '"LightDM Display Manager"', - '-u', '620', '-g', 'lightdm', '-d', '/var/run/lightdm', - '-s', '/usr/bin/nologin', 'lightdm']) + if libcalamares.utils.target_env_call( + ['getent', 'passwd', 'lightdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['useradd', '-c', + '"LightDM Display Manager"', + '-u', '620', + '-g', 'lightdm', + '-d', '/var/run/lightdm', + '-s', '/usr/bin/nologin', + 'lightdm' + ] + ) - libcalamares.utils.target_env_call(['passwd', '-l', 'lightdm']) - libcalamares.utils.target_env_call(['chown', '-R', 'lightdm:lightdm', '/run/lightdm']) - libcalamares.utils.target_env_call(['chmod', '+r' '/etc/lightdm/lightdm.conf']) + libcalamares.utils.target_env_call('passwd', '-l', 'lightdm') + libcalamares.utils.target_env_call( + ['chown', '-R', 'lightdm:lightdm', '/run/lightdm'] + ) + libcalamares.utils.target_env_call( + ['chmod', '+r' '/etc/lightdm/lightdm.conf'] + ) if default_desktop_environment is not None: - os.system("sed -i -e \"s/^.*user-session=.*/user-session={!s}/\" {!s}/etc/lightdm/lightdm.conf".format( - default_desktop_environment.desktop_file, root_mount_point)) + os.system( + "sed -i -e \"s/^.*user-session=.*/user-session={!s}/\" " + "{!s}/etc/lightdm/lightdm.conf".format( + default_desktop_environment.desktop_file, + root_mount_point + ) + ) if default_desktop_environment.desktop_file == "deepin": - os.system("sed -i -e \"s/^.greeter-session=.*/greeter-session=lightdm-deepin-greeter/\" {!s}/etc/lightdm/lightdm.conf".format( - root_mount_point)) + os.system( + "sed -i -e \"s/^.greeter-session=.* " + "/greeter-session=lightdm-deepin-greeter/\" " + "{!s}/etc/lightdm/lightdm.conf".format( + root_mount_point + ) + ) else: libcalamares.utils.debug("lightdm selected but not installed") @@ -357,16 +465,33 @@ def run(): if "gdm" in displaymanagers: if have_dm("gdm", root_mount_point): if enable_basic_setup: - if libcalamares.utils.target_env_call(['getent', 'group', 'gdm']) != 0: - libcalamares.utils.target_env_call(['groupadd', '-g', '120', 'gdm']) + if libcalamares.utils.target_env_call( + ['getent', 'group', 'gdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['groupadd', '-g', '120', 'gdm'] + ) - if libcalamares.utils.target_env_call(['getent', 'passwd', 'gdm']) != 0: - libcalamares.utils.target_env_call(['useradd', '-c', '"Gnome Display Manager"', - '-u', '120', '-g', 'gdm', '-d', '/var/lib/gdm', - '-s', '/usr/bin/nologin', 'gdm']) + if libcalamares.utils.target_env_call( + ['getent', 'passwd', 'gdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['useradd', + '-c', '"Gnome Display Manager"', + '-u', '120', + '-g', 'gdm', + '-d', '/var/lib/gdm', + '-s', '/usr/bin/nologin', + 'gdm' + ] + ) - libcalamares.utils.target_env_call(['passwd', '-l', 'gdm']) - libcalamares.utils.target_env_call(['chown', '-R', 'gdm:gdm', '/var/lib/gdm']) + libcalamares.utils.target_env_call( + ['passwd', '-l', 'gdm'] + ) + libcalamares.utils.target_env_call( + ['chown', '-R', 'gdm:gdm', '/var/lib/gdm'] + ) else: libcalamares.utils.debug("gdm selected but not installed") displaymanagers.remove("gdm") @@ -375,21 +500,45 @@ def run(): if "mdm" in displaymanagers: if have_dm("mdm", root_mount_point): if enable_basic_setup: - if libcalamares.utils.target_env_call(['getent', 'group', 'mdm']) != 0: - libcalamares.utils.target_env_call(['groupadd', '-g', '128', 'mdm']) + if libcalamares.utils.target_env_call( + ['getent', 'group', 'mdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['groupadd', '-g', '128', 'mdm'] + ) - if libcalamares.utils.target_env_call(['getent', 'passwd', 'mdm']) != 0: - libcalamares.utils.target_env_call(['useradd', '-c', '"Linux Mint Display Manager"', - '-u', '128', '-g', 'mdm', '-d', '/var/lib/mdm', - '-s', '/usr/bin/nologin', 'mdm']) + if libcalamares.utils.target_env_call( + ['getent', 'passwd', 'mdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['useradd', + '-c', '"Linux Mint Display Manager"', + '-u', '128', + '-g', 'mdm', + '-d', '/var/lib/mdm', + '-s', '/usr/bin/nologin', + 'mdm' + ] + ) - libcalamares.utils.target_env_call(['passwd', '-l', 'mdm']) - libcalamares.utils.target_env_call(['chown', 'root:mdm', '/var/lib/mdm']) - libcalamares.utils.target_env_call(['chmod', '1770', '/var/lib/mdm']) + libcalamares.utils.target_env_call( + ['passwd', '-l', 'mdm'] + ) + libcalamares.utils.target_env_call( + ['chown', 'root:mdm', '/var/lib/mdm'] + ) + libcalamares.utils.target_env_call( + ['chmod', '1770', '/var/lib/mdm'] + ) if default_desktop_environment is not None: - os.system("sed -i \"s|default.desktop|{!s}.desktop|g\" {!s}/etc/mdm/custom.conf".format( - default_desktop_environment.desktop_file, root_mount_point)) + os.system( + "sed -i \"s|default.desktop|{!s}.desktop|g\" " + "{!s}/etc/mdm/custom.conf".format( + default_desktop_environment.desktop_file, + root_mount_point + ) + ) else: libcalamares.utils.debug("mdm selected but not installed") displaymanagers.remove("mdm") @@ -398,16 +547,31 @@ def run(): if "lxdm" in displaymanagers: if have_dm("lxdm", root_mount_point): if enable_basic_setup: - if libcalamares.utils.target_env_call(['getent', 'group', 'lxdm']) != 0: - libcalamares.utils.target_env_call(['groupadd', '--system', 'lxdm']) + if libcalamares.utils.target_env_call( + ['getent', 'group', 'lxdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['groupadd', '--system', 'lxdm'] + ) - libcalamares.utils.target_env_call(['chgrp', '-R', 'lxdm', '/var/lib/lxdm']) - libcalamares.utils.target_env_call(['chgrp', 'lxdm', '/etc/lxdm/lxdm.conf']) - libcalamares.utils.target_env_call(['chmod', '+r', '/etc/lxdm/lxdm.conf']) + libcalamares.utils.target_env_call( + ['chgrp', '-R', 'lxdm', '/var/lib/lxdm'] + ) + libcalamares.utils.target_env_call( + ['chgrp', 'lxdm', '/etc/lxdm/lxdm.conf'] + ) + libcalamares.utils.target_env_call( + ['chmod', '+r', '/etc/lxdm/lxdm.conf'] + ) if default_desktop_environment is not None: - os.system("sed -i -e \"s|^.*session=.*|session={!s}|\" {!s}/etc/lxdm/lxdm.conf".format( - default_desktop_environment.executable, root_mount_point)) + os.system( + "sed -i -e \"s|^.*session=.*|session={!s}|\" " + "{!s}/etc/lxdm/lxdm.conf".format( + default_desktop_environment.executable, + root_mount_point + ) + ) else: libcalamares.utils.debug("lxdm selected but not installed") displaymanagers.remove("lxdm") @@ -416,23 +580,46 @@ def run(): if "kdm" in displaymanagers: if have_dm("kdm", root_mount_point): if enable_basic_setup: - if libcalamares.utils.target_env_call(['getent', 'group', 'kdm']) != 0: - libcalamares.utils.target_env_call(['groupadd', '-g', '135', 'kdm']) + if libcalamares.utils.target_env_call( + ['getent', 'group', 'kdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['groupadd', '-g', '135', 'kdm'] + ) - if libcalamares.utils.target_env_call(['getent', 'passwd', 'kdm']) != 0: - libcalamares.utils.target_env_call(['useradd', '-u', '135', '-g', 'kdm', '-d', - '/var/lib/kdm', '-s', '/bin/false', '-r', '-M', 'kdm']) + if libcalamares.utils.target_env_call( + ['getent', 'passwd', 'kdm'] + ) != 0: + libcalamares.utils.target_env_call( + ['useradd', + '-u', '135', + '-g', 'kdm', + '-d', '/var/lib/kdm', + '-s', '/bin/false', + '-r', + '-M', + 'kdm' + ] + ) - libcalamares.utils.target_env_call(['chown', '-R', '135:135', 'var/lib/kdm']) + libcalamares.utils.target_env_call( + ['chown', '-R', '135:135', 'var/lib/kdm'] + ) else: libcalamares.utils.debug("kdm selected but not installed") displaymanagers.remove("kdm") if username is not None: - libcalamares.utils.debug("Setting up autologin for user {!s}.".format(username)) + libcalamares.utils.debug( + "Setting up autologin for user {!s}.".format(username) + ) else: libcalamares.utils.debug("Unsetting autologin.") libcalamares.globalstorage.insert("displayManagers", displaymanagers) - return set_autologin(username, displaymanagers, default_desktop_environment, root_mount_point) + return set_autologin( + username, displaymanagers, + default_desktop_environment, + root_mount_point + ) From b11de8b29dfefb736480b0a818699e98ee065d0a Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Wed, 7 Jun 2017 00:36:25 +0000 Subject: [PATCH 4/7] [core] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 16 +++++++--------- lang/calamares_ast.ts | 16 +++++++--------- lang/calamares_bg.ts | 16 +++++++--------- lang/calamares_ca.ts | 16 +++++++--------- lang/calamares_cs_CZ.ts | 16 +++++++--------- lang/calamares_da.ts | 16 +++++++--------- lang/calamares_de.ts | 16 +++++++--------- lang/calamares_el.ts | 16 +++++++--------- lang/calamares_en.ts | 16 +++++++--------- lang/calamares_en_GB.ts | 16 +++++++--------- lang/calamares_es.ts | 16 +++++++--------- lang/calamares_es_ES.ts | 16 +++++++--------- lang/calamares_es_MX.ts | 16 +++++++--------- lang/calamares_es_PR.ts | 16 +++++++--------- lang/calamares_et.ts | 16 +++++++--------- lang/calamares_eu.ts | 16 +++++++--------- lang/calamares_fa.ts | 16 +++++++--------- lang/calamares_fi_FI.ts | 16 +++++++--------- lang/calamares_fr.ts | 16 +++++++--------- lang/calamares_fr_CH.ts | 16 +++++++--------- lang/calamares_gl.ts | 16 +++++++--------- lang/calamares_gu.ts | 16 +++++++--------- lang/calamares_hi.ts | 16 +++++++--------- lang/calamares_hr.ts | 16 +++++++--------- lang/calamares_hu.ts | 16 +++++++--------- lang/calamares_id.ts | 16 +++++++--------- lang/calamares_is.ts | 16 +++++++--------- lang/calamares_it_IT.ts | 16 +++++++--------- lang/calamares_ja.ts | 16 +++++++--------- lang/calamares_kk.ts | 16 +++++++--------- lang/calamares_lo.ts | 16 +++++++--------- lang/calamares_lt.ts | 16 +++++++--------- lang/calamares_mr.ts | 16 +++++++--------- lang/calamares_nb.ts | 16 +++++++--------- lang/calamares_nl.ts | 16 +++++++--------- lang/calamares_pl.ts | 16 +++++++--------- lang/calamares_pl_PL.ts | 16 +++++++--------- lang/calamares_pt_BR.ts | 16 +++++++--------- lang/calamares_pt_PT.ts | 16 +++++++--------- lang/calamares_ro.ts | 16 +++++++--------- lang/calamares_ru.ts | 16 +++++++--------- lang/calamares_sk.ts | 16 +++++++--------- lang/calamares_sl.ts | 16 +++++++--------- lang/calamares_sr.ts | 16 +++++++--------- lang/calamares_sr@latin.ts | 16 +++++++--------- lang/calamares_sv.ts | 16 +++++++--------- lang/calamares_th.ts | 16 +++++++--------- lang/calamares_tr_TR.ts | 16 +++++++--------- lang/calamares_uk.ts | 16 +++++++--------- lang/calamares_ur.ts | 16 +++++++--------- lang/calamares_uz.ts | 16 +++++++--------- lang/calamares_zh_CN.ts | 16 +++++++--------- lang/calamares_zh_TW.ts | 16 +++++++--------- 53 files changed, 371 insertions(+), 477 deletions(-) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index b03844ec0..1f8f323f2 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... &غيّر... - + Set timezone to %1/%2.<br/> اضبط المنطقة الزّمنيّة إلى %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index 0938a14f5..974ad053b 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -1228,40 +1228,38 @@ L'instalador colará y perderánse toles camudancies. LocalePage - - + The system language will be set to %1. Afitaráse la llingua'l sistema a %1. - - + The numbers and dates locale will be set to %1. Los númberos y dates afitaránse a %1. - + Region: Rexón: - + Zone: Zona: + - &Change... &Cambiar... - + Set timezone to %1/%2.<br/> Afitóse'l fusu horariu a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 17e9c3578..ad13940c1 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -1229,40 +1229,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Регион: - + Zone: Зона: + - &Change... &Промени... - + Set timezone to %1/%2.<br/> Постави часовата зона на %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index fbb481c74..79238b638 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -1228,40 +1228,38 @@ L'instal·lador es tancarà i tots els canvis es perdran. LocalePage - - + The system language will be set to %1. La llengua del sistema s'establirà a %1. - - + The numbers and dates locale will be set to %1. Els números i les dates de la configuració local s'establiran a %1. - + Region: Regió: - + Zone: Zona: + - &Change... &Canvi... - + Set timezone to %1/%2.<br/> Estableix la zona horària a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index f71f8ae94..4111ed3d3 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -1228,40 +1228,38 @@ Instalační program bude ukončen a všechny změny ztraceny. LocalePage - - + The system language will be set to %1. Jazyk systému bude nastaven na 1%. - - + The numbers and dates locale will be set to %1. Čísla a data národního prostředí budou nastavena na %1. - + Region: Oblast: - + Zone: Pásmo: + - &Change... &Změnit... - + Set timezone to %1/%2.<br/> Nastavit časové pásmo na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 91f3b9c5e..7ee9aef3a 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -1228,40 +1228,38 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. LocalePage - - + The system language will be set to %1. Systemsproget vil blive sat til %1. - - + The numbers and dates locale will be set to %1. Lokalitet for tal og datoer vil blive sat til %1. - + Region: Region: - + Zone: Zone: + - &Change... &Skift... - + Set timezone to %1/%2.<br/> Sæt tidszone til %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 7b23a374f..33b14872b 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -1229,40 +1229,38 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. LocalePage - - + The system language will be set to %1. Die Systemsprache wird auf %1 gestellt. - - + The numbers and dates locale will be set to %1. Das Format für Zahlen und Datum wird auf %1 gesetzt. - + Region: Region: - + Zone: Zeitzone: + - &Change... &Ändern... - + Set timezone to %1/%2.<br/> Setze Zeitzone auf %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index 953fd6c32..145e8bc29 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. Η τοπική γλώσσα του συστήματος έχει οριστεί σε %1. - - + The numbers and dates locale will be set to %1. - + Region: Περιοχή: - + Zone: Ζώνη: + - &Change... &Αλλαγή... - + Set timezone to %1/%2.<br/> Ορισμός της ζώνης ώρας σε %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index b5ef86ce0..1e5e1ea73 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. The system language will be set to %1. - - + The numbers and dates locale will be set to %1. The numbers and dates locale will be set to %1. - + Region: Region: - + Zone: Zone: + - &Change... &Change... - + Set timezone to %1/%2.<br/> Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 861059f7c..1b8cf486a 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Region: - + Zone: Zone: + - &Change... &Change... - + Set timezone to %1/%2.<br/> Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 652328db7..9302d44d3 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -1229,40 +1229,38 @@ Saldrá del instalador y se perderán todos los cambios. LocalePage - - + The system language will be set to %1. El idioma del sistema se establecerá a %1. - - + The numbers and dates locale will be set to %1. La localización de números y fechas se establecerá a %1. - + Region: Región: - + Zone: Zona: + - &Change... &Cambiar... - + Set timezone to %1/%2.<br/> Configurar zona horaria a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index 8af5432e8..2bfd52582 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -1228,40 +1228,38 @@ El instalador se cerrará y se perderán todos los cambios. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Región: - + Zone: Zona: + - &Change... &Cambiar - + Set timezone to %1/%2.<br/> Establecer la zona horaria a %1%2. <br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index c91f0905a..1f35fb235 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -1231,40 +1231,38 @@ El instalador terminará y se perderán todos los cambios. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Región: - + Zone: Zona: + - &Change... &Cambiar... - + Set timezone to %1/%2.<br/> Definir la zona horaria como %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index 35ded3185..6aaf0a710 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -1227,40 +1227,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index 2ee4acb58..159c76be9 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index c9dd30dba..52adb86f0 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -1225,40 +1225,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Eskualdea: - + Zone: Zonaldea: + - &Change... &Aldatu... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index d1cf4ef6c..59ffe1fed 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index 4b300264c..113c7c45b 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -1228,40 +1228,38 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Alue: - + Zone: Vyöhyke: + - &Change... &Vaihda... - + Set timezone to %1/%2.<br/> Aseta aikavyöhyke %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 61a253f7f..d447a1f66 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -1228,40 +1228,38 @@ L'installateur se fermera et les changements seront perdus. LocalePage - - + The system language will be set to %1. La langue du système sera réglée sur %1. - - + The numbers and dates locale will be set to %1. Les nombres et les dates seront réglés sur %1. - + Region: Région : - + Zone: Zone : + - &Change... &Modifier... - + Set timezone to %1/%2.<br/> Configurer le fuseau horaire à %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 0af70e270..955735f9a 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index d0a9cd7fa..d7ebc4d94 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -1229,40 +1229,38 @@ O instalador pecharase e perderanse todos os cambios. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index ffc493b83..1377b5f32 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index c6b60311d..fa0e4bdbe 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 75056c67e..ab1d450a5 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -1228,40 +1228,38 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. LocalePage - - + The system language will be set to %1. Jezik sustava će se postaviti na %1. - - + The numbers and dates locale will be set to %1. Jezična shema brojeva i datuma će se postaviti na %1. - + Region: Regija: - + Zone: Zona: + - &Change... &Promijeni... - + Set timezone to %1/%2.<br/> Postavi vremesku zonu na %1%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index d5d3c2ea7..68877f4e6 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -1229,40 +1229,38 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l LocalePage - - + The system language will be set to %1. A rendszer területi beállítása %1. - - + The numbers and dates locale will be set to %1. A számok és dátumok területi beállítása %1. - + Region: Régió: - + Zone: Zóna: + - &Change... &Változtat... - + Set timezone to %1/%2.<br/> Időzóna beállítása %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index b97dd0cc1..910ef1b7c 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -1230,40 +1230,38 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. LocalePage - - + The system language will be set to %1. Bahasa sistem akan disetel ke %1. - - + The numbers and dates locale will be set to %1. Nomor dan tanggal lokal akan disetel ke %1. - + Region: Wilayah: - + Zone: Zona: + - &Change... &Ubah... - + Set timezone to %1/%2.<br/> Setel zona waktu ke %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index 81ad42f78..e22817297 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -1228,40 +1228,38 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. LocalePage - - + The system language will be set to %1. Tungumál kerfisins verður sett sem %1. - - + The numbers and dates locale will be set to %1. - + Region: Hérað: - + Zone: Svæði: + - &Change... &Breyta... - + Set timezone to %1/%2.<br/> Setja tímabelti sem %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index f4e4cfc19..abb09b377 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -1228,40 +1228,38 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno LocalePage - - + The system language will be set to %1. La lingua di sistema sarà impostata a %1. - - + The numbers and dates locale will be set to %1. I numeri e le date locali saranno impostati a %1. - + Region: Area: - + Zone: Zona: + - &Change... &Cambia... - + Set timezone to %1/%2.<br/> Imposta il fuso orario a %1%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 796a73ec2..9b908f07e 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. システムの言語が %1 に設定されます。 - - + The numbers and dates locale will be set to %1. 数字と日付のロケールが %1 に設定されます。 - + Region: 地域: - + Zone: ゾーン: + - &Change... 変更(&C)... - + Set timezone to %1/%2.<br/> タイムゾーンを %1/%2 に設定。<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index ec596ddff..d073df2de 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index 42f9ebe2e..f6a70a719 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index ea67af8d2..52aadc0d2 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -1228,40 +1228,38 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. LocalePage - - + The system language will be set to %1. Sistemos kalba bus nustatyta į %1. - - + The numbers and dates locale will be set to %1. Skaičių ir datų lokalė bus nustatyta į %1. - + Region: Regionas: - + Zone: Zona: + - &Change... K&eisti... - + Set timezone to %1/%2.<br/> Nustatyti laiko juostą kaip %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index bfeb74d81..d7daa889a 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index cefaedada..9cc960361 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -1228,40 +1228,38 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index f9d868670..5d9667ccd 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -1228,40 +1228,38 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. LocalePage - - + The system language will be set to %1. De taal van het systeem zal worden ingesteld op %1. - - + The numbers and dates locale will be set to %1. De getal- en datumnotatie worden ingesteld op %1. - + Region: Regio: - + Zone: Zone: + - &Change... &Aanpassen - + Set timezone to %1/%2.<br/> Instellen tijdzone naar %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 3f689ffa9..340bb9b4c 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -1228,40 +1228,38 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. LocalePage - - + The system language will be set to %1. Język systemu zostanie ustawiony na %1. - - + The numbers and dates locale will be set to %1. Format liczb i daty zostanie ustawiony na %1. - + Region: Region: - + Zone: Strefa: + - &Change... &Zmień... - + Set timezone to %1/%2.<br/> Ustaw strefę czasową na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index da3295161..bb51bf34f 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -1228,40 +1228,38 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Region: - + Zone: Strefa: + - &Change... - + Set timezone to %1/%2.<br/> Strefa czasowa %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index cda03d131..5dd4250f2 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -1230,40 +1230,38 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. LocalePage - - + The system language will be set to %1. O idioma do sistema será definido como %1. - - + The numbers and dates locale will be set to %1. O local dos números e datas será definido como %1. - + Region: Região: - + Zone: Área: + - &Change... &Mudar... - + Set timezone to %1/%2.<br/> Definir o fuso horário para %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index cd6e31aa6..cde467ebc 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -1228,40 +1228,38 @@ O instalador será encerrado e todas as alterações serão perdidas. LocalePage - - + The system language will be set to %1. A linguagem do sistema será definida para %1. - - + The numbers and dates locale will be set to %1. Os números e datas locais serão definidos para %1. - + Region: Região: - + Zone: Zona: + - &Change... &Alterar... - + Set timezone to %1/%2.<br/> Definir fuso horário para %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index 84eef4f81..edfd937bb 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -1228,40 +1228,38 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. LocalePage - - + The system language will be set to %1. Limba sistemului va fi %1. - - + The numbers and dates locale will be set to %1. Formatul numerelor și datelor calendaristice va fi %1. - + Region: Regiune: - + Zone: Zonă: + - &Change... S&chimbă - + Set timezone to %1/%2.<br/> Setează fusul orar la %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index bff0c6c8b..04e0d3053 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -1227,40 +1227,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. Системным языком будет установлен %1. - - + The numbers and dates locale will be set to %1. Региональным форматом чисел и дат будет установлен %1. - + Region: Регион: - + Zone: Зона: + - &Change... И&зменить... - + Set timezone to %1/%2.<br/> Установить часовой пояс на %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 410486aad..84caeb37d 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -1228,40 +1228,38 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. LocalePage - - + The system language will be set to %1. Jazyk systému bude nastavený na %1. - - + The numbers and dates locale will be set to %1. Miestne nastavenie čísel a dátumov bude nastavené na %1. - + Region: Oblasť: - + Zone: Zóna: + - &Change... Z&meniť... - + Set timezone to %1/%2.<br/> Nastavenie časovej zóny na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 9a1998a57..dc40aab3c 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -1228,40 +1228,38 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Območje: - + Zone: Časovni pas: + - &Change... - + Set timezone to %1/%2.<br/> Nastavi časovni pas na %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index b0a0e7fda..009db289d 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. Системски језик биће постављен на %1 - - + The numbers and dates locale will be set to %1. - + Region: Регион: - + Zone: Зона: + - &Change... &Измени... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index 12b3c1aa0..ba32943a6 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -1228,40 +1228,38 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Regija: - + Zone: Zona: + - &Change... - + Set timezone to %1/%2.<br/> Postavi vremensku zonu na %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index dfe6d67f9..f843b9ec3 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -1228,40 +1228,38 @@ Alla ändringar kommer att gå förlorade. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: Region: - + Zone: Zon: + - &Change... Ändra... - + Set timezone to %1/%2.<br/> Sätt tidszon till %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index ab41be99e..c41639ff8 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: ภูมิภาค: - + Zone: โซน: + - &Change... &C เปลี่ยนแปลง... - + Set timezone to %1/%2.<br/> ตั้งโซนเวลาเป็น %1/%2<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index 056883dfb..02bb0b39e 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -1231,40 +1231,38 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. LocalePage - - + The system language will be set to %1. Sistem dili %1 olarak ayarlanacak. - - + The numbers and dates locale will be set to %1. Sayılar ve günler için sistem yereli %1 olarak ayarlanacak. - + Region: Bölge: - + Zone: Şehir: + - &Change... &Değiştir... - + Set timezone to %1/%2.<br/> Bölge ve zaman dilimi %1/%2 olarak ayarlandı.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index 298902c66..48a95abf1 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index 415d266a8..63345ec32 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 488b1eaba..216b6bb34 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -1221,40 +1221,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. - - + The numbers and dates locale will be set to %1. - + Region: - + Zone: + - &Change... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index ecc823d07..94ac6b044 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -1230,40 +1230,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. 系统语言将设置为 %1。 - - + The numbers and dates locale will be set to %1. 数字和日期地域将设置为 %1。 - + Region: 地区: - + Zone: 区域: + - &Change... 更改 (&C) ... - + Set timezone to %1/%2.<br/> 设置时区为 %1/%2。<br/> - + %1 (%2) Language (Country) %1(%2) diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index 27b95cadf..52d2dbb36 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -1228,40 +1228,38 @@ The installer will quit and all changes will be lost. LocalePage - - + The system language will be set to %1. 系統語言將會設定為 %1。 - - + The numbers and dates locale will be set to %1. 數字與日期語系將會被設定為 %1。 - + Region: 地區 - + Zone: 時區 + - &Change... 變更...(&C) - + Set timezone to %1/%2.<br/> 設定時區為 %1/%2 。<br/> - + %1 (%2) Language (Country) %1 (%2) From 2e5aed22ddeb1eb4a88ae8c95271913dfa42aa09 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Wed, 7 Jun 2017 00:36:26 +0000 Subject: [PATCH 5/7] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 599 -> 599 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index bd79840451192e5862a3b782b6f8cb31819f1b8e..b5771e48f612bad18870865753ab7361bbd9a434 100644 GIT binary patch delta 16 XcmeBR>0p^q&1z(1Wn{9kp@R_sDHsIj delta 16 XcmeBR>0p^q&1zt1Wn{dup@R_sDES2A diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 8d8db6c59..215e9eaa5 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 9912bc17b..0b180cff9 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 78b778443d0d0b917dccefe40eebb29b6c382d16..2285dc658f6b36f8f29aa71ea672491063642298 100644 GIT binary patch delta 16 XcmdnNyn}f{HLH=4m66HD1`9?2E&K%a delta 16 XcmdnNyn}f{HLHQ4m67qr1`9?2E!_n1 diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 4edfeb2ec..a6188e9fd 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index a4bc764a4..941bcf511 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 4ec9bafee..689333637 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index ceb827c86..9604b8851 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 84e7a5fd8..9ffa2a56e 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 7d32f305f..0324988aa 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-05-29 01:01+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index ea757809d39c9e4149c173c352035ddd3f5848d9..3f8d8d30a4a5beae44f89c96bdf0caaae0bf9837 100644 GIT binary patch delta 16 XcmdnOyoGr}HLH=4m66HD1`|dAEqny& delta 16 XcmdnOyoGr}HLHQ4m67qr1`|dAEnNiV diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 1506514ee..fa9ea2b03 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 89a4fba8d0630345908936cf9b7b8a9369310e23..20216216a1ec70f48fe9700b4dcae1489c503db4 100644 GIT binary patch delta 16 XcmX@he3p4aHLH=4m66HD246-1Fq{Q6 delta 16 XcmX@he3p4aHLHQ4m67qr246-1Fnt9u diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index cf5457bd6..90195d458 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 13cd8aa18..25bc8e620 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 4e403f7a89d2e6f09357683f811350e3b4825767..42c5673aec7d24ec6a6873df2392c42fb15b87f7 100644 GIT binary patch delta 16 XcmX@Ye1v&IHLH=4m66HD1{X#EFMI_V delta 16 XcmX@Ye1v&IHLHQ4m67qr1{X#EFI@!{ diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index 7c1d0e0f4..96d39cf49 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index 2a26dbd5afd72f7c3cabcce0f25a6c2536b68351..3be7585fd9c840bd8ac6bfaf6fe3099176eea747 100644 GIT binary patch delta 16 XcmX@ge3W@YHLH=4m66HD23JM^FPsG& delta 16 XcmX@ge3W@YHLHQ4m67qr23JM^FMS0V diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index 30b588cb7..fa279a3cc 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index aac12340c2ed5e14bde3e56f5910cc2f2ac5b781..477ad8061105a5c49a23149cf23e2682d6427677 100644 GIT binary patch delta 16 XcmX@be2RHOHLH=4m66HD1}{bcFgyh- delta 16 XcmX@be2RHOHLHQ4m67qr1}{bcFdYRa diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index fa3c00545..9d479070e 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index 6984a4cb23ac977f2741b87241ee87f383d149a4..20bb413e966b0246ed82921bdc8d8c425112c43e 100644 GIT binary patch delta 16 Xcmdnayq$SMHLH=4m66HD26ILLE!+h1 delta 16 Xcmdnayq$SMHLHQ4m67qr26ILLExiQp diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index 0cd621647..6d379e29c 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index 3fa020b90153e68012194db0f5d1512fac219f3a..b22d88e15ab87d9846d4f7565f517b42c290da7a 100644 GIT binary patch delta 16 XcmdnWyp?%EHLH=4m66HD22(}=Et~}G delta 16 XcmdnWyp?%EHLHQ4m67qr22(}=Eqw&& diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 2ed4fed6f..5c7853985 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index fc3d528becc5491920f079a2d6414c6b6c4e6975..1e2c464543e315bd22fc53911aeedcf5de629e87 100644 GIT binary patch delta 16 XcmZ3_yq, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index ffa75db53..df79d97ef 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index af5dc5df9a147558f79a862a6f550e5cd198640b..231922f3014e7887155d82f954d44e44a07eb76b 100644 GIT binary patch delta 18 ZcmZo*Z(!e0#mH)8WMyQsxt@`c2>>sp1bF}e delta 18 ZcmZo*Z(!e0#mH)4Xk}!)xt@`c2>>sG1a$xa diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index bc418ae4a..e9e793e98 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 4809b0f22..35dd40d5b 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index 441decdd3..ac331f4f3 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index f3e7d4ca9..c96b4d473 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index 0e2557b552ec2254fcf2001683f874e5dd274c8e..1a171b4308206e5c02720c18d31d0e7d887bf0fa 100644 GIT binary patch delta 16 XcmZ3-ypDN7HLH=4m66HD20caqEW8BQ delta 16 XcmZ3-ypDN7HLHQ4m67qr20caqES&_? diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index 5f582dccd..dce38b732 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index bcd6db6eeadefa72be44d4c01cfc85f6cffb7269..20be782e5252f325703a65950695a50067ea4aff 100644 GIT binary patch delta 16 XcmZ3@yqbAJHLH=4m66HD25m+FEL;T6 delta 16 XcmZ3@yqbAJHLHQ4m67qr25m+FEIkCu diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 1faeb5fc7..fbecc0188 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index e491de152..62529cae5 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 349245871ad9da45bd372bad8f192089df04780c..74bb09311381c3c95d2efc0a9628b730de476f6a 100644 GIT binary patch delta 16 XcmdnSyp4H6HLH=4m66HD1~WzgExZKp delta 16 XcmdnSyp4H6HLHQ4m67qr1~WzgEu94G diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 43833505b..39d634da3 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 401cb5c6eea9da240bee895568232ff9c010753c..0b03d7251fc8a4762a4c67c8db6c0a96efbd97c8 100644 GIT binary patch delta 16 XcmX@We1LgEHLH=4m66HD1_wp}F8l=z delta 16 XcmX@We1LgEHLHQ4m67qr1_wp}F5LwQ diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index c47d0930c..30a017edd 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 9eef64cdc050e2156f2ad8c4aadeed4b2a1d32a0..77e637bb51e13e7591b37131983c04006db61f0e 100644 GIT binary patch delta 18 ZcmeBS?_u9i#mH)8WMyQsxt@`i2>>xw1f2i? delta 18 ZcmeBS?_u9i#mH)4Xk}!)xt@`i2>>xN1epK; diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index 8d33501b6..a492335db 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index f6508eea7..0b180a41a 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 66c7d59aa278ccb144f34c96e2050590a604da8c..c8ca312c679363c9bddfc702cebfaa5fb468d93d 100644 GIT binary patch delta 16 Xcmcc4a-C&DHLH=4m66HDhU<&~GWZ45 delta 16 Xcmcc4a-C&DHLHQ4m67qrhU<&~GT8;t diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 0af93dc34..20821982e 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index e19a4a678..80456eee7 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index f0ab58935..24d87dd3d 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index 7cdbfe3abc4bdb68fc44f3fdc402804b4c3b8b48..ee3167fbfb9078c314cb532892b7486e4dd30e65 100644 GIT binary patch delta 18 ZcmdnRzKeZB6(g&Wk(H6j=6XhJCIC0h1t$Oi delta 18 ZcmdnRzKeZB6(g&Gp_P&G=6XhJCIC081tS0e diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 0adac8266..da7761cb9 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 9a132e06e..03813c826 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 1e5a162e8..e9e8a4cf7 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 0feca19c56bcb0b05dce20c71f3fa9a0d6294730..0101b0cb4a34735ad4593e3f7e5be6f95bb5ba6a 100644 GIT binary patch delta 16 XcmaFE{Dyf#HLH=4m66HDh8#u!G<*e- delta 16 XcmaFE{Dyf#HLHQ4m67qrh8#u!G+hOa diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index fc6c013a8..802786ea1 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index 6b0f16b74..086797ab8 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index 590f5bc09d858d452fcd7c9ed2090adb88500ee3..ccec0faff6e63054d4bba9c7a34c4e9d357afa74 100644 GIT binary patch delta 16 XcmbQjGKFPAHLH=4m66HDhAE5yDwqWe delta 16 XcmbQjGKFPAHLHQ4m67qrhAE5yDtQG5 diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index 4b744edb7..4312a7676 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index dc4074ff5b920f9bfda776d14297f967ef7a2dd5..9a3af521115f99412330de041e15f0e86ca382ff 100644 GIT binary patch delta 16 XcmdnSyp4H6HLH=4m66HD1~WzgExZKp delta 16 XcmdnSyp4H6HLHQ4m67qr1~WzgEu94G diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 8980c47e3..a9e6cc095 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index ea632a79e01c0ebe754e2f1e5dfd3f293501a129..66d07f361b07b81debebe5bb7c065c7309a6cf64 100644 GIT binary patch delta 16 XcmZ3(yoPx~HLH=4m66HD1|3EKEPMpf delta 16 XcmZ3(yoPx~HLHQ4m67qr1|3EKEL{Z6 diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index b9318b1d2..37ea33f69 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index 5b5afd6dc..1bc7b2dd2 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 0c4a55a62cc710eec56b6ead51282df7531699bd..ea085b83bf645c05f9208f9ff31495bc6703b59f 100644 GIT binary patch delta 16 XcmZo-X=0gB&1z(1Wn{9kp@|UyC|Cs5 delta 16 XcmZo-X=0gB&1zt1Wn{dup@|UyC^-bt diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index febf0a467..ecf09f431 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 0596c4daca510e0f5727bf882b63b7dcd2c5101f..69c529ae9d90eb313b7d8fbe44ed64cac2f69667 100644 GIT binary patch delta 16 XcmdnYyqS4IHLH=4m66HD24hA5EnEcV delta 16 XcmdnYyqS4IHLHQ4m67qr24hA5Ejyq0-FHLH=4m66HD23yq0-FHLHQ4m67qr23, 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 3d142f56e..4a182e045 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 01:23+0000\n" +"POT-Creation-Date: 2017-06-06 22:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From df8067d767525573a4a0100b20828b5de9571dbc Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Wed, 7 Jun 2017 02:48:51 +0000 Subject: [PATCH 6/7] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 599 -> 599 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index b5771e48f612bad18870865753ab7361bbd9a434..46dea2a6398062ab9336e729c6ec9c1931c1c62d 100644 GIT binary patch delta 18 ZcmeBR>0p^q$!@M-U}$AvxUr#w5dbjI1vUTx delta 18 ZcmeBR>0p^q$!?}#WMpMzvaz9q5dbjy1w8-& diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 215e9eaa5..9a705dd8b 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 0b180cff9..1fd65108b 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 2285dc658f6b36f8f29aa71ea672491063642298..7c4c41f21e5bdf4879a23a08bc95eee107af16bd 100644 GIT binary patch delta 18 ZcmdnNyn}f{CA+zTfuWUw;l>6FMgTT&1w;S< delta 18 ZcmdnNyn}f{CA*n|k&%^=$;Ji?MgTUN1xo+` diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index a6188e9fd..9239b247b 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 941bcf511..c71aed372 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 689333637..62925041f 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index 9604b8851..a312b4143 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 9ffa2a56e..63efe3401 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 0324988aa..801b1dcca 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 3f8d8d30a4a5beae44f89c96bdf0caaae0bf9837..cb02af99ad3060f93c1a3f0c3e163686d32a6031 100644 GIT binary patch delta 18 ZcmdnOyoGr}CA+zTfuWUw;l>6NMgTS71vmfz delta 18 ZcmdnOyoGr}CA*n|k&%^=$;Ji~MgTSn1wQ}) diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index fa9ea2b03..c11ead0aa 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 20216216a1ec70f48fe9700b4dcae1489c503db4..a03348e9eca35099684f1a58383151634c4502a5 100644 GIT binary patch delta 18 ZcmX@he3p4aCA+zTfuWUw;l>7EMgTcv1%m(p delta 18 ZcmX@he3p4aCA*n|k&%^=$;Jj>MgTdE1&ROw diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index 90195d458..cab32b772 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 25bc8e620..a53aee705 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 42c5673aec7d24ec6a6873df2392c42fb15b87f7..dd547e79238aaf1929252dba72094ed88f5bb06f 100644 GIT binary patch delta 18 ZcmX@Ye1v&ICA+zTfuWUw;l>6RMgTY<1!w>O delta 18 ZcmX@Ye1v&ICA*n|k&%^=$;Jj3MgTZU1#bWV diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index 96d39cf49..2869f0a0d 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index 3be7585fd9c840bd8ac6bfaf6fe3099176eea747..9f6fbe8cb038f3401c5bb4f6b7105d6bec014faa 100644 GIT binary patch delta 18 ZcmX@ge3W@YCA+zTfuWUw;l>76MgTZO1#18R delta 18 ZcmX@ge3W@YCA*n|k&%^=$;Jj(MgTZ&1#$oY diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index fa279a3cc..fff85e06e 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index 477ad8061105a5c49a23149cf23e2682d6427677..33d279431015acf7acfb62013d27a7dc7b8e39db 100644 GIT binary patch delta 18 ZcmX@be2RHOCA+zTfuWUw;l>6pMgTbY1$qDg delta 18 ZcmX@be2RHOCA*n|k&%^=$;JjRMgTb?1%Utn diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index 9d479070e..f686631b1 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index 20bb413e966b0246ed82921bdc8d8c425112c43e..cc2e6af53275f7f01c8f67ece94359c59826e454 100644 GIT binary patch delta 18 Zcmdnayq$SMCA+zTfuWUw;l>7YMgTTU1wjA+ delta 18 Zcmdnayq$SMCA*n|k&%^=$;JkAMgTT;1xNq@ diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index 6d379e29c..f204dd288 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index b22d88e15ab87d9846d4f7565f517b42c290da7a..dabe5ab5bb6f463127df7fed33084b9ff534ef4e 100644 GIT binary patch delta 18 ZcmdnWyp?%ECA+zTfuWUw;l>72MgTSh1v>x$ delta 18 ZcmdnWyp?%ECA*n|k&%^=$;Jj#MgTT01wsG- diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 5c7853985..6241c27fa 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index 1e2c464543e315bd22fc53911aeedcf5de629e87..6fcca2b10c9b9ce571ee77057e466883a6e286e1 100644 GIT binary patch delta 18 ZcmZ3_yq7iMgTP|1t|ak delta 18 ZcmZ3_yq6xMgTZy1#SQU delta 18 ZcmX@ce2jTQCA*n|k&%^=$;JjZMgTaH1$6)b diff --git a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po index 86a67e461..004082146 100644 --- a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo index 6a48cf78a1b05002badccf17ac665cf796735471..ef02a633c1e0aa0fddaf79762f5e50f123d3cdde 100644 GIT binary patch delta 18 ZcmdnOyoGr}CA+zTfuWUw;l>6NMgTS71vmfz delta 18 ZcmdnOyoGr}CA*n|k&%^=$;Ji~MgTSn1wQ}) diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po index f176d1438..c9551b02f 100644 --- a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo index 70eff303d99db78154e832ced4effcf0bb239a8d..540fad299065236937049b8f24a94cc909bda857 100644 GIT binary patch delta 18 ZcmX@Xe1dsGCA+zTfuWUw;l>6JMgTal1#|!a delta 18 ZcmX@Xe1dsGCA*n|k&%^=$;Ji`MgTb41$zJh diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po index ea49aa59f..8c37697c0 100644 --- a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo index 1ac2b1db777ee2550e1636dee611905f3d3239fa..6b34d3d6c099f0c6b7714f5767c897f314b63edd 100644 GIT binary patch delta 18 Zcmdnayq$SMCA+zTfuWUw;l>7YMgTTU1wjA+ delta 18 Zcmdnayq$SMCA*n|k&%^=$;JkAMgTT;1xNq@ diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po index d0f5455f2..b34235471 100644 --- a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo index 2da5fada129d611c40450941284da9c8eb7efdfa..fda2618e41ffcd0f5a38b0330ae33f5a521dabd5 100644 GIT binary patch delta 18 Zcmdnayq$SMCA+zTfuWUw;l>7YMgTTU1wjA+ delta 18 Zcmdnayq$SMCA*n|k&%^=$;JkAMgTT;1xNq@ diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po index a21abddbd..db156af4e 100644 --- a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index 9048c2588b1f1743e5e0adb16c9f36272ce200a1..cd32a6e24f4a5256f381e3fd0ace8ff4c93c22fe 100644 GIT binary patch delta 18 ZcmdnOyoGr}CA+zTfuWUw;l>6NMgTS71vmfz delta 18 ZcmdnOyoGr}CA*n|k&%^=$;Ji~MgTSn1wQ}) diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po index 996006017..e7590dd7f 100644 --- a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po index 13e3a5679..78140b3fa 100644 --- a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lovro Kudelić , 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index df79d97ef..eba74a555 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 231922f3014e7887155d82f954d44e44a07eb76b..4f2cb2c65342abcc2e94636768ca57c793408de0 100644 GIT binary patch delta 20 bcmZo*Z(!e0!N_i|U|?uvV7R%Sk&y`iH`WBm delta 20 bcmZo*Z(!e0!N_i=U}R)vWU{%Qk&y`iI0ppJ diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index e9e793e98..b5e544468 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 35dd40d5b..6cb621d8b 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index ac331f4f3..ff356e035 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index c96b4d473..79f40e504 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index 1a171b4308206e5c02720c18d31d0e7d887bf0fa..500d4bd84caddef7007030a0337777dc9594b634 100644 GIT binary patch delta 18 ZcmZ3-ypDN7CA+zTfuWUw;l>6%MgTPk1ttIh delta 18 ZcmZ3-ypDN7CA*n|k&%^=$;JjfMgTQ31uXyo diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index dce38b732..6f56e679c 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 20be782e5252f325703a65950695a50067ea4aff..919ec5d2e5568b2f05209850cdc5c5d6e2768327 100644 GIT binary patch delta 18 ZcmZ3@yqbAJCA+zTfuWUw;l>7SMgTON1swnY delta 18 ZcmZ3@yqbAJCA*n|k&%^=$;Jk4MgTO%1tb6f diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index fbecc0188..d1872258d 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index 62529cae5..da0638c91 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 74bb09311381c3c95d2efc0a9628b730de476f6a..982397ab62c2209d1fe7d8920ac4de9a0a82db4c 100644 GIT binary patch delta 18 ZcmdnSyp4H6CA+zTfuWUw;l>6tMgTS_1wH@( delta 18 ZcmdnSyp4H6CA*n|k&%^=$;JjVMgTTa1w{Y= diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 39d634da3..15acfe815 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 0b03d7251fc8a4762a4c67c8db6c0a96efbd97c8..a823e543fa4115d993dd45c762e02ed6a9b68fd5 100644 GIT binary patch delta 18 ZcmX@We1LgECA+zTfuWUw;l>6BMgTXE1zZ3C delta 18 ZcmX@We1LgECA*n|k&%^=$;Ji;MgTXu1!DjJ diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index 30a017edd..35d818e7f 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 77e637bb51e13e7591b37131983c04006db61f0e..552dc9093df983babccabf0fe845577e6e7a6f51 100644 GIT binary patch delta 20 bcmeBS?_u9i!N_i|U|?uvV7R%Sk(UVoIkp7s delta 20 bcmeBS?_u9i!N_i=U}R)vWU{%Qk(UVoIp+lP diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index a492335db..65f5b2383 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index 0b180a41a..dc4b8b3ae 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index c8ca312c679363c9bddfc702cebfaa5fb468d93d..cd09dc7581a4085b5d906cc4773b9f8f31f23ff3 100644 GIT binary patch delta 18 Zcmcc4a-C&DCA+zTfuWUw;l_sRi~u|A1|t9f delta 18 Zcmcc4a-C&DCA*n|k&%^=$;O83i~u|q1}Xpm diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 20821982e..5fe02ba9f 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 80456eee7..84d5dad01 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 24d87dd3d..950646043 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index ee3167fbfb9078c314cb532892b7486e4dd30e65..a08e64acc91785021d9d26067d916c8f93b765f7 100644 GIT binary patch delta 20 bcmdnRzKeZB1tYt;f`Orxf#K$QMr$SjK;{K@ delta 20 bcmdnRzKeZB1tYtef{~Gxk;&$IMr$SjK^Fym diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index da7761cb9..52ba86c07 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 03813c826..360398bf1 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index e9e8a4cf7..2a8cccfbf 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 0101b0cb4a34735ad4593e3f7e5be6f95bb5ba6a..318d804745e2d8d8a7b36444161af3b77a81b1e5 100644 GIT binary patch delta 18 ZcmaFE{Dyf#CA+zTfuWUw;l_p>MgTp)1>gVx delta 18 ZcmaFE{Dyf#CA*n|k&%^=$;O5pMgTqP1?K<& diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index 802786ea1..8b7583f1a 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index 086797ab8..3e45a4f2c 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index ccec0faff6e63054d4bba9c7a34c4e9d357afa74..19959fa3b911a7120e7a9dd6dd67a9783042bef5 100644 GIT binary patch delta 18 ZcmbQjGKFPACA+zTfuWUw;l_q3i~ur#1zG?A delta 18 ZcmbQjGKFPACA*n|k&%^=$;O5$i~usK1z`XH diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index 4312a7676..aba513e46 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 9a3af521115f99412330de041e15f0e86ca382ff..415a48df68dcc1ca56a67f8ddec67c9bc2ca8295 100644 GIT binary patch delta 18 ZcmdnSyp4H6CA+zTfuWUw;l>6tMgTS_1wH@( delta 18 ZcmdnSyp4H6CA*n|k&%^=$;JjVMgTTa1w{Y= diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index a9e6cc095..e6453b27b 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 66d07f361b07b81debebe5bb7c065c7309a6cf64..9e78fac7a0f1cf4d623ac5fead842ea42a0cfea2 100644 GIT binary patch delta 18 ZcmZ3(yoPx~CA+zTfuWUw;l>6XMgTOx1t0(b delta 18 ZcmZ3(yoPx~CA*n|k&%^=$;Jj9MgTPG1t$Oi diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index 37ea33f69..0e912679f 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index 1bc7b2dd2..4b8d1f3e2 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index ea085b83bf645c05f9208f9ff31495bc6703b59f..0cd8dca261c3c5aaeca80e57f67377d80fcf17fa 100644 GIT binary patch delta 18 ZcmZo-X=0gB$!@M-U}$AvxUr#$5dbgv1tb6f delta 18 ZcmZo-X=0gB$!?}#WMpMzvaz9w5dbhE1uFmm diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index ecf09f431..769ed7a15 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 69c529ae9d90eb313b7d8fbe44ed64cac2f69667..48ec5f02bef0d844786c0b3aeb8be8183d25783f 100644 GIT binary patch delta 18 ZcmdnYyqS4ICA+zTfuWUw;l>7IMgTRu1vLNw delta 18 ZcmdnYyqS4ICA*n|k&%^=$;Jj_MgTSD1v~%% diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index 97eff3670..b908e7f85 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 65bb943bcce9822495a9930a3b70404fcf7be3a8..3f8f559eb99f5a88bd59acdff6329a134b2afb18 100644 GIT binary patch delta 18 ZcmZ3>yq0-FCA+zTfuWUw;l>7CMgTPA1tS0e delta 18 ZcmZ3>yq0-FCA*n|k&%^=$;Jj, 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 4a182e045..be83bc1a7 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-06 22:24+0000\n" +"POT-Creation-Date: 2017-06-07 01:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From b6715098e1c4131e324896b62cafcbf47bdef5d6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 7 Jun 2017 03:03:29 -0400 Subject: [PATCH 7/7] Manual: move to section 8, minor polishing --- CMakeLists.txt | 7 +++++++ man/{calamares.1 => calamares.8} | 16 ++++++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) rename man/{calamares.1 => calamares.8} (57%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 128e9e3c1..ed0c5aab7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -256,6 +256,13 @@ install( ${CMAKE_INSTALL_DATADIR}/applications ) +install( + FILES + man/calamares.8 + DESTINATION + ${CMAKE_INSTALL_MANDIR}/man8/ +) + # uninstall target configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" diff --git a/man/calamares.1 b/man/calamares.8 similarity index 57% rename from man/calamares.1 rename to man/calamares.8 index 87ade04e3..028e616d1 100644 --- a/man/calamares.1 +++ b/man/calamares.8 @@ -1,4 +1,4 @@ -.TH CALAMARES "1" +.TH CALAMARES "8" .SH NAME calamares \- distribution-independent system installer .SH SYNOPSIS @@ -6,7 +6,13 @@ calamares \- distribution-independent system installer [\fI\,options\/\fR] .SH DESCRIPTION .B calamares -is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations. It is the first installer with an automated “Replace Partition” option, which makes it easy to reuse a partition over and over for distribution testing. Calamares is designed to be customizable by distribution maintainers without need for cumbersome patching, thanks to third party branding and external modules support. +is a distribution-independent system installer, with an advanced partitioning +feature for both manual and automated partitioning operations. It is the +first installer with an automated “Replace Partition” option, which makes it +easy to reuse a partition over and over for distribution testing. Calamares is +designed to be customizable by distribution maintainers without need for +cumbersome patching, thanks to third party branding and external modules +support. .SH OPTIONS .TP \fB\-h\fR, \fB\-\-help\fR @@ -25,9 +31,11 @@ The .B calamares website: https://calamares.io .SH "BUGS" -Please report any bugs to https://calamares.io/bugs +Please report any bugs to https://calamares.io/issues .SH AUTHORS .B calamares -is written by Teo Mrnjavac +is written by Teo Mrnjavac , +Adriaan de Groot and +an international group of contributors. .LP This man page is written by Jonathan Carter