diff options
Diffstat (limited to 'python/pyqt/examples3/i18n')
27 files changed, 0 insertions, 1042 deletions
diff --git a/python/pyqt/examples3/i18n/i18n.pro b/python/pyqt/examples3/i18n/i18n.pro deleted file mode 100644 index fc55895e..00000000 --- a/python/pyqt/examples3/i18n/i18n.pro +++ /dev/null @@ -1,15 +0,0 @@ -SOURCES = mywidget.py \ - i18n.py - -TRANSLATIONS = mywidget_cs.ts \ - mywidget_de.ts \ - mywidget_el.ts \ - mywidget_en.ts \ - mywidget_eo.ts \ - mywidget_fr.ts \ - mywidget_it.ts \ - mywidget_jp.ts \ - mywidget_ko.ts \ - mywidget_no.ts \ - mywidget_ru.ts \ - mywidget_zh.ts diff --git a/python/pyqt/examples3/i18n/i18n.py b/python/pyqt/examples3/i18n/i18n.py deleted file mode 100755 index 06cc97f5..00000000 --- a/python/pyqt/examples3/i18n/i18n.py +++ /dev/null @@ -1,147 +0,0 @@ -#!/usr/bin/env python - -# Copyright (c) 2002 Detlev Offenbach <detlev@die-offenbachs.de> - -from whrandom import randint -import sys - -from qt import * - -from mywidget import MyWidget - -class QVDialog(QDialog): - def __init__(self, parent=None, name=None, modal=0, flags=0): - QDialog.__init__(self, parent, name, modal, flags) - - self.vb = QVBoxLayout(self, 8) - self.vb.setAutoAdd(1) - - self.hb = None - self.map = {} - #self.sm = QSignalMapper(self) - self.connect(self, PYSIGNAL('mapped(int)'), self.done) - - def addButtons(self, cancel=None, ok=None, mid1=None, mid2=None, mid3=None): - if ok is None: - self.addButton(self.tr("OK"),1) - else: - self.addButton(ok,1) - - if mid1 is not None: - self.addButton(mid1,2) - - if mid2 is not None: - self.addButton(mid2,3) - - if mid3 is not None: - self.addButton(mid3,4) - - if cancel is None: - self.addButton(self.tr('Cancel'),0) - else: - self.addButton(cancel,0) - - def addButton(self, text, result): - if self.hb is None: - self.hb = QHBox(self) - c = QPushButton(text, self.hb) - self.setMapping(c, result) - self.connect(c, SIGNAL('clicked()'), self.mapit) - - def setMapping(self, c, result): - self.map[c] = result - - def mapit(self): - qo = self.sender() - self.emit(PYSIGNAL('mapped(int)'), (self.map[qo],)) - -translator = None -wlist = [] # keep reference to widgets - -def showLang(lang): - global translator - - qApp.setPalette(QPalette(QColor(220-randint(0,64),220-randint(0,64),220-randint(0,64)))) - - language = "mywidget_"+lang+".qm" - fi = QFileInfo(language) - - if not fi.exists(): - QMessageBox.warning(None, "File error", - "Cannot find translation for language: "+lang+\ - "\n(try eg. 'de' or 'en')") - return None - - if translator is not None: - qApp.removeTranslator(translator) - translator = None - - translator = QTranslator(None) - translator.load(language,".") - qApp.installTranslator(translator) - m = MyWidget() - m.setCaption("PyQt Example - i18n - " + unicode(m.caption())) - wlist.append(m) - return m - -def main(argv): - app = QApplication(argv) - - qm = ["cs", "de", "el", "en", "eo", "fr", "it", "jp", "ko", "no", "ru", "zh"] - - lang = None - if len(argv) == 2: - lang = argv[1] - - if (len(argv) != 2) or (lang == "all"): - dlg = QVDialog(None, None, 1) - qmb = [] - r = 0 - if lang == "all": - r=2 - else: - bg = QButtonGroup(4, Qt.Vertical, "Choose Locales", dlg) - loc = QTextCodec.locale() - for i in range(0,len(qm)): - qmb.append(QCheckBox(qm[i], bg)) - qmb[i].setChecked(str(loc) == qm[i]) - dlg.addButtons("Cancel","OK","All") - r = dlg.exec_loop() - - if r: - tight = qApp.desktop().screen().width < 1024 - x = 5 - y = 25 - for i in range(0,len(qm)): - if (r == 2) or (qmb[i].isChecked()): - w = showLang(qm[i]) - - if w == None: - sys.exit(0) - - app.connect(app, SIGNAL('lastWindowClosed()'), qApp, SLOT('quit()')) - w.setGeometry(x,y,197,356) - w.show() - if tight: - x += 8 - y += 8 - else: - x += 205 - if x > 1000: - x = 5 - y += 384 - - else: - sys.exit(0) - - else: - lang = argv[1] - m = showLang(lang) - app.setMainWidget(m) - m.setCaption("PyQt Example - i18n") - m.show() - - return app.exec_loop() - -if __name__ == "__main__": - main(sys.argv) diff --git a/python/pyqt/examples3/i18n/mywidget.py b/python/pyqt/examples3/i18n/mywidget.py deleted file mode 100644 index 60e267a4..00000000 --- a/python/pyqt/examples3/i18n/mywidget.py +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright (c) 2002 Detlev Offenbach <detlev@die-offenbachs.de> - -from qt import * - -class MyWidget(QMainWindow): - - def __init__(self, parent=None, name=None): - QMainWindow.__init__(self, parent, name) - - self.central = QVBox(self) - self.central.setMargin(5) - self.central.setSpacing(5) - self.setCentralWidget(self.central) - - self.setCaption(self.trUtf8("""Internationalization Example""")) - - self.file = QPopupMenu(self) - self.file.insertItem(self.trUtf8("E&xit"), qApp, SLOT("quit()"), - QKeySequence(self.trUtf8("Ctrl+Q","File|Quit"))) - self.menuBar().insertItem(self.trUtf8("&File"), self.file) - - self.statusBar().message(self.trUtf8('''Language: English''')) - - self.label = QLabel(self.trUtf8("The Main Window"), self.central) - - self.gbox = QButtonGroup(1, QGroupBox.Horizontal, - self.trUtf8("View"), self.central) - rb = QRadioButton(qApp.translate('MyWidget','Perspective'), self.gbox) - rb = QRadioButton(qApp.translate('MyWidget','Isometric'), self.gbox) - rb = QRadioButton(qApp.translate('MyWidget','Oblique'), self.gbox) - - self.initChoices(self.central) - - choices = [ - QT_TRANSLATE_NOOP("MyWidget", "First"), - QT_TRANSLATE_NOOP("MyWidget", "Second"), - QT_TRANSLATE_NOOP("MyWidget", "Third") - ] - - def initChoices(self, parent): - self.lb = QListBox(parent) - for ch in self.choices: - self.lb.insertItem(self.trUtf8(ch)) - - def closeEvent(self, e): - QWidget.closeEvent(self, e) - self.emit(PYSIGNAL('closed'), ()) diff --git a/python/pyqt/examples3/i18n/mywidget_cs.qm b/python/pyqt/examples3/i18n/mywidget_cs.qm Binary files differdeleted file mode 100644 index f95090d6..00000000 --- a/python/pyqt/examples3/i18n/mywidget_cs.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_cs.ts b/python/pyqt/examples3/i18n/mywidget_cs.ts deleted file mode 100644 index 4cf61f15..00000000 --- a/python/pyqt/examples3/i18n/mywidget_cs.ts +++ /dev/null @@ -1,75 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Pohled</translation> - </message> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">&Soubor</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">&Konec</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">První</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Třetí</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Jayzk: Český</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">Hlavní okno</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+Q</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Nakloněný</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Druhý</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Isometrický</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Perspektivní</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Ukázka lokalizace</translation> - </message> -</context> -<context encoding="UTF-8"> - <name>QAccel</name> - <message encoding="UTF-8"> - <source>Ctrl</source> - <translation type="obsolete">Ctrl</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_de.qm b/python/pyqt/examples3/i18n/mywidget_de.qm Binary files differdeleted file mode 100644 index 64338556..00000000 --- a/python/pyqt/examples3/i18n/mywidget_de.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_de.ts b/python/pyqt/examples3/i18n/mywidget_de.ts deleted file mode 100644 index d114b8b5..00000000 --- a/python/pyqt/examples3/i18n/mywidget_de.ts +++ /dev/null @@ -1,69 +0,0 @@ -<!DOCTYPE TS><TS> -<context> - <name>MyWidget</name> - <message> - <source>First</source> - <translation>Erstens</translation> - </message> - <message> - <source>Second</source> - <translation>Zweitens</translation> - </message> - <message> - <source>Third</source> - <translation>Drittens</translation> - </message> - <message> - <source>Internationalization Example</source> - <translation>Internationalisierungsbeispiel</translation> - </message> - <message> - <source>E&xit</source> - <translation>Be&enden</translation> - </message> - <message> - <source>&File</source> - <translation>&Datei</translation> - </message> - <message> - <source>Language: English</source> - <translation>Sprache: Deutsch</translation> - </message> - <message> - <source>The Main Window</source> - <translation>Das Hauptfenster</translation> - </message> - <message> - <source>View</source> - <translation>Ansicht</translation> - </message> - <message> - <source>Perspective</source> - <translation>Perspektivisch</translation> - </message> - <message> - <source>Isometric</source> - <translation>Isometrisch</translation> - </message> - <message> - <source>Oblique</source> - <translation>Schief</translation> - </message> - <message> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation>Strg+Q</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation>OK</translation> - </message> - <message> - <source>Cancel</source> - <translation>Abbruch</translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_el.qm b/python/pyqt/examples3/i18n/mywidget_el.qm Binary files differdeleted file mode 100644 index 15d76895..00000000 --- a/python/pyqt/examples3/i18n/mywidget_el.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_el.ts b/python/pyqt/examples3/i18n/mywidget_el.ts deleted file mode 100644 index 59fb2289..00000000 --- a/python/pyqt/examples3/i18n/mywidget_el.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">&Αρχείο</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+Q</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">Έ&ξοδος</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">Πρώτο</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Παράδειγμα διεθνοποίησης</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Ισομετρική</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Γλώσσα: Ελληνικά</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Πλάγια</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Προοπτική</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Δεύτερο</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">Κύριο παράθυρο</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Τρίτο</translation> - </message> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Όψη</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_en.qm b/python/pyqt/examples3/i18n/mywidget_en.qm Binary files differdeleted file mode 100644 index 6bd22c41..00000000 --- a/python/pyqt/examples3/i18n/mywidget_en.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_en.ts b/python/pyqt/examples3/i18n/mywidget_en.ts deleted file mode 100644 index f231669f..00000000 --- a/python/pyqt/examples3/i18n/mywidget_en.ts +++ /dev/null @@ -1,69 +0,0 @@ -<!DOCTYPE TS><TS> -<context> - <name>MyWidget</name> - <message> - <source>First</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Second</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Third</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Internationalization Example</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>E&xit</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>&File</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Language: English</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>The Main Window</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>View</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Perspective</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Isometric</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Oblique</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_eo.qm b/python/pyqt/examples3/i18n/mywidget_eo.qm Binary files differdeleted file mode 100644 index 372cf792..00000000 --- a/python/pyqt/examples3/i18n/mywidget_eo.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_eo.ts b/python/pyqt/examples3/i18n/mywidget_eo.ts deleted file mode 100644 index 381870de..00000000 --- a/python/pyqt/examples3/i18n/mywidget_eo.ts +++ /dev/null @@ -1,72 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">&Dosiero</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+F</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit...</source> - <translation type="obsolete">&Fini...</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">Unue</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Ekzemplo pri internaciigo</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Isometria</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Lingvo: Esperanto (ĈĜĤĴŜŬĉĝĥĵŝŭ)</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Oblikva</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Perspektiva</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Due</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">La Ĉeffenestro</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Trie</translation> - </message> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Aspekto</translation> - </message> - <message> - <source>E&xit</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_fr.qm b/python/pyqt/examples3/i18n/mywidget_fr.qm Binary files differdeleted file mode 100644 index 12a84640..00000000 --- a/python/pyqt/examples3/i18n/mywidget_fr.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_fr.ts b/python/pyqt/examples3/i18n/mywidget_fr.ts deleted file mode 100644 index a029084a..00000000 --- a/python/pyqt/examples3/i18n/mywidget_fr.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Vue</translation> - </message> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">&Fichier</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">&Quitter</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">Premier</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Troisième</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Langage : Français</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">La fenêtre principale</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+Q</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Oblique</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Second</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Isométrique</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Perspective</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Exemple d'internationalisation</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_it.qm b/python/pyqt/examples3/i18n/mywidget_it.qm Binary files differdeleted file mode 100644 index 075bee25..00000000 --- a/python/pyqt/examples3/i18n/mywidget_it.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_it.ts b/python/pyqt/examples3/i18n/mywidget_it.ts deleted file mode 100644 index a450deb4..00000000 --- a/python/pyqt/examples3/i18n/mywidget_it.ts +++ /dev/null @@ -1,72 +0,0 @@ -<!DOCTYPE TS><TS> -<context> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>E&xit...</source> - <translation type="obsolete">&Esci...</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">Primo</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Esempio di localizzazione</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Isometrica</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Lingua: Italiano</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Obliqua</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Prospettica</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Secondo</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">La Finestra Principale</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Terzo</translation> - </message> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Vista</translation> - </message> - <message> - <source>E&xit</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Ctrl+Q</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>&File</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_jp.qm b/python/pyqt/examples3/i18n/mywidget_jp.qm Binary files differdeleted file mode 100644 index 8942dd7c..00000000 --- a/python/pyqt/examples3/i18n/mywidget_jp.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_jp.ts b/python/pyqt/examples3/i18n/mywidget_jp.ts deleted file mode 100644 index 2a7345f6..00000000 --- a/python/pyqt/examples3/i18n/mywidget_jp.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">ファイル(&F)</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+Q</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">終了(&X)</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">第一行</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">国際化(i18n)の例</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">等角投影法</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">言語: 日本語</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">斜め投影法</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">遠近法</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">第二行</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">メインウィンドウ</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">第三行</translation> - </message> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">表示方式</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_ko.qm b/python/pyqt/examples3/i18n/mywidget_ko.qm Binary files differdeleted file mode 100644 index dccc2ba9..00000000 --- a/python/pyqt/examples3/i18n/mywidget_ko.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_ko.ts b/python/pyqt/examples3/i18n/mywidget_ko.ts deleted file mode 100644 index acc8f9b5..00000000 --- a/python/pyqt/examples3/i18n/mywidget_ko.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">파일&F</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+E</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">종료&X</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">첫번째</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">국제화 예제</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Isometric</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">언어 : 한국어</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Oblique</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Perspective</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">두번째</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">메인 윈도우</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">세번째</translation> - </message> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">보기</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_no.qm b/python/pyqt/examples3/i18n/mywidget_no.qm Binary files differdeleted file mode 100644 index 2adc1361..00000000 --- a/python/pyqt/examples3/i18n/mywidget_no.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_no.ts b/python/pyqt/examples3/i18n/mywidget_no.ts deleted file mode 100644 index 341c6647..00000000 --- a/python/pyqt/examples3/i18n/mywidget_no.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Visning</translation> - </message> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">&Fil</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">&Slutt</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">Første</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Tredje</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Språk: Norsk</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">Hovedvinduet</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+S</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Skjev</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Andre</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Isometrisk</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Perspektiv</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Internasjonaliseringseksempel</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_ru.qm b/python/pyqt/examples3/i18n/mywidget_ru.qm Binary files differdeleted file mode 100644 index ebc512ec..00000000 --- a/python/pyqt/examples3/i18n/mywidget_ru.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_ru.ts b/python/pyqt/examples3/i18n/mywidget_ru.ts deleted file mode 100644 index 07070b03..00000000 --- a/python/pyqt/examples3/i18n/mywidget_ru.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">Вид</translation> - </message> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">Файл</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">Выход</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">Первый</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">Третий</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">Язык: Русский</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">Главное окно</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">Курсив</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">Второй</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">Изометрический</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">Перспектива</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">Пример интернациноализации</translation> - </message> - <message> - <source>Ctrl+Q</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/python/pyqt/examples3/i18n/mywidget_zh.qm b/python/pyqt/examples3/i18n/mywidget_zh.qm Binary files differdeleted file mode 100644 index a890c096..00000000 --- a/python/pyqt/examples3/i18n/mywidget_zh.qm +++ /dev/null diff --git a/python/pyqt/examples3/i18n/mywidget_zh.ts b/python/pyqt/examples3/i18n/mywidget_zh.ts deleted file mode 100644 index 8b015d6d..00000000 --- a/python/pyqt/examples3/i18n/mywidget_zh.ts +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE TS><TS> -<context encoding="UTF-8"> - <name>MyWidget</name> - <message encoding="UTF-8"> - <source>View</source> - <translation type="unfinished">视图</translation> - </message> - <message encoding="UTF-8"> - <source>&File</source> - <translation type="unfinished">文件[&F]</translation> - </message> - <message encoding="UTF-8"> - <source>E&xit</source> - <translation type="unfinished">退出[&x]</translation> - </message> - <message encoding="UTF-8"> - <source>First</source> - <translation type="unfinished">第一个</translation> - </message> - <message encoding="UTF-8"> - <source>Third</source> - <translation type="unfinished">第三个</translation> - </message> - <message encoding="UTF-8"> - <source>Language: English</source> - <translation type="unfinished">语言: 简体中文</translation> - </message> - <message encoding="UTF-8"> - <source>The Main Window</source> - <translation type="unfinished">主窗口</translation> - </message> - <message encoding="UTF-8"> - <source>Ctrl+Q</source> - <translation type="unfinished">Ctrl+Q</translation> - </message> - <message encoding="UTF-8"> - <source>Oblique</source> - <translation type="unfinished">斜投影</translation> - </message> - <message encoding="UTF-8"> - <source>Second</source> - <translation type="unfinished">第二个</translation> - </message> - <message encoding="UTF-8"> - <source>Isometric</source> - <translation type="unfinished">等角投影</translation> - </message> - <message encoding="UTF-8"> - <source>Perspective</source> - <translation type="unfinished">透视投影</translation> - </message> - <message encoding="UTF-8"> - <source>Internationalization Example</source> - <translation type="unfinished">国际化范例</translation> - </message> -</context> -<context> - <name>QVDialog</name> - <message> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> |