1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
extends Node
const LOCALE_PATH := "res://locale/"
const LOCALE_BOOK_PATH := "res://locale_book/"
const NATIVE_LANGUAGE_NAMES_FILE_NAME := "native_language_names.ini"
var native_language_names := get_ini_dict(NATIVE_LANGUAGE_NAMES_FILE_NAME, LOCALE_PATH)
func _init() -> void:
# Use english as fallback
var fallback_strings := get_ini_dict("en.ini", LOCALE_PATH)
var fallback_strings_book := get_ini_dict("en.ini", LOCALE_BOOK_PATH)
for file_name in DirAccess.get_files_at(LOCALE_PATH):
if !file_name.ends_with(".ini") or file_name == NATIVE_LANGUAGE_NAMES_FILE_NAME:
continue
var translation := Translation.new()
translation.locale = file_name.trim_suffix(".ini")
var trans_strings := get_ini_dict(file_name, LOCALE_PATH)
var trans_book_strings := get_ini_dict(file_name, LOCALE_PATH)
for k in fallback_strings.keys():
translation.add_message(k, trans_strings[k] if trans_strings.has(k) else fallback_strings[k])
for k in fallback_strings_book.keys():
translation.add_message(k, trans_book_strings[k] if trans_strings.has(k) else fallback_strings_book[k])
TranslationServer.add_translation(translation)
func get_ini_dict(file_name: String, locale_path: String) -> Dictionary: # Dictionary[String, String]
var dict := {}
var lines := FileAccess.get_file_as_string(locale_path + file_name).split("\n", false)
lines.remove_at(0)
for key in native_language_names.keys():
lines.append("c.settings.ui.language.%s = %s" % [key, native_language_names[key]])
for line in lines:
var halves := line.split("=", true, 1)
dict[halves[0].strip_edges()] = halves[1].strip_edges()
return dict
|