[Update] Change the message dev_misya, shiina. Add localization member. Remove the part 'tell us' completely.
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 25 KiB |
@@ -73,20 +73,6 @@ def createSettingBox_AboutVrct(setting_box_wrapper, config_window, settings, vie
|
||||
)
|
||||
return frame
|
||||
|
||||
def createTellUsButton(parent_frame, image_file_name, callback):
|
||||
tell_us_button_frame = settings.about_vrct.embedImageButtonCTkLabel(
|
||||
parent_frame=parent_frame,
|
||||
image_file_name=image_file_name,
|
||||
callback=callback,
|
||||
corner_radius=about_vrct_uism.TELL_US_BUTTON_CORNER_RADIUS,
|
||||
)
|
||||
tell_us_button_frame.img_label.grid(padx=about_vrct_uism.TELL_US_BUTTON_PADX, pady=about_vrct_uism.TELL_US_BUTTON_PADY, sticky="nsew")
|
||||
|
||||
tell_us_button_frame.configure(border_width=about_vrct_uism.TELL_US_BUTTON_BORDER_WIDTH, border_color=settings.ctm.ABOUT_VRCT_TELL_US_BUTTON_BORDER_COLOR)
|
||||
|
||||
return tell_us_button_frame
|
||||
|
||||
|
||||
|
||||
|
||||
section_row=0
|
||||
@@ -279,17 +265,6 @@ def createSettingBox_AboutVrct(setting_box_wrapper, config_window, settings, vie
|
||||
special_thanks_message = settings.about_vrct.embedImageCTkLabel(special_thanks_contents_wrapper, settings.about_vrct.image_file.SPECIAL_THANKS_MESSAGE)
|
||||
special_thanks_message.grid(column=0, row=1, padx=0, pady=(0,about_vrct_uism.SPECIAL_THANKS_MESSAGE_BOTTOM_PADY), sticky="nsew")
|
||||
|
||||
# special_thanks_message_and_you = settings.about_vrct.embedImageCTkLabel(special_thanks_contents_wrapper, "special_thanks_message_and_you.png")
|
||||
# special_thanks_message_and_you.grid(column=0, row=2, padx=0, pady=(0,about_vrct_uism.SPECIAL_THANKS_MESSAGE_AND_YOU_BOTTOM_PADY), sticky="nsw")
|
||||
|
||||
# special_thanks_tell_us_message = createTellUsButton(
|
||||
# parent_frame=special_thanks_contents_wrapper,
|
||||
# image_file_name=settings.about_vrct.image_file.SPECIAL_THANKS_TELL_US_MESSAGE,
|
||||
# callback=lambda _e: callFunctionIfCallable(view_variable.CALLBACK_OPEN_WEBPAGE_ABOUT_VRCT, "SUPPORTER_REGISTRATION"),
|
||||
# )
|
||||
# special_thanks_tell_us_message.grid(column=0, row=3)
|
||||
|
||||
|
||||
|
||||
|
||||
section_row+=1
|
||||
@@ -601,26 +576,6 @@ def createSettingBox_AboutVrct(setting_box_wrapper, config_window, settings, vie
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
poster_tell_us_message = createTellUsButton(
|
||||
parent_frame=poster_showcase_contents_wrapper,
|
||||
image_file_name=settings.about_vrct.image_file.POSTER_TELL_US_MESSAGE,
|
||||
callback=lambda _e: callFunctionIfCallable(view_variable.CALLBACK_OPEN_WEBPAGE_ABOUT_VRCT, "POSTER_CONTACT_US"),
|
||||
)
|
||||
poster_tell_us_message.grid(column=0, row=1, columnspan=2, padx=0, pady=(about_vrct_uism.POSTER_TELL_US_MESSAGE_TOP_PADY,0), sticky="nse")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
section_row+=1
|
||||
# VRChat disclaimer ----------------------------------
|
||||
vrchat_disclaimer, vrchat_disclaimer_contents_wrapper = createSectionContainer(
|
||||
|
||||
@@ -75,18 +75,12 @@ class AboutVrctManager():
|
||||
|
||||
if ui_language == "ja":
|
||||
self.image_file.SPECIAL_THANKS_MESSAGE = "special_thanks_message_ja.png"
|
||||
self.image_file.SPECIAL_THANKS_TELL_US_MESSAGE = "special_thanks_tell_us_message_ja.png"
|
||||
|
||||
self.image_file.POSTER_IMAGES_AUTHOR = "poster_images_authors_ja.png"
|
||||
self.image_file.POSTER_IMAGES_AUTHOR_M = "poster_images_authors_m_ja.png"
|
||||
self.image_file.POSTER_TELL_US_MESSAGE = "poster_tell_us_message_ja.png"
|
||||
else:
|
||||
self.image_file.SPECIAL_THANKS_MESSAGE = "special_thanks_message_en.png"
|
||||
self.image_file.SPECIAL_THANKS_TELL_US_MESSAGE = "special_thanks_tell_us_message_en.png"
|
||||
|
||||
self.image_file.POSTER_IMAGES_AUTHOR = "poster_images_authors_en.png"
|
||||
self.image_file.POSTER_IMAGES_AUTHOR_M = "poster_images_authors_m_en.png"
|
||||
self.image_file.POSTER_TELL_US_MESSAGE = "poster_tell_us_message_en.png"
|
||||
|
||||
|
||||
poster_showcase_pagination_button_image = getImageFileFromUiUtils_AboutVrct("poster_showcase_pagination_button.png")
|
||||
|
||||