Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package whatsapp-for-linux for openSUSE:Factory checked in at 2023-01-23 18:33:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/whatsapp-for-linux (Old) and /work/SRC/openSUSE:Factory/.whatsapp-for-linux.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "whatsapp-for-linux" Mon Jan 23 18:33:50 2023 rev:4 rq:1060440 version:1.5.2 Changes: -------- --- /work/SRC/openSUSE:Factory/whatsapp-for-linux/whatsapp-for-linux.changes 2022-12-26 23:28:16.841009550 +0100 +++ /work/SRC/openSUSE:Factory/.whatsapp-for-linux.new.32243/whatsapp-for-linux.changes 2023-01-23 18:33:50.908842794 +0100 @@ -1,0 +2,13 @@ +Mon Jan 23 14:07:55 UTC 2023 - Michael Vetter <mvet...@suse.com> + +- Update to 1.5.2: + * Implemented enhancements: + + Find Russian translation and icons here #260 + + How can I remove it from the system? #248 + * Fixed bugs: + + Unable to Paste Clipboard Images in Whatsapp for Linus #268 + + Use different compression mode for deb package #267 + + Dark theme not appearing for window border in Linux Mint + 21 Vanessa, Flatpak. #262 + +------------------------------------------------------------------- Old: ---- whatsapp-for-linux-1.5.1.tar.xz New: ---- whatsapp-for-linux-1.5.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ whatsapp-for-linux.spec ++++++ --- /var/tmp/diff_new_pack.S5Cg70/_old 2023-01-23 18:33:51.604847610 +0100 +++ /var/tmp/diff_new_pack.S5Cg70/_new 2023-01-23 18:33:51.612847666 +0100 @@ -1,7 +1,7 @@ # # spec file for package whatsapp-for-linux # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: whatsapp-for-linux -Version: 1.5.1 +Version: 1.5.2 Release: 0 Summary: WhatsApp for Linux License: GPL-3.0-only ++++++ _service ++++++ --- /var/tmp/diff_new_pack.S5Cg70/_old 2023-01-23 18:33:51.644847887 +0100 +++ /var/tmp/diff_new_pack.S5Cg70/_new 2023-01-23 18:33:51.648847915 +0100 @@ -2,7 +2,7 @@ <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/eneshecan/whatsapp-for-linux.git</param> - <param name="revision">v1.5.1</param> + <param name="revision">v1.5.2</param> <param name="match-tag">v*</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ whatsapp-for-linux-1.5.1.tar.xz -> whatsapp-for-linux-1.5.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/.github/workflows/release.yml new/whatsapp-for-linux-1.5.2/.github/workflows/release.yml --- old/whatsapp-for-linux-1.5.1/.github/workflows/release.yml 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/.github/workflows/release.yml 2023-01-23 11:49:05.000000000 +0100 @@ -29,6 +29,7 @@ version=$(cat "build/release/generated/VERSION") echo "RELEASE_VERSION=${version}" >> "$GITHUB_ENV" echo "RELEASE_TAG=v${version}" >> "$GITHUB_ENV" + sed -i -E "s/\((.*?)\)/(${version})/g" debian/changelog - name: Build Debian Package id: dpkg-buildpackage @@ -67,6 +68,7 @@ with: token: ${{ secrets.GITHUB_TOKEN }} onlyLastTag: true + unreleased: false stripGeneratorNotice: true - name: Create Release diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/CMakeLists.txt new/whatsapp-for-linux-1.5.2/CMakeLists.txt --- old/whatsapp-for-linux-1.5.1/CMakeLists.txt 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/CMakeLists.txt 2023-01-23 11:49:05.000000000 +0100 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12) project( whatsapp-for-linux - VERSION 1.5.1 + VERSION 1.5.2 DESCRIPTION "An unofficial WhatsApp desktop application for Linux" HOMEPAGE_URL "https://github.com/eneshecan/whatsapp-for-linux" LANGUAGES C CXX diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/README.md new/whatsapp-for-linux-1.5.2/README.md --- old/whatsapp-for-linux-1.5.1/README.md 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/README.md 2023-01-23 11:49:05.000000000 +0100 @@ -96,6 +96,14 @@ make install ``` +### Uninstall + +```bash +# Run inside the build directory if you want to uninstall all files +# install_manifest.txt file is created when you run make install +xargs rm < install_manifest.txt +``` + ## Packaging diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/debian/changelog new/whatsapp-for-linux-1.5.2/debian/changelog --- old/whatsapp-for-linux-1.5.1/debian/changelog 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/debian/changelog 2023-01-23 11:49:05.000000000 +0100 @@ -2,4 +2,4 @@ * See https://github.com/eneshecan/whatsapp-for-linux/releases - -- Enes Hecan <nshe...@gmail.com> Sun, 20 Jun 2021 10:30:00 +0200 \ No newline at end of file + -- Enes Hecan <nshe...@gmail.com> Sun, 20 Jun 2021 10:30:00 +0200 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/debian/rules new/whatsapp-for-linux-1.5.2/debian/rules --- old/whatsapp-for-linux-1.5.1/debian/rules 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/debian/rules 2023-01-23 11:49:05.000000000 +0100 @@ -1,7 +1,10 @@ -#!/bin/bash +#!/usr/bin/make -f +# -*- makefile -*- -echo "Setting version to ${RELEASE_VERSION}" -sed -i -E "s/\((.*?)\)/(${RELEASE_VERSION})/g" debian/changelog +override_dh_builddeb: + dh_builddeb -- -Zxz -z9 %: - dh $@ + dh $@ + +.PHONY: override_dh_builddeb diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/debian/source/options new/whatsapp-for-linux-1.5.2/debian/source/options --- old/whatsapp-for-linux-1.5.1/debian/source/options 1970-01-01 01:00:00.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/debian/source/options 2023-01-23 11:49:05.000000000 +0100 @@ -0,0 +1,2 @@ +compression = xz +compression-level = 9 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/LINGUAS new/whatsapp-for-linux-1.5.2/po/LINGUAS --- old/whatsapp-for-linux-1.5.1/po/LINGUAS 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/LINGUAS 2023-01-23 11:49:05.000000000 +0100 @@ -1,5 +1,8 @@ # Keep this file sorted alphabetically, one language code per line it +ka nl +pt-br ru tr +es diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/en.po new/whatsapp-for-linux-1.5.2/po/en.po --- old/whatsapp-for-linux-1.5.1/po/en.po 1970-01-01 01:00:00.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/en.po 2023-01-23 11:49:05.000000000 +0100 @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: POEditor.com\n" +"Project-Id-Version: whatsapp-for-linux\n" +"Language: en\n" + +#: ../src/ui/MainWindow.cpp:287 ../src/ui/TrayIcon.cpp:46 +#: ../resource/ui/MainWindow.ui.h:4 +msgid "About" +msgstr "About" + +#: ../src/ui/MainWindow.cpp:289 ../resource/ui/MainWindow.ui.h:6 +msgid "WhatsApp for Linux" +msgstr "WhatsApp for Linux" + +#: ../src/ui/MainWindow.cpp:290 +msgid "An unofficial WhatsApp desktop application for Linux" +msgstr "An unofficial WhatsApp desktop application for Linux" + +#: ../src/ui/MainWindow.cpp:292 +msgid "GitHub Repository" +msgstr "GitHub Repository" + +#: ../src/ui/PreferencesWindow.cpp:35 +msgid "On Demand" +msgstr "On Demand" + +#: ../src/ui/PreferencesWindow.cpp:36 +msgid "Always" +msgstr "Always" + +#: ../src/ui/PreferencesWindow.cpp:37 +msgid "Never" +msgstr "Never" + +#: ../src/ui/TrayIcon.cpp:45 +msgid "Show" +msgstr "Show" + +#: ../src/ui/TrayIcon.cpp:47 ../resource/ui/MainWindow.ui.h:5 +#: ../resource/ui/ShortcutsWindow.ui.h:8 +msgid "Quit" +msgstr "Quit" + +#: ../src/ui/WebView.cpp:34 +msgid "Notification Request" +msgstr "Notification Request" + +#: ../src/ui/WebView.cpp:35 +msgid "Would you like to allow notifications?" +msgstr "Would you like to allow notifications?" + +#: ../src/ui/WebView.cpp:69 +msgid "Save File" +msgstr "Save File" + +#: ../src/ui/WebView.cpp:70 +msgid "Ok" +msgstr "Ok" + +#: ../src/ui/WebView.cpp:71 +msgid "Cancel" +msgstr "Cancel" + +#: ../src/ui/WebView.cpp:307 +msgid "Unresponsive" +msgstr "Unresponsive" + +#: ../src/ui/WebView.cpp:308 +msgid "The application is not responding. Would you like to reload?" +msgstr "The application is not responding. Would you like to reload?" + +#: ../resource/ui/MainWindow.ui.h:1 +msgid "Fullscreen" +msgstr "Fullscreen" + +#: ../resource/ui/MainWindow.ui.h:2 ../resource/ui/PreferencesWindow.ui.h:18 +msgid "Preferences" +msgstr "Preferences" + +#: ../resource/ui/MainWindow.ui.h:3 ../resource/ui/ShortcutsWindow.ui.h:7 +msgid "Keyboard Shortcuts" +msgstr "Keyboard Shortcuts" + +#: ../resource/ui/MainWindow.ui.h:7 +msgid "Refresh" +msgstr "Refresh" + +#: ../resource/ui/MainWindow.ui.h:8 ../resource/ui/PhoneNumberDialog.ui.h:1 +msgid "Open chat by phone number" +msgstr "Open chat by phone number" + +#: ../resource/ui/PhoneNumberDialog.ui.h:2 +msgid "Enter phone number (only digits)" +msgstr "Enter phone number (only digits)" + +#: ../resource/ui/PreferencesWindow.ui.h:1 +msgid "Close to Tray" +msgstr "Close to Tray" + +#: ../resource/ui/PreferencesWindow.ui.h:2 +msgid "Start in Tray" +msgstr "Start in Tray" + +#: ../resource/ui/PreferencesWindow.ui.h:3 +msgid "Start Minimized" +msgstr "Start Minimized" + +#: ../resource/ui/PreferencesWindow.ui.h:4 +msgid "Autostart" +msgstr "Autostart" + +#: ../resource/ui/PreferencesWindow.ui.h:5 +msgid "Enable tray icon" +msgstr "Enable tray icon" + +#: ../resource/ui/PreferencesWindow.ui.h:6 +msgid "Start application as closed to tray" +msgstr "Start application as closed to tray" + +#: ../resource/ui/PreferencesWindow.ui.h:7 +msgid "Start application as minimized" +msgstr "Start application as minimized" + +#: ../resource/ui/PreferencesWindow.ui.h:8 +msgid "Start application after system boots" +msgstr "Start application after system boots" + +#: ../resource/ui/PreferencesWindow.ui.h:9 +#: ../resource/ui/ShortcutsWindow.ui.h:2 +msgid "General" +msgstr "General" + +#: ../resource/ui/PreferencesWindow.ui.h:10 +msgid "Prefer Dark Theme" +msgstr "Prefer Dark Theme" + +#: ../resource/ui/PreferencesWindow.ui.h:11 +msgid "Prefer dark theme for the application if system theme includes a dark variant" +msgstr "Prefer dark theme for the application if system theme includes a dark variant" + +#: ../resource/ui/PreferencesWindow.ui.h:12 +msgid "Appearance" +msgstr "Appearance" + +#: ../resource/ui/PreferencesWindow.ui.h:13 +msgid "Hardware Acceleration" +msgstr "Hardware Acceleration" + +#: ../resource/ui/PreferencesWindow.ui.h:14 +msgid "Allow Permissions" +msgstr "Allow Permissions" + +#: ../resource/ui/PreferencesWindow.ui.h:15 +msgid "Set hardware acceleration policy used by webkit" +msgstr "Set hardware acceleration policy used by webkit" + +#: ../resource/ui/PreferencesWindow.ui.h:16 +msgid "Allow permissions on application startup" +msgstr "Allow permissions on application startup" + +#: ../resource/ui/PreferencesWindow.ui.h:17 +msgid "Web" +msgstr "Web" + +#: ../resource/ui/ShortcutsWindow.ui.h:1 +msgid "Shortcuts" +msgstr "Shortcuts" + +#: ../resource/ui/ShortcutsWindow.ui.h:3 +msgid "Refresh Page" +msgstr "Refresh Page" + +#: ../resource/ui/ShortcutsWindow.ui.h:4 +msgid "Enter/Exit Fullscreen" +msgstr "Enter/Exit Fullscreen" + +#: ../resource/ui/ShortcutsWindow.ui.h:5 +msgid "Show/Hide Header Bar" +msgstr "Show/Hide Header Bar" + +#: ../resource/ui/ShortcutsWindow.ui.h:6 +msgid "Open Preferences" +msgstr "Open Preferences" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/es.po new/whatsapp-for-linux-1.5.2/po/es.po --- old/whatsapp-for-linux-1.5.1/po/es.po 1970-01-01 01:00:00.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/es.po 2023-01-23 11:49:05.000000000 +0100 @@ -0,0 +1,198 @@ +# Template translation file for whatsapp-for-linux +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the whatsapp-for-linux package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: whatsapp-for-linux\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-12-10 22:56+0100\n" +"PO-Revision-Date: 2022-12-26 15:57-0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: ../src/ui/MainWindow.cpp:287 ../src/ui/TrayIcon.cpp:46 +#: ../resource/ui/MainWindow.ui.h:4 +msgid "About" +msgstr "Acerca de" + +#: ../src/ui/MainWindow.cpp:289 ../resource/ui/MainWindow.ui.h:6 +msgid "WhatsApp for Linux" +msgstr "WhatsApp para Linux" + +#: ../src/ui/MainWindow.cpp:290 +msgid "An unofficial WhatsApp desktop application for Linux" +msgstr "Aplicación no oficial de WhatsApp para Linux" + +#: ../src/ui/MainWindow.cpp:292 +msgid "GitHub Repository" +msgstr "Repositorio GitHub" + +#: ../src/ui/PreferencesWindow.cpp:35 +msgid "On Demand" +msgstr "A petición" + +#: ../src/ui/PreferencesWindow.cpp:36 +msgid "Always" +msgstr "Siempre" + +#: ../src/ui/PreferencesWindow.cpp:37 +msgid "Never" +msgstr "Nunca" + +#: ../src/ui/TrayIcon.cpp:45 +msgid "Show" +msgstr "Mostrar" + +#: ../src/ui/TrayIcon.cpp:47 ../resource/ui/MainWindow.ui.h:5 +#: ../resource/ui/ShortcutsWindow.ui.h:8 +msgid "Quit" +msgstr "Salir" + +#: ../src/ui/WebView.cpp:34 +msgid "Notification Request" +msgstr "Solicitud de notificaciones" + +#: ../src/ui/WebView.cpp:35 +msgid "Would you like to allow notifications?" +msgstr "¿Desea permitir las notificaciones?" + +#: ../src/ui/WebView.cpp:69 +msgid "Save File" +msgstr "Guardar archivo" + +#: ../src/ui/WebView.cpp:70 +msgid "Ok" +msgstr "Ok" + +#: ../src/ui/WebView.cpp:71 +msgid "Cancel" +msgstr "Cancelar" + +#: ../src/ui/WebView.cpp:307 +msgid "Unresponsive" +msgstr "No responde" + +#: ../src/ui/WebView.cpp:308 +msgid "The application is not responding. Would you like to reload?" +msgstr "La aplicación no responde. ¿Desea recargarla?" + +#: ../resource/ui/MainWindow.ui.h:1 +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: ../resource/ui/MainWindow.ui.h:2 ../resource/ui/PreferencesWindow.ui.h:18 +msgid "Preferences" +msgstr "Preferencias" + +#: ../resource/ui/MainWindow.ui.h:3 ../resource/ui/ShortcutsWindow.ui.h:7 +msgid "Keyboard Shortcuts" +msgstr "Atajos de teclado" + +#: ../resource/ui/MainWindow.ui.h:7 +msgid "Refresh" +msgstr "Actualizar" + +#: ../resource/ui/MainWindow.ui.h:8 ../resource/ui/PhoneNumberDialog.ui.h:1 +msgid "Open chat by phone number" +msgstr "Abrir chat por número de teléfono" + +#: ../resource/ui/PhoneNumberDialog.ui.h:2 +msgid "Enter phone number (only digits)" +msgstr "Introduzca el número de teléfono (sólo dÃgitos)" + +#: ../resource/ui/PreferencesWindow.ui.h:1 +msgid "Close to Tray" +msgstr "Cerrar hacia la bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:2 +msgid "Start in Tray" +msgstr "Iniciar en la bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:3 +msgid "Start Minimized" +msgstr "Iniciar minimizado" + +#: ../resource/ui/PreferencesWindow.ui.h:4 +msgid "Autostart" +msgstr "Arranque automático" + +#: ../resource/ui/PreferencesWindow.ui.h:5 +msgid "Enable tray icon" +msgstr "Habilitar el icono de la bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:6 +msgid "Start application as closed to tray" +msgstr "Iniciar la aplicación como cerrada en la bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:7 +msgid "Start application as minimized" +msgstr "Iniciar la aplicación minimizada" + +#: ../resource/ui/PreferencesWindow.ui.h:8 +msgid "Start application after system boots" +msgstr "Iniciar la aplicación tras el arranque del sistema" + +#: ../resource/ui/PreferencesWindow.ui.h:9 +#: ../resource/ui/ShortcutsWindow.ui.h:2 +msgid "General" +msgstr "General" + +#: ../resource/ui/PreferencesWindow.ui.h:10 +msgid "Prefer Dark Theme" +msgstr "Preferir tema oscuro" + +#: ../resource/ui/PreferencesWindow.ui.h:11 +msgid "Prefer dark theme for the application if system theme includes a dark variant" +msgstr "Preferir un tema oscuro para la aplicación si el tema del sistema incluye una variante oscura" + +#: ../resource/ui/PreferencesWindow.ui.h:12 +msgid "Appearance" +msgstr "Apariencia" + +#: ../resource/ui/PreferencesWindow.ui.h:13 +msgid "Hardware Acceleration" +msgstr "Aceleración por hardware" + +#: ../resource/ui/PreferencesWindow.ui.h:14 +msgid "Allow Permissions" +msgstr "Autorizar permisos" + +#: ../resource/ui/PreferencesWindow.ui.h:15 +msgid "Set hardware acceleration policy used by webkit" +msgstr "Establecer la polÃtica de aceleración de hardware utilizada por webkit" + +#: ../resource/ui/PreferencesWindow.ui.h:16 +msgid "Allow permissions on application startup" +msgstr "Permitir permisos al iniciar la aplicación" + +#: ../resource/ui/PreferencesWindow.ui.h:17 +msgid "Web" +msgstr "Página web" + +#: ../resource/ui/ShortcutsWindow.ui.h:1 +msgid "Shortcuts" +msgstr "Atajos" + +#: ../resource/ui/ShortcutsWindow.ui.h:3 +msgid "Refresh Page" +msgstr "Actualizar página" + +#: ../resource/ui/ShortcutsWindow.ui.h:4 +msgid "Enter/Exit Fullscreen" +msgstr "Entrar/Salir de pantalla completa" + +#: ../resource/ui/ShortcutsWindow.ui.h:5 +msgid "Show/Hide Header Bar" +msgstr "Mostrar/Ocultar barra de encabezado" + +#: ../resource/ui/ShortcutsWindow.ui.h:6 +msgid "Open Preferences" +msgstr "Abrir Preferencias" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/it.po new/whatsapp-for-linux-1.5.2/po/it.po --- old/whatsapp-for-linux-1.5.1/po/it.po 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/it.po 2023-01-23 11:49:05.000000000 +0100 @@ -32,7 +32,7 @@ msgstr "Un'applicazione WhatsApp non ufficiale per Linux" #: ../src/ui/MainWindow.cpp:292 -msgid "Github Repository" +msgid "GitHub Repository" msgstr "GitHub" #: ../src/ui/PreferencesWindow.cpp:35 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/ka.po new/whatsapp-for-linux-1.5.2/po/ka.po --- old/whatsapp-for-linux-1.5.1/po/ka.po 1970-01-01 01:00:00.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/ka.po 2023-01-23 11:49:05.000000000 +0100 @@ -0,0 +1,198 @@ +# Georgian translation for whatsapp-for-linux +# Copyright (C) 2023 whatsapp-for-linux authors +# This file is distributed under the same license as the whatsapp-for-linux package. +# Ekaterine Papava <katopap...@gmail.com>, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: whatsapp-for-linux\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-12-10 22:56+0100\n" +"PO-Revision-Date: 2023-01-07 12:25+0100\n" +"Last-Translator: Ekaterine Papava <katopap...@gmail.com>\n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\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.2.2\n" + +#: ../src/ui/MainWindow.cpp:287 ../src/ui/TrayIcon.cpp:46 +#: ../resource/ui/MainWindow.ui.h:4 +msgid "About" +msgstr "á¨áá¡áá®áá" + +#: ../src/ui/MainWindow.cpp:289 ../resource/ui/MainWindow.ui.h:6 +msgid "WhatsApp for Linux" +msgstr "WhatsApp-á áááá£á¥á¡áá¡áááá¡" + +#: ../src/ui/MainWindow.cpp:290 +msgid "An unofficial WhatsApp desktop application for Linux" +msgstr "WhatsApp-áá¡ áá ááá¤ááªáááá£á á áááááááªáá áááá£á¥á¡áá¡áááá¡" + +#: ../src/ui/MainWindow.cpp:292 +msgid "GitHub Repository" +msgstr "GitHub -áá¡ á áááááá¢áá áá" + +#: ../src/ui/PreferencesWindow.cpp:35 +msgid "On Demand" +msgstr "á¡áááá ááááá¡ááááá " + +#: ../src/ui/PreferencesWindow.cpp:36 +msgid "Always" +msgstr "á§áááááááá¡" + +#: ../src/ui/PreferencesWindow.cpp:37 +msgid "Never" +msgstr "áá áá¡áááá¡" + +#: ../src/ui/TrayIcon.cpp:45 +msgid "Show" +msgstr "á©áááááá" + +#: ../src/ui/TrayIcon.cpp:47 ../resource/ui/MainWindow.ui.h:5 +#: ../resource/ui/ShortcutsWindow.ui.h:8 +msgid "Quit" +msgstr "&ááá¡ááá" + +#: ../src/ui/WebView.cpp:34 +msgid "Notification Request" +msgstr "ááá¤á áá®áááááá¡ áááá®áááá" + +#: ../src/ui/WebView.cpp:35 +msgid "Would you like to allow notifications?" +msgstr "ááááááá, ááá£á¨ááá ááá¤á áá®ááááááá?" + +#: ../src/ui/WebView.cpp:69 +msgid "Save File" +msgstr "á¤ááááá¡ á¨áááá®áá" + +#: ../src/ui/WebView.cpp:70 +msgid "Ok" +msgstr "áááá®" + +#: ../src/ui/WebView.cpp:71 +msgid "Cancel" +msgstr "ááá£á¥áááá" + +#: ../src/ui/WebView.cpp:307 +msgid "Unresponsive" +msgstr "áá ááá¡á£á®ááá¡" + +#: ../src/ui/WebView.cpp:308 +msgid "The application is not responding. Would you like to reload?" +msgstr "áááááááªáá áá ááá¡á£á®ááá¡. ááááááá, ááááá¢ááá ááá?" + +#: ../resource/ui/MainWindow.ui.h:1 +msgid "Fullscreen" +msgstr "áááá ááá áááá" + +#: ../resource/ui/MainWindow.ui.h:2 ../resource/ui/PreferencesWindow.ui.h:18 +msgid "Preferences" +msgstr "ááá áááá" + +#: ../resource/ui/MainWindow.ui.h:3 ../resource/ui/ShortcutsWindow.ui.h:7 +msgid "Keyboard Shortcuts" +msgstr "á¡á®áá á¢á áááááá¨ááá" + +#: ../resource/ui/MainWindow.ui.h:7 +msgid "Refresh" +msgstr "ááááá®áááá" + +#: ../resource/ui/MainWindow.ui.h:8 ../resource/ui/PhoneNumberDialog.ui.h:1 +msgid "Open chat by phone number" +msgstr "á¢áááá¤áááá¡ ááááá ááá á¡áá¡áá£áá áá¡ ááá®á¡áá" + +#: ../resource/ui/PhoneNumberDialog.ui.h:2 +msgid "Enter phone number (only digits)" +msgstr "á¨ááá§ááááá á¢áááá¤áááá¡ ááááá á (áá®áááá áªáá¤á ááá)" + +#: ../resource/ui/PreferencesWindow.ui.h:1 +msgid "Close to Tray" +msgstr "á¡áá¡á¢ááá£á á ááááááá¡ á®áá¢á£ááá¨á á©áá®á£á áá" + +#: ../resource/ui/PreferencesWindow.ui.h:2 +msgid "Start in Tray" +msgstr "á¡áá¡á¢ááá£á á ááááááá¡ á®áá¢á£ááá¨á ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:3 +msgid "Start Minimized" +msgstr "á©ááááªáááá ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:4 +msgid "Autostart" +msgstr "ááá¢áááá¢á£á á ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:5 +msgid "Enable tray icon" +msgstr "á¡áá¡á¢áááá¡ áá£áá®áá¨á á®áá¢á£ááá¡ á©áá ááá" + +#: ../resource/ui/PreferencesWindow.ui.h:6 +msgid "Start application as closed to tray" +msgstr "áááááááªááá¡ á¡áá¡á¢áááá¡ áá£áá®áá¨á, ááá®á£á á£ááá ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:7 +msgid "Start application as minimized" +msgstr "áááááááªááá¡ á©ááááªáááá ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:8 +msgid "Start application after system boots" +msgstr "áááááááªááá¡ á¡áá¡á¢áááá¡ á©áá¢ááá áááá¡áá¡ ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:9 +#: ../resource/ui/ShortcutsWindow.ui.h:2 +msgid "General" +msgstr "áááááá á" + +#: ../resource/ui/PreferencesWindow.ui.h:10 +msgid "Prefer Dark Theme" +msgstr "áá£á¥á ááááá¡ áá á©ááááá" + +#: ../resource/ui/PreferencesWindow.ui.h:11 +msgid "Prefer dark theme for the application if system theme includes a dark variant" +msgstr "áᣠá¡áá¡á¢áááá¡ áááá á¨áááªááá¡ áá£á¥ ááááá¡, áááááááªááá¨á᪠áá£á¥á ááááá¡ ááááá§ááááá" + +#: ../resource/ui/PreferencesWindow.ui.h:12 +msgid "Appearance" +msgstr "ááá áááá¡ ááá á¡áá®á" + +#: ../resource/ui/PreferencesWindow.ui.h:13 +msgid "Hardware Acceleration" +msgstr "áááá áá¢á£á á£áá áá©á¥áá ááá" + +#: ../resource/ui/PreferencesWindow.ui.h:14 +msgid "Allow Permissions" +msgstr "á¬áááááááá¡ ááá¨áááá" + +#: ../resource/ui/PreferencesWindow.ui.h:15 +msgid "Set hardware acceleration policy used by webkit" +msgstr "Webkit-áá¡ áááá áááá áá¢á£á á£áá áá©á¥áá áááá¡ ááááá§áááááá¡ ááááá¢áááá¡ ááá§ááááá" + +#: ../resource/ui/PreferencesWindow.ui.h:16 +msgid "Allow permissions on application startup" +msgstr "á¬áááááááá¡ ááá¨áááá áááááááªááá¡ ááá¨ááááá¡áá¡" + +#: ../resource/ui/PreferencesWindow.ui.h:17 +msgid "Web" +msgstr "áááá" + +#: ../resource/ui/ShortcutsWindow.ui.h:1 +msgid "Shortcuts" +msgstr "áááá¡áá®áááááá" + +#: ../resource/ui/ShortcutsWindow.ui.h:3 +msgid "Refresh Page" +msgstr "áááá ááá¡ ááááá®áááá" + +#: ../resource/ui/ShortcutsWindow.ui.h:4 +msgid "Enter/Exit Fullscreen" +msgstr "á¡á á£áá ááá áááá¡ á©áá á/ááááá á" + +#: ../resource/ui/ShortcutsWindow.ui.h:5 +msgid "Show/Hide Header Bar" +msgstr "áááá¡áá ááá¡ ááááá¡ á©áááááá/ááááááá" + +#: ../resource/ui/ShortcutsWindow.ui.h:6 +msgid "Open Preferences" +msgstr "ááá ááááá¡ á¤ááá¯á áá¡ ááá®á¡áá" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/nl.po new/whatsapp-for-linux-1.5.2/po/nl.po --- old/whatsapp-for-linux-1.5.1/po/nl.po 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/nl.po 2023-01-23 11:49:05.000000000 +0100 @@ -32,8 +32,8 @@ msgstr "Een onofficiële WhatsApp-desktoptoepassing voor Linux" #: ../src/ui/MainWindow.cpp:292 -msgid "Github Repository" -msgstr "Github" +msgid "GitHub Repository" +msgstr "GitHub" #: ../src/ui/PreferencesWindow.cpp:35 msgid "On Demand" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/pt-br.po new/whatsapp-for-linux-1.5.2/po/pt-br.po --- old/whatsapp-for-linux-1.5.1/po/pt-br.po 1970-01-01 01:00:00.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/pt-br.po 2023-01-23 11:49:05.000000000 +0100 @@ -0,0 +1,198 @@ +# Template translation file for whatsapp-for-linux +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the whatsapp-for-linux package. +# Claudio Ferreira <filh...@gmail.com>, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: whatsapp-for-linux\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-12-10 22:56+0100\n" +"PO-Revision-Date: 2022-12-26 15:57-0300\n" +"Last-Translator: \n" +"Language-Team: \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: Poedit 3.1.1\n" + +#: ../src/ui/MainWindow.cpp:287 ../src/ui/TrayIcon.cpp:46 +#: ../resource/ui/MainWindow.ui.h:4 +msgid "About" +msgstr "Sobre" + +#: ../src/ui/MainWindow.cpp:289 ../resource/ui/MainWindow.ui.h:6 +msgid "WhatsApp for Linux" +msgstr "WhatsApp para Linux" + +#: ../src/ui/MainWindow.cpp:290 +msgid "An unofficial WhatsApp desktop application for Linux" +msgstr "Aplicação não oficial de WhatsApp para Linux" + +#: ../src/ui/MainWindow.cpp:292 +msgid "GitHub Repository" +msgstr "Repositório GitHub" + +#: ../src/ui/PreferencesWindow.cpp:35 +msgid "On Demand" +msgstr "Sob demanda" + +#: ../src/ui/PreferencesWindow.cpp:36 +msgid "Always" +msgstr "Sempre" + +#: ../src/ui/PreferencesWindow.cpp:37 +msgid "Never" +msgstr "Nunca" + +#: ../src/ui/TrayIcon.cpp:45 +msgid "Show" +msgstr "Mostrar" + +#: ../src/ui/TrayIcon.cpp:47 ../resource/ui/MainWindow.ui.h:5 +#: ../resource/ui/ShortcutsWindow.ui.h:8 +msgid "Quit" +msgstr "Sair" + +#: ../src/ui/WebView.cpp:34 +msgid "Notification Request" +msgstr "Requisição de Notificação" + +#: ../src/ui/WebView.cpp:35 +msgid "Would you like to allow notifications?" +msgstr "Deseja permitir as notificações?" + +#: ../src/ui/WebView.cpp:69 +msgid "Save File" +msgstr "Salvar arquivo" + +#: ../src/ui/WebView.cpp:70 +msgid "Ok" +msgstr "Ok" + +#: ../src/ui/WebView.cpp:71 +msgid "Cancel" +msgstr "Cancelar" + +#: ../src/ui/WebView.cpp:307 +msgid "Unresponsive" +msgstr "No responde" + +#: ../src/ui/WebView.cpp:308 +msgid "The application is not responding. Would you like to reload?" +msgstr "A aplicação não responde. Deseja recarregá-la?" + +#: ../resource/ui/MainWindow.ui.h:1 +msgid "Fullscreen" +msgstr "Tela cheia" + +#: ../resource/ui/MainWindow.ui.h:2 ../resource/ui/PreferencesWindow.ui.h:18 +msgid "Preferences" +msgstr "Preferências" + +#: ../resource/ui/MainWindow.ui.h:3 ../resource/ui/ShortcutsWindow.ui.h:7 +msgid "Keyboard Shortcuts" +msgstr "Atalhos de teclado" + +#: ../resource/ui/MainWindow.ui.h:7 +msgid "Refresh" +msgstr "Atualizar" + +#: ../resource/ui/MainWindow.ui.h:8 ../resource/ui/PhoneNumberDialog.ui.h:1 +msgid "Open chat by phone number" +msgstr "Abrir chat pelo número de telefone" + +#: ../resource/ui/PhoneNumberDialog.ui.h:2 +msgid "Enter phone number (only digits)" +msgstr "Introduza o número de telefone (somente números)" + +#: ../resource/ui/PreferencesWindow.ui.h:1 +msgid "Close to Tray" +msgstr "Fechar para a bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:2 +msgid "Start in Tray" +msgstr "Iniciar na bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:3 +msgid "Start Minimized" +msgstr "Iniciar minimizado" + +#: ../resource/ui/PreferencesWindow.ui.h:4 +msgid "Autostart" +msgstr "InÃcio automático" + +#: ../resource/ui/PreferencesWindow.ui.h:5 +msgid "Enable tray icon" +msgstr "Habilitar o Ãcone na bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:6 +msgid "Start application as closed to tray" +msgstr "Iniciar a aplicação minimizada na bandeja" + +#: ../resource/ui/PreferencesWindow.ui.h:7 +msgid "Start application as minimized" +msgstr "Iniciar a aplicação minimizada" + +#: ../resource/ui/PreferencesWindow.ui.h:8 +msgid "Start application after system boots" +msgstr "Iniciar a aplicação depois do inicio do sistema" + +#: ../resource/ui/PreferencesWindow.ui.h:9 +#: ../resource/ui/ShortcutsWindow.ui.h:2 +msgid "General" +msgstr "Geral" + +#: ../resource/ui/PreferencesWindow.ui.h:10 +msgid "Prefer Dark Theme" +msgstr "Preferir tema escuro" + +#: ../resource/ui/PreferencesWindow.ui.h:11 +msgid "Prefer dark theme for the application if system theme includes a dark variant" +msgstr "Preferir um tema escuro para a aplicação se o tema do sistema inclui uma variante escura" + +#: ../resource/ui/PreferencesWindow.ui.h:12 +msgid "Appearance" +msgstr "Aparência" + +#: ../resource/ui/PreferencesWindow.ui.h:13 +msgid "Hardware Acceleration" +msgstr "Aceleração por hardware" + +#: ../resource/ui/PreferencesWindow.ui.h:14 +msgid "Allow Permissions" +msgstr "Autorizar permissões" + +#: ../resource/ui/PreferencesWindow.ui.h:15 +msgid "Set hardware acceleration policy used by webkit" +msgstr "Definir a polÃtica de aceleração de hardware usada pelo webkit" + +#: ../resource/ui/PreferencesWindow.ui.h:16 +msgid "Allow permissions on application startup" +msgstr "Permitir permissões ao iniciar a aplicação" + +#: ../resource/ui/PreferencesWindow.ui.h:17 +msgid "Web" +msgstr "Página web" + +#: ../resource/ui/ShortcutsWindow.ui.h:1 +msgid "Shortcuts" +msgstr "Atalhos" + +#: ../resource/ui/ShortcutsWindow.ui.h:3 +msgid "Refresh Page" +msgstr "Atualizar página" + +#: ../resource/ui/ShortcutsWindow.ui.h:4 +msgid "Enter/Exit Fullscreen" +msgstr "Entrar/Sair da tela cheia" + +#: ../resource/ui/ShortcutsWindow.ui.h:5 +msgid "Show/Hide Header Bar" +msgstr "Mostrar/Ocultar barra de cabeçalho" + +#: ../resource/ui/ShortcutsWindow.ui.h:6 +msgid "Open Preferences" +msgstr "Abrir Preferências" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/ru.po new/whatsapp-for-linux-1.5.2/po/ru.po --- old/whatsapp-for-linux-1.5.1/po/ru.po 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/ru.po 2023-01-23 11:49:05.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: whatsapp-for-linux\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-27 09:20+0200\n" +"POT-Creation-Date: 2022-12-10 22:56+0100\n" "PO-Revision-Date: 2022-11-11 10:36+0300\n" "Last-Translator: Olesya Gerasimenko <translation-t...@basealt.ru>\n" "Language-Team: Basealt Translation Team\n" @@ -15,8 +15,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" -"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 22.04.3\n" #: ../src/ui/MainWindow.cpp:287 ../src/ui/TrayIcon.cpp:46 @@ -33,18 +33,18 @@ msgstr "ÐеоÑиÑиалÑное пÑиложение WhatsApp Ð´Ð»Ñ Linux" #: ../src/ui/MainWindow.cpp:292 -msgid "Github Repository" +msgid "GitHub Repository" msgstr "РепозиÑоÑий на GitHub" -#: ../src/ui/PreferencesWindow.cpp:30 +#: ../src/ui/PreferencesWindow.cpp:35 msgid "On Demand" msgstr "Ðо запÑоÑÑ" -#: ../src/ui/PreferencesWindow.cpp:31 +#: ../src/ui/PreferencesWindow.cpp:36 msgid "Always" msgstr "ÐÑегда" -#: ../src/ui/PreferencesWindow.cpp:32 +#: ../src/ui/PreferencesWindow.cpp:37 msgid "Never" msgstr "Ðикогда" @@ -89,7 +89,7 @@ msgid "Fullscreen" msgstr "Ðа веÑÑ ÑкÑан" -#: ../resource/ui/MainWindow.ui.h:2 ../resource/ui/PreferencesWindow.ui.h:15 +#: ../resource/ui/MainWindow.ui.h:2 ../resource/ui/PreferencesWindow.ui.h:18 msgid "Preferences" msgstr "ÐаÑамеÑÑÑ" @@ -147,22 +147,34 @@ msgstr "ÐбÑие" #: ../resource/ui/PreferencesWindow.ui.h:10 +msgid "Prefer Dark Theme" +msgstr "ÐÑедпоÑиÑаÑÑ Ð¢ÑмнÑÑ Ð¢ÐµÐ¼Ñ" + +#: ../resource/ui/PreferencesWindow.ui.h:11 +msgid "Prefer dark theme for the application if system theme includes a dark variant" +msgstr "ÐÑедпоÑиÑаÑÑ ÑÑмнÑÑ ÑемÑ, еÑли ÑиÑÑема пÑедÑÑмаÑÑÐ¸Ð²Ð°ÐµÑ ÑÑмнÑй ваÑианÑ" + +#: ../resource/ui/PreferencesWindow.ui.h:12 +msgid "Appearance" +msgstr "ÐнеÑний вид" + +#: ../resource/ui/PreferencesWindow.ui.h:13 msgid "Hardware Acceleration" msgstr "ÐппаÑаÑное ÑÑкоÑение" -#: ../resource/ui/PreferencesWindow.ui.h:11 +#: ../resource/ui/PreferencesWindow.ui.h:14 msgid "Allow Permissions" msgstr "ÐÑедоÑÑавиÑÑ ÑазÑеÑениÑ" -#: ../resource/ui/PreferencesWindow.ui.h:12 +#: ../resource/ui/PreferencesWindow.ui.h:15 msgid "Set hardware acceleration policy used by webkit" msgstr "УÑÑановиÑÑ Ð¿Ð¾Ð»Ð¸ÑÐ¸ÐºÑ Ð°Ð¿Ð¿Ð°ÑаÑного ÑÑкоÑениÑ, иÑполÑзÑемÑÑ webkit" -#: ../resource/ui/PreferencesWindow.ui.h:13 +#: ../resource/ui/PreferencesWindow.ui.h:16 msgid "Allow permissions on application startup" msgstr "ÐÑедоÑÑавиÑÑ ÑазÑеÑÐµÐ½Ð¸Ñ Ð¿Ñи запÑÑке пÑиложениÑ" -#: ../resource/ui/PreferencesWindow.ui.h:14 +#: ../resource/ui/PreferencesWindow.ui.h:17 msgid "Web" msgstr "ÐнÑеÑнеÑ" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/tr.po new/whatsapp-for-linux-1.5.2/po/tr.po --- old/whatsapp-for-linux-1.5.1/po/tr.po 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/tr.po 2023-01-23 11:49:05.000000000 +0100 @@ -31,8 +31,8 @@ msgstr "Linux için resmi olmayan bir WhatsApp masaüstü uygulaması" #: ../src/ui/MainWindow.cpp:292 -msgid "Github Repository" -msgstr "Github" +msgid "GitHub Repository" +msgstr "GitHub" #: ../src/ui/PreferencesWindow.cpp:35 msgid "On Demand" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/po/whatsapp-for-linux.pot new/whatsapp-for-linux-1.5.2/po/whatsapp-for-linux.pot --- old/whatsapp-for-linux-1.5.1/po/whatsapp-for-linux.pot 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/po/whatsapp-for-linux.pot 2023-01-23 11:49:05.000000000 +0100 @@ -31,7 +31,7 @@ msgstr "" #: ../src/ui/MainWindow.cpp:292 -msgid "Github Repository" +msgid "GitHub Repository" msgstr "" #: ../src/ui/PreferencesWindow.cpp:35 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/whatsapp-for-linux-1.5.1/resource/desktop/com.github.eneshecan.WhatsAppForLinux.desktop.in new/whatsapp-for-linux-1.5.2/resource/desktop/com.github.eneshecan.WhatsAppForLinux.desktop.in --- old/whatsapp-for-linux-1.5.1/resource/desktop/com.github.eneshecan.WhatsAppForLinux.desktop.in 2022-12-23 12:53:17.000000000 +0100 +++ new/whatsapp-for-linux-1.5.2/resource/desktop/com.github.eneshecan.WhatsAppForLinux.desktop.in 2023-01-23 11:49:05.000000000 +0100 @@ -2,18 +2,27 @@ Type=Application Version=1.0 Name=${WFL_FRIENDLY_NAME} +Name[es]=WhatsApp para Linux Name[it]=WhatsApp per Linux +Name[ka]=WhatsApp-á áááá£á¥á¡áá¡áááá¡ Name[nl]=WhatsApp voor Linux +Name[pt-br]=WhatsApp para Linux Name[ru]=WhatsApp Ð´Ð»Ñ Linux Name[tr]=Linux için WhatsApp GenericName=Unofficial WhatsApp client +GenericName[es]=Cliente no oficial de WhatsApp GenericName[it]=Client WhatsApp non ufficiale +GenericName[ka]=WhatsApp-áá¡ áá ááá¤ááªáááá£á á áááááá¢á GenericName[nl]=Niet-officiële WhatsApp-client +GenericName[pt-br]=Cliente não oficial de WhatsApp GenericName[ru]=ÐеоÑиÑиалÑнÑй ÐºÐ»Ð¸ÐµÐ½Ñ WhatsApp GenericName[tr]=Resmi olmayan WhatsApp istemcisi Comment=${WFL_DESCRIPTION} +Comment[es]=Una aplicación no oficial de WhatsApp para Linux Comment[it]=Un'applicazione WhatsApp non ufficiale per Linux +Comment[ka]=WhatsApp-áá¡ áá ááá¤ááªáááá£á á áááááá¢á áááá£á¥á¡áá¡áááá¡ Comment[nl]=Een onofficiële WhatsApp-desktoptoepassing voor Linux +Comment[pt-br]=Uma aplicação não oficial de WhatsApp para Linux Comment[ru]=ÐеоÑиÑиалÑное пÑиложение WhatsApp Ð´Ð»Ñ Linux Comment[tr]=Linux için resmi olmayan bir WhatsApp masaüstü uygulaması Exec=${WFL_NAME} %u