Skip to content

Instantly share code, notes, and snippets.

@kived
Created September 26, 2014 14:37
Show Gist options
  • Save kived/4e4140e6e9350dc21068 to your computer and use it in GitHub Desktop.
Save kived/4e4140e6e9350dc21068 to your computer and use it in GitHub Desktop.
german win7 test
# -*- coding: utf-8 -*-
import kivy
kivy.require('1.8.0')
from kivy.app import App
from kivy.lang import Builder
root = Builder.load_string('''
Label:
text: 'durchgeführt'
''')
class TestApp(App):
def build(self):
return root
if __name__ == '__main__':
TestApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment