Category: Blog

Costruire il Processo Logico di un’Applicazione: Dalle Idee al Codice

Sviluppare un’applicazione non è solo questione di scrivere codice: è un esercizio di pensiero logico, progettazione accurata e visione chiara. Dietro ogni app ben fatta — dalla più semplice utility alla più sofisticata piattaforma — si nasconde un processo logico ben strutturato, un insieme ordinato di decisioni e soluzioni che conducono dal problema iniziale alla […]

How to Translate WordPress Blocks: A Step-by-Step Guide for generating the json i18n file

Internationalization (I18N) is crucial for expanding the reach of your WordPress plugins and themes. With the introduction of Gutenberg in WordPress 5.0, the process of localizing JavaScript has become essential. This guide will walk you through translating WordPress blocks using JSON, leveraging the make-pot npm module. Why JSON Translation for WordPress JavaScript? With the shift […]

How get Make-Pot to work with typescript ts, tsx files

TLDR;No you cannot. The WP-Cli command is a php script and relies on a external parser to parse javascript. And after year the parser hasn’t been updated to support “new” js dialects so i decided to write my own. Here how it was gone! Introducing Make Pot: Simplifying WordPress Plugin and Theme Internationalization Internationalization is […]