diff --git a/cmainwindow.cpp b/cmainwindow.cpp index 0ecfe8e..3c415cc 100644 --- a/cmainwindow.cpp +++ b/cmainwindow.cpp @@ -56,6 +56,9 @@ cMainWindow::cMainWindow(cSplashScreen *lpSplashScreen, QWidget *parent) : m_lpFileMenu(0), m_lpEditMenu(0), m_lpTextMenu(0), + m_lpToolsMenu(0), + m_lpWindowMenu(0), + m_lpHelpMenu(0), m_lpFileToolBar(0), m_lpEditToolBar(0), m_lpTextToolBar(0), @@ -155,6 +158,8 @@ void cMainWindow::initUI() { ui->setupUi(this); + QIcon::setThemeName("TangoMFK"); + m_lpOutlineModel = new QStandardItemModel(0, 1); ui->m_lpOutlineList->setModel(m_lpOutlineModel); @@ -195,6 +200,9 @@ void cMainWindow::createActions() createFileActions(); createEditActions(); createTextActions(); + createToolsActions(); + createWindowActions(); + createHelpActions(); createContextActions(); @@ -222,20 +230,20 @@ void cMainWindow::createFileActions() m_lpFileMenu = menuBar()->addMenu(tr("&File")); m_lpFileToolBar = addToolBar(tr("File Actions")); - const QIcon newIcon = QIcon::fromTheme("document-new", QIcon(":/images/mac/filenew.png")); + const QIcon newIcon = QIcon::fromTheme("document-new"); lpAction = m_lpFileMenu->addAction(newIcon, tr("&New"), this, &cMainWindow::onFileNew); m_lpFileToolBar->addAction(lpAction); lpAction->setPriority(QAction::LowPriority); lpAction->setShortcut(QKeySequence::New); - const QIcon openIcon = QIcon::fromTheme("document-open", QIcon(":/images/mac/fileopen.png")); + const QIcon openIcon = QIcon::fromTheme("document-open"); lpAction = m_lpFileMenu->addAction(openIcon, tr("&Open..."), this, &cMainWindow::onFileOpen); lpAction->setShortcut(QKeySequence::Open); m_lpFileToolBar->addAction(lpAction); m_lpFileMenu->addSeparator(); - const QIcon saveIcon = QIcon::fromTheme("document-save", QIcon(":/images/mac/filesave.png")); + const QIcon saveIcon = QIcon::fromTheme("document-save"); m_lpActionSave = m_lpFileMenu->addAction(saveIcon, tr("&Save"), this, &cMainWindow::onFileSave); m_lpActionSave->setShortcut(QKeySequence::Save); m_lpActionSave->setEnabled(false); @@ -246,16 +254,16 @@ void cMainWindow::createFileActions() m_lpFileMenu->addSeparator(); #ifndef QT_NO_PRINTER - const QIcon printIcon = QIcon::fromTheme("document-print", QIcon(":/images/mac/fileprint.png")); + const QIcon printIcon = QIcon::fromTheme("document-print"); lpAction = m_lpFileMenu->addAction(printIcon, tr("&Print..."), this, &cMainWindow::onFilePrint); lpAction->setPriority(QAction::LowPriority); lpAction->setShortcut(QKeySequence::Print); m_lpFileToolBar->addAction(lpAction); - const QIcon filePrintIcon = QIcon::fromTheme("fileprint", QIcon(":/images/mac/fileprint.png")); + const QIcon filePrintIcon = QIcon::fromTheme("document-print"); m_lpFileMenu->addAction(filePrintIcon, tr("Print Preview..."), this, &cMainWindow::onFilePrintPreview); - const QIcon exportPdfIcon = QIcon::fromTheme("exportpdf", QIcon(":/images/mac/exportpdf.png")); + const QIcon exportPdfIcon = QIcon::fromTheme("document-pdf"); lpAction = m_lpFileMenu->addAction(exportPdfIcon, tr("&Export PDF..."), this, &cMainWindow::onFilePrintPdf); lpAction->setPriority(QAction::LowPriority); lpAction->setShortcut(Qt::CTRL + Qt::Key_D); @@ -287,12 +295,12 @@ void cMainWindow::createEditActions() m_lpEditMenu = menuBar()->addMenu(tr("&Edit")); m_lpEditToolBar = addToolBar(tr("Edit Actions")); - const QIcon undoIcon = QIcon::fromTheme("edit-undo", QIcon(":/images/mac/editundo.png")); + const QIcon undoIcon = QIcon::fromTheme("edit-undo"); m_lpActionUndo = m_lpEditMenu->addAction(undoIcon, tr("&Undo")); m_lpActionUndo->setShortcut(QKeySequence::Undo); m_lpEditToolBar->addAction(m_lpActionUndo); - const QIcon redoIcon = QIcon::fromTheme("edit-redo", QIcon(":/images/mac/editredo.png")); + const QIcon redoIcon = QIcon::fromTheme("edit-redo"); m_lpActionRedo = m_lpEditMenu->addAction(redoIcon, tr("&Redo")); m_lpActionRedo->setPriority(QAction::LowPriority); m_lpActionRedo->setShortcut(QKeySequence::Redo); @@ -300,19 +308,19 @@ void cMainWindow::createEditActions() m_lpEditMenu->addSeparator(); #ifndef QT_NO_CLIPBOARD - const QIcon cutIcon = QIcon::fromTheme("edit-cut", QIcon(":/images/mac/editcut.png")); + const QIcon cutIcon = QIcon::fromTheme("edit-cut"); m_lpActionCut = m_lpEditMenu->addAction(cutIcon, tr("Cu&t")); m_lpActionCut->setPriority(QAction::LowPriority); m_lpActionCut->setShortcut(QKeySequence::Cut); m_lpEditToolBar->addAction(m_lpActionCut); - const QIcon copyIcon = QIcon::fromTheme("edit-copy", QIcon(":/images/mac/editcopy.png")); + const QIcon copyIcon = QIcon::fromTheme("edit-copy"); m_lpActionCopy = m_lpEditMenu->addAction(copyIcon, tr("&Copy")); m_lpActionCopy->setPriority(QAction::LowPriority); m_lpActionCopy->setShortcut(QKeySequence::Copy); m_lpEditToolBar->addAction(m_lpActionCopy); - const QIcon pasteIcon = QIcon::fromTheme("edit-paste", QIcon(":/images/mac/editpaste.png")); + const QIcon pasteIcon = QIcon::fromTheme("edit-paste"); m_lpActionPaste = m_lpEditMenu->addAction(pasteIcon, tr("&Paste")); m_lpActionPaste->setPriority(QAction::LowPriority); m_lpActionPaste->setShortcut(QKeySequence::Paste); @@ -327,7 +335,7 @@ void cMainWindow::createTextActions() m_lpTextMenu = menuBar()->addMenu(tr("F&ormat")); m_lpTextToolBar = addToolBar(tr("Format Actions")); - const QIcon boldIcon = QIcon::fromTheme("format-text-bold", QIcon(":/images/mac/textbold.png")); + const QIcon boldIcon = QIcon::fromTheme("format-text-bold"); m_lpActionTextBold = m_lpTextMenu->addAction(boldIcon, tr("&Bold")); m_lpActionTextBold->setShortcut(Qt::CTRL + Qt::Key_B); m_lpActionTextBold->setPriority(QAction::LowPriority); @@ -337,7 +345,7 @@ void cMainWindow::createTextActions() m_lpTextToolBar->addAction(m_lpActionTextBold); m_lpActionTextBold->setCheckable(true); - const QIcon italicIcon = QIcon::fromTheme("format-text-italic", QIcon(":/images/mac/textitalic.png")); + const QIcon italicIcon = QIcon::fromTheme("format-text-italic"); m_lpActionTextItalic = m_lpTextMenu->addAction(italicIcon, tr("&Italic")); m_lpActionTextItalic->setPriority(QAction::LowPriority); m_lpActionTextItalic->setShortcut(Qt::CTRL + Qt::Key_I); @@ -347,7 +355,7 @@ void cMainWindow::createTextActions() m_lpTextToolBar->addAction(m_lpActionTextItalic); m_lpActionTextItalic->setCheckable(true); - const QIcon underlineIcon = QIcon::fromTheme("format-text-underline", QIcon(":/images/mac/textunder.png")); + const QIcon underlineIcon = QIcon::fromTheme("format-text-underline"); m_lpActionTextUnderline = m_lpTextMenu->addAction(underlineIcon, tr("&Underline")); m_lpActionTextUnderline->setShortcut(Qt::CTRL + Qt::Key_U); m_lpActionTextUnderline->setPriority(QAction::LowPriority); @@ -359,22 +367,22 @@ void cMainWindow::createTextActions() m_lpTextMenu->addSeparator(); - const QIcon leftIcon = QIcon::fromTheme("format-justify-left", QIcon(":/images/mac/textleft.png")); + const QIcon leftIcon = QIcon::fromTheme("format-justify-left"); m_lpActionAlignLeft = new QAction(leftIcon, tr("&Left"), this); m_lpActionAlignLeft->setShortcut(Qt::CTRL + Qt::Key_L); m_lpActionAlignLeft->setCheckable(true); m_lpActionAlignLeft->setPriority(QAction::LowPriority); - const QIcon centerIcon = QIcon::fromTheme("format-justify-center", QIcon(":/images/mac/textcenter.png")); + const QIcon centerIcon = QIcon::fromTheme("format-justify-center"); m_lpActionAlignCenter = new QAction(centerIcon, tr("C&enter"), this); m_lpActionAlignCenter->setShortcut(Qt::CTRL + Qt::Key_E); m_lpActionAlignCenter->setCheckable(true); m_lpActionAlignCenter->setPriority(QAction::LowPriority); - const QIcon rightIcon = QIcon::fromTheme("format-justify-right", QIcon(":/images/mac/textright.png")); + const QIcon rightIcon = QIcon::fromTheme("format-justify-right"); m_lpActionAlignRight = new QAction(rightIcon, tr("&Right"), this); m_lpActionAlignRight->setShortcut(Qt::CTRL + Qt::Key_R); m_lpActionAlignRight->setCheckable(true); m_lpActionAlignRight->setPriority(QAction::LowPriority); - const QIcon fillIcon = QIcon::fromTheme("format-justify-fill", QIcon(":/images/mac/textjustify.png")); + const QIcon fillIcon = QIcon::fromTheme("format-justify-fill"); m_lpActionAlignJustify = new QAction(fillIcon, tr("&Justify"), this); m_lpActionAlignJustify->setShortcut(Qt::CTRL + Qt::Key_J); m_lpActionAlignJustify->setCheckable(true); @@ -427,6 +435,36 @@ void cMainWindow::createTextActions() m_focusException.append(m_lpComboSize); } +void cMainWindow::createToolsActions() +{ +} + +void cMainWindow::createWindowActions() +{ +} + +void cMainWindow::createHelpActions() +{ + QAction* lpAction; + + m_lpHelpMenu = menuBar()->addMenu(tr("&Help")); + m_lpHelpToolBar = addToolBar(tr("Help Actions")); + + const QIcon contentsIcon = QIcon::fromTheme("help-contents"); + lpAction = m_lpHelpMenu->addAction(contentsIcon, tr("&Contents"), this, &cMainWindow::onHelpContents); + m_lpHelpToolBar->addAction(lpAction); + lpAction->setPriority(QAction::LowPriority); + lpAction->setShortcut(QKeySequence::HelpContents); + + lpAction = m_lpHelpMenu->addAction(contentsIcon, tr("&Index"), this, &cMainWindow::onHelpIndex); + + const QIcon aboutIcon = QIcon::fromTheme("help-about"); + lpAction = m_lpHelpMenu->addAction(aboutIcon, tr("&About"), this, &cMainWindow::onHelpAbout); + m_lpHelpToolBar->addAction(lpAction); + lpAction->setPriority(QAction::LowPriority); + lpAction->setShortcut(QKeySequence::HelpContents); +} + void cMainWindow::createContextActions() { m_lpActionPartAdd = new QAction(tr("add part"), this); @@ -1346,6 +1384,21 @@ void cMainWindow::onFileProperties() onShowPropertiesWindow(); } +void cMainWindow::onHelpContents() +{ + QMessageBox::information(this, "Help", "Contents"); +} + +void cMainWindow::onHelpIndex() +{ + QMessageBox::information(this, "Help", "Index"); +} + +void cMainWindow::onHelpAbout() +{ + QMessageBox::information(this, "Help", "About"); +} + void cMainWindow::onClipboardDataChanged() { #ifndef QT_NO_CLIPBOARD diff --git a/cmainwindow.h b/cmainwindow.h index 02d261a..41e4a26 100644 --- a/cmainwindow.h +++ b/cmainwindow.h @@ -446,6 +446,25 @@ private slots: */ void onFileProperties(); + /*! + \brief + + \fn onHelpContents + */ + void onHelpContents(); + /*! + \brief + + \fn onHelpIndex + */ + void onHelpIndex(); + /*! + \brief + + \fn onHelpAbout + */ + void onHelpAbout(); + /*! \brief @@ -636,11 +655,15 @@ private: QMenu* m_lpFileMenu; /*!< Pointer to the file menu */ QMenu* m_lpEditMenu; /*!< Pointer to the edit menu */ QMenu* m_lpTextMenu; /*!< Pointer to the text menu */ + QMenu* m_lpToolsMenu; /*!< Pointer to the text menu */ + QMenu* m_lpWindowMenu; /*!< Pointer to the text menu */ + QMenu* m_lpHelpMenu; /*!< Pointer to the text menu */ QToolBar* m_lpFileToolBar; /*!< Pointer to the file toolbar */ QToolBar* m_lpEditToolBar; /*!< Pointer to the edit toolbar */ QToolBar* m_lpTextToolBar; /*!< Pointer to the text toolbar */ QToolBar* m_lpFormatToolBar; /*!< Pointer to the text format toolbar*/ + QToolBar* m_lpHelpToolBar; /*!< Pointer to the text toolbar */ QAction* m_lpActionSave; /*!< Pointer to the File->Save action */ QAction* m_lpActionUndo; /*!< Pointer to the Undo action. This action is active for Text Edit widgets only. */ @@ -737,6 +760,24 @@ private: /*! \brief + \fn createToolsActions + */ + void createToolsActions(); + /*! + \brief + + \fn createWindowActions + */ + void createWindowActions(); + /*! + \brief + + \fn createHelpActions + */ + void createHelpActions(); + /*! + \brief + \fn createContextActions */ void createContextActions(); diff --git a/images/mac/editcopy.png b/images/mac/editcopy.png deleted file mode 100644 index f551364..0000000 Binary files a/images/mac/editcopy.png and /dev/null differ diff --git a/images/mac/editcut.png b/images/mac/editcut.png deleted file mode 100644 index a784fd5..0000000 Binary files a/images/mac/editcut.png and /dev/null differ diff --git a/images/mac/editpaste.png b/images/mac/editpaste.png deleted file mode 100644 index 64c0b2d..0000000 Binary files a/images/mac/editpaste.png and /dev/null differ diff --git a/images/mac/editredo.png b/images/mac/editredo.png deleted file mode 100644 index 8875bf2..0000000 Binary files a/images/mac/editredo.png and /dev/null differ diff --git a/images/mac/editundo.png b/images/mac/editundo.png deleted file mode 100644 index a3bd5e0..0000000 Binary files a/images/mac/editundo.png and /dev/null differ diff --git a/images/mac/exportpdf.png b/images/mac/exportpdf.png deleted file mode 100644 index ebb44e6..0000000 Binary files a/images/mac/exportpdf.png and /dev/null differ diff --git a/images/mac/filenew.png b/images/mac/filenew.png deleted file mode 100644 index d3882c7..0000000 Binary files a/images/mac/filenew.png and /dev/null differ diff --git a/images/mac/fileopen.png b/images/mac/fileopen.png deleted file mode 100644 index fc06c5e..0000000 Binary files a/images/mac/fileopen.png and /dev/null differ diff --git a/images/mac/fileprint.png b/images/mac/fileprint.png deleted file mode 100644 index 10ca56c..0000000 Binary files a/images/mac/fileprint.png and /dev/null differ diff --git a/images/mac/filesave.png b/images/mac/filesave.png deleted file mode 100644 index b41ecf5..0000000 Binary files a/images/mac/filesave.png and /dev/null differ diff --git a/images/mac/textbold.png b/images/mac/textbold.png deleted file mode 100644 index 38400bd..0000000 Binary files a/images/mac/textbold.png and /dev/null differ diff --git a/images/mac/textcenter.png b/images/mac/textcenter.png deleted file mode 100644 index 2ef5b2e..0000000 Binary files a/images/mac/textcenter.png and /dev/null differ diff --git a/images/mac/textitalic.png b/images/mac/textitalic.png deleted file mode 100644 index 0170ee2..0000000 Binary files a/images/mac/textitalic.png and /dev/null differ diff --git a/images/mac/textjustify.png b/images/mac/textjustify.png deleted file mode 100644 index 39cd6c1..0000000 Binary files a/images/mac/textjustify.png and /dev/null differ diff --git a/images/mac/textleft.png b/images/mac/textleft.png deleted file mode 100644 index 83a66d5..0000000 Binary files a/images/mac/textleft.png and /dev/null differ diff --git a/images/mac/textright.png b/images/mac/textright.png deleted file mode 100644 index e7c0464..0000000 Binary files a/images/mac/textright.png and /dev/null differ diff --git a/images/mac/textunder.png b/images/mac/textunder.png deleted file mode 100644 index 968bac5..0000000 Binary files a/images/mac/textunder.png and /dev/null differ diff --git a/images/mac/zoomin.png b/images/mac/zoomin.png deleted file mode 100644 index d46f5af..0000000 Binary files a/images/mac/zoomin.png and /dev/null differ diff --git a/images/mac/zoomout.png b/images/mac/zoomout.png deleted file mode 100644 index 4632656..0000000 Binary files a/images/mac/zoomout.png and /dev/null differ diff --git a/images/tango/16x16/actions/address-book-new.png b/images/tango/16x16/actions/address-book-new.png new file mode 100644 index 0000000..2098cfd Binary files /dev/null and b/images/tango/16x16/actions/address-book-new.png differ diff --git a/images/tango/16x16/actions/appointment-new.png b/images/tango/16x16/actions/appointment-new.png new file mode 100644 index 0000000..18b7c67 Binary files /dev/null and b/images/tango/16x16/actions/appointment-new.png differ diff --git a/images/tango/16x16/actions/bookmark-new.png b/images/tango/16x16/actions/bookmark-new.png new file mode 100644 index 0000000..6cf6443 Binary files /dev/null and b/images/tango/16x16/actions/bookmark-new.png differ diff --git a/images/tango/16x16/actions/contact-new.png b/images/tango/16x16/actions/contact-new.png new file mode 100644 index 0000000..46573ff Binary files /dev/null and b/images/tango/16x16/actions/contact-new.png differ diff --git a/images/tango/16x16/actions/document-new.png b/images/tango/16x16/actions/document-new.png new file mode 100644 index 0000000..4c3efdd Binary files /dev/null and b/images/tango/16x16/actions/document-new.png differ diff --git a/images/tango/16x16/actions/document-open.png b/images/tango/16x16/actions/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/images/tango/16x16/actions/document-open.png differ diff --git a/images/tango/16x16/actions/document-pdf.png b/images/tango/16x16/actions/document-pdf.png new file mode 100644 index 0000000..4e1657f Binary files /dev/null and b/images/tango/16x16/actions/document-pdf.png differ diff --git a/images/tango/16x16/actions/document-print-preview.png b/images/tango/16x16/actions/document-print-preview.png new file mode 100644 index 0000000..ab92a30 Binary files /dev/null and b/images/tango/16x16/actions/document-print-preview.png differ diff --git a/images/tango/16x16/actions/document-print.png b/images/tango/16x16/actions/document-print.png new file mode 100644 index 0000000..35c37bd Binary files /dev/null and b/images/tango/16x16/actions/document-print.png differ diff --git a/images/tango/16x16/actions/document-properties.png b/images/tango/16x16/actions/document-properties.png new file mode 100644 index 0000000..ab0e8ea Binary files /dev/null and b/images/tango/16x16/actions/document-properties.png differ diff --git a/images/tango/16x16/actions/document-revert.png b/images/tango/16x16/actions/document-revert.png new file mode 100644 index 0000000..cf3c13b Binary files /dev/null and b/images/tango/16x16/actions/document-revert.png differ diff --git a/images/tango/16x16/actions/document-save-as.png b/images/tango/16x16/actions/document-save-as.png new file mode 100644 index 0000000..9bed143 Binary files /dev/null and b/images/tango/16x16/actions/document-save-as.png differ diff --git a/images/tango/16x16/actions/document-save.png b/images/tango/16x16/actions/document-save.png new file mode 100644 index 0000000..22ff495 Binary files /dev/null and b/images/tango/16x16/actions/document-save.png differ diff --git a/images/tango/16x16/actions/edit-clear.png b/images/tango/16x16/actions/edit-clear.png new file mode 100644 index 0000000..e6c8e8b Binary files /dev/null and b/images/tango/16x16/actions/edit-clear.png differ diff --git a/images/tango/16x16/actions/edit-copy.png b/images/tango/16x16/actions/edit-copy.png new file mode 100644 index 0000000..8dd48c4 Binary files /dev/null and b/images/tango/16x16/actions/edit-copy.png differ diff --git a/images/tango/16x16/actions/edit-cut.png b/images/tango/16x16/actions/edit-cut.png new file mode 100644 index 0000000..dc9eb9a Binary files /dev/null and b/images/tango/16x16/actions/edit-cut.png differ diff --git a/images/tango/16x16/actions/edit-delete.png b/images/tango/16x16/actions/edit-delete.png new file mode 100644 index 0000000..ea03150 Binary files /dev/null and b/images/tango/16x16/actions/edit-delete.png differ diff --git a/images/tango/16x16/actions/edit-find-replace.png b/images/tango/16x16/actions/edit-find-replace.png new file mode 100644 index 0000000..6edbef6 Binary files /dev/null and b/images/tango/16x16/actions/edit-find-replace.png differ diff --git a/images/tango/16x16/actions/edit-find.png b/images/tango/16x16/actions/edit-find.png new file mode 100644 index 0000000..d072d3c Binary files /dev/null and b/images/tango/16x16/actions/edit-find.png differ diff --git a/images/tango/16x16/actions/edit-paste.png b/images/tango/16x16/actions/edit-paste.png new file mode 100644 index 0000000..24588a3 Binary files /dev/null and b/images/tango/16x16/actions/edit-paste.png differ diff --git a/images/tango/16x16/actions/edit-redo.png b/images/tango/16x16/actions/edit-redo.png new file mode 100644 index 0000000..c3b0df0 Binary files /dev/null and b/images/tango/16x16/actions/edit-redo.png differ diff --git a/images/tango/16x16/actions/edit-select-all.png b/images/tango/16x16/actions/edit-select-all.png new file mode 100644 index 0000000..f4b0b19 Binary files /dev/null and b/images/tango/16x16/actions/edit-select-all.png differ diff --git a/images/tango/16x16/actions/edit-undo.png b/images/tango/16x16/actions/edit-undo.png new file mode 100644 index 0000000..8b0fef9 Binary files /dev/null and b/images/tango/16x16/actions/edit-undo.png differ diff --git a/images/tango/16x16/actions/folder-new.png b/images/tango/16x16/actions/folder-new.png new file mode 100644 index 0000000..628f4d5 Binary files /dev/null and b/images/tango/16x16/actions/folder-new.png differ diff --git a/images/tango/16x16/actions/format-indent-less.png b/images/tango/16x16/actions/format-indent-less.png new file mode 100644 index 0000000..1787a7f Binary files /dev/null and b/images/tango/16x16/actions/format-indent-less.png differ diff --git a/images/tango/16x16/actions/format-indent-more.png b/images/tango/16x16/actions/format-indent-more.png new file mode 100644 index 0000000..6bad6bb Binary files /dev/null and b/images/tango/16x16/actions/format-indent-more.png differ diff --git a/images/tango/16x16/actions/format-justify-center.png b/images/tango/16x16/actions/format-justify-center.png new file mode 100644 index 0000000..207dc4c Binary files /dev/null and b/images/tango/16x16/actions/format-justify-center.png differ diff --git a/images/tango/16x16/actions/format-justify-fill.png b/images/tango/16x16/actions/format-justify-fill.png new file mode 100644 index 0000000..663cbad Binary files /dev/null and b/images/tango/16x16/actions/format-justify-fill.png differ diff --git a/images/tango/16x16/actions/format-justify-left.png b/images/tango/16x16/actions/format-justify-left.png new file mode 100644 index 0000000..d9b40a7 Binary files /dev/null and b/images/tango/16x16/actions/format-justify-left.png differ diff --git a/images/tango/16x16/actions/format-justify-right.png b/images/tango/16x16/actions/format-justify-right.png new file mode 100644 index 0000000..c301307 Binary files /dev/null and b/images/tango/16x16/actions/format-justify-right.png differ diff --git a/images/tango/16x16/actions/format-text-bold.png b/images/tango/16x16/actions/format-text-bold.png new file mode 100644 index 0000000..c9cb630 Binary files /dev/null and b/images/tango/16x16/actions/format-text-bold.png differ diff --git a/images/tango/16x16/actions/format-text-italic.png b/images/tango/16x16/actions/format-text-italic.png new file mode 100644 index 0000000..977ea82 Binary files /dev/null and b/images/tango/16x16/actions/format-text-italic.png differ diff --git a/images/tango/16x16/actions/format-text-strikethrough.png b/images/tango/16x16/actions/format-text-strikethrough.png new file mode 100644 index 0000000..ccee76e Binary files /dev/null and b/images/tango/16x16/actions/format-text-strikethrough.png differ diff --git a/images/tango/16x16/actions/format-text-underline.png b/images/tango/16x16/actions/format-text-underline.png new file mode 100644 index 0000000..0c48721 Binary files /dev/null and b/images/tango/16x16/actions/format-text-underline.png differ diff --git a/images/tango/16x16/actions/go-bottom.png b/images/tango/16x16/actions/go-bottom.png new file mode 100644 index 0000000..2c5a803 Binary files /dev/null and b/images/tango/16x16/actions/go-bottom.png differ diff --git a/images/tango/16x16/actions/go-down.png b/images/tango/16x16/actions/go-down.png new file mode 100644 index 0000000..3dd7fcc Binary files /dev/null and b/images/tango/16x16/actions/go-down.png differ diff --git a/images/tango/16x16/actions/go-first.png b/images/tango/16x16/actions/go-first.png new file mode 100644 index 0000000..9c15c09 Binary files /dev/null and b/images/tango/16x16/actions/go-first.png differ diff --git a/images/tango/16x16/actions/go-home.png b/images/tango/16x16/actions/go-home.png new file mode 100644 index 0000000..a46fb22 Binary files /dev/null and b/images/tango/16x16/actions/go-home.png differ diff --git a/images/tango/16x16/actions/go-jump.png b/images/tango/16x16/actions/go-jump.png new file mode 100644 index 0000000..1d218c3 Binary files /dev/null and b/images/tango/16x16/actions/go-jump.png differ diff --git a/images/tango/16x16/actions/go-last.png b/images/tango/16x16/actions/go-last.png new file mode 100644 index 0000000..6e904ef Binary files /dev/null and b/images/tango/16x16/actions/go-last.png differ diff --git a/images/tango/16x16/actions/go-next.png b/images/tango/16x16/actions/go-next.png new file mode 100644 index 0000000..6ef8de7 Binary files /dev/null and b/images/tango/16x16/actions/go-next.png differ diff --git a/images/tango/16x16/actions/go-previous.png b/images/tango/16x16/actions/go-previous.png new file mode 100644 index 0000000..659cd90 Binary files /dev/null and b/images/tango/16x16/actions/go-previous.png differ diff --git a/images/tango/16x16/actions/go-top.png b/images/tango/16x16/actions/go-top.png new file mode 100644 index 0000000..70f2c99 Binary files /dev/null and b/images/tango/16x16/actions/go-top.png differ diff --git a/images/tango/16x16/actions/go-up.png b/images/tango/16x16/actions/go-up.png new file mode 100644 index 0000000..fa9a7d7 Binary files /dev/null and b/images/tango/16x16/actions/go-up.png differ diff --git a/images/tango/16x16/actions/list-add.png b/images/tango/16x16/actions/list-add.png new file mode 100644 index 0000000..1aa7f09 Binary files /dev/null and b/images/tango/16x16/actions/list-add.png differ diff --git a/images/tango/16x16/actions/list-remove.png b/images/tango/16x16/actions/list-remove.png new file mode 100644 index 0000000..00b654e Binary files /dev/null and b/images/tango/16x16/actions/list-remove.png differ diff --git a/images/tango/16x16/actions/mail-forward.png b/images/tango/16x16/actions/mail-forward.png new file mode 100644 index 0000000..de0199b Binary files /dev/null and b/images/tango/16x16/actions/mail-forward.png differ diff --git a/images/tango/16x16/actions/mail-mark-junk.png b/images/tango/16x16/actions/mail-mark-junk.png new file mode 100644 index 0000000..f12d452 Binary files /dev/null and b/images/tango/16x16/actions/mail-mark-junk.png differ diff --git a/images/tango/16x16/actions/mail-mark-not-junk.png b/images/tango/16x16/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..87c425f Binary files /dev/null and b/images/tango/16x16/actions/mail-mark-not-junk.png differ diff --git a/images/tango/16x16/actions/mail-message-new.png b/images/tango/16x16/actions/mail-message-new.png new file mode 100644 index 0000000..7c68cb8 Binary files /dev/null and b/images/tango/16x16/actions/mail-message-new.png differ diff --git a/images/tango/16x16/actions/mail-reply-all.png b/images/tango/16x16/actions/mail-reply-all.png new file mode 100644 index 0000000..2017b0a Binary files /dev/null and b/images/tango/16x16/actions/mail-reply-all.png differ diff --git a/images/tango/16x16/actions/mail-reply-sender.png b/images/tango/16x16/actions/mail-reply-sender.png new file mode 100644 index 0000000..a619741 Binary files /dev/null and b/images/tango/16x16/actions/mail-reply-sender.png differ diff --git a/images/tango/16x16/actions/mail-send-receive.png b/images/tango/16x16/actions/mail-send-receive.png new file mode 100644 index 0000000..3eb6a9c Binary files /dev/null and b/images/tango/16x16/actions/mail-send-receive.png differ diff --git a/images/tango/16x16/actions/media-eject.png b/images/tango/16x16/actions/media-eject.png new file mode 100644 index 0000000..2084067 Binary files /dev/null and b/images/tango/16x16/actions/media-eject.png differ diff --git a/images/tango/16x16/actions/media-playback-pause.png b/images/tango/16x16/actions/media-playback-pause.png new file mode 100644 index 0000000..c8b4fe2 Binary files /dev/null and b/images/tango/16x16/actions/media-playback-pause.png differ diff --git a/images/tango/16x16/actions/media-playback-start.png b/images/tango/16x16/actions/media-playback-start.png new file mode 100644 index 0000000..a7de0fe Binary files /dev/null and b/images/tango/16x16/actions/media-playback-start.png differ diff --git a/images/tango/16x16/actions/media-playback-stop.png b/images/tango/16x16/actions/media-playback-stop.png new file mode 100644 index 0000000..ede2815 Binary files /dev/null and b/images/tango/16x16/actions/media-playback-stop.png differ diff --git a/images/tango/16x16/actions/media-record.png b/images/tango/16x16/actions/media-record.png new file mode 100644 index 0000000..2f66cde Binary files /dev/null and b/images/tango/16x16/actions/media-record.png differ diff --git a/images/tango/16x16/actions/media-seek-backward.png b/images/tango/16x16/actions/media-seek-backward.png new file mode 100644 index 0000000..ffcac31 Binary files /dev/null and b/images/tango/16x16/actions/media-seek-backward.png differ diff --git a/images/tango/16x16/actions/media-seek-forward.png b/images/tango/16x16/actions/media-seek-forward.png new file mode 100644 index 0000000..4d7e2cd Binary files /dev/null and b/images/tango/16x16/actions/media-seek-forward.png differ diff --git a/images/tango/16x16/actions/media-skip-backward.png b/images/tango/16x16/actions/media-skip-backward.png new file mode 100644 index 0000000..94381f5 Binary files /dev/null and b/images/tango/16x16/actions/media-skip-backward.png differ diff --git a/images/tango/16x16/actions/media-skip-forward.png b/images/tango/16x16/actions/media-skip-forward.png new file mode 100644 index 0000000..758ec6f Binary files /dev/null and b/images/tango/16x16/actions/media-skip-forward.png differ diff --git a/images/tango/16x16/actions/process-stop.png b/images/tango/16x16/actions/process-stop.png new file mode 100644 index 0000000..ab6808f Binary files /dev/null and b/images/tango/16x16/actions/process-stop.png differ diff --git a/images/tango/16x16/actions/system-lock-screen.png b/images/tango/16x16/actions/system-lock-screen.png new file mode 100644 index 0000000..f7ea0cd Binary files /dev/null and b/images/tango/16x16/actions/system-lock-screen.png differ diff --git a/images/tango/16x16/actions/system-log-out.png b/images/tango/16x16/actions/system-log-out.png new file mode 100644 index 0000000..0010931 Binary files /dev/null and b/images/tango/16x16/actions/system-log-out.png differ diff --git a/images/tango/16x16/actions/system-search.png b/images/tango/16x16/actions/system-search.png new file mode 100644 index 0000000..fd7f0b0 Binary files /dev/null and b/images/tango/16x16/actions/system-search.png differ diff --git a/images/tango/16x16/actions/system-shutdown.png b/images/tango/16x16/actions/system-shutdown.png new file mode 100644 index 0000000..afe62de Binary files /dev/null and b/images/tango/16x16/actions/system-shutdown.png differ diff --git a/images/tango/16x16/actions/tab-new.png b/images/tango/16x16/actions/tab-new.png new file mode 100644 index 0000000..3e590f6 Binary files /dev/null and b/images/tango/16x16/actions/tab-new.png differ diff --git a/images/tango/16x16/actions/view-fullscreen.png b/images/tango/16x16/actions/view-fullscreen.png new file mode 100644 index 0000000..ffdabd4 Binary files /dev/null and b/images/tango/16x16/actions/view-fullscreen.png differ diff --git a/images/tango/16x16/actions/view-refresh.png b/images/tango/16x16/actions/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/images/tango/16x16/actions/view-refresh.png differ diff --git a/images/tango/16x16/actions/window-new.png b/images/tango/16x16/actions/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/images/tango/16x16/actions/window-new.png differ diff --git a/images/tango/16x16/animations/process-working.png b/images/tango/16x16/animations/process-working.png new file mode 100644 index 0000000..984bde4 Binary files /dev/null and b/images/tango/16x16/animations/process-working.png differ diff --git a/images/tango/16x16/apps/accessories-calculator.png b/images/tango/16x16/apps/accessories-calculator.png new file mode 100644 index 0000000..9248971 Binary files /dev/null and b/images/tango/16x16/apps/accessories-calculator.png differ diff --git a/images/tango/16x16/apps/accessories-character-map.png b/images/tango/16x16/apps/accessories-character-map.png new file mode 100644 index 0000000..5dd1124 Binary files /dev/null and b/images/tango/16x16/apps/accessories-character-map.png differ diff --git a/images/tango/16x16/apps/accessories-text-editor.png b/images/tango/16x16/apps/accessories-text-editor.png new file mode 100644 index 0000000..188e1c1 Binary files /dev/null and b/images/tango/16x16/apps/accessories-text-editor.png differ diff --git a/images/tango/16x16/apps/help-browser.png b/images/tango/16x16/apps/help-browser.png new file mode 100644 index 0000000..f25fc3f Binary files /dev/null and b/images/tango/16x16/apps/help-browser.png differ diff --git a/images/tango/16x16/apps/internet-group-chat.png b/images/tango/16x16/apps/internet-group-chat.png new file mode 100644 index 0000000..f6e8325 Binary files /dev/null and b/images/tango/16x16/apps/internet-group-chat.png differ diff --git a/images/tango/16x16/apps/internet-mail.png b/images/tango/16x16/apps/internet-mail.png new file mode 100644 index 0000000..859251f Binary files /dev/null and b/images/tango/16x16/apps/internet-mail.png differ diff --git a/images/tango/16x16/apps/internet-news-reader.png b/images/tango/16x16/apps/internet-news-reader.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/images/tango/16x16/apps/internet-news-reader.png differ diff --git a/images/tango/16x16/apps/internet-web-browser.png b/images/tango/16x16/apps/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/images/tango/16x16/apps/internet-web-browser.png differ diff --git a/images/tango/16x16/apps/office-calendar.png b/images/tango/16x16/apps/office-calendar.png new file mode 100644 index 0000000..106a592 Binary files /dev/null and b/images/tango/16x16/apps/office-calendar.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-accessibility.png b/images/tango/16x16/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..b365c27 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-assistive-technology.png b/images/tango/16x16/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..513d817 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-font.png b/images/tango/16x16/apps/preferences-desktop-font.png new file mode 100644 index 0000000..18a0149 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-font.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..291dc1a Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-locale.png b/images/tango/16x16/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..5ef73a6 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-locale.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-multimedia.png b/images/tango/16x16/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..2e5ba43 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-remote-desktop.png b/images/tango/16x16/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..b790f63 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-screensaver.png b/images/tango/16x16/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dc297db Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-theme.png b/images/tango/16x16/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..fbea772 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-theme.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-wallpaper.png b/images/tango/16x16/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..e7cc834 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/16x16/apps/preferences-system-network-proxy.png b/images/tango/16x16/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bdeb79d Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/16x16/apps/preferences-system-session.png b/images/tango/16x16/apps/preferences-system-session.png new file mode 100644 index 0000000..35f8b57 Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-session.png differ diff --git a/images/tango/16x16/apps/preferences-system-windows.png b/images/tango/16x16/apps/preferences-system-windows.png new file mode 100644 index 0000000..596caf9 Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-windows.png differ diff --git a/images/tango/16x16/apps/system-file-manager.png b/images/tango/16x16/apps/system-file-manager.png new file mode 100644 index 0000000..60cade4 Binary files /dev/null and b/images/tango/16x16/apps/system-file-manager.png differ diff --git a/images/tango/16x16/apps/system-installer.png b/images/tango/16x16/apps/system-installer.png new file mode 100644 index 0000000..d16abcb Binary files /dev/null and b/images/tango/16x16/apps/system-installer.png differ diff --git a/images/tango/16x16/apps/system-software-update.png b/images/tango/16x16/apps/system-software-update.png new file mode 100644 index 0000000..58f19c6 Binary files /dev/null and b/images/tango/16x16/apps/system-software-update.png differ diff --git a/images/tango/16x16/apps/system-users.png b/images/tango/16x16/apps/system-users.png new file mode 100644 index 0000000..9d2d500 Binary files /dev/null and b/images/tango/16x16/apps/system-users.png differ diff --git a/images/tango/16x16/apps/utilities-system-monitor.png b/images/tango/16x16/apps/utilities-system-monitor.png new file mode 100644 index 0000000..8734e77 Binary files /dev/null and b/images/tango/16x16/apps/utilities-system-monitor.png differ diff --git a/images/tango/16x16/apps/utilities-terminal.png b/images/tango/16x16/apps/utilities-terminal.png new file mode 100644 index 0000000..c5b797a Binary files /dev/null and b/images/tango/16x16/apps/utilities-terminal.png differ diff --git a/images/tango/16x16/categories/applications-accessories.png b/images/tango/16x16/categories/applications-accessories.png new file mode 100644 index 0000000..c8d899c Binary files /dev/null and b/images/tango/16x16/categories/applications-accessories.png differ diff --git a/images/tango/16x16/categories/applications-development.png b/images/tango/16x16/categories/applications-development.png new file mode 100644 index 0000000..4375227 Binary files /dev/null and b/images/tango/16x16/categories/applications-development.png differ diff --git a/images/tango/16x16/categories/applications-games.png b/images/tango/16x16/categories/applications-games.png new file mode 100644 index 0000000..4ba874b Binary files /dev/null and b/images/tango/16x16/categories/applications-games.png differ diff --git a/images/tango/16x16/categories/applications-graphics.png b/images/tango/16x16/categories/applications-graphics.png new file mode 100644 index 0000000..4bb955f Binary files /dev/null and b/images/tango/16x16/categories/applications-graphics.png differ diff --git a/images/tango/16x16/categories/applications-internet.png b/images/tango/16x16/categories/applications-internet.png new file mode 100644 index 0000000..a588968 Binary files /dev/null and b/images/tango/16x16/categories/applications-internet.png differ diff --git a/images/tango/16x16/categories/applications-multimedia.png b/images/tango/16x16/categories/applications-multimedia.png new file mode 100644 index 0000000..3e4ced5 Binary files /dev/null and b/images/tango/16x16/categories/applications-multimedia.png differ diff --git a/images/tango/16x16/categories/applications-office.png b/images/tango/16x16/categories/applications-office.png new file mode 100644 index 0000000..f9b3bb9 Binary files /dev/null and b/images/tango/16x16/categories/applications-office.png differ diff --git a/images/tango/16x16/categories/applications-other.png b/images/tango/16x16/categories/applications-other.png new file mode 100644 index 0000000..0d49f9d Binary files /dev/null and b/images/tango/16x16/categories/applications-other.png differ diff --git a/images/tango/16x16/categories/applications-system.png b/images/tango/16x16/categories/applications-system.png new file mode 100644 index 0000000..d90ab66 Binary files /dev/null and b/images/tango/16x16/categories/applications-system.png differ diff --git a/images/tango/16x16/categories/preferences-desktop-peripherals.png b/images/tango/16x16/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..2a63cee Binary files /dev/null and b/images/tango/16x16/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/16x16/categories/preferences-desktop.png b/images/tango/16x16/categories/preferences-desktop.png new file mode 100644 index 0000000..68f916c Binary files /dev/null and b/images/tango/16x16/categories/preferences-desktop.png differ diff --git a/images/tango/16x16/categories/preferences-system.png b/images/tango/16x16/categories/preferences-system.png new file mode 100644 index 0000000..9460dfc Binary files /dev/null and b/images/tango/16x16/categories/preferences-system.png differ diff --git a/images/tango/16x16/devices/audio-card.png b/images/tango/16x16/devices/audio-card.png new file mode 100644 index 0000000..aaa7907 Binary files /dev/null and b/images/tango/16x16/devices/audio-card.png differ diff --git a/images/tango/16x16/devices/audio-input-microphone.png b/images/tango/16x16/devices/audio-input-microphone.png new file mode 100644 index 0000000..53a0393 Binary files /dev/null and b/images/tango/16x16/devices/audio-input-microphone.png differ diff --git a/images/tango/16x16/devices/battery.png b/images/tango/16x16/devices/battery.png new file mode 100644 index 0000000..8684e2a Binary files /dev/null and b/images/tango/16x16/devices/battery.png differ diff --git a/images/tango/16x16/devices/camera-photo.png b/images/tango/16x16/devices/camera-photo.png new file mode 100644 index 0000000..1e8e886 Binary files /dev/null and b/images/tango/16x16/devices/camera-photo.png differ diff --git a/images/tango/16x16/devices/camera-video.png b/images/tango/16x16/devices/camera-video.png new file mode 100644 index 0000000..98fc211 Binary files /dev/null and b/images/tango/16x16/devices/camera-video.png differ diff --git a/images/tango/16x16/devices/computer.png b/images/tango/16x16/devices/computer.png new file mode 100644 index 0000000..d0b397b Binary files /dev/null and b/images/tango/16x16/devices/computer.png differ diff --git a/images/tango/16x16/devices/drive-harddisk.png b/images/tango/16x16/devices/drive-harddisk.png new file mode 100644 index 0000000..5c3b858 Binary files /dev/null and b/images/tango/16x16/devices/drive-harddisk.png differ diff --git a/images/tango/16x16/devices/drive-optical.png b/images/tango/16x16/devices/drive-optical.png new file mode 100644 index 0000000..4ced6fe Binary files /dev/null and b/images/tango/16x16/devices/drive-optical.png differ diff --git a/images/tango/16x16/devices/drive-removable-media.png b/images/tango/16x16/devices/drive-removable-media.png new file mode 100644 index 0000000..9153898 Binary files /dev/null and b/images/tango/16x16/devices/drive-removable-media.png differ diff --git a/images/tango/16x16/devices/input-gaming.png b/images/tango/16x16/devices/input-gaming.png new file mode 100644 index 0000000..9d040ee Binary files /dev/null and b/images/tango/16x16/devices/input-gaming.png differ diff --git a/images/tango/16x16/devices/input-keyboard.png b/images/tango/16x16/devices/input-keyboard.png new file mode 100644 index 0000000..fab414b Binary files /dev/null and b/images/tango/16x16/devices/input-keyboard.png differ diff --git a/images/tango/16x16/devices/input-mouse.png b/images/tango/16x16/devices/input-mouse.png new file mode 100644 index 0000000..eeda4db Binary files /dev/null and b/images/tango/16x16/devices/input-mouse.png differ diff --git a/images/tango/16x16/devices/media-flash.png b/images/tango/16x16/devices/media-flash.png new file mode 100644 index 0000000..bef542a Binary files /dev/null and b/images/tango/16x16/devices/media-flash.png differ diff --git a/images/tango/16x16/devices/media-floppy.png b/images/tango/16x16/devices/media-floppy.png new file mode 100644 index 0000000..f1d7a19 Binary files /dev/null and b/images/tango/16x16/devices/media-floppy.png differ diff --git a/images/tango/16x16/devices/media-optical.png b/images/tango/16x16/devices/media-optical.png new file mode 100644 index 0000000..760de93 Binary files /dev/null and b/images/tango/16x16/devices/media-optical.png differ diff --git a/images/tango/16x16/devices/multimedia-player.png b/images/tango/16x16/devices/multimedia-player.png new file mode 100644 index 0000000..461e9de Binary files /dev/null and b/images/tango/16x16/devices/multimedia-player.png differ diff --git a/images/tango/16x16/devices/network-wired.png b/images/tango/16x16/devices/network-wired.png new file mode 100644 index 0000000..3ac6b35 Binary files /dev/null and b/images/tango/16x16/devices/network-wired.png differ diff --git a/images/tango/16x16/devices/network-wireless.png b/images/tango/16x16/devices/network-wireless.png new file mode 100644 index 0000000..2dc6250 Binary files /dev/null and b/images/tango/16x16/devices/network-wireless.png differ diff --git a/images/tango/16x16/devices/printer.png b/images/tango/16x16/devices/printer.png new file mode 100644 index 0000000..12a4e39 Binary files /dev/null and b/images/tango/16x16/devices/printer.png differ diff --git a/images/tango/16x16/devices/video-display.png b/images/tango/16x16/devices/video-display.png new file mode 100644 index 0000000..226881f Binary files /dev/null and b/images/tango/16x16/devices/video-display.png differ diff --git a/images/tango/16x16/emblems/emblem-favorite.png b/images/tango/16x16/emblems/emblem-favorite.png new file mode 100644 index 0000000..3acb57d Binary files /dev/null and b/images/tango/16x16/emblems/emblem-favorite.png differ diff --git a/images/tango/16x16/emblems/emblem-important.png b/images/tango/16x16/emblems/emblem-important.png new file mode 100644 index 0000000..81e9ed2 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-important.png differ diff --git a/images/tango/16x16/emblems/emblem-photos.png b/images/tango/16x16/emblems/emblem-photos.png new file mode 100644 index 0000000..ab40463 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-photos.png differ diff --git a/images/tango/16x16/emblems/emblem-readonly.png b/images/tango/16x16/emblems/emblem-readonly.png new file mode 100644 index 0000000..0466619 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-readonly.png differ diff --git a/images/tango/16x16/emblems/emblem-symbolic-link.png b/images/tango/16x16/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..800b9e8 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/16x16/emblems/emblem-system.png b/images/tango/16x16/emblems/emblem-system.png new file mode 100644 index 0000000..259ed26 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-system.png differ diff --git a/images/tango/16x16/emblems/emblem-unreadable.png b/images/tango/16x16/emblems/emblem-unreadable.png new file mode 100644 index 0000000..5c08b05 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-unreadable.png differ diff --git a/images/tango/16x16/emotes/face-angel.png b/images/tango/16x16/emotes/face-angel.png new file mode 100644 index 0000000..d2c5e94 Binary files /dev/null and b/images/tango/16x16/emotes/face-angel.png differ diff --git a/images/tango/16x16/emotes/face-crying.png b/images/tango/16x16/emotes/face-crying.png new file mode 100644 index 0000000..2620dab Binary files /dev/null and b/images/tango/16x16/emotes/face-crying.png differ diff --git a/images/tango/16x16/emotes/face-devilish.png b/images/tango/16x16/emotes/face-devilish.png new file mode 100644 index 0000000..6edf683 Binary files /dev/null and b/images/tango/16x16/emotes/face-devilish.png differ diff --git a/images/tango/16x16/emotes/face-glasses.png b/images/tango/16x16/emotes/face-glasses.png new file mode 100644 index 0000000..00c2cd4 Binary files /dev/null and b/images/tango/16x16/emotes/face-glasses.png differ diff --git a/images/tango/16x16/emotes/face-grin.png b/images/tango/16x16/emotes/face-grin.png new file mode 100644 index 0000000..0d013d5 Binary files /dev/null and b/images/tango/16x16/emotes/face-grin.png differ diff --git a/images/tango/16x16/emotes/face-kiss.png b/images/tango/16x16/emotes/face-kiss.png new file mode 100644 index 0000000..809c1cf Binary files /dev/null and b/images/tango/16x16/emotes/face-kiss.png differ diff --git a/images/tango/16x16/emotes/face-monkey.png b/images/tango/16x16/emotes/face-monkey.png new file mode 100644 index 0000000..69db8fa Binary files /dev/null and b/images/tango/16x16/emotes/face-monkey.png differ diff --git a/images/tango/16x16/emotes/face-plain.png b/images/tango/16x16/emotes/face-plain.png new file mode 100644 index 0000000..31cf984 Binary files /dev/null and b/images/tango/16x16/emotes/face-plain.png differ diff --git a/images/tango/16x16/emotes/face-sad.png b/images/tango/16x16/emotes/face-sad.png new file mode 100644 index 0000000..159c04b Binary files /dev/null and b/images/tango/16x16/emotes/face-sad.png differ diff --git a/images/tango/16x16/emotes/face-smile-big.png b/images/tango/16x16/emotes/face-smile-big.png new file mode 100644 index 0000000..9114fde Binary files /dev/null and b/images/tango/16x16/emotes/face-smile-big.png differ diff --git a/images/tango/16x16/emotes/face-smile.png b/images/tango/16x16/emotes/face-smile.png new file mode 100644 index 0000000..de862b1 Binary files /dev/null and b/images/tango/16x16/emotes/face-smile.png differ diff --git a/images/tango/16x16/emotes/face-surprise.png b/images/tango/16x16/emotes/face-surprise.png new file mode 100644 index 0000000..4b4d423 Binary files /dev/null and b/images/tango/16x16/emotes/face-surprise.png differ diff --git a/images/tango/16x16/emotes/face-wink.png b/images/tango/16x16/emotes/face-wink.png new file mode 100644 index 0000000..e2db57e Binary files /dev/null and b/images/tango/16x16/emotes/face-wink.png differ diff --git a/images/tango/16x16/mimetypes/application-certificate.png b/images/tango/16x16/mimetypes/application-certificate.png new file mode 100644 index 0000000..486913d Binary files /dev/null and b/images/tango/16x16/mimetypes/application-certificate.png differ diff --git a/images/tango/16x16/mimetypes/application-x-executable.png b/images/tango/16x16/mimetypes/application-x-executable.png new file mode 100644 index 0000000..003ded2 Binary files /dev/null and b/images/tango/16x16/mimetypes/application-x-executable.png differ diff --git a/images/tango/16x16/mimetypes/audio-x-generic.png b/images/tango/16x16/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..2bd5af9 Binary files /dev/null and b/images/tango/16x16/mimetypes/audio-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/font-x-generic.png b/images/tango/16x16/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdbc1a8 Binary files /dev/null and b/images/tango/16x16/mimetypes/font-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/image-x-generic.png b/images/tango/16x16/mimetypes/image-x-generic.png new file mode 100644 index 0000000..68da502 Binary files /dev/null and b/images/tango/16x16/mimetypes/image-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/package-x-generic.png b/images/tango/16x16/mimetypes/package-x-generic.png new file mode 100644 index 0000000..9015426 Binary files /dev/null and b/images/tango/16x16/mimetypes/package-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/text-html.png b/images/tango/16x16/mimetypes/text-html.png new file mode 100644 index 0000000..53014ab Binary files /dev/null and b/images/tango/16x16/mimetypes/text-html.png differ diff --git a/images/tango/16x16/mimetypes/text-x-generic-template.png b/images/tango/16x16/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..a0cc462 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/16x16/mimetypes/text-x-generic.png b/images/tango/16x16/mimetypes/text-x-generic.png new file mode 100644 index 0000000..2d7f2d6 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/text-x-script.png b/images/tango/16x16/mimetypes/text-x-script.png new file mode 100644 index 0000000..c923098 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-script.png differ diff --git a/images/tango/16x16/mimetypes/video-x-generic.png b/images/tango/16x16/mimetypes/video-x-generic.png new file mode 100644 index 0000000..64e7a30 Binary files /dev/null and b/images/tango/16x16/mimetypes/video-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/x-office-address-book.png b/images/tango/16x16/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..f3b5d9d Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-address-book.png differ diff --git a/images/tango/16x16/mimetypes/x-office-calendar.png b/images/tango/16x16/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..f6978d7 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-calendar.png differ diff --git a/images/tango/16x16/mimetypes/x-office-document-template.png b/images/tango/16x16/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..d1d9e7c Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-document-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-document.png b/images/tango/16x16/mimetypes/x-office-document.png new file mode 100644 index 0000000..d18082e Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-document.png differ diff --git a/images/tango/16x16/mimetypes/x-office-drawing-template.png b/images/tango/16x16/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..dc384db Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-drawing.png b/images/tango/16x16/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..ffbb9e4 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-drawing.png differ diff --git a/images/tango/16x16/mimetypes/x-office-presentation-template.png b/images/tango/16x16/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..d90d034 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-presentation.png b/images/tango/16x16/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..f7ea302 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-presentation.png differ diff --git a/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png b/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..e8bf570 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-spreadsheet.png b/images/tango/16x16/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..a6b1268 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/16x16/places/folder-remote.png b/images/tango/16x16/places/folder-remote.png new file mode 100644 index 0000000..5234eab Binary files /dev/null and b/images/tango/16x16/places/folder-remote.png differ diff --git a/images/tango/16x16/places/folder-saved-search.png b/images/tango/16x16/places/folder-saved-search.png new file mode 100644 index 0000000..ca24a36 Binary files /dev/null and b/images/tango/16x16/places/folder-saved-search.png differ diff --git a/images/tango/16x16/places/folder.png b/images/tango/16x16/places/folder.png new file mode 100644 index 0000000..65bd0bb Binary files /dev/null and b/images/tango/16x16/places/folder.png differ diff --git a/images/tango/16x16/places/network-server.png b/images/tango/16x16/places/network-server.png new file mode 100644 index 0000000..068ffeb Binary files /dev/null and b/images/tango/16x16/places/network-server.png differ diff --git a/images/tango/16x16/places/network-workgroup.png b/images/tango/16x16/places/network-workgroup.png new file mode 100644 index 0000000..5c140d8 Binary files /dev/null and b/images/tango/16x16/places/network-workgroup.png differ diff --git a/images/tango/16x16/places/start-here.png b/images/tango/16x16/places/start-here.png new file mode 100644 index 0000000..bd516a5 Binary files /dev/null and b/images/tango/16x16/places/start-here.png differ diff --git a/images/tango/16x16/places/user-desktop.png b/images/tango/16x16/places/user-desktop.png new file mode 100644 index 0000000..4c9787c Binary files /dev/null and b/images/tango/16x16/places/user-desktop.png differ diff --git a/images/tango/16x16/places/user-home.png b/images/tango/16x16/places/user-home.png new file mode 100644 index 0000000..7b9110d Binary files /dev/null and b/images/tango/16x16/places/user-home.png differ diff --git a/images/tango/16x16/places/user-trash.png b/images/tango/16x16/places/user-trash.png new file mode 100644 index 0000000..0e0953c Binary files /dev/null and b/images/tango/16x16/places/user-trash.png differ diff --git a/images/tango/16x16/status/audio-volume-high.png b/images/tango/16x16/status/audio-volume-high.png new file mode 100644 index 0000000..ec8f00b Binary files /dev/null and b/images/tango/16x16/status/audio-volume-high.png differ diff --git a/images/tango/16x16/status/audio-volume-low.png b/images/tango/16x16/status/audio-volume-low.png new file mode 100644 index 0000000..4d7239f Binary files /dev/null and b/images/tango/16x16/status/audio-volume-low.png differ diff --git a/images/tango/16x16/status/audio-volume-medium.png b/images/tango/16x16/status/audio-volume-medium.png new file mode 100644 index 0000000..36ca7b0 Binary files /dev/null and b/images/tango/16x16/status/audio-volume-medium.png differ diff --git a/images/tango/16x16/status/audio-volume-muted.png b/images/tango/16x16/status/audio-volume-muted.png new file mode 100644 index 0000000..af5a97b Binary files /dev/null and b/images/tango/16x16/status/audio-volume-muted.png differ diff --git a/images/tango/16x16/status/battery-caution.png b/images/tango/16x16/status/battery-caution.png new file mode 100644 index 0000000..53a27d1 Binary files /dev/null and b/images/tango/16x16/status/battery-caution.png differ diff --git a/images/tango/16x16/status/dialog-error.png b/images/tango/16x16/status/dialog-error.png new file mode 100644 index 0000000..3bbbb4a Binary files /dev/null and b/images/tango/16x16/status/dialog-error.png differ diff --git a/images/tango/16x16/status/dialog-information.png b/images/tango/16x16/status/dialog-information.png new file mode 100644 index 0000000..8851b99 Binary files /dev/null and b/images/tango/16x16/status/dialog-information.png differ diff --git a/images/tango/16x16/status/dialog-warning.png b/images/tango/16x16/status/dialog-warning.png new file mode 100644 index 0000000..a9e4ff3 Binary files /dev/null and b/images/tango/16x16/status/dialog-warning.png differ diff --git a/images/tango/16x16/status/folder-drag-accept.png b/images/tango/16x16/status/folder-drag-accept.png new file mode 100644 index 0000000..44055dc Binary files /dev/null and b/images/tango/16x16/status/folder-drag-accept.png differ diff --git a/images/tango/16x16/status/folder-open.png b/images/tango/16x16/status/folder-open.png new file mode 100644 index 0000000..b67403d Binary files /dev/null and b/images/tango/16x16/status/folder-open.png differ diff --git a/images/tango/16x16/status/folder-visiting.png b/images/tango/16x16/status/folder-visiting.png new file mode 100644 index 0000000..9002444 Binary files /dev/null and b/images/tango/16x16/status/folder-visiting.png differ diff --git a/images/tango/16x16/status/image-loading.png b/images/tango/16x16/status/image-loading.png new file mode 100644 index 0000000..174994e Binary files /dev/null and b/images/tango/16x16/status/image-loading.png differ diff --git a/images/tango/16x16/status/image-missing.png b/images/tango/16x16/status/image-missing.png new file mode 100644 index 0000000..a644f24 Binary files /dev/null and b/images/tango/16x16/status/image-missing.png differ diff --git a/images/tango/16x16/status/mail-attachment.png b/images/tango/16x16/status/mail-attachment.png new file mode 100644 index 0000000..529bb7f Binary files /dev/null and b/images/tango/16x16/status/mail-attachment.png differ diff --git a/images/tango/16x16/status/network-error.png b/images/tango/16x16/status/network-error.png new file mode 100644 index 0000000..3f18ed0 Binary files /dev/null and b/images/tango/16x16/status/network-error.png differ diff --git a/images/tango/16x16/status/network-idle.png b/images/tango/16x16/status/network-idle.png new file mode 100644 index 0000000..0efee57 Binary files /dev/null and b/images/tango/16x16/status/network-idle.png differ diff --git a/images/tango/16x16/status/network-offline.png b/images/tango/16x16/status/network-offline.png new file mode 100644 index 0000000..1f210fc Binary files /dev/null and b/images/tango/16x16/status/network-offline.png differ diff --git a/images/tango/16x16/status/network-receive.png b/images/tango/16x16/status/network-receive.png new file mode 100644 index 0000000..b57c65c Binary files /dev/null and b/images/tango/16x16/status/network-receive.png differ diff --git a/images/tango/16x16/status/network-transmit-receive.png b/images/tango/16x16/status/network-transmit-receive.png new file mode 100644 index 0000000..271d37d Binary files /dev/null and b/images/tango/16x16/status/network-transmit-receive.png differ diff --git a/images/tango/16x16/status/network-transmit.png b/images/tango/16x16/status/network-transmit.png new file mode 100644 index 0000000..08aa28b Binary files /dev/null and b/images/tango/16x16/status/network-transmit.png differ diff --git a/images/tango/16x16/status/network-wireless-encrypted.png b/images/tango/16x16/status/network-wireless-encrypted.png new file mode 100644 index 0000000..c73e33c Binary files /dev/null and b/images/tango/16x16/status/network-wireless-encrypted.png differ diff --git a/images/tango/16x16/status/printer-error.png b/images/tango/16x16/status/printer-error.png new file mode 100644 index 0000000..21d4ded Binary files /dev/null and b/images/tango/16x16/status/printer-error.png differ diff --git a/images/tango/16x16/status/software-update-available.png b/images/tango/16x16/status/software-update-available.png new file mode 100644 index 0000000..ab8d494 Binary files /dev/null and b/images/tango/16x16/status/software-update-available.png differ diff --git a/images/tango/16x16/status/software-update-urgent.png b/images/tango/16x16/status/software-update-urgent.png new file mode 100644 index 0000000..433945d Binary files /dev/null and b/images/tango/16x16/status/software-update-urgent.png differ diff --git a/images/tango/16x16/status/user-trash-full.png b/images/tango/16x16/status/user-trash-full.png new file mode 100644 index 0000000..695d215 Binary files /dev/null and b/images/tango/16x16/status/user-trash-full.png differ diff --git a/images/tango/16x16/status/weather-clear-night.png b/images/tango/16x16/status/weather-clear-night.png new file mode 100644 index 0000000..4345752 Binary files /dev/null and b/images/tango/16x16/status/weather-clear-night.png differ diff --git a/images/tango/16x16/status/weather-clear.png b/images/tango/16x16/status/weather-clear.png new file mode 100644 index 0000000..7dc15ea Binary files /dev/null and b/images/tango/16x16/status/weather-clear.png differ diff --git a/images/tango/16x16/status/weather-few-clouds-night.png b/images/tango/16x16/status/weather-few-clouds-night.png new file mode 100644 index 0000000..d69efec Binary files /dev/null and b/images/tango/16x16/status/weather-few-clouds-night.png differ diff --git a/images/tango/16x16/status/weather-few-clouds.png b/images/tango/16x16/status/weather-few-clouds.png new file mode 100644 index 0000000..0e633a3 Binary files /dev/null and b/images/tango/16x16/status/weather-few-clouds.png differ diff --git a/images/tango/16x16/status/weather-overcast.png b/images/tango/16x16/status/weather-overcast.png new file mode 100644 index 0000000..0045129 Binary files /dev/null and b/images/tango/16x16/status/weather-overcast.png differ diff --git a/images/tango/16x16/status/weather-severe-alert.png b/images/tango/16x16/status/weather-severe-alert.png new file mode 100644 index 0000000..98e9f6c Binary files /dev/null and b/images/tango/16x16/status/weather-severe-alert.png differ diff --git a/images/tango/16x16/status/weather-showers-scattered.png b/images/tango/16x16/status/weather-showers-scattered.png new file mode 100644 index 0000000..8d10d84 Binary files /dev/null and b/images/tango/16x16/status/weather-showers-scattered.png differ diff --git a/images/tango/16x16/status/weather-showers.png b/images/tango/16x16/status/weather-showers.png new file mode 100644 index 0000000..d9685d2 Binary files /dev/null and b/images/tango/16x16/status/weather-showers.png differ diff --git a/images/tango/16x16/status/weather-snow.png b/images/tango/16x16/status/weather-snow.png new file mode 100644 index 0000000..a83d855 Binary files /dev/null and b/images/tango/16x16/status/weather-snow.png differ diff --git a/images/tango/16x16/status/weather-storm.png b/images/tango/16x16/status/weather-storm.png new file mode 100644 index 0000000..feebe1d Binary files /dev/null and b/images/tango/16x16/status/weather-storm.png differ diff --git a/images/tango/22x22/actions/address-book-new.png b/images/tango/22x22/actions/address-book-new.png new file mode 100644 index 0000000..fad446c Binary files /dev/null and b/images/tango/22x22/actions/address-book-new.png differ diff --git a/images/tango/22x22/actions/appointment-new.png b/images/tango/22x22/actions/appointment-new.png new file mode 100644 index 0000000..d676ffd Binary files /dev/null and b/images/tango/22x22/actions/appointment-new.png differ diff --git a/images/tango/22x22/actions/bookmark-new.png b/images/tango/22x22/actions/bookmark-new.png new file mode 100644 index 0000000..3ec0300 Binary files /dev/null and b/images/tango/22x22/actions/bookmark-new.png differ diff --git a/images/tango/22x22/actions/contact-new.png b/images/tango/22x22/actions/contact-new.png new file mode 100644 index 0000000..c9921be Binary files /dev/null and b/images/tango/22x22/actions/contact-new.png differ diff --git a/images/tango/22x22/actions/document-new.png b/images/tango/22x22/actions/document-new.png new file mode 100644 index 0000000..e3808a1 Binary files /dev/null and b/images/tango/22x22/actions/document-new.png differ diff --git a/images/tango/22x22/actions/document-open.png b/images/tango/22x22/actions/document-open.png new file mode 100644 index 0000000..254a6b8 Binary files /dev/null and b/images/tango/22x22/actions/document-open.png differ diff --git a/images/tango/22x22/actions/document-pdf.png b/images/tango/22x22/actions/document-pdf.png new file mode 100644 index 0000000..033a703 Binary files /dev/null and b/images/tango/22x22/actions/document-pdf.png differ diff --git a/images/tango/22x22/actions/document-print-preview.png b/images/tango/22x22/actions/document-print-preview.png new file mode 100644 index 0000000..75f43aa Binary files /dev/null and b/images/tango/22x22/actions/document-print-preview.png differ diff --git a/images/tango/22x22/actions/document-print.png b/images/tango/22x22/actions/document-print.png new file mode 100644 index 0000000..52dd67e Binary files /dev/null and b/images/tango/22x22/actions/document-print.png differ diff --git a/images/tango/22x22/actions/document-properties.png b/images/tango/22x22/actions/document-properties.png new file mode 100644 index 0000000..a5ad728 Binary files /dev/null and b/images/tango/22x22/actions/document-properties.png differ diff --git a/images/tango/22x22/actions/document-revert.png b/images/tango/22x22/actions/document-revert.png new file mode 100644 index 0000000..529abcb Binary files /dev/null and b/images/tango/22x22/actions/document-revert.png differ diff --git a/images/tango/22x22/actions/document-save-as.png b/images/tango/22x22/actions/document-save-as.png new file mode 100644 index 0000000..340a87e Binary files /dev/null and b/images/tango/22x22/actions/document-save-as.png differ diff --git a/images/tango/22x22/actions/document-save.png b/images/tango/22x22/actions/document-save.png new file mode 100644 index 0000000..a94e0ea Binary files /dev/null and b/images/tango/22x22/actions/document-save.png differ diff --git a/images/tango/22x22/actions/edit-clear.png b/images/tango/22x22/actions/edit-clear.png new file mode 100644 index 0000000..bbc77eb Binary files /dev/null and b/images/tango/22x22/actions/edit-clear.png differ diff --git a/images/tango/22x22/actions/edit-copy.png b/images/tango/22x22/actions/edit-copy.png new file mode 100644 index 0000000..345b2f1 Binary files /dev/null and b/images/tango/22x22/actions/edit-copy.png differ diff --git a/images/tango/22x22/actions/edit-cut.png b/images/tango/22x22/actions/edit-cut.png new file mode 100644 index 0000000..7017d1b Binary files /dev/null and b/images/tango/22x22/actions/edit-cut.png differ diff --git a/images/tango/22x22/actions/edit-delete.png b/images/tango/22x22/actions/edit-delete.png new file mode 100644 index 0000000..3811b64 Binary files /dev/null and b/images/tango/22x22/actions/edit-delete.png differ diff --git a/images/tango/22x22/actions/edit-find-replace.png b/images/tango/22x22/actions/edit-find-replace.png new file mode 100644 index 0000000..de3a75f Binary files /dev/null and b/images/tango/22x22/actions/edit-find-replace.png differ diff --git a/images/tango/22x22/actions/edit-find.png b/images/tango/22x22/actions/edit-find.png new file mode 100644 index 0000000..4f078cb Binary files /dev/null and b/images/tango/22x22/actions/edit-find.png differ diff --git a/images/tango/22x22/actions/edit-paste.png b/images/tango/22x22/actions/edit-paste.png new file mode 100644 index 0000000..f6a625c Binary files /dev/null and b/images/tango/22x22/actions/edit-paste.png differ diff --git a/images/tango/22x22/actions/edit-redo.png b/images/tango/22x22/actions/edit-redo.png new file mode 100644 index 0000000..576cfc7 Binary files /dev/null and b/images/tango/22x22/actions/edit-redo.png differ diff --git a/images/tango/22x22/actions/edit-select-all.png b/images/tango/22x22/actions/edit-select-all.png new file mode 100644 index 0000000..e6331c6 Binary files /dev/null and b/images/tango/22x22/actions/edit-select-all.png differ diff --git a/images/tango/22x22/actions/edit-undo.png b/images/tango/22x22/actions/edit-undo.png new file mode 100644 index 0000000..f37c696 Binary files /dev/null and b/images/tango/22x22/actions/edit-undo.png differ diff --git a/images/tango/22x22/actions/folder-new.png b/images/tango/22x22/actions/folder-new.png new file mode 100644 index 0000000..1c3dc94 Binary files /dev/null and b/images/tango/22x22/actions/folder-new.png differ diff --git a/images/tango/22x22/actions/format-indent-less.png b/images/tango/22x22/actions/format-indent-less.png new file mode 100644 index 0000000..5292012 Binary files /dev/null and b/images/tango/22x22/actions/format-indent-less.png differ diff --git a/images/tango/22x22/actions/format-indent-more.png b/images/tango/22x22/actions/format-indent-more.png new file mode 100644 index 0000000..ad2b527 Binary files /dev/null and b/images/tango/22x22/actions/format-indent-more.png differ diff --git a/images/tango/22x22/actions/format-justify-center.png b/images/tango/22x22/actions/format-justify-center.png new file mode 100644 index 0000000..0777a9a Binary files /dev/null and b/images/tango/22x22/actions/format-justify-center.png differ diff --git a/images/tango/22x22/actions/format-justify-fill.png b/images/tango/22x22/actions/format-justify-fill.png new file mode 100644 index 0000000..0ce4013 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-fill.png differ diff --git a/images/tango/22x22/actions/format-justify-left.png b/images/tango/22x22/actions/format-justify-left.png new file mode 100644 index 0000000..a8e1ca8 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-left.png differ diff --git a/images/tango/22x22/actions/format-justify-right.png b/images/tango/22x22/actions/format-justify-right.png new file mode 100644 index 0000000..8228d81 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-right.png differ diff --git a/images/tango/22x22/actions/format-text-bold.png b/images/tango/22x22/actions/format-text-bold.png new file mode 100644 index 0000000..7166e3d Binary files /dev/null and b/images/tango/22x22/actions/format-text-bold.png differ diff --git a/images/tango/22x22/actions/format-text-italic.png b/images/tango/22x22/actions/format-text-italic.png new file mode 100644 index 0000000..ef68fb3 Binary files /dev/null and b/images/tango/22x22/actions/format-text-italic.png differ diff --git a/images/tango/22x22/actions/format-text-strikethrough.png b/images/tango/22x22/actions/format-text-strikethrough.png new file mode 100644 index 0000000..e4ca573 Binary files /dev/null and b/images/tango/22x22/actions/format-text-strikethrough.png differ diff --git a/images/tango/22x22/actions/format-text-underline.png b/images/tango/22x22/actions/format-text-underline.png new file mode 100644 index 0000000..d33422b Binary files /dev/null and b/images/tango/22x22/actions/format-text-underline.png differ diff --git a/images/tango/22x22/actions/go-bottom.png b/images/tango/22x22/actions/go-bottom.png new file mode 100644 index 0000000..d81e071 Binary files /dev/null and b/images/tango/22x22/actions/go-bottom.png differ diff --git a/images/tango/22x22/actions/go-down.png b/images/tango/22x22/actions/go-down.png new file mode 100644 index 0000000..af23788 Binary files /dev/null and b/images/tango/22x22/actions/go-down.png differ diff --git a/images/tango/22x22/actions/go-first.png b/images/tango/22x22/actions/go-first.png new file mode 100644 index 0000000..bf0d8f2 Binary files /dev/null and b/images/tango/22x22/actions/go-first.png differ diff --git a/images/tango/22x22/actions/go-home.png b/images/tango/22x22/actions/go-home.png new file mode 100644 index 0000000..9d62109 Binary files /dev/null and b/images/tango/22x22/actions/go-home.png differ diff --git a/images/tango/22x22/actions/go-jump.png b/images/tango/22x22/actions/go-jump.png new file mode 100644 index 0000000..373dce9 Binary files /dev/null and b/images/tango/22x22/actions/go-jump.png differ diff --git a/images/tango/22x22/actions/go-last.png b/images/tango/22x22/actions/go-last.png new file mode 100644 index 0000000..32df45d Binary files /dev/null and b/images/tango/22x22/actions/go-last.png differ diff --git a/images/tango/22x22/actions/go-next.png b/images/tango/22x22/actions/go-next.png new file mode 100644 index 0000000..6f3f65d Binary files /dev/null and b/images/tango/22x22/actions/go-next.png differ diff --git a/images/tango/22x22/actions/go-previous.png b/images/tango/22x22/actions/go-previous.png new file mode 100644 index 0000000..93be3d1 Binary files /dev/null and b/images/tango/22x22/actions/go-previous.png differ diff --git a/images/tango/22x22/actions/go-top.png b/images/tango/22x22/actions/go-top.png new file mode 100644 index 0000000..96f98dd Binary files /dev/null and b/images/tango/22x22/actions/go-top.png differ diff --git a/images/tango/22x22/actions/go-up.png b/images/tango/22x22/actions/go-up.png new file mode 100644 index 0000000..b0a0cd7 Binary files /dev/null and b/images/tango/22x22/actions/go-up.png differ diff --git a/images/tango/22x22/actions/list-add.png b/images/tango/22x22/actions/list-add.png new file mode 100644 index 0000000..306d3d8 Binary files /dev/null and b/images/tango/22x22/actions/list-add.png differ diff --git a/images/tango/22x22/actions/list-remove.png b/images/tango/22x22/actions/list-remove.png new file mode 100644 index 0000000..45e5c2a Binary files /dev/null and b/images/tango/22x22/actions/list-remove.png differ diff --git a/images/tango/22x22/actions/mail-forward.png b/images/tango/22x22/actions/mail-forward.png new file mode 100644 index 0000000..51aa0b4 Binary files /dev/null and b/images/tango/22x22/actions/mail-forward.png differ diff --git a/images/tango/22x22/actions/mail-mark-junk.png b/images/tango/22x22/actions/mail-mark-junk.png new file mode 100644 index 0000000..f980138 Binary files /dev/null and b/images/tango/22x22/actions/mail-mark-junk.png differ diff --git a/images/tango/22x22/actions/mail-mark-not-junk.png b/images/tango/22x22/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..da6fb95 Binary files /dev/null and b/images/tango/22x22/actions/mail-mark-not-junk.png differ diff --git a/images/tango/22x22/actions/mail-message-new.png b/images/tango/22x22/actions/mail-message-new.png new file mode 100644 index 0000000..96ae0e9 Binary files /dev/null and b/images/tango/22x22/actions/mail-message-new.png differ diff --git a/images/tango/22x22/actions/mail-reply-all.png b/images/tango/22x22/actions/mail-reply-all.png new file mode 100644 index 0000000..c158a72 Binary files /dev/null and b/images/tango/22x22/actions/mail-reply-all.png differ diff --git a/images/tango/22x22/actions/mail-reply-sender.png b/images/tango/22x22/actions/mail-reply-sender.png new file mode 100644 index 0000000..4f077a1 Binary files /dev/null and b/images/tango/22x22/actions/mail-reply-sender.png differ diff --git a/images/tango/22x22/actions/mail-send-receive.png b/images/tango/22x22/actions/mail-send-receive.png new file mode 100644 index 0000000..69e8272 Binary files /dev/null and b/images/tango/22x22/actions/mail-send-receive.png differ diff --git a/images/tango/22x22/actions/media-eject.png b/images/tango/22x22/actions/media-eject.png new file mode 100644 index 0000000..5a232e6 Binary files /dev/null and b/images/tango/22x22/actions/media-eject.png differ diff --git a/images/tango/22x22/actions/media-playback-pause.png b/images/tango/22x22/actions/media-playback-pause.png new file mode 100644 index 0000000..ee40fc2 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-pause.png differ diff --git a/images/tango/22x22/actions/media-playback-start.png b/images/tango/22x22/actions/media-playback-start.png new file mode 100644 index 0000000..10102d8 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-start.png differ diff --git a/images/tango/22x22/actions/media-playback-stop.png b/images/tango/22x22/actions/media-playback-stop.png new file mode 100644 index 0000000..d0e4733 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-stop.png differ diff --git a/images/tango/22x22/actions/media-record.png b/images/tango/22x22/actions/media-record.png new file mode 100644 index 0000000..fb53e14 Binary files /dev/null and b/images/tango/22x22/actions/media-record.png differ diff --git a/images/tango/22x22/actions/media-seek-backward.png b/images/tango/22x22/actions/media-seek-backward.png new file mode 100644 index 0000000..e094d12 Binary files /dev/null and b/images/tango/22x22/actions/media-seek-backward.png differ diff --git a/images/tango/22x22/actions/media-seek-forward.png b/images/tango/22x22/actions/media-seek-forward.png new file mode 100644 index 0000000..b9c2c6c Binary files /dev/null and b/images/tango/22x22/actions/media-seek-forward.png differ diff --git a/images/tango/22x22/actions/media-skip-backward.png b/images/tango/22x22/actions/media-skip-backward.png new file mode 100644 index 0000000..2a5e703 Binary files /dev/null and b/images/tango/22x22/actions/media-skip-backward.png differ diff --git a/images/tango/22x22/actions/media-skip-forward.png b/images/tango/22x22/actions/media-skip-forward.png new file mode 100644 index 0000000..28bca3e Binary files /dev/null and b/images/tango/22x22/actions/media-skip-forward.png differ diff --git a/images/tango/22x22/actions/process-stop.png b/images/tango/22x22/actions/process-stop.png new file mode 100644 index 0000000..b68290b Binary files /dev/null and b/images/tango/22x22/actions/process-stop.png differ diff --git a/images/tango/22x22/actions/system-lock-screen.png b/images/tango/22x22/actions/system-lock-screen.png new file mode 100644 index 0000000..dc6b825 Binary files /dev/null and b/images/tango/22x22/actions/system-lock-screen.png differ diff --git a/images/tango/22x22/actions/system-log-out.png b/images/tango/22x22/actions/system-log-out.png new file mode 100644 index 0000000..28ac66f Binary files /dev/null and b/images/tango/22x22/actions/system-log-out.png differ diff --git a/images/tango/22x22/actions/system-search.png b/images/tango/22x22/actions/system-search.png new file mode 100644 index 0000000..4e522b2 Binary files /dev/null and b/images/tango/22x22/actions/system-search.png differ diff --git a/images/tango/22x22/actions/system-shutdown.png b/images/tango/22x22/actions/system-shutdown.png new file mode 100644 index 0000000..0c2a2d1 Binary files /dev/null and b/images/tango/22x22/actions/system-shutdown.png differ diff --git a/images/tango/22x22/actions/tab-new.png b/images/tango/22x22/actions/tab-new.png new file mode 100644 index 0000000..c7c7cf2 Binary files /dev/null and b/images/tango/22x22/actions/tab-new.png differ diff --git a/images/tango/22x22/actions/view-fullscreen.png b/images/tango/22x22/actions/view-fullscreen.png new file mode 100644 index 0000000..6f0f292 Binary files /dev/null and b/images/tango/22x22/actions/view-fullscreen.png differ diff --git a/images/tango/22x22/actions/view-refresh.png b/images/tango/22x22/actions/view-refresh.png new file mode 100644 index 0000000..cab4d02 Binary files /dev/null and b/images/tango/22x22/actions/view-refresh.png differ diff --git a/images/tango/22x22/actions/window-new.png b/images/tango/22x22/actions/window-new.png new file mode 100644 index 0000000..314f997 Binary files /dev/null and b/images/tango/22x22/actions/window-new.png differ diff --git a/images/tango/22x22/animations/process-working.png b/images/tango/22x22/animations/process-working.png new file mode 100644 index 0000000..9005de7 Binary files /dev/null and b/images/tango/22x22/animations/process-working.png differ diff --git a/images/tango/22x22/apps/accessories-calculator.png b/images/tango/22x22/apps/accessories-calculator.png new file mode 100644 index 0000000..e12d465 Binary files /dev/null and b/images/tango/22x22/apps/accessories-calculator.png differ diff --git a/images/tango/22x22/apps/accessories-character-map.png b/images/tango/22x22/apps/accessories-character-map.png new file mode 100644 index 0000000..e630c7e Binary files /dev/null and b/images/tango/22x22/apps/accessories-character-map.png differ diff --git a/images/tango/22x22/apps/accessories-text-editor.png b/images/tango/22x22/apps/accessories-text-editor.png new file mode 100644 index 0000000..c3d245d Binary files /dev/null and b/images/tango/22x22/apps/accessories-text-editor.png differ diff --git a/images/tango/22x22/apps/help-browser.png b/images/tango/22x22/apps/help-browser.png new file mode 100644 index 0000000..c67c7a6 Binary files /dev/null and b/images/tango/22x22/apps/help-browser.png differ diff --git a/images/tango/22x22/apps/internet-group-chat.png b/images/tango/22x22/apps/internet-group-chat.png new file mode 100644 index 0000000..3cac5df Binary files /dev/null and b/images/tango/22x22/apps/internet-group-chat.png differ diff --git a/images/tango/22x22/apps/internet-mail.png b/images/tango/22x22/apps/internet-mail.png new file mode 100644 index 0000000..68fc82e Binary files /dev/null and b/images/tango/22x22/apps/internet-mail.png differ diff --git a/images/tango/22x22/apps/internet-news-reader.png b/images/tango/22x22/apps/internet-news-reader.png new file mode 100644 index 0000000..43950eb Binary files /dev/null and b/images/tango/22x22/apps/internet-news-reader.png differ diff --git a/images/tango/22x22/apps/internet-web-browser.png b/images/tango/22x22/apps/internet-web-browser.png new file mode 100644 index 0000000..4125479 Binary files /dev/null and b/images/tango/22x22/apps/internet-web-browser.png differ diff --git a/images/tango/22x22/apps/office-calendar.png b/images/tango/22x22/apps/office-calendar.png new file mode 100644 index 0000000..60ad82b Binary files /dev/null and b/images/tango/22x22/apps/office-calendar.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-accessibility.png b/images/tango/22x22/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..919d735 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-assistive-technology.png b/images/tango/22x22/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..483e4a6 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-font.png b/images/tango/22x22/apps/preferences-desktop-font.png new file mode 100644 index 0000000..d452db7 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-font.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..c3e1328 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-locale.png b/images/tango/22x22/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..ed0480b Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-locale.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-multimedia.png b/images/tango/22x22/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..e1bdf85 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-remote-desktop.png b/images/tango/22x22/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..d25792b Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-screensaver.png b/images/tango/22x22/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..619e196 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-theme.png b/images/tango/22x22/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7b5f0ba Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-theme.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-wallpaper.png b/images/tango/22x22/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..3389e55 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/22x22/apps/preferences-system-network-proxy.png b/images/tango/22x22/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bec24de Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/22x22/apps/preferences-system-session.png b/images/tango/22x22/apps/preferences-system-session.png new file mode 100644 index 0000000..9a09875 Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-session.png differ diff --git a/images/tango/22x22/apps/preferences-system-windows.png b/images/tango/22x22/apps/preferences-system-windows.png new file mode 100644 index 0000000..2caa205 Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-windows.png differ diff --git a/images/tango/22x22/apps/system-file-manager.png b/images/tango/22x22/apps/system-file-manager.png new file mode 100644 index 0000000..44d6310 Binary files /dev/null and b/images/tango/22x22/apps/system-file-manager.png differ diff --git a/images/tango/22x22/apps/system-installer.png b/images/tango/22x22/apps/system-installer.png new file mode 100644 index 0000000..b75c6b1 Binary files /dev/null and b/images/tango/22x22/apps/system-installer.png differ diff --git a/images/tango/22x22/apps/system-software-update.png b/images/tango/22x22/apps/system-software-update.png new file mode 100644 index 0000000..5f7a362 Binary files /dev/null and b/images/tango/22x22/apps/system-software-update.png differ diff --git a/images/tango/22x22/apps/system-users.png b/images/tango/22x22/apps/system-users.png new file mode 100644 index 0000000..bced28c Binary files /dev/null and b/images/tango/22x22/apps/system-users.png differ diff --git a/images/tango/22x22/apps/utilities-system-monitor.png b/images/tango/22x22/apps/utilities-system-monitor.png new file mode 100644 index 0000000..f2d266f Binary files /dev/null and b/images/tango/22x22/apps/utilities-system-monitor.png differ diff --git a/images/tango/22x22/apps/utilities-terminal.png b/images/tango/22x22/apps/utilities-terminal.png new file mode 100644 index 0000000..ceb0fb9 Binary files /dev/null and b/images/tango/22x22/apps/utilities-terminal.png differ diff --git a/images/tango/22x22/categories/applications-accessories.png b/images/tango/22x22/categories/applications-accessories.png new file mode 100644 index 0000000..f619403 Binary files /dev/null and b/images/tango/22x22/categories/applications-accessories.png differ diff --git a/images/tango/22x22/categories/applications-development.png b/images/tango/22x22/categories/applications-development.png new file mode 100644 index 0000000..8ef08e2 Binary files /dev/null and b/images/tango/22x22/categories/applications-development.png differ diff --git a/images/tango/22x22/categories/applications-games.png b/images/tango/22x22/categories/applications-games.png new file mode 100644 index 0000000..cc78378 Binary files /dev/null and b/images/tango/22x22/categories/applications-games.png differ diff --git a/images/tango/22x22/categories/applications-graphics.png b/images/tango/22x22/categories/applications-graphics.png new file mode 100644 index 0000000..ca883da Binary files /dev/null and b/images/tango/22x22/categories/applications-graphics.png differ diff --git a/images/tango/22x22/categories/applications-internet.png b/images/tango/22x22/categories/applications-internet.png new file mode 100644 index 0000000..d4bfb82 Binary files /dev/null and b/images/tango/22x22/categories/applications-internet.png differ diff --git a/images/tango/22x22/categories/applications-multimedia.png b/images/tango/22x22/categories/applications-multimedia.png new file mode 100644 index 0000000..ae2d28c Binary files /dev/null and b/images/tango/22x22/categories/applications-multimedia.png differ diff --git a/images/tango/22x22/categories/applications-office.png b/images/tango/22x22/categories/applications-office.png new file mode 100644 index 0000000..7e3be9b Binary files /dev/null and b/images/tango/22x22/categories/applications-office.png differ diff --git a/images/tango/22x22/categories/applications-other.png b/images/tango/22x22/categories/applications-other.png new file mode 100644 index 0000000..308acb2 Binary files /dev/null and b/images/tango/22x22/categories/applications-other.png differ diff --git a/images/tango/22x22/categories/applications-system.png b/images/tango/22x22/categories/applications-system.png new file mode 100644 index 0000000..4decc89 Binary files /dev/null and b/images/tango/22x22/categories/applications-system.png differ diff --git a/images/tango/22x22/categories/preferences-desktop-peripherals.png b/images/tango/22x22/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..985bcde Binary files /dev/null and b/images/tango/22x22/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/22x22/categories/preferences-desktop.png b/images/tango/22x22/categories/preferences-desktop.png new file mode 100644 index 0000000..c359063 Binary files /dev/null and b/images/tango/22x22/categories/preferences-desktop.png differ diff --git a/images/tango/22x22/categories/preferences-system.png b/images/tango/22x22/categories/preferences-system.png new file mode 100644 index 0000000..cc91d65 Binary files /dev/null and b/images/tango/22x22/categories/preferences-system.png differ diff --git a/images/tango/22x22/devices/audio-card.png b/images/tango/22x22/devices/audio-card.png new file mode 100644 index 0000000..93d99aa Binary files /dev/null and b/images/tango/22x22/devices/audio-card.png differ diff --git a/images/tango/22x22/devices/audio-input-microphone.png b/images/tango/22x22/devices/audio-input-microphone.png new file mode 100644 index 0000000..496d244 Binary files /dev/null and b/images/tango/22x22/devices/audio-input-microphone.png differ diff --git a/images/tango/22x22/devices/battery.png b/images/tango/22x22/devices/battery.png new file mode 100644 index 0000000..ad45674 Binary files /dev/null and b/images/tango/22x22/devices/battery.png differ diff --git a/images/tango/22x22/devices/camera-photo.png b/images/tango/22x22/devices/camera-photo.png new file mode 100644 index 0000000..8d28baf Binary files /dev/null and b/images/tango/22x22/devices/camera-photo.png differ diff --git a/images/tango/22x22/devices/camera-video.png b/images/tango/22x22/devices/camera-video.png new file mode 100644 index 0000000..e84992c Binary files /dev/null and b/images/tango/22x22/devices/camera-video.png differ diff --git a/images/tango/22x22/devices/computer.png b/images/tango/22x22/devices/computer.png new file mode 100644 index 0000000..b6e6b39 Binary files /dev/null and b/images/tango/22x22/devices/computer.png differ diff --git a/images/tango/22x22/devices/drive-harddisk.png b/images/tango/22x22/devices/drive-harddisk.png new file mode 100644 index 0000000..da41305 Binary files /dev/null and b/images/tango/22x22/devices/drive-harddisk.png differ diff --git a/images/tango/22x22/devices/drive-optical.png b/images/tango/22x22/devices/drive-optical.png new file mode 100644 index 0000000..af2c826 Binary files /dev/null and b/images/tango/22x22/devices/drive-optical.png differ diff --git a/images/tango/22x22/devices/drive-removable-media.png b/images/tango/22x22/devices/drive-removable-media.png new file mode 100644 index 0000000..f487310 Binary files /dev/null and b/images/tango/22x22/devices/drive-removable-media.png differ diff --git a/images/tango/22x22/devices/input-gaming.png b/images/tango/22x22/devices/input-gaming.png new file mode 100644 index 0000000..18f7739 Binary files /dev/null and b/images/tango/22x22/devices/input-gaming.png differ diff --git a/images/tango/22x22/devices/input-keyboard.png b/images/tango/22x22/devices/input-keyboard.png new file mode 100644 index 0000000..6ffb232 Binary files /dev/null and b/images/tango/22x22/devices/input-keyboard.png differ diff --git a/images/tango/22x22/devices/input-mouse.png b/images/tango/22x22/devices/input-mouse.png new file mode 100644 index 0000000..c1bbc79 Binary files /dev/null and b/images/tango/22x22/devices/input-mouse.png differ diff --git a/images/tango/22x22/devices/media-flash.png b/images/tango/22x22/devices/media-flash.png new file mode 100644 index 0000000..c6a2d0c Binary files /dev/null and b/images/tango/22x22/devices/media-flash.png differ diff --git a/images/tango/22x22/devices/media-floppy.png b/images/tango/22x22/devices/media-floppy.png new file mode 100644 index 0000000..af79de8 Binary files /dev/null and b/images/tango/22x22/devices/media-floppy.png differ diff --git a/images/tango/22x22/devices/media-optical.png b/images/tango/22x22/devices/media-optical.png new file mode 100644 index 0000000..e86bfa3 Binary files /dev/null and b/images/tango/22x22/devices/media-optical.png differ diff --git a/images/tango/22x22/devices/multimedia-player.png b/images/tango/22x22/devices/multimedia-player.png new file mode 100644 index 0000000..8be0228 Binary files /dev/null and b/images/tango/22x22/devices/multimedia-player.png differ diff --git a/images/tango/22x22/devices/network-wired.png b/images/tango/22x22/devices/network-wired.png new file mode 100644 index 0000000..51c8b16 Binary files /dev/null and b/images/tango/22x22/devices/network-wired.png differ diff --git a/images/tango/22x22/devices/network-wireless.png b/images/tango/22x22/devices/network-wireless.png new file mode 100644 index 0000000..2d7851f Binary files /dev/null and b/images/tango/22x22/devices/network-wireless.png differ diff --git a/images/tango/22x22/devices/printer.png b/images/tango/22x22/devices/printer.png new file mode 100644 index 0000000..65caccf Binary files /dev/null and b/images/tango/22x22/devices/printer.png differ diff --git a/images/tango/22x22/devices/video-display.png b/images/tango/22x22/devices/video-display.png new file mode 100644 index 0000000..f244adb Binary files /dev/null and b/images/tango/22x22/devices/video-display.png differ diff --git a/images/tango/22x22/emblems/emblem-favorite.png b/images/tango/22x22/emblems/emblem-favorite.png new file mode 100644 index 0000000..9b3d7ac Binary files /dev/null and b/images/tango/22x22/emblems/emblem-favorite.png differ diff --git a/images/tango/22x22/emblems/emblem-important.png b/images/tango/22x22/emblems/emblem-important.png new file mode 100644 index 0000000..0437a0d Binary files /dev/null and b/images/tango/22x22/emblems/emblem-important.png differ diff --git a/images/tango/22x22/emblems/emblem-photos.png b/images/tango/22x22/emblems/emblem-photos.png new file mode 100644 index 0000000..b8b1c63 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-photos.png differ diff --git a/images/tango/22x22/emblems/emblem-readonly.png b/images/tango/22x22/emblems/emblem-readonly.png new file mode 100644 index 0000000..33896d9 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-readonly.png differ diff --git a/images/tango/22x22/emblems/emblem-symbolic-link.png b/images/tango/22x22/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..d02781d Binary files /dev/null and b/images/tango/22x22/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/22x22/emblems/emblem-system.png b/images/tango/22x22/emblems/emblem-system.png new file mode 100644 index 0000000..1f2b3b3 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-system.png differ diff --git a/images/tango/22x22/emblems/emblem-unreadable.png b/images/tango/22x22/emblems/emblem-unreadable.png new file mode 100644 index 0000000..6a88bdb Binary files /dev/null and b/images/tango/22x22/emblems/emblem-unreadable.png differ diff --git a/images/tango/22x22/emotes/face-angel.png b/images/tango/22x22/emotes/face-angel.png new file mode 100644 index 0000000..604bf17 Binary files /dev/null and b/images/tango/22x22/emotes/face-angel.png differ diff --git a/images/tango/22x22/emotes/face-crying.png b/images/tango/22x22/emotes/face-crying.png new file mode 100644 index 0000000..761b0e8 Binary files /dev/null and b/images/tango/22x22/emotes/face-crying.png differ diff --git a/images/tango/22x22/emotes/face-devilish.png b/images/tango/22x22/emotes/face-devilish.png new file mode 100644 index 0000000..fbd7808 Binary files /dev/null and b/images/tango/22x22/emotes/face-devilish.png differ diff --git a/images/tango/22x22/emotes/face-glasses.png b/images/tango/22x22/emotes/face-glasses.png new file mode 100644 index 0000000..5551f12 Binary files /dev/null and b/images/tango/22x22/emotes/face-glasses.png differ diff --git a/images/tango/22x22/emotes/face-grin.png b/images/tango/22x22/emotes/face-grin.png new file mode 100644 index 0000000..4513b92 Binary files /dev/null and b/images/tango/22x22/emotes/face-grin.png differ diff --git a/images/tango/22x22/emotes/face-kiss.png b/images/tango/22x22/emotes/face-kiss.png new file mode 100644 index 0000000..a5d1bdd Binary files /dev/null and b/images/tango/22x22/emotes/face-kiss.png differ diff --git a/images/tango/22x22/emotes/face-monkey.png b/images/tango/22x22/emotes/face-monkey.png new file mode 100644 index 0000000..ced7b2e Binary files /dev/null and b/images/tango/22x22/emotes/face-monkey.png differ diff --git a/images/tango/22x22/emotes/face-plain.png b/images/tango/22x22/emotes/face-plain.png new file mode 100644 index 0000000..ea0ad6a Binary files /dev/null and b/images/tango/22x22/emotes/face-plain.png differ diff --git a/images/tango/22x22/emotes/face-sad.png b/images/tango/22x22/emotes/face-sad.png new file mode 100644 index 0000000..23afcb2 Binary files /dev/null and b/images/tango/22x22/emotes/face-sad.png differ diff --git a/images/tango/22x22/emotes/face-smile-big.png b/images/tango/22x22/emotes/face-smile-big.png new file mode 100644 index 0000000..b2e8a36 Binary files /dev/null and b/images/tango/22x22/emotes/face-smile-big.png differ diff --git a/images/tango/22x22/emotes/face-smile.png b/images/tango/22x22/emotes/face-smile.png new file mode 100644 index 0000000..45ff17d Binary files /dev/null and b/images/tango/22x22/emotes/face-smile.png differ diff --git a/images/tango/22x22/emotes/face-surprise.png b/images/tango/22x22/emotes/face-surprise.png new file mode 100644 index 0000000..9bae9b6 Binary files /dev/null and b/images/tango/22x22/emotes/face-surprise.png differ diff --git a/images/tango/22x22/emotes/face-wink.png b/images/tango/22x22/emotes/face-wink.png new file mode 100644 index 0000000..cf10119 Binary files /dev/null and b/images/tango/22x22/emotes/face-wink.png differ diff --git a/images/tango/22x22/mimetypes/application-certificate.png b/images/tango/22x22/mimetypes/application-certificate.png new file mode 100644 index 0000000..9657b43 Binary files /dev/null and b/images/tango/22x22/mimetypes/application-certificate.png differ diff --git a/images/tango/22x22/mimetypes/application-x-executable.png b/images/tango/22x22/mimetypes/application-x-executable.png new file mode 100644 index 0000000..2bb2adf Binary files /dev/null and b/images/tango/22x22/mimetypes/application-x-executable.png differ diff --git a/images/tango/22x22/mimetypes/audio-x-generic.png b/images/tango/22x22/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..318bebd Binary files /dev/null and b/images/tango/22x22/mimetypes/audio-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/font-x-generic.png b/images/tango/22x22/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdc1814 Binary files /dev/null and b/images/tango/22x22/mimetypes/font-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/image-x-generic.png b/images/tango/22x22/mimetypes/image-x-generic.png new file mode 100644 index 0000000..10f4671 Binary files /dev/null and b/images/tango/22x22/mimetypes/image-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/package-x-generic.png b/images/tango/22x22/mimetypes/package-x-generic.png new file mode 100644 index 0000000..dc76287 Binary files /dev/null and b/images/tango/22x22/mimetypes/package-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/text-html.png b/images/tango/22x22/mimetypes/text-html.png new file mode 100644 index 0000000..51beaff Binary files /dev/null and b/images/tango/22x22/mimetypes/text-html.png differ diff --git a/images/tango/22x22/mimetypes/text-x-generic-template.png b/images/tango/22x22/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..f13f7c9 Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/22x22/mimetypes/text-x-generic.png b/images/tango/22x22/mimetypes/text-x-generic.png new file mode 100644 index 0000000..d68a56c Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/text-x-script.png b/images/tango/22x22/mimetypes/text-x-script.png new file mode 100644 index 0000000..abf8f61 Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-script.png differ diff --git a/images/tango/22x22/mimetypes/video-x-generic.png b/images/tango/22x22/mimetypes/video-x-generic.png new file mode 100644 index 0000000..6e26d9c Binary files /dev/null and b/images/tango/22x22/mimetypes/video-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/x-office-address-book.png b/images/tango/22x22/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..2e519ce Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-address-book.png differ diff --git a/images/tango/22x22/mimetypes/x-office-calendar.png b/images/tango/22x22/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..0c224e9 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-calendar.png differ diff --git a/images/tango/22x22/mimetypes/x-office-document-template.png b/images/tango/22x22/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..18c4246 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-document-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-document.png b/images/tango/22x22/mimetypes/x-office-document.png new file mode 100644 index 0000000..c9baeda Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-document.png differ diff --git a/images/tango/22x22/mimetypes/x-office-drawing-template.png b/images/tango/22x22/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..a7045ab Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-drawing.png b/images/tango/22x22/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5d84f9f Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-drawing.png differ diff --git a/images/tango/22x22/mimetypes/x-office-presentation-template.png b/images/tango/22x22/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..1f7bc9b Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-presentation.png b/images/tango/22x22/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..3633f53 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-presentation.png differ diff --git a/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png b/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..ea7d467 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-spreadsheet.png b/images/tango/22x22/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c82d574 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/22x22/places/folder-remote.png b/images/tango/22x22/places/folder-remote.png new file mode 100644 index 0000000..82db43b Binary files /dev/null and b/images/tango/22x22/places/folder-remote.png differ diff --git a/images/tango/22x22/places/folder-saved-search.png b/images/tango/22x22/places/folder-saved-search.png new file mode 100644 index 0000000..901f4a7 Binary files /dev/null and b/images/tango/22x22/places/folder-saved-search.png differ diff --git a/images/tango/22x22/places/folder.png b/images/tango/22x22/places/folder.png new file mode 100644 index 0000000..01f45b8 Binary files /dev/null and b/images/tango/22x22/places/folder.png differ diff --git a/images/tango/22x22/places/network-server.png b/images/tango/22x22/places/network-server.png new file mode 100644 index 0000000..a0d7118 Binary files /dev/null and b/images/tango/22x22/places/network-server.png differ diff --git a/images/tango/22x22/places/network-workgroup.png b/images/tango/22x22/places/network-workgroup.png new file mode 100644 index 0000000..f96c9db Binary files /dev/null and b/images/tango/22x22/places/network-workgroup.png differ diff --git a/images/tango/22x22/places/start-here.png b/images/tango/22x22/places/start-here.png new file mode 100644 index 0000000..fc9b049 Binary files /dev/null and b/images/tango/22x22/places/start-here.png differ diff --git a/images/tango/22x22/places/user-desktop.png b/images/tango/22x22/places/user-desktop.png new file mode 100644 index 0000000..d60b2f1 Binary files /dev/null and b/images/tango/22x22/places/user-desktop.png differ diff --git a/images/tango/22x22/places/user-home.png b/images/tango/22x22/places/user-home.png new file mode 100644 index 0000000..c7eac99 Binary files /dev/null and b/images/tango/22x22/places/user-home.png differ diff --git a/images/tango/22x22/places/user-trash.png b/images/tango/22x22/places/user-trash.png new file mode 100644 index 0000000..05ff036 Binary files /dev/null and b/images/tango/22x22/places/user-trash.png differ diff --git a/images/tango/22x22/status/audio-volume-high.png b/images/tango/22x22/status/audio-volume-high.png new file mode 100644 index 0000000..1b2f30e Binary files /dev/null and b/images/tango/22x22/status/audio-volume-high.png differ diff --git a/images/tango/22x22/status/audio-volume-low.png b/images/tango/22x22/status/audio-volume-low.png new file mode 100644 index 0000000..46bcd19 Binary files /dev/null and b/images/tango/22x22/status/audio-volume-low.png differ diff --git a/images/tango/22x22/status/audio-volume-medium.png b/images/tango/22x22/status/audio-volume-medium.png new file mode 100644 index 0000000..31883ef Binary files /dev/null and b/images/tango/22x22/status/audio-volume-medium.png differ diff --git a/images/tango/22x22/status/audio-volume-muted.png b/images/tango/22x22/status/audio-volume-muted.png new file mode 100644 index 0000000..3e74c1d Binary files /dev/null and b/images/tango/22x22/status/audio-volume-muted.png differ diff --git a/images/tango/22x22/status/battery-caution.png b/images/tango/22x22/status/battery-caution.png new file mode 100644 index 0000000..456f7a4 Binary files /dev/null and b/images/tango/22x22/status/battery-caution.png differ diff --git a/images/tango/22x22/status/dialog-error.png b/images/tango/22x22/status/dialog-error.png new file mode 100644 index 0000000..7d6aaf6 Binary files /dev/null and b/images/tango/22x22/status/dialog-error.png differ diff --git a/images/tango/22x22/status/dialog-information.png b/images/tango/22x22/status/dialog-information.png new file mode 100644 index 0000000..07cf010 Binary files /dev/null and b/images/tango/22x22/status/dialog-information.png differ diff --git a/images/tango/22x22/status/dialog-warning.png b/images/tango/22x22/status/dialog-warning.png new file mode 100644 index 0000000..45b64a7 Binary files /dev/null and b/images/tango/22x22/status/dialog-warning.png differ diff --git a/images/tango/22x22/status/folder-drag-accept.png b/images/tango/22x22/status/folder-drag-accept.png new file mode 100644 index 0000000..16a2b84 Binary files /dev/null and b/images/tango/22x22/status/folder-drag-accept.png differ diff --git a/images/tango/22x22/status/folder-open.png b/images/tango/22x22/status/folder-open.png new file mode 100644 index 0000000..f81f70c Binary files /dev/null and b/images/tango/22x22/status/folder-open.png differ diff --git a/images/tango/22x22/status/folder-visiting.png b/images/tango/22x22/status/folder-visiting.png new file mode 100644 index 0000000..b4af525 Binary files /dev/null and b/images/tango/22x22/status/folder-visiting.png differ diff --git a/images/tango/22x22/status/image-loading.png b/images/tango/22x22/status/image-loading.png new file mode 100644 index 0000000..a4be885 Binary files /dev/null and b/images/tango/22x22/status/image-loading.png differ diff --git a/images/tango/22x22/status/image-missing.png b/images/tango/22x22/status/image-missing.png new file mode 100644 index 0000000..e12439a Binary files /dev/null and b/images/tango/22x22/status/image-missing.png differ diff --git a/images/tango/22x22/status/mail-attachment.png b/images/tango/22x22/status/mail-attachment.png new file mode 100644 index 0000000..c5d9633 Binary files /dev/null and b/images/tango/22x22/status/mail-attachment.png differ diff --git a/images/tango/22x22/status/network-error.png b/images/tango/22x22/status/network-error.png new file mode 100644 index 0000000..d36ce29 Binary files /dev/null and b/images/tango/22x22/status/network-error.png differ diff --git a/images/tango/22x22/status/network-idle.png b/images/tango/22x22/status/network-idle.png new file mode 100644 index 0000000..caebd98 Binary files /dev/null and b/images/tango/22x22/status/network-idle.png differ diff --git a/images/tango/22x22/status/network-offline.png b/images/tango/22x22/status/network-offline.png new file mode 100644 index 0000000..72dd12c Binary files /dev/null and b/images/tango/22x22/status/network-offline.png differ diff --git a/images/tango/22x22/status/network-receive.png b/images/tango/22x22/status/network-receive.png new file mode 100644 index 0000000..11dfa07 Binary files /dev/null and b/images/tango/22x22/status/network-receive.png differ diff --git a/images/tango/22x22/status/network-transmit-receive.png b/images/tango/22x22/status/network-transmit-receive.png new file mode 100644 index 0000000..54d145f Binary files /dev/null and b/images/tango/22x22/status/network-transmit-receive.png differ diff --git a/images/tango/22x22/status/network-transmit.png b/images/tango/22x22/status/network-transmit.png new file mode 100644 index 0000000..97b6301 Binary files /dev/null and b/images/tango/22x22/status/network-transmit.png differ diff --git a/images/tango/22x22/status/network-wireless-encrypted.png b/images/tango/22x22/status/network-wireless-encrypted.png new file mode 100644 index 0000000..712771c Binary files /dev/null and b/images/tango/22x22/status/network-wireless-encrypted.png differ diff --git a/images/tango/22x22/status/printer-error.png b/images/tango/22x22/status/printer-error.png new file mode 100644 index 0000000..63863c2 Binary files /dev/null and b/images/tango/22x22/status/printer-error.png differ diff --git a/images/tango/22x22/status/software-update-available.png b/images/tango/22x22/status/software-update-available.png new file mode 100644 index 0000000..c1d1348 Binary files /dev/null and b/images/tango/22x22/status/software-update-available.png differ diff --git a/images/tango/22x22/status/software-update-urgent.png b/images/tango/22x22/status/software-update-urgent.png new file mode 100644 index 0000000..0ce38d9 Binary files /dev/null and b/images/tango/22x22/status/software-update-urgent.png differ diff --git a/images/tango/22x22/status/user-trash-full.png b/images/tango/22x22/status/user-trash-full.png new file mode 100644 index 0000000..ffd7cc2 Binary files /dev/null and b/images/tango/22x22/status/user-trash-full.png differ diff --git a/images/tango/22x22/status/weather-clear-night.png b/images/tango/22x22/status/weather-clear-night.png new file mode 100644 index 0000000..52ea3e9 Binary files /dev/null and b/images/tango/22x22/status/weather-clear-night.png differ diff --git a/images/tango/22x22/status/weather-clear.png b/images/tango/22x22/status/weather-clear.png new file mode 100644 index 0000000..e17ca7c Binary files /dev/null and b/images/tango/22x22/status/weather-clear.png differ diff --git a/images/tango/22x22/status/weather-few-clouds-night.png b/images/tango/22x22/status/weather-few-clouds-night.png new file mode 100644 index 0000000..69fe49a Binary files /dev/null and b/images/tango/22x22/status/weather-few-clouds-night.png differ diff --git a/images/tango/22x22/status/weather-few-clouds.png b/images/tango/22x22/status/weather-few-clouds.png new file mode 100644 index 0000000..28b1147 Binary files /dev/null and b/images/tango/22x22/status/weather-few-clouds.png differ diff --git a/images/tango/22x22/status/weather-overcast.png b/images/tango/22x22/status/weather-overcast.png new file mode 100644 index 0000000..79d7bc2 Binary files /dev/null and b/images/tango/22x22/status/weather-overcast.png differ diff --git a/images/tango/22x22/status/weather-severe-alert.png b/images/tango/22x22/status/weather-severe-alert.png new file mode 100644 index 0000000..e4d09b6 Binary files /dev/null and b/images/tango/22x22/status/weather-severe-alert.png differ diff --git a/images/tango/22x22/status/weather-showers-scattered.png b/images/tango/22x22/status/weather-showers-scattered.png new file mode 100644 index 0000000..9eddd93 Binary files /dev/null and b/images/tango/22x22/status/weather-showers-scattered.png differ diff --git a/images/tango/22x22/status/weather-showers.png b/images/tango/22x22/status/weather-showers.png new file mode 100644 index 0000000..4450fb1 Binary files /dev/null and b/images/tango/22x22/status/weather-showers.png differ diff --git a/images/tango/22x22/status/weather-snow.png b/images/tango/22x22/status/weather-snow.png new file mode 100644 index 0000000..5457799 Binary files /dev/null and b/images/tango/22x22/status/weather-snow.png differ diff --git a/images/tango/22x22/status/weather-storm.png b/images/tango/22x22/status/weather-storm.png new file mode 100644 index 0000000..3b7ca9c Binary files /dev/null and b/images/tango/22x22/status/weather-storm.png differ diff --git a/images/tango/32x32/actions/address-book-new.png b/images/tango/32x32/actions/address-book-new.png new file mode 100644 index 0000000..420139d Binary files /dev/null and b/images/tango/32x32/actions/address-book-new.png differ diff --git a/images/tango/32x32/actions/appointment-new.png b/images/tango/32x32/actions/appointment-new.png new file mode 100644 index 0000000..85daef3 Binary files /dev/null and b/images/tango/32x32/actions/appointment-new.png differ diff --git a/images/tango/32x32/actions/bookmark-new.png b/images/tango/32x32/actions/bookmark-new.png new file mode 100644 index 0000000..621312a Binary files /dev/null and b/images/tango/32x32/actions/bookmark-new.png differ diff --git a/images/tango/32x32/actions/contact-new.png b/images/tango/32x32/actions/contact-new.png new file mode 100644 index 0000000..8b10c1e Binary files /dev/null and b/images/tango/32x32/actions/contact-new.png differ diff --git a/images/tango/32x32/actions/document-new.png b/images/tango/32x32/actions/document-new.png new file mode 100644 index 0000000..e6d64bb Binary files /dev/null and b/images/tango/32x32/actions/document-new.png differ diff --git a/images/tango/32x32/actions/document-open.png b/images/tango/32x32/actions/document-open.png new file mode 100644 index 0000000..f35f258 Binary files /dev/null and b/images/tango/32x32/actions/document-open.png differ diff --git a/images/tango/32x32/actions/document-pdf.png b/images/tango/32x32/actions/document-pdf.png new file mode 100644 index 0000000..194ff27 Binary files /dev/null and b/images/tango/32x32/actions/document-pdf.png differ diff --git a/images/tango/32x32/actions/document-print-preview.png b/images/tango/32x32/actions/document-print-preview.png new file mode 100644 index 0000000..772efe5 Binary files /dev/null and b/images/tango/32x32/actions/document-print-preview.png differ diff --git a/images/tango/32x32/actions/document-print.png b/images/tango/32x32/actions/document-print.png new file mode 100644 index 0000000..3ef3930 Binary files /dev/null and b/images/tango/32x32/actions/document-print.png differ diff --git a/images/tango/32x32/actions/document-properties.png b/images/tango/32x32/actions/document-properties.png new file mode 100644 index 0000000..fa697db Binary files /dev/null and b/images/tango/32x32/actions/document-properties.png differ diff --git a/images/tango/32x32/actions/document-revert.png b/images/tango/32x32/actions/document-revert.png new file mode 100644 index 0000000..3540188 Binary files /dev/null and b/images/tango/32x32/actions/document-revert.png differ diff --git a/images/tango/32x32/actions/document-save-as.png b/images/tango/32x32/actions/document-save-as.png new file mode 100644 index 0000000..5c9f6b3 Binary files /dev/null and b/images/tango/32x32/actions/document-save-as.png differ diff --git a/images/tango/32x32/actions/document-save.png b/images/tango/32x32/actions/document-save.png new file mode 100644 index 0000000..db5c52b Binary files /dev/null and b/images/tango/32x32/actions/document-save.png differ diff --git a/images/tango/32x32/actions/edit-clear.png b/images/tango/32x32/actions/edit-clear.png new file mode 100644 index 0000000..5542948 Binary files /dev/null and b/images/tango/32x32/actions/edit-clear.png differ diff --git a/images/tango/32x32/actions/edit-copy.png b/images/tango/32x32/actions/edit-copy.png new file mode 100644 index 0000000..3348ee0 Binary files /dev/null and b/images/tango/32x32/actions/edit-copy.png differ diff --git a/images/tango/32x32/actions/edit-cut.png b/images/tango/32x32/actions/edit-cut.png new file mode 100644 index 0000000..217663b Binary files /dev/null and b/images/tango/32x32/actions/edit-cut.png differ diff --git a/images/tango/32x32/actions/edit-delete.png b/images/tango/32x32/actions/edit-delete.png new file mode 100644 index 0000000..9becb3e Binary files /dev/null and b/images/tango/32x32/actions/edit-delete.png differ diff --git a/images/tango/32x32/actions/edit-find-replace.png b/images/tango/32x32/actions/edit-find-replace.png new file mode 100644 index 0000000..0f1b117 Binary files /dev/null and b/images/tango/32x32/actions/edit-find-replace.png differ diff --git a/images/tango/32x32/actions/edit-find.png b/images/tango/32x32/actions/edit-find.png new file mode 100644 index 0000000..5594785 Binary files /dev/null and b/images/tango/32x32/actions/edit-find.png differ diff --git a/images/tango/32x32/actions/edit-paste.png b/images/tango/32x32/actions/edit-paste.png new file mode 100644 index 0000000..dd429ce Binary files /dev/null and b/images/tango/32x32/actions/edit-paste.png differ diff --git a/images/tango/32x32/actions/edit-redo.png b/images/tango/32x32/actions/edit-redo.png new file mode 100644 index 0000000..3eb7b05 Binary files /dev/null and b/images/tango/32x32/actions/edit-redo.png differ diff --git a/images/tango/32x32/actions/edit-select-all.png b/images/tango/32x32/actions/edit-select-all.png new file mode 100644 index 0000000..107fc60 Binary files /dev/null and b/images/tango/32x32/actions/edit-select-all.png differ diff --git a/images/tango/32x32/actions/edit-undo.png b/images/tango/32x32/actions/edit-undo.png new file mode 100644 index 0000000..61b2ce9 Binary files /dev/null and b/images/tango/32x32/actions/edit-undo.png differ diff --git a/images/tango/32x32/actions/folder-new.png b/images/tango/32x32/actions/folder-new.png new file mode 100644 index 0000000..fcd15c0 Binary files /dev/null and b/images/tango/32x32/actions/folder-new.png differ diff --git a/images/tango/32x32/actions/format-indent-less.png b/images/tango/32x32/actions/format-indent-less.png new file mode 100644 index 0000000..7ced16f Binary files /dev/null and b/images/tango/32x32/actions/format-indent-less.png differ diff --git a/images/tango/32x32/actions/format-indent-more.png b/images/tango/32x32/actions/format-indent-more.png new file mode 100644 index 0000000..6a18867 Binary files /dev/null and b/images/tango/32x32/actions/format-indent-more.png differ diff --git a/images/tango/32x32/actions/format-justify-center.png b/images/tango/32x32/actions/format-justify-center.png new file mode 100644 index 0000000..a0db2bb Binary files /dev/null and b/images/tango/32x32/actions/format-justify-center.png differ diff --git a/images/tango/32x32/actions/format-justify-fill.png b/images/tango/32x32/actions/format-justify-fill.png new file mode 100644 index 0000000..2a34a8f Binary files /dev/null and b/images/tango/32x32/actions/format-justify-fill.png differ diff --git a/images/tango/32x32/actions/format-justify-left.png b/images/tango/32x32/actions/format-justify-left.png new file mode 100644 index 0000000..ba0e914 Binary files /dev/null and b/images/tango/32x32/actions/format-justify-left.png differ diff --git a/images/tango/32x32/actions/format-justify-right.png b/images/tango/32x32/actions/format-justify-right.png new file mode 100644 index 0000000..2144cb9 Binary files /dev/null and b/images/tango/32x32/actions/format-justify-right.png differ diff --git a/images/tango/32x32/actions/format-text-bold.png b/images/tango/32x32/actions/format-text-bold.png new file mode 100644 index 0000000..99ed19c Binary files /dev/null and b/images/tango/32x32/actions/format-text-bold.png differ diff --git a/images/tango/32x32/actions/format-text-italic.png b/images/tango/32x32/actions/format-text-italic.png new file mode 100644 index 0000000..87ed6f9 Binary files /dev/null and b/images/tango/32x32/actions/format-text-italic.png differ diff --git a/images/tango/32x32/actions/format-text-strikethrough.png b/images/tango/32x32/actions/format-text-strikethrough.png new file mode 100644 index 0000000..b9b55ab Binary files /dev/null and b/images/tango/32x32/actions/format-text-strikethrough.png differ diff --git a/images/tango/32x32/actions/format-text-underline.png b/images/tango/32x32/actions/format-text-underline.png new file mode 100644 index 0000000..0de6b1c Binary files /dev/null and b/images/tango/32x32/actions/format-text-underline.png differ diff --git a/images/tango/32x32/actions/go-bottom.png b/images/tango/32x32/actions/go-bottom.png new file mode 100644 index 0000000..bf973fe Binary files /dev/null and b/images/tango/32x32/actions/go-bottom.png differ diff --git a/images/tango/32x32/actions/go-down.png b/images/tango/32x32/actions/go-down.png new file mode 100644 index 0000000..dce3f15 Binary files /dev/null and b/images/tango/32x32/actions/go-down.png differ diff --git a/images/tango/32x32/actions/go-first.png b/images/tango/32x32/actions/go-first.png new file mode 100644 index 0000000..5e2a6b1 Binary files /dev/null and b/images/tango/32x32/actions/go-first.png differ diff --git a/images/tango/32x32/actions/go-home.png b/images/tango/32x32/actions/go-home.png new file mode 100644 index 0000000..a3ca103 Binary files /dev/null and b/images/tango/32x32/actions/go-home.png differ diff --git a/images/tango/32x32/actions/go-jump.png b/images/tango/32x32/actions/go-jump.png new file mode 100644 index 0000000..34dc4c0 Binary files /dev/null and b/images/tango/32x32/actions/go-jump.png differ diff --git a/images/tango/32x32/actions/go-last.png b/images/tango/32x32/actions/go-last.png new file mode 100644 index 0000000..48fe95b Binary files /dev/null and b/images/tango/32x32/actions/go-last.png differ diff --git a/images/tango/32x32/actions/go-next.png b/images/tango/32x32/actions/go-next.png new file mode 100644 index 0000000..a68e2db Binary files /dev/null and b/images/tango/32x32/actions/go-next.png differ diff --git a/images/tango/32x32/actions/go-previous.png b/images/tango/32x32/actions/go-previous.png new file mode 100644 index 0000000..c37bc04 Binary files /dev/null and b/images/tango/32x32/actions/go-previous.png differ diff --git a/images/tango/32x32/actions/go-top.png b/images/tango/32x32/actions/go-top.png new file mode 100644 index 0000000..d99552b Binary files /dev/null and b/images/tango/32x32/actions/go-top.png differ diff --git a/images/tango/32x32/actions/go-up.png b/images/tango/32x32/actions/go-up.png new file mode 100644 index 0000000..afb307b Binary files /dev/null and b/images/tango/32x32/actions/go-up.png differ diff --git a/images/tango/32x32/actions/list-add.png b/images/tango/32x32/actions/list-add.png new file mode 100644 index 0000000..2acdd8f Binary files /dev/null and b/images/tango/32x32/actions/list-add.png differ diff --git a/images/tango/32x32/actions/list-remove.png b/images/tango/32x32/actions/list-remove.png new file mode 100644 index 0000000..c5524f7 Binary files /dev/null and b/images/tango/32x32/actions/list-remove.png differ diff --git a/images/tango/32x32/actions/mail-forward.png b/images/tango/32x32/actions/mail-forward.png new file mode 100644 index 0000000..bea94ab Binary files /dev/null and b/images/tango/32x32/actions/mail-forward.png differ diff --git a/images/tango/32x32/actions/mail-mark-junk.png b/images/tango/32x32/actions/mail-mark-junk.png new file mode 100644 index 0000000..0af3006 Binary files /dev/null and b/images/tango/32x32/actions/mail-mark-junk.png differ diff --git a/images/tango/32x32/actions/mail-mark-not-junk.png b/images/tango/32x32/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..296e92a Binary files /dev/null and b/images/tango/32x32/actions/mail-mark-not-junk.png differ diff --git a/images/tango/32x32/actions/mail-message-new.png b/images/tango/32x32/actions/mail-message-new.png new file mode 100644 index 0000000..9f51246 Binary files /dev/null and b/images/tango/32x32/actions/mail-message-new.png differ diff --git a/images/tango/32x32/actions/mail-reply-all.png b/images/tango/32x32/actions/mail-reply-all.png new file mode 100644 index 0000000..0216e39 Binary files /dev/null and b/images/tango/32x32/actions/mail-reply-all.png differ diff --git a/images/tango/32x32/actions/mail-reply-sender.png b/images/tango/32x32/actions/mail-reply-sender.png new file mode 100644 index 0000000..3f248dc Binary files /dev/null and b/images/tango/32x32/actions/mail-reply-sender.png differ diff --git a/images/tango/32x32/actions/mail-send-receive.png b/images/tango/32x32/actions/mail-send-receive.png new file mode 100644 index 0000000..99349b9 Binary files /dev/null and b/images/tango/32x32/actions/mail-send-receive.png differ diff --git a/images/tango/32x32/actions/media-eject.png b/images/tango/32x32/actions/media-eject.png new file mode 100644 index 0000000..b218e7a Binary files /dev/null and b/images/tango/32x32/actions/media-eject.png differ diff --git a/images/tango/32x32/actions/media-playback-pause.png b/images/tango/32x32/actions/media-playback-pause.png new file mode 100644 index 0000000..1e9f4d5 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-pause.png differ diff --git a/images/tango/32x32/actions/media-playback-start.png b/images/tango/32x32/actions/media-playback-start.png new file mode 100644 index 0000000..66f32d8 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-start.png differ diff --git a/images/tango/32x32/actions/media-playback-stop.png b/images/tango/32x32/actions/media-playback-stop.png new file mode 100644 index 0000000..a094787 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-stop.png differ diff --git a/images/tango/32x32/actions/media-record.png b/images/tango/32x32/actions/media-record.png new file mode 100644 index 0000000..43f034b Binary files /dev/null and b/images/tango/32x32/actions/media-record.png differ diff --git a/images/tango/32x32/actions/media-seek-backward.png b/images/tango/32x32/actions/media-seek-backward.png new file mode 100644 index 0000000..535c536 Binary files /dev/null and b/images/tango/32x32/actions/media-seek-backward.png differ diff --git a/images/tango/32x32/actions/media-seek-forward.png b/images/tango/32x32/actions/media-seek-forward.png new file mode 100644 index 0000000..96ebe01 Binary files /dev/null and b/images/tango/32x32/actions/media-seek-forward.png differ diff --git a/images/tango/32x32/actions/media-skip-backward.png b/images/tango/32x32/actions/media-skip-backward.png new file mode 100644 index 0000000..aa08251 Binary files /dev/null and b/images/tango/32x32/actions/media-skip-backward.png differ diff --git a/images/tango/32x32/actions/media-skip-forward.png b/images/tango/32x32/actions/media-skip-forward.png new file mode 100644 index 0000000..52be942 Binary files /dev/null and b/images/tango/32x32/actions/media-skip-forward.png differ diff --git a/images/tango/32x32/actions/process-stop.png b/images/tango/32x32/actions/process-stop.png new file mode 100644 index 0000000..e7a8d17 Binary files /dev/null and b/images/tango/32x32/actions/process-stop.png differ diff --git a/images/tango/32x32/actions/system-lock-screen.png b/images/tango/32x32/actions/system-lock-screen.png new file mode 100644 index 0000000..2c220fc Binary files /dev/null and b/images/tango/32x32/actions/system-lock-screen.png differ diff --git a/images/tango/32x32/actions/system-log-out.png b/images/tango/32x32/actions/system-log-out.png new file mode 100644 index 0000000..fddbc2b Binary files /dev/null and b/images/tango/32x32/actions/system-log-out.png differ diff --git a/images/tango/32x32/actions/system-search.png b/images/tango/32x32/actions/system-search.png new file mode 100644 index 0000000..950d792 Binary files /dev/null and b/images/tango/32x32/actions/system-search.png differ diff --git a/images/tango/32x32/actions/system-shutdown.png b/images/tango/32x32/actions/system-shutdown.png new file mode 100644 index 0000000..36acd46 Binary files /dev/null and b/images/tango/32x32/actions/system-shutdown.png differ diff --git a/images/tango/32x32/actions/tab-new.png b/images/tango/32x32/actions/tab-new.png new file mode 100644 index 0000000..294d150 Binary files /dev/null and b/images/tango/32x32/actions/tab-new.png differ diff --git a/images/tango/32x32/actions/view-fullscreen.png b/images/tango/32x32/actions/view-fullscreen.png new file mode 100644 index 0000000..00e6b83 Binary files /dev/null and b/images/tango/32x32/actions/view-fullscreen.png differ diff --git a/images/tango/32x32/actions/view-refresh.png b/images/tango/32x32/actions/view-refresh.png new file mode 100644 index 0000000..606ea9e Binary files /dev/null and b/images/tango/32x32/actions/view-refresh.png differ diff --git a/images/tango/32x32/actions/window-new.png b/images/tango/32x32/actions/window-new.png new file mode 100644 index 0000000..e091702 Binary files /dev/null and b/images/tango/32x32/actions/window-new.png differ diff --git a/images/tango/32x32/animations/process-working.png b/images/tango/32x32/animations/process-working.png new file mode 100644 index 0000000..f19c528 Binary files /dev/null and b/images/tango/32x32/animations/process-working.png differ diff --git a/images/tango/32x32/apps/accessories-calculator.png b/images/tango/32x32/apps/accessories-calculator.png new file mode 100644 index 0000000..7de1c44 Binary files /dev/null and b/images/tango/32x32/apps/accessories-calculator.png differ diff --git a/images/tango/32x32/apps/accessories-character-map.png b/images/tango/32x32/apps/accessories-character-map.png new file mode 100644 index 0000000..a86c23e Binary files /dev/null and b/images/tango/32x32/apps/accessories-character-map.png differ diff --git a/images/tango/32x32/apps/accessories-text-editor.png b/images/tango/32x32/apps/accessories-text-editor.png new file mode 100644 index 0000000..c6b6285 Binary files /dev/null and b/images/tango/32x32/apps/accessories-text-editor.png differ diff --git a/images/tango/32x32/apps/help-browser.png b/images/tango/32x32/apps/help-browser.png new file mode 100644 index 0000000..d60425f Binary files /dev/null and b/images/tango/32x32/apps/help-browser.png differ diff --git a/images/tango/32x32/apps/internet-group-chat.png b/images/tango/32x32/apps/internet-group-chat.png new file mode 100644 index 0000000..9cb1d3b Binary files /dev/null and b/images/tango/32x32/apps/internet-group-chat.png differ diff --git a/images/tango/32x32/apps/internet-mail.png b/images/tango/32x32/apps/internet-mail.png new file mode 100644 index 0000000..dc3b9dd Binary files /dev/null and b/images/tango/32x32/apps/internet-mail.png differ diff --git a/images/tango/32x32/apps/internet-news-reader.png b/images/tango/32x32/apps/internet-news-reader.png new file mode 100644 index 0000000..ebc528f Binary files /dev/null and b/images/tango/32x32/apps/internet-news-reader.png differ diff --git a/images/tango/32x32/apps/internet-web-browser.png b/images/tango/32x32/apps/internet-web-browser.png new file mode 100644 index 0000000..10d2ed4 Binary files /dev/null and b/images/tango/32x32/apps/internet-web-browser.png differ diff --git a/images/tango/32x32/apps/office-calendar.png b/images/tango/32x32/apps/office-calendar.png new file mode 100644 index 0000000..7817c12 Binary files /dev/null and b/images/tango/32x32/apps/office-calendar.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-accessibility.png b/images/tango/32x32/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..adfe247 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-assistive-technology.png b/images/tango/32x32/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..70adb92 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-font.png b/images/tango/32x32/apps/preferences-desktop-font.png new file mode 100644 index 0000000..b4ec434 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-font.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..178dd29 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-locale.png b/images/tango/32x32/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..66224ae Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-locale.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-multimedia.png b/images/tango/32x32/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..56a5662 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-remote-desktop.png b/images/tango/32x32/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..6da67c6 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-screensaver.png b/images/tango/32x32/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dba2455 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-theme.png b/images/tango/32x32/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7af777d Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-theme.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-wallpaper.png b/images/tango/32x32/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..4eb744c Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/32x32/apps/preferences-system-network-proxy.png b/images/tango/32x32/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..e75f6f7 Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/32x32/apps/preferences-system-session.png b/images/tango/32x32/apps/preferences-system-session.png new file mode 100644 index 0000000..f8c2d11 Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-session.png differ diff --git a/images/tango/32x32/apps/preferences-system-windows.png b/images/tango/32x32/apps/preferences-system-windows.png new file mode 100644 index 0000000..517e48a Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-windows.png differ diff --git a/images/tango/32x32/apps/system-file-manager.png b/images/tango/32x32/apps/system-file-manager.png new file mode 100644 index 0000000..1d6ce31 Binary files /dev/null and b/images/tango/32x32/apps/system-file-manager.png differ diff --git a/images/tango/32x32/apps/system-installer.png b/images/tango/32x32/apps/system-installer.png new file mode 100644 index 0000000..c26576e Binary files /dev/null and b/images/tango/32x32/apps/system-installer.png differ diff --git a/images/tango/32x32/apps/system-software-update.png b/images/tango/32x32/apps/system-software-update.png new file mode 100644 index 0000000..470b5d4 Binary files /dev/null and b/images/tango/32x32/apps/system-software-update.png differ diff --git a/images/tango/32x32/apps/system-users.png b/images/tango/32x32/apps/system-users.png new file mode 100644 index 0000000..749c825 Binary files /dev/null and b/images/tango/32x32/apps/system-users.png differ diff --git a/images/tango/32x32/apps/utilities-system-monitor.png b/images/tango/32x32/apps/utilities-system-monitor.png new file mode 100644 index 0000000..b62959e Binary files /dev/null and b/images/tango/32x32/apps/utilities-system-monitor.png differ diff --git a/images/tango/32x32/apps/utilities-terminal.png b/images/tango/32x32/apps/utilities-terminal.png new file mode 100644 index 0000000..f86c784 Binary files /dev/null and b/images/tango/32x32/apps/utilities-terminal.png differ diff --git a/images/tango/32x32/categories/applications-accessories.png b/images/tango/32x32/categories/applications-accessories.png new file mode 100644 index 0000000..fd43de3 Binary files /dev/null and b/images/tango/32x32/categories/applications-accessories.png differ diff --git a/images/tango/32x32/categories/applications-development.png b/images/tango/32x32/categories/applications-development.png new file mode 100644 index 0000000..bc88a5c Binary files /dev/null and b/images/tango/32x32/categories/applications-development.png differ diff --git a/images/tango/32x32/categories/applications-games.png b/images/tango/32x32/categories/applications-games.png new file mode 100644 index 0000000..ff4044c Binary files /dev/null and b/images/tango/32x32/categories/applications-games.png differ diff --git a/images/tango/32x32/categories/applications-graphics.png b/images/tango/32x32/categories/applications-graphics.png new file mode 100644 index 0000000..36b77c2 Binary files /dev/null and b/images/tango/32x32/categories/applications-graphics.png differ diff --git a/images/tango/32x32/categories/applications-internet.png b/images/tango/32x32/categories/applications-internet.png new file mode 100644 index 0000000..096e848 Binary files /dev/null and b/images/tango/32x32/categories/applications-internet.png differ diff --git a/images/tango/32x32/categories/applications-multimedia.png b/images/tango/32x32/categories/applications-multimedia.png new file mode 100644 index 0000000..d09995a Binary files /dev/null and b/images/tango/32x32/categories/applications-multimedia.png differ diff --git a/images/tango/32x32/categories/applications-office.png b/images/tango/32x32/categories/applications-office.png new file mode 100644 index 0000000..efb850e Binary files /dev/null and b/images/tango/32x32/categories/applications-office.png differ diff --git a/images/tango/32x32/categories/applications-other.png b/images/tango/32x32/categories/applications-other.png new file mode 100644 index 0000000..1990dbb Binary files /dev/null and b/images/tango/32x32/categories/applications-other.png differ diff --git a/images/tango/32x32/categories/applications-system.png b/images/tango/32x32/categories/applications-system.png new file mode 100644 index 0000000..565f406 Binary files /dev/null and b/images/tango/32x32/categories/applications-system.png differ diff --git a/images/tango/32x32/categories/preferences-desktop-peripherals.png b/images/tango/32x32/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..4682b36 Binary files /dev/null and b/images/tango/32x32/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/32x32/categories/preferences-desktop.png b/images/tango/32x32/categories/preferences-desktop.png new file mode 100644 index 0000000..3ec71a3 Binary files /dev/null and b/images/tango/32x32/categories/preferences-desktop.png differ diff --git a/images/tango/32x32/categories/preferences-system.png b/images/tango/32x32/categories/preferences-system.png new file mode 100644 index 0000000..6e52db7 Binary files /dev/null and b/images/tango/32x32/categories/preferences-system.png differ diff --git a/images/tango/32x32/devices/audio-card.png b/images/tango/32x32/devices/audio-card.png new file mode 100644 index 0000000..5b15dd6 Binary files /dev/null and b/images/tango/32x32/devices/audio-card.png differ diff --git a/images/tango/32x32/devices/audio-input-microphone.png b/images/tango/32x32/devices/audio-input-microphone.png new file mode 100644 index 0000000..9fe3b96 Binary files /dev/null and b/images/tango/32x32/devices/audio-input-microphone.png differ diff --git a/images/tango/32x32/devices/battery.png b/images/tango/32x32/devices/battery.png new file mode 100644 index 0000000..ef08925 Binary files /dev/null and b/images/tango/32x32/devices/battery.png differ diff --git a/images/tango/32x32/devices/camera-photo.png b/images/tango/32x32/devices/camera-photo.png new file mode 100644 index 0000000..ffbffc7 Binary files /dev/null and b/images/tango/32x32/devices/camera-photo.png differ diff --git a/images/tango/32x32/devices/camera-video.png b/images/tango/32x32/devices/camera-video.png new file mode 100644 index 0000000..7473dd7 Binary files /dev/null and b/images/tango/32x32/devices/camera-video.png differ diff --git a/images/tango/32x32/devices/computer.png b/images/tango/32x32/devices/computer.png new file mode 100644 index 0000000..e34eb4e Binary files /dev/null and b/images/tango/32x32/devices/computer.png differ diff --git a/images/tango/32x32/devices/drive-harddisk.png b/images/tango/32x32/devices/drive-harddisk.png new file mode 100644 index 0000000..b34d8b7 Binary files /dev/null and b/images/tango/32x32/devices/drive-harddisk.png differ diff --git a/images/tango/32x32/devices/drive-optical.png b/images/tango/32x32/devices/drive-optical.png new file mode 100644 index 0000000..bf2e8c8 Binary files /dev/null and b/images/tango/32x32/devices/drive-optical.png differ diff --git a/images/tango/32x32/devices/drive-removable-media.png b/images/tango/32x32/devices/drive-removable-media.png new file mode 100644 index 0000000..2d28909 Binary files /dev/null and b/images/tango/32x32/devices/drive-removable-media.png differ diff --git a/images/tango/32x32/devices/input-gaming.png b/images/tango/32x32/devices/input-gaming.png new file mode 100644 index 0000000..26e2a98 Binary files /dev/null and b/images/tango/32x32/devices/input-gaming.png differ diff --git a/images/tango/32x32/devices/input-keyboard.png b/images/tango/32x32/devices/input-keyboard.png new file mode 100644 index 0000000..788c717 Binary files /dev/null and b/images/tango/32x32/devices/input-keyboard.png differ diff --git a/images/tango/32x32/devices/input-mouse.png b/images/tango/32x32/devices/input-mouse.png new file mode 100644 index 0000000..49a923c Binary files /dev/null and b/images/tango/32x32/devices/input-mouse.png differ diff --git a/images/tango/32x32/devices/media-flash.png b/images/tango/32x32/devices/media-flash.png new file mode 100644 index 0000000..7540f3f Binary files /dev/null and b/images/tango/32x32/devices/media-flash.png differ diff --git a/images/tango/32x32/devices/media-floppy.png b/images/tango/32x32/devices/media-floppy.png new file mode 100644 index 0000000..17b1274 Binary files /dev/null and b/images/tango/32x32/devices/media-floppy.png differ diff --git a/images/tango/32x32/devices/media-optical.png b/images/tango/32x32/devices/media-optical.png new file mode 100644 index 0000000..5853a75 Binary files /dev/null and b/images/tango/32x32/devices/media-optical.png differ diff --git a/images/tango/32x32/devices/multimedia-player.png b/images/tango/32x32/devices/multimedia-player.png new file mode 100644 index 0000000..8d59208 Binary files /dev/null and b/images/tango/32x32/devices/multimedia-player.png differ diff --git a/images/tango/32x32/devices/network-wired.png b/images/tango/32x32/devices/network-wired.png new file mode 100644 index 0000000..c3ca691 Binary files /dev/null and b/images/tango/32x32/devices/network-wired.png differ diff --git a/images/tango/32x32/devices/network-wireless.png b/images/tango/32x32/devices/network-wireless.png new file mode 100644 index 0000000..aa5f9f2 Binary files /dev/null and b/images/tango/32x32/devices/network-wireless.png differ diff --git a/images/tango/32x32/devices/printer.png b/images/tango/32x32/devices/printer.png new file mode 100644 index 0000000..05b49e0 Binary files /dev/null and b/images/tango/32x32/devices/printer.png differ diff --git a/images/tango/32x32/devices/video-display.png b/images/tango/32x32/devices/video-display.png new file mode 100644 index 0000000..b95ea5d Binary files /dev/null and b/images/tango/32x32/devices/video-display.png differ diff --git a/images/tango/32x32/emblems/emblem-favorite.png b/images/tango/32x32/emblems/emblem-favorite.png new file mode 100644 index 0000000..8a9ad39 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-favorite.png differ diff --git a/images/tango/32x32/emblems/emblem-important.png b/images/tango/32x32/emblems/emblem-important.png new file mode 100644 index 0000000..263fbd5 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-important.png differ diff --git a/images/tango/32x32/emblems/emblem-photos.png b/images/tango/32x32/emblems/emblem-photos.png new file mode 100644 index 0000000..f7dfd88 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-photos.png differ diff --git a/images/tango/32x32/emblems/emblem-readonly.png b/images/tango/32x32/emblems/emblem-readonly.png new file mode 100644 index 0000000..5e972d1 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-readonly.png differ diff --git a/images/tango/32x32/emblems/emblem-symbolic-link.png b/images/tango/32x32/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..56ef039 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/32x32/emblems/emblem-system.png b/images/tango/32x32/emblems/emblem-system.png new file mode 100644 index 0000000..abac7e9 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-system.png differ diff --git a/images/tango/32x32/emblems/emblem-unreadable.png b/images/tango/32x32/emblems/emblem-unreadable.png new file mode 100644 index 0000000..b94fc97 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-unreadable.png differ diff --git a/images/tango/32x32/emotes/face-angel.png b/images/tango/32x32/emotes/face-angel.png new file mode 100644 index 0000000..abd0285 Binary files /dev/null and b/images/tango/32x32/emotes/face-angel.png differ diff --git a/images/tango/32x32/emotes/face-crying.png b/images/tango/32x32/emotes/face-crying.png new file mode 100644 index 0000000..d8bc41e Binary files /dev/null and b/images/tango/32x32/emotes/face-crying.png differ diff --git a/images/tango/32x32/emotes/face-devilish.png b/images/tango/32x32/emotes/face-devilish.png new file mode 100644 index 0000000..7a3cb08 Binary files /dev/null and b/images/tango/32x32/emotes/face-devilish.png differ diff --git a/images/tango/32x32/emotes/face-glasses.png b/images/tango/32x32/emotes/face-glasses.png new file mode 100644 index 0000000..1b25394 Binary files /dev/null and b/images/tango/32x32/emotes/face-glasses.png differ diff --git a/images/tango/32x32/emotes/face-grin.png b/images/tango/32x32/emotes/face-grin.png new file mode 100644 index 0000000..2e8268f Binary files /dev/null and b/images/tango/32x32/emotes/face-grin.png differ diff --git a/images/tango/32x32/emotes/face-kiss.png b/images/tango/32x32/emotes/face-kiss.png new file mode 100644 index 0000000..1e3fa54 Binary files /dev/null and b/images/tango/32x32/emotes/face-kiss.png differ diff --git a/images/tango/32x32/emotes/face-monkey.png b/images/tango/32x32/emotes/face-monkey.png new file mode 100644 index 0000000..fb0204a Binary files /dev/null and b/images/tango/32x32/emotes/face-monkey.png differ diff --git a/images/tango/32x32/emotes/face-plain.png b/images/tango/32x32/emotes/face-plain.png new file mode 100644 index 0000000..f8128a6 Binary files /dev/null and b/images/tango/32x32/emotes/face-plain.png differ diff --git a/images/tango/32x32/emotes/face-sad.png b/images/tango/32x32/emotes/face-sad.png new file mode 100644 index 0000000..2fbecde Binary files /dev/null and b/images/tango/32x32/emotes/face-sad.png differ diff --git a/images/tango/32x32/emotes/face-smile-big.png b/images/tango/32x32/emotes/face-smile-big.png new file mode 100644 index 0000000..28704ae Binary files /dev/null and b/images/tango/32x32/emotes/face-smile-big.png differ diff --git a/images/tango/32x32/emotes/face-smile.png b/images/tango/32x32/emotes/face-smile.png new file mode 100644 index 0000000..a52e44d Binary files /dev/null and b/images/tango/32x32/emotes/face-smile.png differ diff --git a/images/tango/32x32/emotes/face-surprise.png b/images/tango/32x32/emotes/face-surprise.png new file mode 100644 index 0000000..af7cef4 Binary files /dev/null and b/images/tango/32x32/emotes/face-surprise.png differ diff --git a/images/tango/32x32/emotes/face-wink.png b/images/tango/32x32/emotes/face-wink.png new file mode 100644 index 0000000..494d785 Binary files /dev/null and b/images/tango/32x32/emotes/face-wink.png differ diff --git a/images/tango/32x32/mimetypes/application-certificate.png b/images/tango/32x32/mimetypes/application-certificate.png new file mode 100644 index 0000000..b75ba54 Binary files /dev/null and b/images/tango/32x32/mimetypes/application-certificate.png differ diff --git a/images/tango/32x32/mimetypes/application-x-executable.png b/images/tango/32x32/mimetypes/application-x-executable.png new file mode 100644 index 0000000..8a150b8 Binary files /dev/null and b/images/tango/32x32/mimetypes/application-x-executable.png differ diff --git a/images/tango/32x32/mimetypes/audio-x-generic.png b/images/tango/32x32/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..c60b595 Binary files /dev/null and b/images/tango/32x32/mimetypes/audio-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/font-x-generic.png b/images/tango/32x32/mimetypes/font-x-generic.png new file mode 100644 index 0000000..b166f4b Binary files /dev/null and b/images/tango/32x32/mimetypes/font-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/image-x-generic.png b/images/tango/32x32/mimetypes/image-x-generic.png new file mode 100644 index 0000000..6f118cd Binary files /dev/null and b/images/tango/32x32/mimetypes/image-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/package-x-generic.png b/images/tango/32x32/mimetypes/package-x-generic.png new file mode 100644 index 0000000..4b55b50 Binary files /dev/null and b/images/tango/32x32/mimetypes/package-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/text-html.png b/images/tango/32x32/mimetypes/text-html.png new file mode 100644 index 0000000..a896697 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-html.png differ diff --git a/images/tango/32x32/mimetypes/text-x-generic-template.png b/images/tango/32x32/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..5b7e649 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/32x32/mimetypes/text-x-generic.png b/images/tango/32x32/mimetypes/text-x-generic.png new file mode 100644 index 0000000..928a679 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/text-x-script.png b/images/tango/32x32/mimetypes/text-x-script.png new file mode 100644 index 0000000..801dcd6 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-script.png differ diff --git a/images/tango/32x32/mimetypes/video-x-generic.png b/images/tango/32x32/mimetypes/video-x-generic.png new file mode 100644 index 0000000..5d6c8d1 Binary files /dev/null and b/images/tango/32x32/mimetypes/video-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/x-office-address-book.png b/images/tango/32x32/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..53dde74 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-address-book.png differ diff --git a/images/tango/32x32/mimetypes/x-office-calendar.png b/images/tango/32x32/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..bc6db5b Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-calendar.png differ diff --git a/images/tango/32x32/mimetypes/x-office-document-template.png b/images/tango/32x32/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..9619241 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-document-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-document.png b/images/tango/32x32/mimetypes/x-office-document.png new file mode 100644 index 0000000..daf84b2 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-document.png differ diff --git a/images/tango/32x32/mimetypes/x-office-drawing-template.png b/images/tango/32x32/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..6fc043c Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-drawing.png b/images/tango/32x32/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5cd66c1 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-drawing.png differ diff --git a/images/tango/32x32/mimetypes/x-office-presentation-template.png b/images/tango/32x32/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..bc348f1 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-presentation.png b/images/tango/32x32/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..047355c Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-presentation.png differ diff --git a/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png b/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..6a81f36 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-spreadsheet.png b/images/tango/32x32/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c0ccb7a Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/32x32/places/folder-remote.png b/images/tango/32x32/places/folder-remote.png new file mode 100644 index 0000000..3e0d9ad Binary files /dev/null and b/images/tango/32x32/places/folder-remote.png differ diff --git a/images/tango/32x32/places/folder-saved-search.png b/images/tango/32x32/places/folder-saved-search.png new file mode 100644 index 0000000..88d4541 Binary files /dev/null and b/images/tango/32x32/places/folder-saved-search.png differ diff --git a/images/tango/32x32/places/folder.png b/images/tango/32x32/places/folder.png new file mode 100644 index 0000000..472484f Binary files /dev/null and b/images/tango/32x32/places/folder.png differ diff --git a/images/tango/32x32/places/network-server.png b/images/tango/32x32/places/network-server.png new file mode 100644 index 0000000..1d38e4f Binary files /dev/null and b/images/tango/32x32/places/network-server.png differ diff --git a/images/tango/32x32/places/network-workgroup.png b/images/tango/32x32/places/network-workgroup.png new file mode 100644 index 0000000..4137b3c Binary files /dev/null and b/images/tango/32x32/places/network-workgroup.png differ diff --git a/images/tango/32x32/places/start-here.png b/images/tango/32x32/places/start-here.png new file mode 100644 index 0000000..1e54d01 Binary files /dev/null and b/images/tango/32x32/places/start-here.png differ diff --git a/images/tango/32x32/places/user-desktop.png b/images/tango/32x32/places/user-desktop.png new file mode 100644 index 0000000..57fb177 Binary files /dev/null and b/images/tango/32x32/places/user-desktop.png differ diff --git a/images/tango/32x32/places/user-home.png b/images/tango/32x32/places/user-home.png new file mode 100644 index 0000000..a29bd69 Binary files /dev/null and b/images/tango/32x32/places/user-home.png differ diff --git a/images/tango/32x32/places/user-trash.png b/images/tango/32x32/places/user-trash.png new file mode 100644 index 0000000..9b7a462 Binary files /dev/null and b/images/tango/32x32/places/user-trash.png differ diff --git a/images/tango/32x32/status/audio-volume-high.png b/images/tango/32x32/status/audio-volume-high.png new file mode 100644 index 0000000..70ae43a Binary files /dev/null and b/images/tango/32x32/status/audio-volume-high.png differ diff --git a/images/tango/32x32/status/audio-volume-low.png b/images/tango/32x32/status/audio-volume-low.png new file mode 100644 index 0000000..34546f9 Binary files /dev/null and b/images/tango/32x32/status/audio-volume-low.png differ diff --git a/images/tango/32x32/status/audio-volume-medium.png b/images/tango/32x32/status/audio-volume-medium.png new file mode 100644 index 0000000..4d48a9a Binary files /dev/null and b/images/tango/32x32/status/audio-volume-medium.png differ diff --git a/images/tango/32x32/status/audio-volume-muted.png b/images/tango/32x32/status/audio-volume-muted.png new file mode 100644 index 0000000..a602c85 Binary files /dev/null and b/images/tango/32x32/status/audio-volume-muted.png differ diff --git a/images/tango/32x32/status/battery-caution.png b/images/tango/32x32/status/battery-caution.png new file mode 100644 index 0000000..ede9788 Binary files /dev/null and b/images/tango/32x32/status/battery-caution.png differ diff --git a/images/tango/32x32/status/dialog-error.png b/images/tango/32x32/status/dialog-error.png new file mode 100644 index 0000000..cdd95ba Binary files /dev/null and b/images/tango/32x32/status/dialog-error.png differ diff --git a/images/tango/32x32/status/dialog-information.png b/images/tango/32x32/status/dialog-information.png new file mode 100644 index 0000000..2ac5747 Binary files /dev/null and b/images/tango/32x32/status/dialog-information.png differ diff --git a/images/tango/32x32/status/dialog-warning.png b/images/tango/32x32/status/dialog-warning.png new file mode 100644 index 0000000..7233d45 Binary files /dev/null and b/images/tango/32x32/status/dialog-warning.png differ diff --git a/images/tango/32x32/status/folder-drag-accept.png b/images/tango/32x32/status/folder-drag-accept.png new file mode 100644 index 0000000..2feba85 Binary files /dev/null and b/images/tango/32x32/status/folder-drag-accept.png differ diff --git a/images/tango/32x32/status/folder-open.png b/images/tango/32x32/status/folder-open.png new file mode 100644 index 0000000..901816c Binary files /dev/null and b/images/tango/32x32/status/folder-open.png differ diff --git a/images/tango/32x32/status/folder-visiting.png b/images/tango/32x32/status/folder-visiting.png new file mode 100644 index 0000000..be02b6a Binary files /dev/null and b/images/tango/32x32/status/folder-visiting.png differ diff --git a/images/tango/32x32/status/image-loading.png b/images/tango/32x32/status/image-loading.png new file mode 100644 index 0000000..9442085 Binary files /dev/null and b/images/tango/32x32/status/image-loading.png differ diff --git a/images/tango/32x32/status/image-missing.png b/images/tango/32x32/status/image-missing.png new file mode 100644 index 0000000..27fccd5 Binary files /dev/null and b/images/tango/32x32/status/image-missing.png differ diff --git a/images/tango/32x32/status/mail-attachment.png b/images/tango/32x32/status/mail-attachment.png new file mode 100644 index 0000000..78f1e1c Binary files /dev/null and b/images/tango/32x32/status/mail-attachment.png differ diff --git a/images/tango/32x32/status/network-error.png b/images/tango/32x32/status/network-error.png new file mode 100644 index 0000000..3de26e7 Binary files /dev/null and b/images/tango/32x32/status/network-error.png differ diff --git a/images/tango/32x32/status/network-idle.png b/images/tango/32x32/status/network-idle.png new file mode 100644 index 0000000..dca03af Binary files /dev/null and b/images/tango/32x32/status/network-idle.png differ diff --git a/images/tango/32x32/status/network-offline.png b/images/tango/32x32/status/network-offline.png new file mode 100644 index 0000000..428aaa5 Binary files /dev/null and b/images/tango/32x32/status/network-offline.png differ diff --git a/images/tango/32x32/status/network-receive.png b/images/tango/32x32/status/network-receive.png new file mode 100644 index 0000000..b149c5d Binary files /dev/null and b/images/tango/32x32/status/network-receive.png differ diff --git a/images/tango/32x32/status/network-transmit-receive.png b/images/tango/32x32/status/network-transmit-receive.png new file mode 100644 index 0000000..10ad0ac Binary files /dev/null and b/images/tango/32x32/status/network-transmit-receive.png differ diff --git a/images/tango/32x32/status/network-transmit.png b/images/tango/32x32/status/network-transmit.png new file mode 100644 index 0000000..aaa91b8 Binary files /dev/null and b/images/tango/32x32/status/network-transmit.png differ diff --git a/images/tango/32x32/status/network-wireless-encrypted.png b/images/tango/32x32/status/network-wireless-encrypted.png new file mode 100644 index 0000000..0d4e368 Binary files /dev/null and b/images/tango/32x32/status/network-wireless-encrypted.png differ diff --git a/images/tango/32x32/status/printer-error.png b/images/tango/32x32/status/printer-error.png new file mode 100644 index 0000000..a6aa460 Binary files /dev/null and b/images/tango/32x32/status/printer-error.png differ diff --git a/images/tango/32x32/status/software-update-available.png b/images/tango/32x32/status/software-update-available.png new file mode 100644 index 0000000..aadcb91 Binary files /dev/null and b/images/tango/32x32/status/software-update-available.png differ diff --git a/images/tango/32x32/status/software-update-urgent.png b/images/tango/32x32/status/software-update-urgent.png new file mode 100644 index 0000000..3d67d9e Binary files /dev/null and b/images/tango/32x32/status/software-update-urgent.png differ diff --git a/images/tango/32x32/status/user-trash-full.png b/images/tango/32x32/status/user-trash-full.png new file mode 100644 index 0000000..462ef39 Binary files /dev/null and b/images/tango/32x32/status/user-trash-full.png differ diff --git a/images/tango/32x32/status/weather-clear-night.png b/images/tango/32x32/status/weather-clear-night.png new file mode 100644 index 0000000..aa2714c Binary files /dev/null and b/images/tango/32x32/status/weather-clear-night.png differ diff --git a/images/tango/32x32/status/weather-clear.png b/images/tango/32x32/status/weather-clear.png new file mode 100644 index 0000000..c84e8d3 Binary files /dev/null and b/images/tango/32x32/status/weather-clear.png differ diff --git a/images/tango/32x32/status/weather-few-clouds-night.png b/images/tango/32x32/status/weather-few-clouds-night.png new file mode 100644 index 0000000..62e21d7 Binary files /dev/null and b/images/tango/32x32/status/weather-few-clouds-night.png differ diff --git a/images/tango/32x32/status/weather-few-clouds.png b/images/tango/32x32/status/weather-few-clouds.png new file mode 100644 index 0000000..8c14e0d Binary files /dev/null and b/images/tango/32x32/status/weather-few-clouds.png differ diff --git a/images/tango/32x32/status/weather-overcast.png b/images/tango/32x32/status/weather-overcast.png new file mode 100644 index 0000000..cc22e4c Binary files /dev/null and b/images/tango/32x32/status/weather-overcast.png differ diff --git a/images/tango/32x32/status/weather-severe-alert.png b/images/tango/32x32/status/weather-severe-alert.png new file mode 100644 index 0000000..fb75808 Binary files /dev/null and b/images/tango/32x32/status/weather-severe-alert.png differ diff --git a/images/tango/32x32/status/weather-showers-scattered.png b/images/tango/32x32/status/weather-showers-scattered.png new file mode 100644 index 0000000..6e85a7b Binary files /dev/null and b/images/tango/32x32/status/weather-showers-scattered.png differ diff --git a/images/tango/32x32/status/weather-showers.png b/images/tango/32x32/status/weather-showers.png new file mode 100644 index 0000000..0074348 Binary files /dev/null and b/images/tango/32x32/status/weather-showers.png differ diff --git a/images/tango/32x32/status/weather-snow.png b/images/tango/32x32/status/weather-snow.png new file mode 100644 index 0000000..fef6e4d Binary files /dev/null and b/images/tango/32x32/status/weather-snow.png differ diff --git a/images/tango/32x32/status/weather-storm.png b/images/tango/32x32/status/weather-storm.png new file mode 100644 index 0000000..8a7db96 Binary files /dev/null and b/images/tango/32x32/status/weather-storm.png differ diff --git a/images/tango/index.theme b/images/tango/index.theme new file mode 100644 index 0000000..45b1be8 --- /dev/null +++ b/images/tango/index.theme @@ -0,0 +1,14 @@ +[Icon Theme] +Name=tango +Comment=Original tango icons +Inherits=default +Directories=16x16,22x22,32x32 + +[16x16] +Size=16 + +[22x22] +Size=22 + +[32x32] +Size=32 diff --git a/images/win/editcopy.png b/images/win/editcopy.png deleted file mode 100644 index 1121b47..0000000 Binary files a/images/win/editcopy.png and /dev/null differ diff --git a/images/win/editcut.png b/images/win/editcut.png deleted file mode 100644 index 38e55f7..0000000 Binary files a/images/win/editcut.png and /dev/null differ diff --git a/images/win/editpaste.png b/images/win/editpaste.png deleted file mode 100644 index ffab15a..0000000 Binary files a/images/win/editpaste.png and /dev/null differ diff --git a/images/win/editredo.png b/images/win/editredo.png deleted file mode 100644 index 9d679fe..0000000 Binary files a/images/win/editredo.png and /dev/null differ diff --git a/images/win/editundo.png b/images/win/editundo.png deleted file mode 100644 index eee23d2..0000000 Binary files a/images/win/editundo.png and /dev/null differ diff --git a/images/win/exportpdf.png b/images/win/exportpdf.png deleted file mode 100644 index eef5132..0000000 Binary files a/images/win/exportpdf.png and /dev/null differ diff --git a/images/win/filenew.png b/images/win/filenew.png deleted file mode 100644 index af5d122..0000000 Binary files a/images/win/filenew.png and /dev/null differ diff --git a/images/win/fileopen.png b/images/win/fileopen.png deleted file mode 100644 index fc6f17e..0000000 Binary files a/images/win/fileopen.png and /dev/null differ diff --git a/images/win/fileprint.png b/images/win/fileprint.png deleted file mode 100644 index ba7c02d..0000000 Binary files a/images/win/fileprint.png and /dev/null differ diff --git a/images/win/filesave.png b/images/win/filesave.png deleted file mode 100644 index 8feec99..0000000 Binary files a/images/win/filesave.png and /dev/null differ diff --git a/images/win/textbold.png b/images/win/textbold.png deleted file mode 100644 index 9cbc713..0000000 Binary files a/images/win/textbold.png and /dev/null differ diff --git a/images/win/textcenter.png b/images/win/textcenter.png deleted file mode 100644 index 11efb4b..0000000 Binary files a/images/win/textcenter.png and /dev/null differ diff --git a/images/win/textitalic.png b/images/win/textitalic.png deleted file mode 100644 index b30ce14..0000000 Binary files a/images/win/textitalic.png and /dev/null differ diff --git a/images/win/textjustify.png b/images/win/textjustify.png deleted file mode 100644 index 9de0c88..0000000 Binary files a/images/win/textjustify.png and /dev/null differ diff --git a/images/win/textleft.png b/images/win/textleft.png deleted file mode 100644 index 16f80bc..0000000 Binary files a/images/win/textleft.png and /dev/null differ diff --git a/images/win/textright.png b/images/win/textright.png deleted file mode 100644 index 16872df..0000000 Binary files a/images/win/textright.png and /dev/null differ diff --git a/images/win/textunder.png b/images/win/textunder.png deleted file mode 100644 index c72eff5..0000000 Binary files a/images/win/textunder.png and /dev/null differ diff --git a/images/win/zoomin.png b/images/win/zoomin.png deleted file mode 100644 index 2e586fc..0000000 Binary files a/images/win/zoomin.png and /dev/null differ diff --git a/images/win/zoomout.png b/images/win/zoomout.png deleted file mode 100644 index a736d39..0000000 Binary files a/images/win/zoomout.png and /dev/null differ diff --git a/storyWriter.pro b/storyWriter.pro index 1ae8f49..0d98692 100644 --- a/storyWriter.pro +++ b/storyWriter.pro @@ -148,7 +148,8 @@ DISTFILES += \ resources/splash.png \ resources/splash.psd \ images/icon.ico \ - resources/icon.png + resources/icon.png \ + images/tango/32x32/actions/document-pdf.png RESOURCES += \ storywriter.qrc diff --git a/storywriter.qrc b/storywriter.qrc index ad63616..9531cb4 100644 --- a/storywriter.qrc +++ b/storywriter.qrc @@ -1,43 +1,5 @@ - images/mac/editcopy.png - images/mac/editcut.png - images/mac/editpaste.png - images/mac/editredo.png - images/mac/editundo.png - images/mac/exportpdf.png - images/mac/filenew.png - images/mac/fileopen.png - images/mac/fileprint.png - images/mac/filesave.png - images/mac/textbold.png - images/mac/textcenter.png - images/mac/textitalic.png - images/mac/textjustify.png - images/mac/textleft.png - images/mac/textright.png - images/mac/textunder.png - images/mac/zoomin.png - images/mac/zoomout.png - images/win/editcopy.png - images/win/editcut.png - images/win/editpaste.png - images/win/editredo.png - images/win/editundo.png - images/win/exportpdf.png - images/win/filenew.png - images/win/fileopen.png - images/win/fileprint.png - images/win/filesave.png - images/win/textbold.png - images/win/textcenter.png - images/win/textitalic.png - images/win/textjustify.png - images/win/textleft.png - images/win/textright.png - images/win/textunder.png - images/win/zoomin.png - images/win/zoomout.png images/splash.png fonts/Stingray.otf fonts/BiggerLove.ttf @@ -46,4 +8,658 @@ images/splashEmpty.png fonts/Tahu!.ttf + + images/tango/16x16/actions/address-book-new.png + images/tango/16x16/actions/appointment-new.png + images/tango/16x16/actions/bookmark-new.png + images/tango/16x16/actions/contact-new.png + images/tango/16x16/actions/document-new.png + images/tango/16x16/actions/document-open.png + images/tango/16x16/actions/document-print-preview.png + images/tango/16x16/actions/document-print.png + images/tango/16x16/actions/document-pdf.png + images/tango/16x16/actions/document-properties.png + images/tango/16x16/actions/document-revert.png + images/tango/16x16/actions/document-save-as.png + images/tango/16x16/actions/document-save.png + images/tango/16x16/actions/edit-clear.png + images/tango/16x16/actions/edit-copy.png + images/tango/16x16/actions/edit-cut.png + images/tango/16x16/actions/edit-delete.png + images/tango/16x16/actions/edit-find-replace.png + images/tango/16x16/actions/edit-find.png + images/tango/16x16/actions/edit-paste.png + images/tango/16x16/actions/edit-redo.png + images/tango/16x16/actions/edit-select-all.png + images/tango/16x16/actions/edit-undo.png + images/tango/16x16/actions/folder-new.png + images/tango/16x16/actions/format-indent-less.png + images/tango/16x16/actions/format-indent-more.png + images/tango/16x16/actions/format-justify-center.png + images/tango/16x16/actions/format-justify-fill.png + images/tango/16x16/actions/format-justify-left.png + images/tango/16x16/actions/format-justify-right.png + images/tango/16x16/actions/format-text-bold.png + images/tango/16x16/actions/format-text-italic.png + images/tango/16x16/actions/format-text-strikethrough.png + images/tango/16x16/actions/format-text-underline.png + images/tango/16x16/actions/go-bottom.png + images/tango/16x16/actions/go-down.png + images/tango/16x16/actions/go-first.png + images/tango/16x16/actions/go-home.png + images/tango/16x16/actions/go-jump.png + images/tango/16x16/actions/go-last.png + images/tango/16x16/actions/go-next.png + images/tango/16x16/actions/go-previous.png + images/tango/16x16/actions/go-top.png + images/tango/16x16/actions/go-up.png + images/tango/16x16/actions/list-add.png + images/tango/16x16/actions/list-remove.png + images/tango/16x16/actions/mail-forward.png + images/tango/16x16/actions/mail-mark-junk.png + images/tango/16x16/actions/mail-mark-not-junk.png + images/tango/16x16/actions/mail-message-new.png + images/tango/16x16/actions/mail-reply-all.png + images/tango/16x16/actions/mail-reply-sender.png + images/tango/16x16/actions/mail-send-receive.png + images/tango/16x16/actions/media-eject.png + images/tango/16x16/actions/media-playback-pause.png + images/tango/16x16/actions/media-playback-start.png + images/tango/16x16/actions/media-playback-stop.png + images/tango/16x16/actions/media-record.png + images/tango/16x16/actions/media-seek-backward.png + images/tango/16x16/actions/media-seek-forward.png + images/tango/16x16/actions/media-skip-backward.png + images/tango/16x16/actions/media-skip-forward.png + images/tango/16x16/actions/process-stop.png + images/tango/16x16/actions/system-lock-screen.png + images/tango/16x16/actions/system-log-out.png + images/tango/16x16/actions/system-search.png + images/tango/16x16/actions/system-shutdown.png + images/tango/16x16/actions/tab-new.png + images/tango/16x16/actions/view-fullscreen.png + images/tango/16x16/actions/view-refresh.png + images/tango/16x16/actions/window-new.png + images/tango/16x16/animations/process-working.png + images/tango/16x16/apps/accessories-calculator.png + images/tango/16x16/apps/accessories-character-map.png + images/tango/16x16/apps/accessories-text-editor.png + images/tango/16x16/apps/help-browser.png + images/tango/16x16/apps/internet-group-chat.png + images/tango/16x16/apps/internet-mail.png + images/tango/16x16/apps/internet-news-reader.png + images/tango/16x16/apps/internet-web-browser.png + images/tango/16x16/apps/office-calendar.png + images/tango/16x16/apps/preferences-desktop-accessibility.png + images/tango/16x16/apps/preferences-desktop-assistive-technology.png + images/tango/16x16/apps/preferences-desktop-font.png + images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/16x16/apps/preferences-desktop-locale.png + images/tango/16x16/apps/preferences-desktop-multimedia.png + images/tango/16x16/apps/preferences-desktop-remote-desktop.png + images/tango/16x16/apps/preferences-desktop-screensaver.png + images/tango/16x16/apps/preferences-desktop-theme.png + images/tango/16x16/apps/preferences-desktop-wallpaper.png + images/tango/16x16/apps/preferences-system-network-proxy.png + images/tango/16x16/apps/preferences-system-session.png + images/tango/16x16/apps/preferences-system-windows.png + images/tango/16x16/apps/system-file-manager.png + images/tango/16x16/apps/system-installer.png + images/tango/16x16/apps/system-software-update.png + images/tango/16x16/apps/system-users.png + images/tango/16x16/apps/utilities-system-monitor.png + images/tango/16x16/apps/utilities-terminal.png + images/tango/16x16/categories/applications-accessories.png + images/tango/16x16/categories/applications-development.png + images/tango/16x16/categories/applications-games.png + images/tango/16x16/categories/applications-graphics.png + images/tango/16x16/categories/applications-internet.png + images/tango/16x16/categories/applications-multimedia.png + images/tango/16x16/categories/applications-office.png + images/tango/16x16/categories/applications-other.png + images/tango/16x16/categories/applications-system.png + images/tango/16x16/categories/preferences-desktop-peripherals.png + images/tango/16x16/categories/preferences-desktop.png + images/tango/16x16/categories/preferences-system.png + images/tango/16x16/devices/audio-card.png + images/tango/16x16/devices/audio-input-microphone.png + images/tango/16x16/devices/battery.png + images/tango/16x16/devices/camera-photo.png + images/tango/16x16/devices/camera-video.png + images/tango/16x16/devices/computer.png + images/tango/16x16/devices/drive-harddisk.png + images/tango/16x16/devices/drive-optical.png + images/tango/16x16/devices/drive-removable-media.png + images/tango/16x16/devices/input-gaming.png + images/tango/16x16/devices/input-keyboard.png + images/tango/16x16/devices/input-mouse.png + images/tango/16x16/devices/media-flash.png + images/tango/16x16/devices/media-floppy.png + images/tango/16x16/devices/media-optical.png + images/tango/16x16/devices/multimedia-player.png + images/tango/16x16/devices/network-wired.png + images/tango/16x16/devices/network-wireless.png + images/tango/16x16/devices/printer.png + images/tango/16x16/devices/video-display.png + images/tango/16x16/emblems/emblem-favorite.png + images/tango/16x16/emblems/emblem-important.png + images/tango/16x16/emblems/emblem-photos.png + images/tango/16x16/emblems/emblem-readonly.png + images/tango/16x16/emblems/emblem-symbolic-link.png + images/tango/16x16/emblems/emblem-system.png + images/tango/16x16/emblems/emblem-unreadable.png + images/tango/16x16/emotes/face-angel.png + images/tango/16x16/emotes/face-crying.png + images/tango/16x16/emotes/face-devilish.png + images/tango/16x16/emotes/face-glasses.png + images/tango/16x16/emotes/face-grin.png + images/tango/16x16/emotes/face-kiss.png + images/tango/16x16/emotes/face-monkey.png + images/tango/16x16/emotes/face-plain.png + images/tango/16x16/emotes/face-sad.png + images/tango/16x16/emotes/face-smile-big.png + images/tango/16x16/emotes/face-smile.png + images/tango/16x16/emotes/face-surprise.png + images/tango/16x16/emotes/face-wink.png + images/tango/16x16/mimetypes/application-certificate.png + images/tango/16x16/mimetypes/application-x-executable.png + images/tango/16x16/mimetypes/audio-x-generic.png + images/tango/16x16/mimetypes/font-x-generic.png + images/tango/16x16/mimetypes/image-x-generic.png + images/tango/16x16/mimetypes/package-x-generic.png + images/tango/16x16/mimetypes/text-html.png + images/tango/16x16/mimetypes/text-x-generic-template.png + images/tango/16x16/mimetypes/text-x-generic.png + images/tango/16x16/mimetypes/text-x-script.png + images/tango/16x16/mimetypes/video-x-generic.png + images/tango/16x16/mimetypes/x-office-address-book.png + images/tango/16x16/mimetypes/x-office-calendar.png + images/tango/16x16/mimetypes/x-office-document-template.png + images/tango/16x16/mimetypes/x-office-document.png + images/tango/16x16/mimetypes/x-office-drawing-template.png + images/tango/16x16/mimetypes/x-office-drawing.png + images/tango/16x16/mimetypes/x-office-presentation-template.png + images/tango/16x16/mimetypes/x-office-presentation.png + images/tango/16x16/mimetypes/x-office-spreadsheet-template.png + images/tango/16x16/mimetypes/x-office-spreadsheet.png + images/tango/16x16/places/folder-remote.png + images/tango/16x16/places/folder-saved-search.png + images/tango/16x16/places/folder.png + images/tango/16x16/places/network-server.png + images/tango/16x16/places/network-workgroup.png + images/tango/16x16/places/start-here.png + images/tango/16x16/places/user-desktop.png + images/tango/16x16/places/user-home.png + images/tango/16x16/places/user-trash.png + images/tango/16x16/status/audio-volume-high.png + images/tango/16x16/status/audio-volume-low.png + images/tango/16x16/status/audio-volume-medium.png + images/tango/16x16/status/audio-volume-muted.png + images/tango/16x16/status/battery-caution.png + images/tango/16x16/status/dialog-error.png + images/tango/16x16/status/dialog-information.png + images/tango/16x16/status/dialog-warning.png + images/tango/16x16/status/folder-drag-accept.png + images/tango/16x16/status/folder-open.png + images/tango/16x16/status/folder-visiting.png + images/tango/16x16/status/image-loading.png + images/tango/16x16/status/image-missing.png + images/tango/16x16/status/mail-attachment.png + images/tango/16x16/status/network-error.png + images/tango/16x16/status/network-idle.png + images/tango/16x16/status/network-offline.png + images/tango/16x16/status/network-receive.png + images/tango/16x16/status/network-transmit-receive.png + images/tango/16x16/status/network-transmit.png + images/tango/16x16/status/network-wireless-encrypted.png + images/tango/16x16/status/printer-error.png + images/tango/16x16/status/software-update-available.png + images/tango/16x16/status/software-update-urgent.png + images/tango/16x16/status/user-trash-full.png + images/tango/16x16/status/weather-clear-night.png + images/tango/16x16/status/weather-clear.png + images/tango/16x16/status/weather-few-clouds-night.png + images/tango/16x16/status/weather-few-clouds.png + images/tango/16x16/status/weather-overcast.png + images/tango/16x16/status/weather-severe-alert.png + images/tango/16x16/status/weather-showers-scattered.png + images/tango/16x16/status/weather-showers.png + images/tango/16x16/status/weather-snow.png + images/tango/16x16/status/weather-storm.png + images/tango/22x22/actions/address-book-new.png + images/tango/22x22/actions/appointment-new.png + images/tango/22x22/actions/bookmark-new.png + images/tango/22x22/actions/contact-new.png + images/tango/22x22/actions/document-new.png + images/tango/22x22/actions/document-open.png + images/tango/22x22/actions/document-print-preview.png + images/tango/22x22/actions/document-print.png + images/tango/22x22/actions/document-pdf.png + images/tango/22x22/actions/document-properties.png + images/tango/22x22/actions/document-revert.png + images/tango/22x22/actions/document-save-as.png + images/tango/22x22/actions/document-save.png + images/tango/22x22/actions/edit-clear.png + images/tango/22x22/actions/edit-copy.png + images/tango/22x22/actions/edit-cut.png + images/tango/22x22/actions/edit-delete.png + images/tango/22x22/actions/edit-find-replace.png + images/tango/22x22/actions/edit-find.png + images/tango/22x22/actions/edit-paste.png + images/tango/22x22/actions/edit-redo.png + images/tango/22x22/actions/edit-select-all.png + images/tango/22x22/actions/edit-undo.png + images/tango/22x22/actions/folder-new.png + images/tango/22x22/actions/format-indent-less.png + images/tango/22x22/actions/format-indent-more.png + images/tango/22x22/actions/format-justify-center.png + images/tango/22x22/actions/format-justify-fill.png + images/tango/22x22/actions/format-justify-left.png + images/tango/22x22/actions/format-justify-right.png + images/tango/22x22/actions/format-text-bold.png + images/tango/22x22/actions/format-text-italic.png + images/tango/22x22/actions/format-text-strikethrough.png + images/tango/22x22/actions/format-text-underline.png + images/tango/22x22/actions/go-bottom.png + images/tango/22x22/actions/go-down.png + images/tango/22x22/actions/go-first.png + images/tango/22x22/actions/go-home.png + images/tango/22x22/actions/go-jump.png + images/tango/22x22/actions/go-last.png + images/tango/22x22/actions/go-next.png + images/tango/22x22/actions/go-previous.png + images/tango/22x22/actions/go-top.png + images/tango/22x22/actions/go-up.png + images/tango/22x22/actions/list-add.png + images/tango/22x22/actions/list-remove.png + images/tango/22x22/actions/mail-forward.png + images/tango/22x22/actions/mail-mark-junk.png + images/tango/22x22/actions/mail-mark-not-junk.png + images/tango/22x22/actions/mail-message-new.png + images/tango/22x22/actions/mail-reply-all.png + images/tango/22x22/actions/mail-reply-sender.png + images/tango/22x22/actions/mail-send-receive.png + images/tango/22x22/actions/media-eject.png + images/tango/22x22/actions/media-playback-pause.png + images/tango/22x22/actions/media-playback-start.png + images/tango/22x22/actions/media-playback-stop.png + images/tango/22x22/actions/media-record.png + images/tango/22x22/actions/media-seek-backward.png + images/tango/22x22/actions/media-seek-forward.png + images/tango/22x22/actions/media-skip-backward.png + images/tango/22x22/actions/media-skip-forward.png + images/tango/22x22/actions/process-stop.png + images/tango/22x22/actions/system-lock-screen.png + images/tango/22x22/actions/system-log-out.png + images/tango/22x22/actions/system-search.png + images/tango/22x22/actions/system-shutdown.png + images/tango/22x22/actions/tab-new.png + images/tango/22x22/actions/view-fullscreen.png + images/tango/22x22/actions/view-refresh.png + images/tango/22x22/actions/window-new.png + images/tango/22x22/animations/process-working.png + images/tango/22x22/apps/accessories-calculator.png + images/tango/22x22/apps/accessories-character-map.png + images/tango/22x22/apps/accessories-text-editor.png + images/tango/22x22/apps/help-browser.png + images/tango/22x22/apps/internet-group-chat.png + images/tango/22x22/apps/internet-mail.png + images/tango/22x22/apps/internet-news-reader.png + images/tango/22x22/apps/internet-web-browser.png + images/tango/22x22/apps/office-calendar.png + images/tango/22x22/apps/preferences-desktop-accessibility.png + images/tango/22x22/apps/preferences-desktop-assistive-technology.png + images/tango/22x22/apps/preferences-desktop-font.png + images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/22x22/apps/preferences-desktop-locale.png + images/tango/22x22/apps/preferences-desktop-multimedia.png + images/tango/22x22/apps/preferences-desktop-remote-desktop.png + images/tango/22x22/apps/preferences-desktop-screensaver.png + images/tango/22x22/apps/preferences-desktop-theme.png + images/tango/22x22/apps/preferences-desktop-wallpaper.png + images/tango/22x22/apps/preferences-system-network-proxy.png + images/tango/22x22/apps/preferences-system-session.png + images/tango/22x22/apps/preferences-system-windows.png + images/tango/22x22/apps/system-file-manager.png + images/tango/22x22/apps/system-installer.png + images/tango/22x22/apps/system-software-update.png + images/tango/22x22/apps/system-users.png + images/tango/22x22/apps/utilities-system-monitor.png + images/tango/22x22/apps/utilities-terminal.png + images/tango/22x22/categories/applications-accessories.png + images/tango/22x22/categories/applications-development.png + images/tango/22x22/categories/applications-games.png + images/tango/22x22/categories/applications-graphics.png + images/tango/22x22/categories/applications-internet.png + images/tango/22x22/categories/applications-multimedia.png + images/tango/22x22/categories/applications-office.png + images/tango/22x22/categories/applications-other.png + images/tango/22x22/categories/applications-system.png + images/tango/22x22/categories/preferences-desktop-peripherals.png + images/tango/22x22/categories/preferences-desktop.png + images/tango/22x22/categories/preferences-system.png + images/tango/22x22/devices/audio-card.png + images/tango/22x22/devices/audio-input-microphone.png + images/tango/22x22/devices/battery.png + images/tango/22x22/devices/camera-photo.png + images/tango/22x22/devices/camera-video.png + images/tango/22x22/devices/computer.png + images/tango/22x22/devices/drive-harddisk.png + images/tango/22x22/devices/drive-optical.png + images/tango/22x22/devices/drive-removable-media.png + images/tango/22x22/devices/input-gaming.png + images/tango/22x22/devices/input-keyboard.png + images/tango/22x22/devices/input-mouse.png + images/tango/22x22/devices/media-flash.png + images/tango/22x22/devices/media-floppy.png + images/tango/22x22/devices/media-optical.png + images/tango/22x22/devices/multimedia-player.png + images/tango/22x22/devices/network-wired.png + images/tango/22x22/devices/network-wireless.png + images/tango/22x22/devices/printer.png + images/tango/22x22/devices/video-display.png + images/tango/22x22/emblems/emblem-favorite.png + images/tango/22x22/emblems/emblem-important.png + images/tango/22x22/emblems/emblem-photos.png + images/tango/22x22/emblems/emblem-readonly.png + images/tango/22x22/emblems/emblem-symbolic-link.png + images/tango/22x22/emblems/emblem-system.png + images/tango/22x22/emblems/emblem-unreadable.png + images/tango/22x22/emotes/face-angel.png + images/tango/22x22/emotes/face-crying.png + images/tango/22x22/emotes/face-devilish.png + images/tango/22x22/emotes/face-glasses.png + images/tango/22x22/emotes/face-grin.png + images/tango/22x22/emotes/face-kiss.png + images/tango/22x22/emotes/face-monkey.png + images/tango/22x22/emotes/face-plain.png + images/tango/22x22/emotes/face-sad.png + images/tango/22x22/emotes/face-smile-big.png + images/tango/22x22/emotes/face-smile.png + images/tango/22x22/emotes/face-surprise.png + images/tango/22x22/emotes/face-wink.png + images/tango/22x22/mimetypes/application-certificate.png + images/tango/22x22/mimetypes/application-x-executable.png + images/tango/22x22/mimetypes/audio-x-generic.png + images/tango/22x22/mimetypes/font-x-generic.png + images/tango/22x22/mimetypes/image-x-generic.png + images/tango/22x22/mimetypes/package-x-generic.png + images/tango/22x22/mimetypes/text-html.png + images/tango/22x22/mimetypes/text-x-generic-template.png + images/tango/22x22/mimetypes/text-x-generic.png + images/tango/22x22/mimetypes/text-x-script.png + images/tango/22x22/mimetypes/video-x-generic.png + images/tango/22x22/mimetypes/x-office-address-book.png + images/tango/22x22/mimetypes/x-office-calendar.png + images/tango/22x22/mimetypes/x-office-document-template.png + images/tango/22x22/mimetypes/x-office-document.png + images/tango/22x22/mimetypes/x-office-drawing-template.png + images/tango/22x22/mimetypes/x-office-drawing.png + images/tango/22x22/mimetypes/x-office-presentation-template.png + images/tango/22x22/mimetypes/x-office-presentation.png + images/tango/22x22/mimetypes/x-office-spreadsheet-template.png + images/tango/22x22/mimetypes/x-office-spreadsheet.png + images/tango/22x22/places/folder-remote.png + images/tango/22x22/places/folder-saved-search.png + images/tango/22x22/places/folder.png + images/tango/22x22/places/network-server.png + images/tango/22x22/places/network-workgroup.png + images/tango/22x22/places/start-here.png + images/tango/22x22/places/user-desktop.png + images/tango/22x22/places/user-home.png + images/tango/22x22/places/user-trash.png + images/tango/22x22/status/audio-volume-high.png + images/tango/22x22/status/audio-volume-low.png + images/tango/22x22/status/audio-volume-medium.png + images/tango/22x22/status/audio-volume-muted.png + images/tango/22x22/status/battery-caution.png + images/tango/22x22/status/dialog-error.png + images/tango/22x22/status/dialog-information.png + images/tango/22x22/status/dialog-warning.png + images/tango/22x22/status/folder-drag-accept.png + images/tango/22x22/status/folder-open.png + images/tango/22x22/status/folder-visiting.png + images/tango/22x22/status/image-loading.png + images/tango/22x22/status/image-missing.png + images/tango/22x22/status/mail-attachment.png + images/tango/22x22/status/network-error.png + images/tango/22x22/status/network-idle.png + images/tango/22x22/status/network-offline.png + images/tango/22x22/status/network-receive.png + images/tango/22x22/status/network-transmit-receive.png + images/tango/22x22/status/network-transmit.png + images/tango/22x22/status/network-wireless-encrypted.png + images/tango/22x22/status/printer-error.png + images/tango/22x22/status/software-update-available.png + images/tango/22x22/status/software-update-urgent.png + images/tango/22x22/status/user-trash-full.png + images/tango/22x22/status/weather-clear-night.png + images/tango/22x22/status/weather-clear.png + images/tango/22x22/status/weather-few-clouds-night.png + images/tango/22x22/status/weather-few-clouds.png + images/tango/22x22/status/weather-overcast.png + images/tango/22x22/status/weather-severe-alert.png + images/tango/22x22/status/weather-showers-scattered.png + images/tango/22x22/status/weather-showers.png + images/tango/22x22/status/weather-snow.png + images/tango/22x22/status/weather-storm.png + images/tango/32x32/actions/address-book-new.png + images/tango/32x32/actions/appointment-new.png + images/tango/32x32/actions/bookmark-new.png + images/tango/32x32/actions/contact-new.png + images/tango/32x32/actions/document-new.png + images/tango/32x32/actions/document-open.png + images/tango/32x32/actions/document-print-preview.png + images/tango/32x32/actions/document-print.png + images/tango/32x32/actions/document-pdf.png + images/tango/32x32/actions/document-properties.png + images/tango/32x32/actions/document-revert.png + images/tango/32x32/actions/document-save-as.png + images/tango/32x32/actions/document-save.png + images/tango/32x32/actions/edit-clear.png + images/tango/32x32/actions/edit-copy.png + images/tango/32x32/actions/edit-cut.png + images/tango/32x32/actions/edit-delete.png + images/tango/32x32/actions/edit-find-replace.png + images/tango/32x32/actions/edit-find.png + images/tango/32x32/actions/edit-paste.png + images/tango/32x32/actions/edit-redo.png + images/tango/32x32/actions/edit-select-all.png + images/tango/32x32/actions/edit-undo.png + images/tango/32x32/actions/folder-new.png + images/tango/32x32/actions/format-indent-less.png + images/tango/32x32/actions/format-indent-more.png + images/tango/32x32/actions/format-justify-center.png + images/tango/32x32/actions/format-justify-fill.png + images/tango/32x32/actions/format-justify-left.png + images/tango/32x32/actions/format-justify-right.png + images/tango/32x32/actions/format-text-bold.png + images/tango/32x32/actions/format-text-italic.png + images/tango/32x32/actions/format-text-strikethrough.png + images/tango/32x32/actions/format-text-underline.png + images/tango/32x32/actions/go-bottom.png + images/tango/32x32/actions/go-down.png + images/tango/32x32/actions/go-first.png + images/tango/32x32/actions/go-home.png + images/tango/32x32/actions/go-jump.png + images/tango/32x32/actions/go-last.png + images/tango/32x32/actions/go-next.png + images/tango/32x32/actions/go-previous.png + images/tango/32x32/actions/go-top.png + images/tango/32x32/actions/go-up.png + images/tango/32x32/actions/list-add.png + images/tango/32x32/actions/list-remove.png + images/tango/32x32/actions/mail-forward.png + images/tango/32x32/actions/mail-mark-junk.png + images/tango/32x32/actions/mail-mark-not-junk.png + images/tango/32x32/actions/mail-message-new.png + images/tango/32x32/actions/mail-reply-all.png + images/tango/32x32/actions/mail-reply-sender.png + images/tango/32x32/actions/mail-send-receive.png + images/tango/32x32/actions/media-eject.png + images/tango/32x32/actions/media-playback-pause.png + images/tango/32x32/actions/media-playback-start.png + images/tango/32x32/actions/media-playback-stop.png + images/tango/32x32/actions/media-record.png + images/tango/32x32/actions/media-seek-backward.png + images/tango/32x32/actions/media-seek-forward.png + images/tango/32x32/actions/media-skip-backward.png + images/tango/32x32/actions/media-skip-forward.png + images/tango/32x32/actions/process-stop.png + images/tango/32x32/actions/system-lock-screen.png + images/tango/32x32/actions/system-log-out.png + images/tango/32x32/actions/system-search.png + images/tango/32x32/actions/system-shutdown.png + images/tango/32x32/actions/tab-new.png + images/tango/32x32/actions/view-fullscreen.png + images/tango/32x32/actions/view-refresh.png + images/tango/32x32/actions/window-new.png + images/tango/32x32/animations/process-working.png + images/tango/32x32/apps/accessories-calculator.png + images/tango/32x32/apps/accessories-character-map.png + images/tango/32x32/apps/accessories-text-editor.png + images/tango/32x32/apps/help-browser.png + images/tango/32x32/apps/internet-group-chat.png + images/tango/32x32/apps/internet-mail.png + images/tango/32x32/apps/internet-news-reader.png + images/tango/32x32/apps/internet-web-browser.png + images/tango/32x32/apps/office-calendar.png + images/tango/32x32/apps/preferences-desktop-accessibility.png + images/tango/32x32/apps/preferences-desktop-assistive-technology.png + images/tango/32x32/apps/preferences-desktop-font.png + images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/32x32/apps/preferences-desktop-locale.png + images/tango/32x32/apps/preferences-desktop-multimedia.png + images/tango/32x32/apps/preferences-desktop-remote-desktop.png + images/tango/32x32/apps/preferences-desktop-screensaver.png + images/tango/32x32/apps/preferences-desktop-theme.png + images/tango/32x32/apps/preferences-desktop-wallpaper.png + images/tango/32x32/apps/preferences-system-network-proxy.png + images/tango/32x32/apps/preferences-system-session.png + images/tango/32x32/apps/preferences-system-windows.png + images/tango/32x32/apps/system-file-manager.png + images/tango/32x32/apps/system-installer.png + images/tango/32x32/apps/system-software-update.png + images/tango/32x32/apps/system-users.png + images/tango/32x32/apps/utilities-system-monitor.png + images/tango/32x32/apps/utilities-terminal.png + images/tango/32x32/categories/applications-accessories.png + images/tango/32x32/categories/applications-development.png + images/tango/32x32/categories/applications-games.png + images/tango/32x32/categories/applications-graphics.png + images/tango/32x32/categories/applications-internet.png + images/tango/32x32/categories/applications-multimedia.png + images/tango/32x32/categories/applications-office.png + images/tango/32x32/categories/applications-other.png + images/tango/32x32/categories/applications-system.png + images/tango/32x32/categories/preferences-desktop-peripherals.png + images/tango/32x32/categories/preferences-desktop.png + images/tango/32x32/categories/preferences-system.png + images/tango/32x32/devices/audio-card.png + images/tango/32x32/devices/audio-input-microphone.png + images/tango/32x32/devices/battery.png + images/tango/32x32/devices/camera-photo.png + images/tango/32x32/devices/camera-video.png + images/tango/32x32/devices/computer.png + images/tango/32x32/devices/drive-harddisk.png + images/tango/32x32/devices/drive-optical.png + images/tango/32x32/devices/drive-removable-media.png + images/tango/32x32/devices/input-gaming.png + images/tango/32x32/devices/input-keyboard.png + images/tango/32x32/devices/input-mouse.png + images/tango/32x32/devices/media-flash.png + images/tango/32x32/devices/media-floppy.png + images/tango/32x32/devices/media-optical.png + images/tango/32x32/devices/multimedia-player.png + images/tango/32x32/devices/network-wired.png + images/tango/32x32/devices/network-wireless.png + images/tango/32x32/devices/printer.png + images/tango/32x32/devices/video-display.png + images/tango/32x32/emblems/emblem-favorite.png + images/tango/32x32/emblems/emblem-important.png + images/tango/32x32/emblems/emblem-photos.png + images/tango/32x32/emblems/emblem-readonly.png + images/tango/32x32/emblems/emblem-symbolic-link.png + images/tango/32x32/emblems/emblem-system.png + images/tango/32x32/emblems/emblem-unreadable.png + images/tango/32x32/emotes/face-angel.png + images/tango/32x32/emotes/face-crying.png + images/tango/32x32/emotes/face-devilish.png + images/tango/32x32/emotes/face-glasses.png + images/tango/32x32/emotes/face-grin.png + images/tango/32x32/emotes/face-kiss.png + images/tango/32x32/emotes/face-monkey.png + images/tango/32x32/emotes/face-plain.png + images/tango/32x32/emotes/face-sad.png + images/tango/32x32/emotes/face-smile-big.png + images/tango/32x32/emotes/face-smile.png + images/tango/32x32/emotes/face-surprise.png + images/tango/32x32/emotes/face-wink.png + images/tango/32x32/mimetypes/application-certificate.png + images/tango/32x32/mimetypes/application-x-executable.png + images/tango/32x32/mimetypes/audio-x-generic.png + images/tango/32x32/mimetypes/font-x-generic.png + images/tango/32x32/mimetypes/image-x-generic.png + images/tango/32x32/mimetypes/package-x-generic.png + images/tango/32x32/mimetypes/text-html.png + images/tango/32x32/mimetypes/text-x-generic-template.png + images/tango/32x32/mimetypes/text-x-generic.png + images/tango/32x32/mimetypes/text-x-script.png + images/tango/32x32/mimetypes/video-x-generic.png + images/tango/32x32/mimetypes/x-office-address-book.png + images/tango/32x32/mimetypes/x-office-calendar.png + images/tango/32x32/mimetypes/x-office-document-template.png + images/tango/32x32/mimetypes/x-office-document.png + images/tango/32x32/mimetypes/x-office-drawing-template.png + images/tango/32x32/mimetypes/x-office-drawing.png + images/tango/32x32/mimetypes/x-office-presentation-template.png + images/tango/32x32/mimetypes/x-office-presentation.png + images/tango/32x32/mimetypes/x-office-spreadsheet-template.png + images/tango/32x32/mimetypes/x-office-spreadsheet.png + images/tango/32x32/places/folder-remote.png + images/tango/32x32/places/folder-saved-search.png + images/tango/32x32/places/folder.png + images/tango/32x32/places/network-server.png + images/tango/32x32/places/network-workgroup.png + images/tango/32x32/places/start-here.png + images/tango/32x32/places/user-desktop.png + images/tango/32x32/places/user-home.png + images/tango/32x32/places/user-trash.png + images/tango/32x32/status/audio-volume-high.png + images/tango/32x32/status/audio-volume-low.png + images/tango/32x32/status/audio-volume-medium.png + images/tango/32x32/status/audio-volume-muted.png + images/tango/32x32/status/battery-caution.png + images/tango/32x32/status/dialog-error.png + images/tango/32x32/status/dialog-information.png + images/tango/32x32/status/dialog-warning.png + images/tango/32x32/status/folder-drag-accept.png + images/tango/32x32/status/folder-open.png + images/tango/32x32/status/folder-visiting.png + images/tango/32x32/status/image-loading.png + images/tango/32x32/status/image-missing.png + images/tango/32x32/status/mail-attachment.png + images/tango/32x32/status/network-error.png + images/tango/32x32/status/network-idle.png + images/tango/32x32/status/network-offline.png + images/tango/32x32/status/network-receive.png + images/tango/32x32/status/network-transmit-receive.png + images/tango/32x32/status/network-transmit.png + images/tango/32x32/status/network-wireless-encrypted.png + images/tango/32x32/status/printer-error.png + images/tango/32x32/status/software-update-available.png + images/tango/32x32/status/software-update-urgent.png + images/tango/32x32/status/user-trash-full.png + images/tango/32x32/status/weather-clear-night.png + images/tango/32x32/status/weather-clear.png + images/tango/32x32/status/weather-few-clouds-night.png + images/tango/32x32/status/weather-few-clouds.png + images/tango/32x32/status/weather-overcast.png + images/tango/32x32/status/weather-severe-alert.png + images/tango/32x32/status/weather-showers-scattered.png + images/tango/32x32/status/weather-showers.png + images/tango/32x32/status/weather-snow.png + images/tango/32x32/status/weather-storm.png + images/tango/index.theme +