<style>.ru_RU {display: block;} .en_US, .en_GB{display: none;}</style>
from tkinter import *
m = PanedWindow(orient=VERTICAL, bg="blue")
m.pack(fill=BOTH, expand=1)
top = Label(m, text="top pane", bg="red")
m.add(top)
bottom = Label(m, text="bottom pane", bg="green")
m.add(bottom)
mainloop()