i18n: Prevent extract empty strings in gettext-keys-generator.pl
FEA: ItEr76S04BugFixing
This commit is contained in:
parent
759cc913d2
commit
8ff934e784
1 changed files with 1 additions and 1 deletions
|
|
@ -315,7 +315,7 @@ sub generate_keys_pot_file()
|
|||
open FILE, ">>$keys_filename" || die("Could not open file: $keys_filename");
|
||||
# Print ENTRIES to file
|
||||
foreach $msgid (keys %ENTRIES) {
|
||||
if ($msgid eq "") {
|
||||
if (!defined($msgid) || $msgid eq "" || $msgid eq "\"\"") {
|
||||
next;
|
||||
}
|
||||
foreach $filename (@{$ENTRIES{$msgid}}) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue