tis-poedit icon

Poedit

Paquet d’installation silencieuse pour Poedit

3.9-5
Utilities
Utilities

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-poedit
  • name: Poedit
  • version: 3.9-5
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Václav Slavík
  • licence: MIT
  • locale: all
  • target_os: windows
  • impacted_process: Poedit
  • architecture: x64
  • signature_date:
  • size: 17.60 Mo
  • installed_size: 66.49 Mo
  • homepage : https://poedit.net/

package           : tis-poedit
version           : 3.9-5
architecture      : x64
section           : base
priority          : optional
name              : Poedit
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Poedit (formerly poEdit) is a shareware and cross-platform gettext catalog (.po file) editor to aid in the process of language localisation.
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://poedit.net/download
installed_size    : 66494000
impacted_process  : Poedit
description_fr    : Poedit (anciennement poEdit) est un logiciel éditeur libre de catalogues gettext textuels (fichiers .po) multi-plateforme.
description_pl    : Poedit (dawniej poEdit) to shareware'owy i cross-platformowy edytor katalogu gettext (.po file) wspomagający proces lokalizacji języka
description_de    : Poedit (früher poEdit) ist ein plattformübergreifender Shareware-Editor für Gettext-Kataloge (.po-Dateien), der den Prozess der Sprachlokalisierung unterstützt
description_es    : Poedit (antes poEdit) es un editor de catálogos de texto (archivos .po) shareware y multiplataforma para ayudar en el proceso de localización de idiomas
description_pt    : Poedit (anteriormente poEdit) é um editor de catálogo gettext (ficheiro.po) shareware e cross-platform para ajudar no processo de localização linguística
description_it    : Poedit (ex poEdit) è un editor shareware e multipiattaforma di cataloghi gettext (file .po) che aiuta nel processo di localizzazione linguistica
description_nl    : Poedit (voorheen poEdit) is een shareware en cross-platform gettext catalogus (.po bestand) editor om te helpen bij het proces van taal lokalisatie
description_ru    : Poedit (ранее poEdit) - это shareware и кросс-платформенный редактор gettext каталога (файла .po) для помощи в процессе языковой локализации
audit_schedule    : 
editor            : Václav Slavík
keywords          : poedit,po,edit,gettext,get,text,catalog,.po,file,editor,language,localisation,translation
licence           : MIT
homepage          : https://poedit.net/
package_uuid      : f83b9d55-8b7a-4e16-8f0b-26a50233061b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/vslavik/poedit/releases
min_os_version    : 10.0.18000.0
max_os_version    : 
icon_sha256sum    : c7681dffb4faaca8cba76befeeab75e18c37a7755d0fe06ca3b4e77e52ea90de
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-03-10T12:25:12.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : dojTfGzE6F/80PbVj9qB1mC9pLMTKAAbLrG7sBSoB/uRhoEHLA5s3Q5zQiPMb6uZ//aO/ufx+pyVeI7yX37v8f6J/svW3lPCYz1IYrUonFUyBgVBd7UIZLp6cViuEpzwU17Za4HCO1UBQyxFlwMXd55pdKWnlPRjX5VftbJmqL0SZXhofhs9NgoV8BIDJZGb/rY8KD0cjat5GnQABaREZUNdXMiZYdSQdL/HOnav/8NT1V8goq/b+LsDCqjXsY5WzfrK96fsyfpIHn8CXuNaA9xt7QQd6t5jtWt1q7awjNztg8luLRA433V5cYN4jLuzzgEm5TDccKkujxQx1JXZuA==

# -*- coding: utf-8 -*-
from setuphelpers import *

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob("*Poedit*.exe")[0]
    app_path = makepath(programfiles32, "Poedit", "Poedit.exe")

    # def get_app_version(key):
    #     return get_file_properties(app_path)["ProductVersion"] + "." + get_file_properties(app_path)["FileVersion"].split(".")[-1]

    # Installing the software
    print("Installing: %s" % bin_name)

    install_exe_if_needed(
        bin_name,
        silentflags="/verysilent /norestart",
        key="{68EB2C37-083A-4303-B5D8-41FA67E50B8F}_is1",
        min_version= control.get_software_version(),
    )

    print("Disabling: Auto-update check")
    registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Vaclav Slavik\Poedit\WinSparkle", "CheckForUpdates", "0")


def session_setup():
    print("Disabling: Auto-update check")
    registry_setstring(HKEY_CURRENT_USER, r"Software\Vaclav Slavik\Poedit\WinSparkle", "CheckForUpdates", "0")

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import platform
import bs4 as BeautifulSoup
import win32api

# Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "Poedit-"

def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    url = "https://poedit.net/download"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all('https://poedit.net/download', "a","class","btn btn-secondary w5", proxies=proxies):
        if bin_contains in bs_search["href"]:
            url_dl = bs_search["href"]
            latest_bin = url_dl.split("/")[-1]
            version = latest_bin.split("-")[-2]
            break

    #print("Latest %s version is: %s" % (app_name, version))
    print("Download url is: %s" % url_dl)


    # Deleting binaries
    for f in glob.glob("*.exe"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_dl)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)
    

    control.set_software_version(version)
    control.save_control_to_wapt()

cd847f85a77f0c76c2197d2ce9efe9416276cc3df4e9e25f3efb916c756bdf8a : Poedit-3.9-setup.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
6979734d6a204d804c18b90fd5aced00e4b0b6c087af7ff8bdb247a4ad78a0c7 : WAPT/control
c7681dffb4faaca8cba76befeeab75e18c37a7755d0fe06ca3b4e77e52ea90de : WAPT/icon.png
5c37e1007f06b6494de202291207c4fcf59f68e396aa7d0753f9c8590fa30daf : luti.json
edb63fb66c36f5f0a45a3948e89118a31a59f147dead6642679da30bb8393e15 : setup.py
6cf368ea0fefa3c3f0b512c44b1b5ca0291b6f8f6ddeb2914f25f682f1e12857 : update_package.py