| Revision | 562d7beec935b6bb63366667f6f5eb7dd0c171a0 (tree) |
|---|---|
| Time | 2015-05-24 21:03:54 |
| Author | Masataka Shinke <mshinke@user...> |
| Commiter | Masataka Shinke |
add irc_cliante
| @@ -0,0 +1,6 @@ | ||
| 1 | +#!/usr/bin/env python3 | |
| 2 | +# -*- coding: UTF-8 -*- | |
| 3 | +import gettext | |
| 4 | +import os | |
| 5 | +ja = gettext.translation('messages',localedir='locale',languages=['ja']) | |
| 6 | +ja.install() |
| @@ -0,0 +1,14 @@ | ||
| 1 | +#!/usr/bin/env pythoun3 | |
| 2 | +# -*- encoding: utf-8 -*- | |
| 3 | +import i18h | |
| 4 | +import wx | |
| 5 | + | |
| 6 | +class MainFrame(wx.Frame): | |
| 7 | + def __init__(self): | |
| 8 | + wx.Frame.__init__(self,None,wx.ID_ANY,_("title"),size=(600,500)) | |
| 9 | + self.Show() | |
| 10 | + | |
| 11 | +if __name__ == "__main__": | |
| 12 | + app = wx.App(False) | |
| 13 | + frame = MainFrame() | |
| 14 | + app.MainLoop() | |
| \ No newline at end of file |
| @@ -0,0 +1,20 @@ | ||
| 1 | +# irc-client | |
| 2 | +# Copyright (C) 2015 nvdajp deafblind | |
| 3 | +# Masataka Shinke <mshinke@users.sourceforge.jp>, 2015. | |
| 4 | +# | |
| 5 | +msgid "" | |
| 6 | +msgstr "irc-client" | |
| 7 | +"Project-Id-Version: 0.0.0\n" | |
| 8 | +"POT-Creation-Date: 2015-05-24\n" | |
| 9 | +"PO-Revision-Date: 2015-05-24\n" | |
| 10 | +"Last-Translator: Masataka Shinke <mshinke@users.sourceforge.jp>\n" | |
| 11 | +"Language-Team: Masataka Shinke <mshinke@users.sourceforge.jp>\n" | |
| 12 | +"MIME-Version: 1.0\n" | |
| 13 | +"Content-Type: text/plain; charset=utf-8\n" | |
| 14 | +"Content-Transfer-Encoding: 8bit\n" | |
| 15 | +"Generated-By: pygettext.py 1.5\n" | |
| 16 | + | |
| 17 | + | |
| 18 | +#: ../../../irc_client.py:8 | |
| 19 | +msgid "title" | |
| 20 | +msgstr "IRCクライアント" |