Skip to content

Commit

Permalink
Remove check for in-context translations (fixed)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverguenther committed Jul 17, 2023
1 parent 784361c commit 8d8dfe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/i18n/fix_crowdin_translation_filenames.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
filename = File.basename(crowdin_file)

# Skip the empty in-context translations
next if filename.includes?('lol.')
next if filename.include?('lol.')

File.readlines(crowdin_file).each do |line|
if line.match(/^\s*(\S{2,}):\s*$/)
Expand Down

0 comments on commit 8d8dfe5

Please sign in to comment.