├── README.md ├── README_SETUP_BUILD.txt ├── README_TRANSLATE.md ├── ReadMe_German.md ├── create_installer.py ├── installer ├── FileAssociation.nsh └── songpress.nsi.tpl ├── license.txt ├── license.txt.tpl ├── pygettext.py ├── pynsis.py ├── pyproject.toml ├── requirements.txt ├── songpress manual-it.w2h ├── songpress manual.w2h ├── src ├── .tx │ └── config ├── help │ ├── songpress-en.chm │ ├── songpress-es.chm │ ├── songpress-fr.chm │ └── songpress-it.chm ├── main.py ├── setup.py └── songpress │ ├── CompositePropertyPanel.pot │ ├── CompositePropertyPanel.py │ ├── DecoSlider.py │ ├── EditDistance.py │ ├── Editor.py │ ├── Enumerate.py │ ├── FontComboBox.py │ ├── FontFaceDialog.pot │ ├── FontFaceDialog.py │ ├── Globals.py │ ├── HTML.py │ ├── ListDialog.py │ ├── MyDecoSlider.py │ ├── MyListDialog.py │ ├── MyNormalizeDialog.py │ ├── MyNotationDialog.py │ ├── MyPreferences.pot │ ├── MyPreferencesDialog.pot │ ├── MyPreferencesDialog.py │ ├── MyTransposeDialog.py │ ├── MyUpdateDialog.pot │ ├── MyUpdateDialog.py │ ├── MyUpdatePanel.py │ ├── NormalizeDialog.pot │ ├── NormalizeDialog.py │ ├── NotationDialog.pot │ ├── NotationDialog.py │ ├── Pref.py │ ├── PrefTest.py │ ├── Preferences.pot │ ├── Preferences.py │ ├── PreferencesDialog.pot │ ├── PreferencesDialog.py │ ├── PreviewCanvas.pot │ ├── PreviewCanvas.py │ ├── Renderer.py │ ├── SDIMainFrame.pot │ ├── SDIMainFrame.py │ ├── SimplePropertyPanel.pot │ ├── SongBoxes.py │ ├── SongDecorator.py │ ├── SongFormat.py │ ├── SongTokenizer.py │ ├── SongpressFrame.pot │ ├── SongpressFrame.py │ ├── Tokenizer.py │ ├── Transpose.pot │ ├── Transpose.py │ ├── TransposeDialog.pot │ ├── TransposeDialog.py │ ├── UpdateDialog.pot │ ├── UpdateDialog.py │ ├── UpdatePanel.pot │ ├── UpdatePanel.py │ ├── __init__.py │ ├── decorators │ ├── StandardVerseNumbers.py │ └── __init__.py │ ├── dev_tool.py │ ├── errdlg.pot │ ├── errdlg.py │ ├── i18n.py │ ├── img │ ├── chord.png │ ├── chorus.png │ ├── copy.png │ ├── copyAsImage.png │ ├── copyAsImage2.png │ ├── cut.png │ ├── labelVerses.png │ ├── new.png │ ├── open.png │ ├── paste.png │ ├── pasteChords.png │ ├── redo.png │ ├── save.png │ ├── showChords.png │ ├── songpress.ico │ ├── songpress.png │ ├── title.png │ ├── undo.png │ └── verse.png │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── FontFaceDialog.mo │ │ │ ├── FontFaceDialog.po │ │ │ ├── MyPreferencesDialog.mo │ │ │ ├── MyPreferencesDialog.po │ │ │ ├── MyUpdateDialog.mo │ │ │ ├── MyUpdateDialog.po │ │ │ ├── NormalizeDialog.mo │ │ │ ├── NormalizeDialog.po │ │ │ ├── NotationDialog.mo │ │ │ ├── NotationDialog.po │ │ │ ├── Preferences.mo │ │ │ ├── Preferences.po │ │ │ ├── PreferencesDialog.mo │ │ │ ├── PreferencesDialog.po │ │ │ ├── PreviewCanvas.mo │ │ │ ├── PreviewCanvas.po │ │ │ ├── SDIMainFrame.mo │ │ │ ├── SDIMainFrame.po │ │ │ ├── SimplePropertyPanel.mo │ │ │ ├── SimplePropertyPanel.po │ │ │ ├── SongpressFrame.mo │ │ │ ├── SongpressFrame.po │ │ │ ├── Transpose.mo │ │ │ ├── Transpose.po │ │ │ ├── TransposeDialog.mo │ │ │ ├── TransposeDialog.po │ │ │ ├── UpdateDialog.mo │ │ │ ├── UpdateDialog.po │ │ │ ├── UpdatePanel.mo │ │ │ └── UpdatePanel.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── CompositePropertyPanel.mo │ │ │ ├── CompositePropertyPanel.po │ │ │ ├── FontFaceDialog.mo │ │ │ ├── FontFaceDialog.po │ │ │ ├── MyPreferencesDialog.mo │ │ │ ├── MyPreferencesDialog.po │ │ │ ├── MyUpdateDialog.mo │ │ │ ├── MyUpdateDialog.po │ │ │ ├── NormalizeDialog.mo │ │ │ ├── NormalizeDialog.po │ │ │ ├── NotationDialog.mo │ │ │ ├── NotationDialog.po │ │ │ ├── Preferences.mo │ │ │ ├── Preferences.po │ │ │ ├── PreferencesDialog.mo │ │ │ ├── PreferencesDialog.po │ │ │ ├── PreviewCanvas.mo │ │ │ ├── PreviewCanvas.po │ │ │ ├── SDIMainFrame.mo │ │ │ ├── SDIMainFrame.po │ │ │ ├── SimplePropertyPanel.mo │ │ │ ├── SimplePropertyPanel.po │ │ │ ├── SongpressFrame.mo │ │ │ ├── SongpressFrame.po │ │ │ ├── Transpose.mo │ │ │ ├── Transpose.po │ │ │ ├── TransposeDialog.mo │ │ │ ├── TransposeDialog.po │ │ │ ├── UpdateDialog.mo │ │ │ ├── UpdateDialog.po │ │ │ ├── UpdatePanel.mo │ │ │ ├── UpdatePanel.po │ │ │ ├── errdlg.mo │ │ │ └── errdlg.po │ └── it │ │ └── LC_MESSAGES │ │ ├── CompositePropertyPanel.mo │ │ ├── CompositePropertyPanel.po │ │ ├── FontFaceDialog.mo │ │ ├── FontFaceDialog.po │ │ ├── MyPreferencesDialog.mo │ │ ├── MyPreferencesDialog.po │ │ ├── MyUpdateDialog.mo │ │ ├── MyUpdateDialog.po │ │ ├── NormalizeDialog.mo │ │ ├── NormalizeDialog.po │ │ ├── NotationDialog.mo │ │ ├── NotationDialog.po │ │ ├── Preferences.mo │ │ ├── Preferences.po │ │ ├── PreferencesDialog.mo │ │ ├── PreferencesDialog.po │ │ ├── PreviewCanvas.mo │ │ ├── PreviewCanvas.po │ │ ├── SDIMainFrame.mo │ │ ├── SDIMainFrame.po │ │ ├── SimplePropertyPanel.mo │ │ ├── SimplePropertyPanel.po │ │ ├── SongpressFrame.mo │ │ ├── SongpressFrame.po │ │ ├── Transpose.mo │ │ ├── Transpose.po │ │ ├── TransposeDialog.mo │ │ ├── TransposeDialog.po │ │ ├── UpdateDialog.mo │ │ ├── UpdateDialog.po │ │ ├── UpdatePanel.mo │ │ ├── UpdatePanel.po │ │ └── errdlg.po │ ├── main.py │ ├── proxiedxmlrpclib.py │ ├── shortcuts.py │ ├── songimpress.py │ ├── templates │ ├── local_dir │ │ └── templates │ │ │ └── slides │ │ │ └── readme.txt │ └── slides │ │ ├── Centered lyrics.pptx │ │ ├── Lyrics on bottom.pptx │ │ └── Lyrics on top.pptx │ └── xrc │ ├── gui.fbp │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── songpress.mo │ │ │ └── songpress.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── songpress.mo │ │ │ └── songpress.po │ └── it │ │ └── LC_MESSAGES │ │ ├── songpress.mo │ │ └── songpress.po │ ├── songpress.pot │ └── songpress.xrc ├── tx.py └── web2help-license.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/README.md -------------------------------------------------------------------------------- /README_SETUP_BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/README_SETUP_BUILD.txt -------------------------------------------------------------------------------- /README_TRANSLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/README_TRANSLATE.md -------------------------------------------------------------------------------- /ReadMe_German.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/ReadMe_German.md -------------------------------------------------------------------------------- /create_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/create_installer.py -------------------------------------------------------------------------------- /installer/FileAssociation.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/installer/FileAssociation.nsh -------------------------------------------------------------------------------- /installer/songpress.nsi.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/installer/songpress.nsi.tpl -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/license.txt -------------------------------------------------------------------------------- /license.txt.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/license.txt.tpl -------------------------------------------------------------------------------- /pygettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/pygettext.py -------------------------------------------------------------------------------- /pynsis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/pynsis.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/requirements.txt -------------------------------------------------------------------------------- /songpress manual-it.w2h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/songpress manual-it.w2h -------------------------------------------------------------------------------- /songpress manual.w2h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/songpress manual.w2h -------------------------------------------------------------------------------- /src/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/.tx/config -------------------------------------------------------------------------------- /src/help/songpress-en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/help/songpress-en.chm -------------------------------------------------------------------------------- /src/help/songpress-es.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/help/songpress-es.chm -------------------------------------------------------------------------------- /src/help/songpress-fr.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/help/songpress-fr.chm -------------------------------------------------------------------------------- /src/help/songpress-it.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/help/songpress-it.chm -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/main.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/songpress/CompositePropertyPanel.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/CompositePropertyPanel.pot -------------------------------------------------------------------------------- /src/songpress/CompositePropertyPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/CompositePropertyPanel.py -------------------------------------------------------------------------------- /src/songpress/DecoSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/DecoSlider.py -------------------------------------------------------------------------------- /src/songpress/EditDistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/EditDistance.py -------------------------------------------------------------------------------- /src/songpress/Editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Editor.py -------------------------------------------------------------------------------- /src/songpress/Enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Enumerate.py -------------------------------------------------------------------------------- /src/songpress/FontComboBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/FontComboBox.py -------------------------------------------------------------------------------- /src/songpress/FontFaceDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/FontFaceDialog.pot -------------------------------------------------------------------------------- /src/songpress/FontFaceDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/FontFaceDialog.py -------------------------------------------------------------------------------- /src/songpress/Globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Globals.py -------------------------------------------------------------------------------- /src/songpress/HTML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/HTML.py -------------------------------------------------------------------------------- /src/songpress/ListDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/ListDialog.py -------------------------------------------------------------------------------- /src/songpress/MyDecoSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyDecoSlider.py -------------------------------------------------------------------------------- /src/songpress/MyListDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyListDialog.py -------------------------------------------------------------------------------- /src/songpress/MyNormalizeDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyNormalizeDialog.py -------------------------------------------------------------------------------- /src/songpress/MyNotationDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyNotationDialog.py -------------------------------------------------------------------------------- /src/songpress/MyPreferences.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyPreferences.pot -------------------------------------------------------------------------------- /src/songpress/MyPreferencesDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyPreferencesDialog.pot -------------------------------------------------------------------------------- /src/songpress/MyPreferencesDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyPreferencesDialog.py -------------------------------------------------------------------------------- /src/songpress/MyTransposeDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyTransposeDialog.py -------------------------------------------------------------------------------- /src/songpress/MyUpdateDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyUpdateDialog.pot -------------------------------------------------------------------------------- /src/songpress/MyUpdateDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyUpdateDialog.py -------------------------------------------------------------------------------- /src/songpress/MyUpdatePanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/MyUpdatePanel.py -------------------------------------------------------------------------------- /src/songpress/NormalizeDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/NormalizeDialog.pot -------------------------------------------------------------------------------- /src/songpress/NormalizeDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/NormalizeDialog.py -------------------------------------------------------------------------------- /src/songpress/NotationDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/NotationDialog.pot -------------------------------------------------------------------------------- /src/songpress/NotationDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/NotationDialog.py -------------------------------------------------------------------------------- /src/songpress/Pref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Pref.py -------------------------------------------------------------------------------- /src/songpress/PrefTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/PrefTest.py -------------------------------------------------------------------------------- /src/songpress/Preferences.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Preferences.pot -------------------------------------------------------------------------------- /src/songpress/Preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Preferences.py -------------------------------------------------------------------------------- /src/songpress/PreferencesDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/PreferencesDialog.pot -------------------------------------------------------------------------------- /src/songpress/PreferencesDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/PreferencesDialog.py -------------------------------------------------------------------------------- /src/songpress/PreviewCanvas.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/PreviewCanvas.pot -------------------------------------------------------------------------------- /src/songpress/PreviewCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/PreviewCanvas.py -------------------------------------------------------------------------------- /src/songpress/Renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Renderer.py -------------------------------------------------------------------------------- /src/songpress/SDIMainFrame.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SDIMainFrame.pot -------------------------------------------------------------------------------- /src/songpress/SDIMainFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SDIMainFrame.py -------------------------------------------------------------------------------- /src/songpress/SimplePropertyPanel.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SimplePropertyPanel.pot -------------------------------------------------------------------------------- /src/songpress/SongBoxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SongBoxes.py -------------------------------------------------------------------------------- /src/songpress/SongDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SongDecorator.py -------------------------------------------------------------------------------- /src/songpress/SongFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SongFormat.py -------------------------------------------------------------------------------- /src/songpress/SongTokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SongTokenizer.py -------------------------------------------------------------------------------- /src/songpress/SongpressFrame.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SongpressFrame.pot -------------------------------------------------------------------------------- /src/songpress/SongpressFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/SongpressFrame.py -------------------------------------------------------------------------------- /src/songpress/Tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Tokenizer.py -------------------------------------------------------------------------------- /src/songpress/Transpose.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Transpose.pot -------------------------------------------------------------------------------- /src/songpress/Transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/Transpose.py -------------------------------------------------------------------------------- /src/songpress/TransposeDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/TransposeDialog.pot -------------------------------------------------------------------------------- /src/songpress/TransposeDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/TransposeDialog.py -------------------------------------------------------------------------------- /src/songpress/UpdateDialog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/UpdateDialog.pot -------------------------------------------------------------------------------- /src/songpress/UpdateDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/UpdateDialog.py -------------------------------------------------------------------------------- /src/songpress/UpdatePanel.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/UpdatePanel.pot -------------------------------------------------------------------------------- /src/songpress/UpdatePanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/UpdatePanel.py -------------------------------------------------------------------------------- /src/songpress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/songpress/decorators/StandardVerseNumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/decorators/StandardVerseNumbers.py -------------------------------------------------------------------------------- /src/songpress/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/songpress/dev_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/dev_tool.py -------------------------------------------------------------------------------- /src/songpress/errdlg.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/errdlg.pot -------------------------------------------------------------------------------- /src/songpress/errdlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/errdlg.py -------------------------------------------------------------------------------- /src/songpress/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/i18n.py -------------------------------------------------------------------------------- /src/songpress/img/chord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/chord.png -------------------------------------------------------------------------------- /src/songpress/img/chorus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/chorus.png -------------------------------------------------------------------------------- /src/songpress/img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/copy.png -------------------------------------------------------------------------------- /src/songpress/img/copyAsImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/copyAsImage.png -------------------------------------------------------------------------------- /src/songpress/img/copyAsImage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/copyAsImage2.png -------------------------------------------------------------------------------- /src/songpress/img/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/cut.png -------------------------------------------------------------------------------- /src/songpress/img/labelVerses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/labelVerses.png -------------------------------------------------------------------------------- /src/songpress/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/new.png -------------------------------------------------------------------------------- /src/songpress/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/open.png -------------------------------------------------------------------------------- /src/songpress/img/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/paste.png -------------------------------------------------------------------------------- /src/songpress/img/pasteChords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/pasteChords.png -------------------------------------------------------------------------------- /src/songpress/img/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/redo.png -------------------------------------------------------------------------------- /src/songpress/img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/save.png -------------------------------------------------------------------------------- /src/songpress/img/showChords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/showChords.png -------------------------------------------------------------------------------- /src/songpress/img/songpress.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/songpress.ico -------------------------------------------------------------------------------- /src/songpress/img/songpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/songpress.png -------------------------------------------------------------------------------- /src/songpress/img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/title.png -------------------------------------------------------------------------------- /src/songpress/img/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/undo.png -------------------------------------------------------------------------------- /src/songpress/img/verse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/img/verse.png -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/FontFaceDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/FontFaceDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/FontFaceDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/FontFaceDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/MyPreferencesDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/MyPreferencesDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/MyPreferencesDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/MyPreferencesDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/MyUpdateDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/MyUpdateDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/MyUpdateDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/MyUpdateDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/NormalizeDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/NormalizeDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/NormalizeDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/NormalizeDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/NotationDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/NotationDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/NotationDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/NotationDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/Preferences.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/Preferences.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/Preferences.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/Preferences.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/PreferencesDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/PreferencesDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/PreferencesDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/PreferencesDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/PreviewCanvas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/PreviewCanvas.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/PreviewCanvas.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/PreviewCanvas.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/SDIMainFrame.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/SDIMainFrame.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/SDIMainFrame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/SDIMainFrame.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/SimplePropertyPanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/SimplePropertyPanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/SimplePropertyPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/SimplePropertyPanel.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/SongpressFrame.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/SongpressFrame.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/SongpressFrame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/SongpressFrame.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/Transpose.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/Transpose.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/Transpose.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/Transpose.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/TransposeDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/TransposeDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/TransposeDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/TransposeDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/UpdateDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/UpdateDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/UpdateDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/UpdateDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/UpdatePanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/UpdatePanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/de/LC_MESSAGES/UpdatePanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/de/LC_MESSAGES/UpdatePanel.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/CompositePropertyPanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/CompositePropertyPanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/CompositePropertyPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/CompositePropertyPanel.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/FontFaceDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/FontFaceDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/FontFaceDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/FontFaceDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/MyPreferencesDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/MyPreferencesDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/MyPreferencesDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/MyPreferencesDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/MyUpdateDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/MyUpdateDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/MyUpdateDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/MyUpdateDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/NormalizeDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/NormalizeDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/NormalizeDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/NormalizeDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/NotationDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/NotationDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/NotationDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/NotationDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/Preferences.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/Preferences.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/Preferences.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/Preferences.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/PreferencesDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/PreferencesDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/PreferencesDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/PreferencesDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/PreviewCanvas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/PreviewCanvas.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/PreviewCanvas.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/PreviewCanvas.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/SDIMainFrame.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/SDIMainFrame.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/SDIMainFrame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/SDIMainFrame.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/SimplePropertyPanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/SimplePropertyPanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/SimplePropertyPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/SimplePropertyPanel.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/SongpressFrame.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/SongpressFrame.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/SongpressFrame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/SongpressFrame.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/Transpose.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/Transpose.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/Transpose.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/Transpose.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/TransposeDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/TransposeDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/TransposeDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/TransposeDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/UpdateDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/UpdateDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/UpdateDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/UpdateDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/UpdatePanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/UpdatePanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/UpdatePanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/UpdatePanel.po -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/errdlg.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/errdlg.mo -------------------------------------------------------------------------------- /src/songpress/locale/fr/LC_MESSAGES/errdlg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/fr/LC_MESSAGES/errdlg.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/CompositePropertyPanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/CompositePropertyPanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/CompositePropertyPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/CompositePropertyPanel.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/FontFaceDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/FontFaceDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/FontFaceDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/FontFaceDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/MyPreferencesDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/MyPreferencesDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/MyPreferencesDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/MyPreferencesDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/MyUpdateDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/MyUpdateDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/MyUpdateDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/MyUpdateDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/NormalizeDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/NormalizeDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/NormalizeDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/NormalizeDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/NotationDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/NotationDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/NotationDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/NotationDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/Preferences.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/Preferences.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/Preferences.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/Preferences.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/PreferencesDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/PreferencesDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/PreferencesDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/PreferencesDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/PreviewCanvas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/PreviewCanvas.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/PreviewCanvas.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/PreviewCanvas.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/SDIMainFrame.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/SDIMainFrame.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/SDIMainFrame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/SDIMainFrame.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/SimplePropertyPanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/SimplePropertyPanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/SimplePropertyPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/SimplePropertyPanel.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/SongpressFrame.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/SongpressFrame.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/SongpressFrame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/SongpressFrame.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/Transpose.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/Transpose.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/Transpose.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/Transpose.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/TransposeDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/TransposeDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/TransposeDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/TransposeDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/UpdateDialog.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/UpdateDialog.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/UpdateDialog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/UpdateDialog.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/UpdatePanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/UpdatePanel.mo -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/UpdatePanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/UpdatePanel.po -------------------------------------------------------------------------------- /src/songpress/locale/it/LC_MESSAGES/errdlg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/locale/it/LC_MESSAGES/errdlg.po -------------------------------------------------------------------------------- /src/songpress/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/main.py -------------------------------------------------------------------------------- /src/songpress/proxiedxmlrpclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/proxiedxmlrpclib.py -------------------------------------------------------------------------------- /src/songpress/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/shortcuts.py -------------------------------------------------------------------------------- /src/songpress/songimpress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/songimpress.py -------------------------------------------------------------------------------- /src/songpress/templates/local_dir/templates/slides/readme.txt: -------------------------------------------------------------------------------- 1 | Place your PowerPoint templates in this folder -------------------------------------------------------------------------------- /src/songpress/templates/slides/Centered lyrics.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/templates/slides/Centered lyrics.pptx -------------------------------------------------------------------------------- /src/songpress/templates/slides/Lyrics on bottom.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/templates/slides/Lyrics on bottom.pptx -------------------------------------------------------------------------------- /src/songpress/templates/slides/Lyrics on top.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/templates/slides/Lyrics on top.pptx -------------------------------------------------------------------------------- /src/songpress/xrc/gui.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/gui.fbp -------------------------------------------------------------------------------- /src/songpress/xrc/locale/de/LC_MESSAGES/songpress.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/locale/de/LC_MESSAGES/songpress.mo -------------------------------------------------------------------------------- /src/songpress/xrc/locale/de/LC_MESSAGES/songpress.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/locale/de/LC_MESSAGES/songpress.po -------------------------------------------------------------------------------- /src/songpress/xrc/locale/fr/LC_MESSAGES/songpress.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/locale/fr/LC_MESSAGES/songpress.mo -------------------------------------------------------------------------------- /src/songpress/xrc/locale/fr/LC_MESSAGES/songpress.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/locale/fr/LC_MESSAGES/songpress.po -------------------------------------------------------------------------------- /src/songpress/xrc/locale/it/LC_MESSAGES/songpress.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/locale/it/LC_MESSAGES/songpress.mo -------------------------------------------------------------------------------- /src/songpress/xrc/locale/it/LC_MESSAGES/songpress.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/locale/it/LC_MESSAGES/songpress.po -------------------------------------------------------------------------------- /src/songpress/xrc/songpress.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/songpress.pot -------------------------------------------------------------------------------- /src/songpress/xrc/songpress.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/src/songpress/xrc/songpress.xrc -------------------------------------------------------------------------------- /tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/tx.py -------------------------------------------------------------------------------- /web2help-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lallulli/songpress/HEAD/web2help-license.txt --------------------------------------------------------------------------------