Compare commits

...

10 Commits

Author SHA1 Message Date
de76c73cdb v3.1.9 2023-11-26 16:53:53 +01:00
045f62bfd9 Version 3.1.9 2023-11-26 16:38:43 +01:00
79fb6e700f install fix for fedora 2023-11-26 11:23:00 +01:00
fa24512a6f fix install 2023-11-26 10:46:09 +01:00
0928aab687 fix installer for fedora 2023-11-26 10:10:19 +01:00
e32ad84e9b update fix translate disconnected 2023-11-26 08:43:44 +01:00
918a687305 translate update 2023-11-26 08:39:03 +01:00
5604fbaa5c fix translate 2023-11-26 08:15:37 +01:00
b1dbb53593 edit .desktop file rename Internet to Network 2023-11-26 08:03:21 +01:00
eab1b0bbed fix on wgonstart.desktop 2023-11-25 22:58:30 +01:00
7 changed files with 18 additions and 9 deletions

View File

@ -3,5 +3,5 @@ Type=Application
Name=Wire-G Name=Wire-G
Exec=/sbin/wire_g Exec=/sbin/wire_g
Terminal=false Terminal=false
Categories=Internet;Browser; Categories=Network;
Icon=/usr/share/icons/Arch-Symbole/wg-vpn.png Icon=/usr/share/icons/Arch-Symbole/wg-vpn.png

View File

@ -19,19 +19,19 @@ if grep -i 'mint\|debian\|ubuntu\|pop|' /etc/os-release > /dev/null 2>&1
then then
echo $"Wire-G is installed..." echo $"Wire-G is installed..."
mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli
if ! which yad > /dev/null ; then sudo apt install yad -y > /dev/null 2>&1 ; echo yad wird installiert. Bitte warten... ; fi if ! which yad &> /dev/null ; then sudo apt install yad -y &> /dev/null & echo yad is installed... ; fi
elif grep -i 'arch\|manjaro\|garuda\|endeavour|' /etc/os-release > /dev/null 2>&1 elif grep -i 'arch\|manjaro\|garuda\|endeavour|' /etc/os-release > /dev/null 2>&1
then then
echo $"Wire-G is installed..." echo $"Wire-G is installed..."
mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli
if ! which yad > /dev/null ; then sudo pacman -S --noconfirm yad > /dev/null 2>&1 ; echo yad wird installiert. Bitte warten... ; fi if ! which yad &> /dev/null ; then sudo pacman -S --noconfirm yad &> /dev/null & echo yad is installed... ; fi
elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1 elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1
then then
echo $"Wire-G is installed..." echo $"Wire-G is installed..."
mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli
if ! which yad > /dev/null ; then sudo dnf install yad > /dev/null 2>&1 ; echo yad wird installiert. Bitte warten... ; fi if ! which yad &> /dev/null ; then sudo dnf install yad -y ; fi
elif grep -i 'suse' /etc/os-release > /dev/null 2>&1 elif grep -i 'suse' /etc/os-release > /dev/null 2>&1
then then

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-11-24 17:50+0100\n" "POT-Creation-Date: 2023-11-24 17:50+0100\n"
"PO-Revision-Date: 2023-11-24 17:58+0100\n" "PO-Revision-Date: 2023-11-26 08:42+0100\n"
"Last-Translator: punix <polunga40@unity-mail.de>\n" "Last-Translator: punix <polunga40@unity-mail.de>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n" "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
"Language: de\n" "Language: de\n"
@ -162,5 +162,8 @@ msgstr ""
"<b>müssen sie ihren Tunnel zuvor importieren.</b>" "<b>müssen sie ihren Tunnel zuvor importieren.</b>"
#: /home/punix/VSCodium/Wire-G/wg_stop:40 #: /home/punix/VSCodium/Wire-G/wg_stop:40
msgid "$VALUE Connection disconnected" msgid ""
msgstr "$VALUE Verbindung wurde getrennt" "<span color='#0fad0a'><b>$VALUE </b></span><span> <b>disconnected</b></"
"span>"
msgstr ""
"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>getrennt</b></span>"

View File

@ -134,3 +134,9 @@ msgid ""
"<b>If no tunnels are listed,</b> \n" "<b>If no tunnels are listed,</b> \n"
"<b>you must first import your tunnel.</b>" "<b>you must first import your tunnel.</b>"
msgstr "" msgstr ""
#: /home/punix/VSCodium/Wire-G/wg_stop:40
msgid ""
"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>disconnected</b></"
"span>"
msgstr ""

View File

@ -2,7 +2,7 @@
Type=Application Type=Application
Name=wg_on_start Name=wg_on_start
Name[de_DE]=wgonstart.desktop Name[de_DE]=wgonstart.desktop
Exec=wg_on_start Exec=/sbin/wg_on_start
NoDisplay=true NoDisplay=true
Terminal=false Terminal=false
Comment=Start on Wire-G Notify with Tunnel Comment=Start on Wire-G Notify with Tunnel

View File

@ -37,7 +37,7 @@ WG_PIC="/home/$USER/.icons/"
--undecorated --borders=8 --skip-taskbar \ --undecorated --borders=8 --skip-taskbar \
--text-align=center --no-buttons \ --text-align=center --no-buttons \
--timeout 2 --timeout-indicator=bottom \ --timeout 2 --timeout-indicator=bottom \
--text=$"<span color='#0fad0a'><b>$VALUE Connection</b></span><span> <b>disconnected</b></span>" --text=$"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>disconnected</b></span>"
fi fi
done done
IFS=$'\n' lines=( $(cat ${WG_WDIR}for-kill_pid.txt) ) IFS=$'\n' lines=( $(cat ${WG_WDIR}for-kill_pid.txt) )