diff options
| author | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
|---|---|---|
| committer | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
| commit | 7ed83b6c6666eb8b6b104c211ae7e52907350372 (patch) | |
| tree | 4430b556abac0ad660a0aacf1887d77f85d8be02 /scribus/translationdummy.cpp | |
| download | scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.gz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.xz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.zip | |
Branch 1.3.5 tree to 1.4.x tree, goodbye 1.3.x
git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17163 11d20701-8431-0410-a711-e3c959e3b870
Diffstat (limited to 'scribus/translationdummy.cpp')
| -rw-r--r-- | scribus/translationdummy.cpp | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/scribus/translationdummy.cpp b/scribus/translationdummy.cpp new file mode 100644 index 0000000..96b9289 --- /dev/null +++ b/scribus/translationdummy.cpp @@ -0,0 +1,162 @@ +/* +For general Scribus (>=1.3.2) copyright and licensing information please refer +to the COPYING file provided with the program. Following this notice may exist +a copyright and/or license notice that predates the release of Scribus 1.3.2 +for which a new license (GPL+exception) is in place. +*/ +QMessageBox::QMessageBox() +{ +tr("<h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ toolkit for multiplatform GUI & application development.</p><p>Qt provides single-source portability across MS Windows, Mac OS X, Linux, and all major commercial Unix variants.<br>Qt is also available for embedded devices.</p><p>Qt is a Trolltech product. See <tt>http://www.trolltech.com/qt/</tt> for more information.</p>"); +} + +QFileDialog::QFileDialog() +{ +tr("Copy or Move a File"); +tr("Read: %1"); +tr("Write: %1"); +tr("File &name:"); +tr("File &type:"); +tr("One directory up"); +tr("Cancel"); +tr("All Files (*)"); +tr("Name"); +tr("Size"); +tr("Type"); +tr("Date"); +tr("Attributes"); +tr("OK"); +tr("Look &in:"); +tr("Back"); +tr("Create New Folder"); +tr("List View"); +tr("Detail View"); +tr("Preview File Info"); +tr("Preview File Contents"); +tr("Read-write"); +tr("Read-only"); +tr("Write-only"); +tr("Inaccessible"); +tr("Symlink to File"); +tr("Symlink to Directory"); +tr("Symlink to Special"); +tr("File"); +tr("Dir"); +tr("Special"); +tr("Open"); +tr("Save As"); +tr("&Open"); +tr("&Save"); +tr("&Rename"); +tr("&Delete"); +tr("R&eload"); +tr("Sort by &Name"); +tr("Sort by &Size"); +tr("Sort by &Date"); +tr("&Unsorted"); +tr("Sort"); +tr("Show &hidden files"); +tr("the file"); +tr("the directory"); +tr("the symlink"); +tr("Delete %1"); +tr("<qt>Are you sure you wish to delete %1 \"%2\"?</qt>"); +CommonStrings::trYesKey; +CommonStrings::trNoKey; +tr("New Folder 1"); +tr("New Folder"); +tr("New Folder %1"); +tr("Find Directory"); +tr("Directories"); +tr("Save"); +tr("Error"); +tr("%1\nFile not found.\nCheck path and filename."); +tr("All Files (*.*)"); +tr("Select a Directory"); +tr("Directory:"); +} +QLineEdit::QLineEdit() +{ +tr("Clear"); +tr("Select All"); +tr("&Undo"); +tr("&Redo"); +tr("Cu&t"); +tr("&Copy"); +tr("&Paste"); +} +QTextEdit::QTextEdit() +{ +tr("Clear"); +tr("Select All"); +tr("&Undo"); +tr("&Redo"); +tr("Cu&t"); +tr("&Copy"); +tr("&Paste"); +} +QMainWindow::QMainWindow() +{ +tr("Line up"); +tr("Customize..."); +} +QTitleBar::QTitleBar() +{ +tr("System Menu"); +tr("Shade"); +tr("Unshade"); +tr("Normalize"); +tr("Minimize"); +tr("Maximize"); +tr("Close"); +} +QWorkspace::QWorkspace() +{ +tr("&Restore"); +tr("&Move"); +tr("&Size"); +tr("Mi&nimize"); +tr("Ma&ximize"); +tr("&Close"); +tr("Stay on &Top"); +tr("Minimize"); +tr("Restore Down"); +tr("Close"); +tr("Sh&ade"); +tr("%1 - [%2]"); +tr("&Unshade"); +} +QColorDialog::QColorDialog() +{ +tr("Hu&e:"); +tr("&Sat:"); +tr("&Val:"); +tr("&Red:"); +tr("&Green:"); +tr("Bl&ue:"); +tr("A&lpha channel:"); +tr("&Basic colors"); +tr("&Custom colors"); +tr("&Define Custom Colors >>"); +tr("OK"); +tr("Cancel"); +tr("&Add to Custom Colors"); +tr("Select color"); +} +QFontDialog::QFontDialog() +{ +tr("&Font"); +tr("Font st&yle"); +tr("&Size"); +tr("Effects"); +tr("Stri&keout"); +tr("&Underline"); +tr("&Color"); +tr("Sample"); +tr("Scr&ipt"); +tr("OK"); +tr("Apply"); +tr("Cancel"); +tr("Close"); +tr("Select Font"); +} + |
