[Update] Add localization section. and tidy up a bit.

This commit is contained in:
Sakamoto Shiina
2024-06-14 14:29:16 +09:00
parent cc34301e7f
commit 19c5e6b0a7
5 changed files with 18 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -249,6 +249,21 @@ def createSettingBox_AboutVrct(setting_box_wrapper, config_window, settings, vie
section_row+=1
# Localization ----------------------------------
_localization, localization_contents_wrapper = createSectionContainer(
section_row=section_row,
section_title_image_file_name="localization_title.png",
section_bottom_padding=about_vrct_uism.SECTION_BOTTOM_PADY,
section_title_bottom_padding=about_vrct_uism.LOCALIZATION_TITLE_BOTTOM_PADY
)
localization_members = settings.about_vrct.embedImageCTkLabel(localization_contents_wrapper, "localization_members.png")
localization_members.grid(column=0, row=0, padx=0, pady=0, sticky="nsew")
section_row+=1
# Special Thanks & Supporters ----------------------------------
_special_thanks, special_thanks_contents_wrapper = createSectionContainer(

View File

@@ -50,6 +50,9 @@ class AboutVrctManager():
self.uism.TELL_US_BUTTON_BORDER_WIDTH = self._calculateUiSize(1)
self.uism.LOCALIZATION_TITLE_BOTTOM_PADY = self._calculateUiSize(4)
self.uism.SPECIAL_THANKS_SECTION_TITLE_BOTTOM_PADY = self._calculateUiSize(6)
self.uism.SPECIAL_THANKS_MEMBERS_BOTTOM_PADY = self._calculateUiSize(4)
self.uism.SPECIAL_THANKS_MESSAGE_BOTTOM_PADY = self._calculateUiSize(0)