Skip to content

Commit 18cf18d

Browse files
committed
Replace all PO/T files and get code to production state
1 parent 6ccbf8d commit 18cf18d

531 files changed

Lines changed: 202943 additions & 184058 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
File renamed without changes.
File renamed without changes.

addons/learn_pot_extractor/LearnPOTExtractor.gd

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const DOCUMENTATION_PATH := "res://course/documentation.csv"
1212
const SUPPLEMENTARY_POT_PATH := "res://i18n/supplementary.pot"
1313

1414
const BBCODE_TRANSLATION_PARSER := preload("BBCodeTranslationParser.gd")
15-
const CSV_TRANSLATION_PARSER := preload("LearnCSVExtractor.gd")
15+
const CSV_TRANSLATION_PARSER := preload("CSVTranslationParser.gd")
1616
const LESSON_BUILDER := preload("TranslatedLessonBuilder.gd")
1717
const ENGINE_CALLER := preload("EngineCaller.gd")
1818
const SHARED := preload("Shared.gd")
@@ -55,6 +55,11 @@ func _generate_all_pot_files() -> void:
5555
await _generate_course_pot()
5656
await _generate_application_pot()
5757
await _generate_supplemantary_pots()
58+
59+
60+
## Warning: Should not be used unless replacing old files
61+
func _generate_all_pot_files_dev() -> void:
62+
await _generate_all_pot_files()
5863
await _slipstream_existing_translations()
5964
await _wipe_old_translations()
6065

0 commit comments

Comments
 (0)