Compare commits
9 Commits
ubuntu/nob
...
backports/
Author | SHA1 | Date | |
---|---|---|---|
ba692e2f6b | |||
135bccd67b | |||
|
87845fe644 | ||
|
6201fdcce4 | ||
|
f1d4bacae5 | ||
165482739e | |||
|
7bf8364e45 | ||
|
dc4fd8e2e9 | ||
|
5e6f21865d |
7
data/upg-notifier-autostart.desktop
Normal file
7
data/upg-notifier-autostart.desktop
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Exec=/usr/libexec/lubuntu-update-notifier/lubuntu-upg-notifier.sh
|
||||||
|
NoDisplay=true
|
||||||
|
Name=upgNotifier
|
||||||
|
Icon=system-software-update
|
||||||
|
Type=Application
|
||||||
|
Version=0.1
|
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,7 +1,7 @@
|
|||||||
lubuntu-update-notifier (0.6.1) UNRELEASED; urgency=medium
|
lubuntu-update-notifier (0.6.1~ppa22.04.3) jammy; urgency=medium
|
||||||
|
|
||||||
[ Simon Quigley ]
|
[ Simon Quigley ]
|
||||||
* Rough, initial migration to systemd units.
|
* Backport to Jammy.
|
||||||
* Update translation sources.
|
* Update translation sources.
|
||||||
|
|
||||||
[ FuRuYa7 ]
|
[ FuRuYa7 ]
|
||||||
@ -11,12 +11,11 @@ lubuntu-update-notifier (0.6.1) UNRELEASED; urgency=medium
|
|||||||
* Update upg-apply.desktop.
|
* Update upg-apply.desktop.
|
||||||
* Update Spanish translations.
|
* Update Spanish translations.
|
||||||
* Add Basque translations.
|
* Add Basque translations.
|
||||||
* Add Galician translations.
|
|
||||||
|
|
||||||
[ vaba ]
|
[ vaba ]
|
||||||
* Add an Estonian translation.
|
* Add an Estonian translation.
|
||||||
|
|
||||||
-- Simon Quigley <tsimonq2@ubuntu.com> Tue, 10 Oct 2023 14:14:56 -0500
|
-- Simon Quigley <tsimonq2@ubuntu.com> Fri, 01 Dec 2023 14:14:49 -0600
|
||||||
|
|
||||||
lubuntu-update-notifier (0.6.0) mantic; urgency=medium
|
lubuntu-update-notifier (0.6.0) mantic; urgency=medium
|
||||||
|
|
||||||
|
2
debian/lubuntu-update-notifier.install
vendored
Normal file
2
debian/lubuntu-update-notifier.install
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#data/upg-apply.desktop usr/share/applications
|
||||||
|
data/upg-notifier-autostart.desktop etc/xdg/autostart
|
12
debian/lubuntu-update-notifier.postinst
vendored
12
debian/lubuntu-update-notifier.postinst
vendored
@ -1,12 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# This file can be removed following the release of Lubuntu 24.04 LTS
|
|
||||||
# It's to ensure a smooth transition between the autostart file and the new
|
|
||||||
# systemd user units provided
|
|
||||||
|
|
||||||
rm -f /etc/xdg/autostart/upg-notifier-autostart.desktop
|
|
||||||
rm -f /home/*/.config/autostart/upg-notifier-autostart.desktop
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
7
debian/lubuntu-update-notifier.user.service
vendored
7
debian/lubuntu-update-notifier.user.service
vendored
@ -1,7 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=Lubuntu Update Notifier
|
|
||||||
Wants=update-notifier-download.timer
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=oneshot
|
|
||||||
ExecStart=/usr/libexec/lubuntu-update-notifier/lubuntu-upg-notifier.sh
|
|
10
debian/lubuntu-update-notifier.user.timer
vendored
10
debian/lubuntu-update-notifier.user.timer
vendored
@ -1,10 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=Lubuntu Update Notifier
|
|
||||||
Requires=lubuntu-update-notifier.service
|
|
||||||
|
|
||||||
[Timer]
|
|
||||||
Unit=lubuntu-update-notifier.service
|
|
||||||
OnCalendar=*-*-* *:00:00
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=timers.target
|
|
@ -16,25 +16,28 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
OUT=`/usr/lib/update-notifier/apt-check 2>&1`
|
while true;
|
||||||
oldIFS=$IFS
|
do
|
||||||
IFS=';'
|
OUT=`/usr/lib/update-notifier/apt-check 2>&1`
|
||||||
j=0
|
oldIFS=$IFS
|
||||||
for STRING in $OUT; do
|
IFS=';'
|
||||||
case $j in
|
j=0
|
||||||
0)
|
for STRING in $OUT; do
|
||||||
UPG=$STRING;;
|
case $j in
|
||||||
1)
|
0)
|
||||||
SEC=$STRING;;
|
UPG=$STRING;;
|
||||||
esac
|
1)
|
||||||
j=`expr $j + 1`
|
SEC=$STRING;;
|
||||||
done
|
esac
|
||||||
IFS=$oldIFS
|
j=`expr $j + 1`
|
||||||
|
done
|
||||||
|
IFS=$oldIFS
|
||||||
|
|
||||||
NEWREL_CHECK=`/usr/bin/do-release-upgrade -c 2>&1`
|
NEWREL_CHECK=`/usr/bin/do-release-upgrade -c 2>&1`
|
||||||
NEWREL=$?
|
NEWREL=$?
|
||||||
if [ "$NEWREL" -eq 0 ]; then
|
if [ "$NEWREL" -eq 0 ]; then
|
||||||
VERSION=`echo $NEWREL_CHECK | awk -F\' '/available/{print $2}'`
|
VERSION=`echo $NEWREL_CHECK | awk -F\' '/available/{print $2}'`
|
||||||
fi
|
fi
|
||||||
|
/usr/libexec/lubuntu-update-notifier/lubuntu-notifier.py -u $UPG -s $SEC -r $NEWREL -v $VERSION -p /usr/bin/lubuntu-upgrader
|
||||||
/usr/libexec/lubuntu-update-notifier/lubuntu-notifier.py -u $UPG -s $SEC -r $NEWREL -v $VERSION -p /usr/bin/lubuntu-upgrader
|
sleep 86400
|
||||||
|
done;
|
||||||
|
162
po/gl.po
162
po/gl.po
@ -1,162 +0,0 @@
|
|||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: \n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-11-29 17:43-0600\n"
|
|
||||||
"PO-Revision-Date: 2023-12-01 16:33+0100\n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: gl\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: Poedit 3.4.1\n"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:132
|
|
||||||
msgid "Updating cache..."
|
|
||||||
msgstr "Actualizando a caché..."
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:138
|
|
||||||
msgid "Repairing interrupted upgrade if necessary..."
|
|
||||||
msgstr "Reparando a actualización interrompida se é necesario..."
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:195 lubuntu-upgrader:198
|
|
||||||
msgid "Fetching"
|
|
||||||
msgstr "Buscando"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:196 lubuntu-upgrader:198 lubuntu-upgrader:209
|
|
||||||
#: lubuntu-upgrader:212
|
|
||||||
msgid "of"
|
|
||||||
msgstr "de"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:208 lubuntu-upgrader:211
|
|
||||||
msgid "Downloaded"
|
|
||||||
msgstr "Descargado"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:223 lubuntu-notifier.py:234
|
|
||||||
msgid "Upgrade finished"
|
|
||||||
msgstr "Actualización rematada"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:227 lubuntu-notifier.py:197 lubuntu-notifier.py:201
|
|
||||||
#: lubuntu-notifier.py:238
|
|
||||||
msgid "Reboot required"
|
|
||||||
msgstr "É necesario reiniciar"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:231
|
|
||||||
msgid "With some Errors"
|
|
||||||
msgstr "Con algúns erros"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:232
|
|
||||||
msgid "Error Resume:"
|
|
||||||
msgstr "Erro Reanudar:"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:283
|
|
||||||
msgid "Update Cache Finished"
|
|
||||||
msgstr "Actualización da caché rematada"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:404
|
|
||||||
msgid "Repair Finished (if repair was needed)"
|
|
||||||
msgstr "Reparación rematada (se fose necesaria a reparación)"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:432
|
|
||||||
msgid ""
|
|
||||||
"Please run this software with administrative rights.To do so, run this "
|
|
||||||
"program with lxqt-sudo."
|
|
||||||
msgstr ""
|
|
||||||
"Executa este software con dereitos administrativos. Para facelo, executa "
|
|
||||||
"este programa con lxqt-sudo."
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:454
|
|
||||||
msgid "Update Cache Before Upgrade"
|
|
||||||
msgstr "Actualiza a caché antes da actualización"
|
|
||||||
|
|
||||||
#: lubuntu-upgrader:459
|
|
||||||
msgid "Full upgrade same as dist-upgrade"
|
|
||||||
msgstr "Actualización completa igual que dist-upgrade"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:76
|
|
||||||
#, python-format
|
|
||||||
msgid "Error: Opening the cache (%s)"
|
|
||||||
msgstr "Erro: ao abrir a caché (%s)"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:95 lubuntu-notifier.py:101
|
|
||||||
msgid "Affected Packages"
|
|
||||||
msgstr "Paquetes afectados"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:96
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridade"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:141
|
|
||||||
msgid "There are upgrades available. Do you want to do a system upgrade?"
|
|
||||||
msgstr ""
|
|
||||||
"Hai actualizacións dispoñibles. Queres facer unha actualización do "
|
|
||||||
"sistema?"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:144
|
|
||||||
msgid "This will mean packages could be upgraded, installed or removed."
|
|
||||||
msgstr ""
|
|
||||||
"Isto significará que os paquetes poderían actualizarse, instalarse ou "
|
|
||||||
"eliminarse."
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:149
|
|
||||||
msgid " is a security upgrade."
|
|
||||||
msgstr " é unha actualización de seguridade."
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:151
|
|
||||||
msgid " are security upgrades."
|
|
||||||
msgstr " son actualizacións de seguridade."
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:154
|
|
||||||
msgid "Remove"
|
|
||||||
msgstr "Quitar"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:161
|
|
||||||
msgid "Install"
|
|
||||||
msgstr "Instalar"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:176
|
|
||||||
msgid "Upgrade"
|
|
||||||
msgstr "Actualizar"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:222
|
|
||||||
msgid "Upgrading..."
|
|
||||||
msgstr "Actualizando..."
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:276
|
|
||||||
msgid "A new version of Lubuntu"
|
|
||||||
msgstr "Unha nova versión de Lubuntu"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:277
|
|
||||||
msgid "is available. Would you like to install it?"
|
|
||||||
msgstr "está dispoñible. Gustaríache instalalo?"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:279
|
|
||||||
msgid "A new version of Lubuntu is available. Would you like to install it?"
|
|
||||||
msgstr "Hai unha nova versión de Lubuntu dispoñible. Gustaríache instalalo?"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:315
|
|
||||||
msgid "Define software/app to open for upgrade"
|
|
||||||
msgstr "Define o software/aplicación para abrir para actualizar"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:320
|
|
||||||
msgid "How many upgrades are available"
|
|
||||||
msgstr "Cantas actualizacións hai dispoñibles"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:325
|
|
||||||
msgid "How many security upgrades are available"
|
|
||||||
msgstr "Cantas actualizacións de seguridade hai dispoñibles"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:330
|
|
||||||
msgid "Whether a release upgrade is required"
|
|
||||||
msgstr "Indica se é necesaria unha actualización de versión"
|
|
||||||
|
|
||||||
#: lubuntu-notifier.py:336
|
|
||||||
msgid "If a release upgrade is available, provide the version"
|
|
||||||
msgstr "Se hai unha actualización dispoñible, proporcione a versión"
|
|
Loading…
x
Reference in New Issue
Block a user