tis-poedit

3.4.2.6902-4
Poedit (formerly poEdit) is a shareware and cross-platform gettext catalog (.po file) editor to aid in the process of language localisation.
5898 downloads
Download
See build result See VirusTotal scan
tis-poedit icon
  • package : tis-poedit
  • name : Poedit
  • version : 3.4.2.6902-4
  • categories : Utilities
  • maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
  • installed_size : 66494000
  • editor : Václav Slavík
  • licence : MIT
  • signature_date : 2023-12-27T18:00:33.559686
  • size : 19.35 Mo
  • locale : all
  • target_os : windows
  • impacted_process : Poedit
  • architecture : all
  • Homepage : https://poedit.net/
package           : tis-poedit
version           : 3.4.2.6902-4
architecture      : all
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          : PROD
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      : 384c24a4-e895-483b-b38c-697516ca555b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/vslavik/poedit/releases
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : c7681dffb4faaca8cba76befeeab75e18c37a7755d0fe06ca3b4e77e52ea90de
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : MHcwu1GRpuDLGgOXDeBw80U0EdjUyXgDHJ0jZaVeGWxGOw6cuFmZbqStTsCDSxLrRPZka7bHeHsNb0C34H4dfhU9JduT+aFEFUTmYqOZTMy6xUFLM5O1b7Gt5xTi2TOkEyfjdhDrxVs1aUN2jTTcBH7hIuQ+BJsNm/w5PIMIccTqkF4lgeKVGSf1Hes0ux8q9KUk4/u6/VW/yjrsC07g259v28+woGWN/wTJxwthzlqJh92UV6/KdUbIlKBHlJz3elgFbEnJ2LoEcGhmpihxpM0t6GopZA7m+NwPBO/KwCKBBTNn35sY06F79cYQmnx/U9VnxniqMg25HeRcMJwFdg==
signature_date    : 2023-12-27T18:00:33.559686
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
# -*- 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(),
        get_version=get_app_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)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    control.version = "%s-%s" % (Version(get_file_properties(latest_bin)["FileVersion"]), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating or not update-package-sources
    return result
4c919425cbcca67ecb944b54d3401f40785be90c4ea7444287f6a5c89e4504d0 : setup.py
 : __pycache__
1e0863f758ff59284b56314f3665c581ae26189451798f56b49bffaae0b4f633 : Poedit-3.4.2-setup.exe
a7d1ebfdcd251b1e9a2b52d29ff2ca960b16955222df468a9c9bf0e13ba4c07f : update_package.py
c7681dffb4faaca8cba76befeeab75e18c37a7755d0fe06ca3b4e77e52ea90de : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
1cc3fee3879581543ae194ff1c3197290cc4dffbbec2f79bf646d5167bd88c10 : luti.json
1ecb603b0e161efa751c169651a61b5c0190558e4ca9d0844877f85d7e14b21a : WAPT/control