Commit 8f2dac3d authored by Vladislav's avatar Vladislav

Updated tray_pp, now translations and icon are not required in the directory

parent 7384b310
# 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.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-07-03 13:04+0500\n"
"PO-Revision-Date: 2024-07-26 23:00+0500\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.4\n"
#: example/example_pp.cpp:19
msgid "WINEFILE"
msgstr "WINEFILE"
#: example/example_pp.cpp:21
msgid "TASKMGR"
msgstr "GESTOR DE TAREAS"
#: example/example_pp.cpp:23
msgid "CHANGELOG"
msgstr "LISTA DE CAMBIOS"
#: example/example_pp.cpp:25
msgid "FORCE EXIT"
msgstr "SALIDA FORZADA"
# 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.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-07-03 13:04+0500\n"
"PO-Revision-Date: 2024-07-26 23:02+0500\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.4\n"
#: example/example_pp.cpp:19
msgid "WINEFILE"
msgstr "ФАЙЛОВЫЙ МЕНЕДЖЕР"
#: example/example_pp.cpp:21
msgid "TASKMGR"
msgstr "ДИСПЕТЧЕР ЗАДАЧ"
#: example/example_pp.cpp:23
msgid "CHANGELOG"
msgstr "ИЗМЕНЕНИЯ"
#: example/example_pp.cpp:25
msgid "FORCE EXIT"
msgstr "ПРИНУДИТЕЛЬНЫЙ ВЫХОД"
# 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.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-07-26 23:04+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=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: example/example_pp.cpp:19
msgid "WINEFILE"
msgstr ""
#: example/example_pp.cpp:21
msgid "TASKMGR"
msgstr ""
#: example/example_pp.cpp:23
msgid "CHANGELOG"
msgstr ""
#: example/example_pp.cpp:25
msgid "FORCE EXIT"
msgstr ""
......@@ -992,11 +992,11 @@ stop_portwine () {
kill_portwine &&
try_remove_dir "${PW_WINELIB}/var"
find "${PORT_WINE_PATH}/data/prefixes/${PW_PREFIX_NAME}/drive_c/" -maxdepth 1 -type f -name "*.tmp" -delete
if [[ ! -z "$(pgrep -a tray_pp)" ]] ; then
kill -s SIGUSR1 $(pgrep -a tray_pp) 2>/dev/null
if [[ ! -z "$(pgrep -a tray_gui_pp)" ]] ; then
kill -s SIGUSR1 $(pgrep -a tray_gui_pp) 2>/dev/null
fi
if [[ ! -z "$(pgrep -a yad_gui_pp)" ]] ; then
kill -s SIGUSR1 $(pgrep -a pw_yad_pp) 2>/dev/null
kill -s SIGUSR1 $(pgrep -a yad_gui_pp) 2>/dev/null
fi
pw_auto_create_shortcut
add_in_stop_portwine
......@@ -3257,8 +3257,8 @@ open_changelog () {
export -f open_changelog
pw_tray_icon () {
if [[ ! -z "$(pgrep -a tray_pp)" ]] ; then
kill -s SIGUSR1 $(pgrep -a tray_pp) 2>/dev/null
if [[ ! -z "$(pgrep -a tray_gui_pp)" ]] ; then
kill -s SIGUSR1 $(pgrep -a tray_gui_pp) 2>/dev/null
fi
pw_tray_winefile () {
......@@ -3278,9 +3278,7 @@ pw_tray_icon () {
export -f tray_icon_click_exit
PW_GUI_TRAY_PATH="${PW_GUI_THEMES_PATH}/tray"
cd "${PW_GUI_TRAY_PATH}"
env LD_LIBRARY_PATH="${PW_LD_LIBRARY_PATH}" "${PW_GUI_TRAY_PATH}/tray_pp" &
cd -
env LD_LIBRARY_PATH="${PW_LD_LIBRARY_PATH}" "${PW_GUI_TRAY_PATH}/tray_gui_pp" &
return 0
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment