@ -0,0 +1,10 @@
|
||||
kubuntu/branding/ etc/calamares/
|
||||
kubuntu/calamares-logs-helper usr/bin/
|
||||
kubuntu/calamares-launch-normal usr/bin/
|
||||
kubuntu/kubuntu-calamares.desktop usr/share/applications/
|
||||
kubuntu/modules/ etc/calamares/
|
||||
kubuntu/settings.conf etc/calamares/
|
||||
kubuntu/oem/calamares-launch-oem usr/bin/
|
||||
kubuntu/oem/calamares-launch-oem.desktop usr/share/applications/
|
||||
kubuntu/oem/calamares-oemprep.sh usr/libexec/
|
||||
kubuntu/oemconfig.tar.gz etc/calamares/
|
@ -0,0 +1,5 @@
|
||||
# there will be no manpage in the foreseeable future
|
||||
calamares-settings-kubuntu: no-manual-page [usr/bin/calamares-logs-helper]
|
||||
# We're just extracting a log file and preserving it for the user to look at
|
||||
# after the installation, this is normal.
|
||||
calamares-settings-kubuntu: uses-dpkg-database-directly [usr/bin/calamares-logs-helper]
|
@ -0,0 +1,21 @@
|
||||
# Kubuntu's Calamares Settings
|
||||
|
||||
This directory houses the Calamares settings for Kubuntu.
|
||||
|
||||
Unless otherwise stated, the contents of this directory are licensed as follows:
|
||||
|
||||
Copyright (C) 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
Copyright (C) 2024 Kubuntu Developers <kubuntu-devel@lists.ubuntu.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 3
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this software. If not, see <http://www.gnu.org/licenses/>.
|
After Width: | Height: | Size: 128 KiB |
@ -0,0 +1,29 @@
|
||||
---
|
||||
componentName: kubuntu
|
||||
|
||||
windowExpanding: fullscreen
|
||||
|
||||
strings:
|
||||
productName: Kubuntu
|
||||
shortProductName: Kubuntu
|
||||
version: 24.04 LTS
|
||||
shortVersion: noble
|
||||
versionedName: Kubuntu
|
||||
shortVersionedName: Kubuntu 24.04 LTS
|
||||
bootloaderEntryName: Ubuntu
|
||||
productUrl: https://lubuntu.me/
|
||||
supportUrl: https://lubuntu.me/links/
|
||||
|
||||
images:
|
||||
productLogo: "logo.png"
|
||||
productIcon: "icon.png"
|
||||
productWelcome: "welcome.png"
|
||||
|
||||
slideshow: "show.qml"
|
||||
|
||||
slideshowAPI: 1
|
||||
|
||||
style:
|
||||
SidebarBackground: "#808080"
|
||||
SidebarText: "#FFFFFF"
|
||||
SidebarTextCurrent: "#0068C8"
|
After Width: | Height: | Size: 262 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,93 @@
|
||||
import QtQuick 2.0;
|
||||
import calamares.slideshow 1.0;
|
||||
|
||||
Presentation
|
||||
{
|
||||
id: presentation
|
||||
|
||||
Timer {
|
||||
interval: 15000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: presentation.goToNextSlide()
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
anchors.centerIn: parent
|
||||
id: image1
|
||||
x: 0
|
||||
y: 0
|
||||
width: 810
|
||||
height: 485
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
source: "lightweight.png"
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
anchors.centerIn: parent
|
||||
id: image2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 810
|
||||
height: 485
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
source: "apps.png"
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
anchors.centerIn: parent
|
||||
id: image3
|
||||
x: 0
|
||||
y: 0
|
||||
width: 810
|
||||
height: 485
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
source: "store.png"
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
anchors.centerIn: parent
|
||||
id: image4
|
||||
x: 0
|
||||
y: 0
|
||||
width: 810
|
||||
height: 485
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
source: "desktop.png"
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
anchors.centerIn: parent
|
||||
id: image5
|
||||
x: 0
|
||||
y: 0
|
||||
width: 810
|
||||
height: 485
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
source: "support.png"
|
||||
}
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
anchors.centerIn: parent
|
||||
id: image6
|
||||
x: 0
|
||||
y: 0
|
||||
width: 810
|
||||
height: 485
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
source: "enjoy.png"
|
||||
}
|
||||
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 98 KiB |
After Width: | Height: | Size: 146 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 18 KiB |
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Launch Calamares normally.
|
||||
|
||||
if [ -e '/etc/calamares/OEM_MODE_ACTIVATED' ]; then
|
||||
msg="$(cat <<EOL
|
||||
The installer was previously run in OEM mode. Please reboot to reset the
|
||||
configuration and try again.
|
||||
EOL
|
||||
)";
|
||||
kdialog --msgbox "${msg}";
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
calamares -D8;
|
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
root=$1
|
||||
install_dir=$root/var/log/installer
|
||||
[ -d $install_dir ] || mkdir -p $install_dir
|
||||
|
||||
cp $HOME/.cache/calamares/session.log $install_dir/debug
|
||||
|
||||
cp /cdrom/.disk/info $install_dir/media-info
|
||||
cp /var/log/casper.log $install_dir/casper.log
|
||||
cp /var/log/syslog $install_dir/syslog
|
||||
|
||||
gzip --stdout $root/var/lib/dpkg/status > $install_dir/initial-status.gz
|
||||
|
||||
# OEM id isn't a thing, when in OEM mode ubiquity would also archive that.
|
||||
# https://github.com/calamares/calamares/issues/943
|
||||
|
||||
chmod -v 600 $install_dir/*
|
||||
# Make these world readable, they can absolutely not contain anything relevant
|
||||
# to security.
|
||||
chmod -v 644 $install_dir/initial-status.gz
|
||||
chmod -v 644 $install_dir/media-info
|
@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
_Name=Install Kubuntu 24.04 LTS
|
||||
_GenericName=Install Kubuntu
|
||||
Exec=sudo -E /usr/bin/calamares-launch-normal
|
||||
_Comment=Calamares — System Installer
|
||||
Icon=system-software-install
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Qt;System;
|
||||
Keywords=installer;calamares;system;
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
dontChroot: false
|
||||
timeout: 120
|
||||
firmwareType:
|
||||
"*": "-rm ${ROOT}/home/${USER}/Desktop/kubuntu-calamares.desktop"
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
baseUrl: archive.ubuntu.com
|
||||
distribution: Kubuntu
|
||||
geoip:
|
||||
style: "xml"
|
||||
url: "https://geoip.ubuntu.com/lookup"
|
@ -0,0 +1,9 @@
|
||||
displaymanagers:
|
||||
- sddm
|
||||
|
||||
defaultDesktopEnvironment:
|
||||
executable: "startkde"
|
||||
desktopFile: "plasma"
|
||||
|
||||
basicSetup: false
|
||||
sysconfigSetup: false
|
@ -0,0 +1,2 @@
|
||||
---
|
||||
batch-identifier: kubuntu-2404-${DATE}
|
@ -0,0 +1,16 @@
|
||||
update_db: true
|
||||
backend: apt
|
||||
operations:
|
||||
- remove:
|
||||
- "^live-*"
|
||||
- calamares-settings-kubuntu
|
||||
- calamares
|
||||
- zram-config
|
||||
- cifs-utils
|
||||
- try_install:
|
||||
- language-pack-$LOCALE
|
||||
- language-pack-gnome-$LOCALE
|
||||
- language-pack-kde-$LOCALE
|
||||
- hunspell-$LOCALE
|
||||
- libreoffice-help-$LOCALE
|
||||
- libreoffice-l10n-$LOCALE
|
@ -0,0 +1,21 @@
|
||||
efiSystemPartition: "/boot/efi"
|
||||
enableLuksAutomatedPartitioning: true
|
||||
luksGeneration: luks2
|
||||
userSwapChoices:
|
||||
- none
|
||||
- file
|
||||
initialSwapChoice: file
|
||||
drawNestedPartitions: true
|
||||
defaultFileSystemType: "ext4"
|
||||
availableFileSystemTypes: ["ext4","btrfs","xfs"]
|
||||
partitionLayout:
|
||||
- name: "kubuntu_boot"
|
||||
filesystem: ext4
|
||||
noEncrypt: true
|
||||
onlyPresentWithEncryption: true
|
||||
mountPoint: "/boot"
|
||||
size: 4G
|
||||
- name: "kubuntu_2404"
|
||||
filesystem: unknown
|
||||
mountPoint: "/"
|
||||
size: 100%
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
dontChroot: true
|
||||
timeout: 120
|
||||
script:
|
||||
- "/usr/libexec/calamares-oemprep.sh ${ROOT}"
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
unpack:
|
||||
- source: "/cdrom/casper/filesystem.squashfs"
|
||||
sourcefs: "squashfs"
|
||||
destination: ""
|
@ -0,0 +1,23 @@
|
||||
---
|
||||
doAutologin: false
|
||||
setRootPassword: false
|
||||
sudoersGroup: sudo
|
||||
defaultGroups:
|
||||
- adm
|
||||
- cdrom
|
||||
- dip
|
||||
- lpadmin
|
||||
- plugdev
|
||||
- name: sambashare
|
||||
must_exist: false
|
||||
system: true
|
||||
- sudo
|
||||
passwordRequirements:
|
||||
nonempty: true
|
||||
minLength: 0
|
||||
maxLength: 0
|
||||
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||
# expectation derived from Ubuntu here.
|
||||
user:
|
||||
shell: /bin/bash
|
||||
forbidden_names: [ root ]
|
@ -0,0 +1,31 @@
|
||||
---
|
||||
doAutologin: false
|
||||
setRootPassword: false
|
||||
sudoersGroup: sudo
|
||||
defaultGroups:
|
||||
- adm
|
||||
- cdrom
|
||||
- dip
|
||||
- lpadmin
|
||||
- plugdev
|
||||
- name: sambashare
|
||||
must_exist: false
|
||||
system: true
|
||||
- sudo
|
||||
passwordRequirements:
|
||||
nonempty: true
|
||||
minLength: 0
|
||||
maxLength: 0
|
||||
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||
# expectation derived from Ubuntu here.
|
||||
user:
|
||||
shell: /bin/bash
|
||||
forbidden_names: [ root ]
|
||||
# Force the user of an OEM user
|
||||
presets:
|
||||
fullName:
|
||||
value: "OEM configuration"
|
||||
editable: false
|
||||
loginName:
|
||||
value: "oem"
|
||||
editable: false
|
@ -0,0 +1,26 @@
|
||||
---
|
||||
showSupportUrl: true
|
||||
showKnownIssuesUrl: true
|
||||
showReleaseNotesUrl: true
|
||||
# WARNING: Calamares documentation indicates that showDonateUrl will be moved to branding in the future. Be prepared for things to break right here.
|
||||
showDonateUrl: https://lubuntu.me/donate/
|
||||
|
||||
requirements:
|
||||
requiredStorage: 8
|
||||
requiredRam: 0.5
|
||||
internetCheckUrl: https://lubuntu.me
|
||||
|
||||
check:
|
||||
- storage
|
||||
- ram
|
||||
- power
|
||||
- internet
|
||||
- root
|
||||
required:
|
||||
- root
|
||||
- storage
|
||||
- ram
|
||||
geoip:
|
||||
style: "xml"
|
||||
url: "https://geoip.ubuntu.com/lookup"
|
||||
selector: "CountryCode"
|
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
msg="$(cat <<EOL
|
||||
You are about to disable OEM configuration mode. The system will boot into the
|
||||
account setup wizard the next time it is started.
|
||||
|
||||
Are you sure you want to continue?
|
||||
EOL
|
||||
)";
|
||||
|
||||
if kdialog --warningyesno "${msg}"; then
|
||||
sed -i "s/Session=plasma/Session=kubuntu-oem-environment/" /etc/sddm.conf
|
||||
fi
|
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=Finish OEM preparation
|
||||
Exec=sudo /usr/bin/calamares-finish-oem
|
||||
Icon=system-software-install
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Qt;System;
|
||||
Keywords=installer;calamares;system;
|
@ -0,0 +1,42 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Enables OEM installaiton mode in Calamares.
|
||||
|
||||
if [ -e '/etc/calamares/OEM_MODE_ACTIVATED' ]; then
|
||||
calamares -D8;
|
||||
exit;
|
||||
fi
|
||||
|
||||
msg="$(cat <<EOL
|
||||
You are about to install the OS in OEM mode. This will prepare the system for
|
||||
distribution to an end user, providing them with an account setup wizard. If
|
||||
you do not need this capability, please cancel and use the normal install
|
||||
method.
|
||||
|
||||
Are you sure you want to continue?
|
||||
EOL
|
||||
)";
|
||||
|
||||
if kdialog --warningyesno "${msg}"; then
|
||||
# Tweak branding to make it clear that OEM installation mode is active
|
||||
cp /etc/calamares/branding/kubuntu/welcome-oem.png /etc/calamares/branding/kubuntu/welcome.png;
|
||||
|
||||
# Don't remove Calamares from the installed system.
|
||||
sed -i '/- calamares$/d' /etc/calamares/modules/packages.conf;
|
||||
|
||||
# Enable oemid module, backslashes are needed for proper indentation
|
||||
sed -i "/- welcome$/a \ \ - oemid" /etc/calamares/settings.conf;
|
||||
|
||||
# Enable OEM prep module
|
||||
sed -i "/- packages$/a \ \ - shellprocess@oemprep" /etc/calamares/settings.conf;
|
||||
|
||||
# Force the user of an OEM configuration user
|
||||
cp /etc/calamares/modules/users.conf.oem /etc/calamares/modules/users.conf;
|
||||
|
||||
# Drop a file so that it can be seen that OEM installation mode is already
|
||||
# active
|
||||
touch /etc/calamares/OEM_MODE_ACTIVATED;
|
||||
|
||||
# Launch Calamares
|
||||
calamares -D8;
|
||||
fi
|
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=Install Kubuntu 24.04 LTS (OEM mode)
|
||||
Exec=sudo -E /usr/bin/calamares-launch-oem
|
||||
Icon=system-software-install
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Qt;System;
|
||||
Keywords=installer;calamares;system;
|
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Remove OEM files from the system.
|
||||
|
||||
rm -rf /etc/calamares /usr/bin/basicwallpaper /usr/bin/calamares-finish-oem /usr/share/applications/calamares-finish-oem.desktop /etc/sddm.conf /usr/share/xsessions/kubuntu-oem-environment.desktop /usr/libexec/start-kubuntu-oem-env /etc/sudoers
|
||||
|
||||
mv /etc/sudoers.orig /etc/sudoers
|
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Puts the installed system into OEM configuration mode. Argument 1 is the
|
||||
# path to the installed system's root directory.
|
||||
|
||||
# Install the OEM configuration for Calamares
|
||||
tar xvzf /etc/calamares/oemconfig.tar.gz -C "$1" --strip-components=2;
|
||||
|
||||
# Enable passwordless sudo for the OEM user, making sure this can be undone later
|
||||
mv "$1"/etc/sudoers "$1"/etc/sudoers.orig
|
||||
mv "$1"/etc/sudoers.oem "$1"/etc/sudoers
|
@ -0,0 +1,5 @@
|
||||
[Desktop Entry]
|
||||
Exec=/usr/libexec/start-kubuntu-oem-env
|
||||
Name=Kubuntu OEM Environment
|
||||
Comment=Starts the Kubuntu OEM Environment
|
||||
Type=Application
|
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
# Starts the Kubuntu OEM Environment.
|
||||
export QT_STYLE_OVERRIDE="Breeze"
|
||||
|
||||
/usr/bin/kwin_x11 &
|
||||
/usr/bin/basicwallpaper /usr/share/wallpapers/Next/contents/3840x2160.png &
|
||||
sudo -E /usr/bin/calamares -D8 # This is intentionally *not* backgrounded.
|
||||
# If it exits...
|
||||
killall basicwallpaper
|
||||
killall kwin_x11
|
@ -0,0 +1,3 @@
|
||||
---
|
||||
restartNowMode: user-checked
|
||||
restartNowCommand: "systemctl -i reboot"
|
@ -0,0 +1,8 @@
|
||||
---
|
||||
region: "America"
|
||||
zone: "New_York"
|
||||
localeGenPath: "/etc/locale.gen"
|
||||
geoip:
|
||||
style: "xml"
|
||||
url: "https://geoip.ubuntu.com/lookup"
|
||||
selector: "TimeZone"
|
@ -0,0 +1,8 @@
|
||||
---
|
||||
# Whether to create /etc/machine-id for systemd.
|
||||
systemd: true
|
||||
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
||||
dbus: true
|
||||
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
||||
# (ignored if dbus is false, or if there is no /etc/machine-id to point to).
|
||||
dbus-symlink: true
|
@ -0,0 +1,5 @@
|
||||
update_db: true
|
||||
backend: apt
|
||||
operations:
|
||||
- remove:
|
||||
- calamares
|
@ -0,0 +1,2 @@
|
||||
---
|
||||
username: oem
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
dontChroot: true
|
||||
timeout: 120
|
||||
script:
|
||||
- "/usr/libexec/calamares-oemfinish.sh ${ROOT}"
|
@ -0,0 +1,23 @@
|
||||
---
|
||||
doAutologin: false
|
||||
setRootPassword: false
|
||||
sudoersGroup: sudo
|
||||
defaultGroups:
|
||||
- adm
|
||||
- cdrom
|
||||
- dip
|
||||
- lpadmin
|
||||
- plugdev
|
||||
- name: sambashare
|
||||
must_exist: false
|
||||
system: true
|
||||
- sudo
|
||||
passwordRequirements:
|
||||
nonempty: true
|
||||
minLength: 0
|
||||
maxLength: 0
|
||||
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||
# expectation derived from Ubuntu here.
|
||||
user:
|
||||
shell: /bin/bash
|
||||
forbidden_names: [ root ]
|
@ -0,0 +1,26 @@
|
||||
---
|
||||
showSupportUrl: true
|
||||
showKnownIssuesUrl: true
|
||||
showReleaseNotesUrl: true
|
||||
# WARNING: Calamares documentation indicates that showDonateUrl will be moved to branding in the future. Be prepared for things to break right here.
|
||||
showDonateUrl: https://lubuntu.me/donate/
|
||||
|
||||
requirements:
|
||||
requiredStorage: 8
|
||||
requiredRam: 0.5
|
||||
internetCheckUrl: https://lubuntu.me
|
||||
|
||||
check:
|
||||
- storage
|
||||
- ram
|
||||
- power
|
||||
- internet
|
||||
- root
|
||||
required:
|
||||
- root
|
||||
- storage
|
||||
- ram
|
||||
geoip:
|
||||
style: "xml"
|
||||
url: "https://geoip.ubuntu.com/lookup"
|
||||
selector: "CountryCode"
|
@ -0,0 +1,3 @@
|
||||
[Autologin]
|
||||
Session=plasma
|
||||
User=oem
|
@ -0,0 +1,32 @@
|
||||
---
|
||||
modules-search: [ local ]
|
||||
|
||||
instances:
|
||||
- id: oemfinish
|
||||
module: shellprocess
|
||||
config: shellprocess_oemfinish.conf
|
||||
|
||||
sequence:
|
||||
- show:
|
||||
- welcome
|
||||
- locale
|
||||
- keyboard
|
||||
- users
|
||||
- exec:
|
||||
- machineid
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- packages
|
||||
- users
|
||||
- shellprocess@oemfinish
|
||||
- removeuser
|
||||
- show:
|
||||
- finished
|
||||
|
||||
branding: kubuntu
|
||||
prompt-install: true
|
||||
dont-chroot: true
|
||||
oem-setup: true
|
||||
disable-cancel: true
|
||||
disable-cancel-during-exec: true
|
@ -0,0 +1,56 @@
|
||||
#
|
||||
# This file MUST be edited with the 'visudo' command as root.
|
||||
#
|
||||
# Please consider adding local content in /etc/sudoers.d/ instead of
|
||||
# directly modifying this file.
|
||||
#
|
||||
# See the man page for details on how to write a sudoers file.
|
||||
#
|
||||
Defaults env_reset
|
||||
Defaults mail_badpass
|
||||
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
|
||||
Defaults use_pty
|
||||
|
||||
# This preserves proxy settings from user environments of root
|
||||
# equivalent users (group sudo)
|
||||
#Defaults:%sudo env_keep += "http_proxy https_proxy ftp_proxy all_proxy no_proxy"
|
||||
|
||||
# This allows running arbitrary commands, but so does ALL, and it means
|
||||
# different sudoers have their choice of editor respected.
|
||||
#Defaults:%sudo env_keep += "EDITOR"
|
||||
|
||||
# Completely harmless preservation of a user preference.
|
||||
#Defaults:%sudo env_keep += "GREP_COLOR"
|
||||
|
||||
# While you shouldn't normally run git as root, you need to with etckeeper
|
||||
#Defaults:%sudo env_keep += "GIT_AUTHOR_* GIT_COMMITTER_*"
|
||||
|
||||
# Per-user preferences; root won't have sensible values for them.
|
||||
#Defaults:%sudo env_keep += "EMAIL DEBEMAIL DEBFULLNAME"
|
||||
|
||||
# "sudo scp" or "sudo rsync" should be able to use your SSH agent.
|
||||
#Defaults:%sudo env_keep += "SSH_AGENT_PID SSH_AUTH_SOCK"
|
||||
|
||||
# Ditto for GPG agent
|
||||
#Defaults:%sudo env_keep += "GPG_AGENT_INFO"
|
||||
|
||||
# Host alias specification
|
||||
|
||||
# User alias specification
|
||||
|
||||
# Cmnd alias specification
|
||||
|
||||
# User privilege specification
|
||||
root ALL=(ALL:ALL) ALL
|
||||
|
||||
# Members of the admin group may gain root privileges
|
||||
%admin ALL=(ALL) ALL
|
||||
|
||||
# Allow members of group sudo to execute any command
|
||||
%sudo ALL=(ALL:ALL) ALL
|
||||
|
||||
# See sudoers(5) for more information on "@include" directives:
|
||||
@includedir /etc/sudoers.d
|
||||
|
||||
# OEM CONFIGURATION ONLY: oem user has passwordless sudo
|
||||
oem ALL=(ALL:ALL) NOPASSWD: ALL
|
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
POTFILES := $(shell cat POTFILES.in)
|
||||
|
||||
all: generate-po-files
|
||||
|
||||
generate-pot: POTFILES.in
|
||||
intltool-update --pot --gettext-package=calamares-settings-kubuntu
|
||||
|
||||
generate-po-files:
|
||||
for i in $(POTFILES); do \
|
||||
f=$$(echo $$i | sed 's/\.in//'); \
|
||||
intltool-merge -d . ../$$i ../$$f; \
|
||||
done
|
||||
|
||||
update-po:
|
||||
for i in *.po; do \
|
||||
code=$$(echo $$i | sed 's/.po//'); \
|
||||
intltool-update --gettext-package=calamares-settings-kubuntu --dist $$code; \
|
||||
done
|
||||
|
||||
# vim:ts=4
|
@ -0,0 +1 @@
|
||||
kubuntu-calamares.desktop.in
|
@ -0,0 +1,28 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Arabic <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "تثبيت كوبونتو 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "تثبيت كوبونتو"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "كالاماريس - مثبت النظام"
|
@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: be\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 2.3.0\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Catalan <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Instal·lar Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Instal·lar Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Instal·lador del Sistema"
|
@ -0,0 +1,30 @@
|
||||
# Base translation file for Lubuntu's Calamares settings
|
||||
# Copyright (C) 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
# This file is distributed under the same license as the package.
|
||||
# Simon Quigley <tsimonq2@ubuntu.com>, 2018.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Danish <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Installer Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Installer Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares - System installation"
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: German <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Kubuntu 24.04 LTS installieren"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Kubuntu installieren"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — System Installer"
|
@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 2.3.0\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Spanish <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Instalar Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Instalar Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Instalador del Sistema"
|
@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 2.3.0\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 2.3.0\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: French <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Installer Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Installer Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Installateur de votre system"
|
@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 2.3.0\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,32 @@
|
||||
# Base translation file for Lubuntu's Calamares settings
|
||||
# Copyright (C) 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
# This file is distributed under the same license as the package.
|
||||
# Simon Quigley <tsimonq2@ubuntu.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Italian <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Installa Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Installa Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Installatore del Sistema"
|
@ -0,0 +1,25 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 2.3.0\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.lubuntu.me/projects/"
|
||||
"lubuntu/calamares-settings-lubuntu-desktop/nb/>\n"
|
||||
"Language: no\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Installer Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Installer Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — System installerer"
|
@ -0,0 +1,28 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Polish <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Zainstaluj Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Zainstaluj Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Instalator systemu"
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.lubuntu.me/projects/lubuntu/"
|
||||
"calamares-settings-lubuntu-desktop/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Instalar o Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Instalar o Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Instalador do Sistema"
|
@ -0,0 +1,27 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: 2024-02-05 00:00+0000\n"
|
||||
"Last-Translator: Aaron Rainbolt <arraybolt3@ubuntu.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.lubuntu.me/projects/"
|
||||
"lubuntu/calamares-settings-lubuntu-desktop/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.1-dev\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr "Instalar Kubuntu 24.04 LTS"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr "Instalar Kubuntu"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr "Calamares — Instalador do sistema"
|
@ -0,0 +1,30 @@
|
||||
# Base translation file for Lubuntu's Calamares settings
|
||||
# Copyright (C) 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
# This file is distributed under the same license as the package.
|
||||
# Simon Quigley <tsimonq2@ubuntu.com>, 2018.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,30 @@
|
||||
# Base translation file for Lubuntu's Calamares settings
|
||||
# Copyright (C) 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
# This file is distributed under the same license as the package.
|
||||
# Simon Quigley <tsimonq2@ubuntu.com>, 2018.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-10 02:36-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:1
|
||||
msgid "Install Kubuntu 24.04 LTS"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:2
|
||||
msgid "Install Kubuntu"
|
||||
msgstr ""
|
||||
|
||||
#: ../kubuntu-calamares.desktop.in.h:3
|
||||
msgid "Calamares — System Installer"
|
||||
msgstr ""
|
@ -0,0 +1,70 @@
|
||||
---
|
||||
modules-search: [ local ]
|
||||
|
||||
instances:
|
||||
- id: before_bootloader_mkdirs
|
||||
module: contextualprocess
|
||||
config: before_bootloader_mkdirs_context.conf
|
||||
- id: before_bootloader
|
||||
module: contextualprocess
|
||||
config: before_bootloader_context.conf
|
||||
- id: after_bootloader
|
||||
module: contextualprocess
|
||||
config: after_bootloader_context.conf
|
||||
- id: logs
|
||||
module: shellprocess
|
||||
config: shellprocess_logs.conf
|
||||
- id: bug-LP#1829805
|
||||
module: shellprocess
|
||||
config: shellprocess_bug-LP#1829805.conf
|
||||
- id: add386arch
|
||||
module: shellprocess
|
||||
config: shellprocess_add386arch.conf
|
||||
- id: oemprep
|
||||
module: shellprocess
|
||||
config: shellprocess_oemprep.conf
|
||||
|
||||
sequence:
|
||||
- show:
|
||||
- welcome
|
||||
- locale
|
||||
- keyboard
|
||||
- partition
|
||||
- users
|
||||
- summary
|
||||
- exec:
|
||||
- partition
|
||||
- mount
|
||||
- unpackfs
|
||||
- machineid
|
||||
- fstab
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- luksbootkeyfile
|
||||
- users
|
||||
- displaymanager
|
||||
- networkcfg
|
||||
- hwclock
|
||||
- contextualprocess@before_bootloader_mkdirs
|
||||
- shellprocess@bug-LP#1829805
|
||||
- initramfscfg
|
||||
- initramfs
|
||||
- grubcfg
|
||||
- contextualprocess@before_bootloader
|
||||
- bootloader
|
||||
- contextualprocess@after_bootloader
|
||||
- automirror
|
||||
- shellprocess@add386arch
|
||||
- packages
|
||||
- shellprocess@logs
|
||||
- umount
|
||||
- show:
|
||||
- finished
|
||||
|
||||
branding: kubuntu
|
||||
prompt-install: true
|
||||
dont-chroot: false
|
||||
oem-setup: false
|
||||
disable-cancel: false
|
||||
disable-cancel-during-exec: false
|