Warn about single-quoted translated strings

gettext only recognizes double quoted strings
This commit is contained in:
James Westman 2025-01-05 14:27:59 -06:00
parent 29e4a56bfc
commit aa13c8f5af
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
4 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,5 @@
using Gtk 4.0;
Label {
label: _('Hello, World!');
}